diff --git a/contracts/Lens_SpokePool.sol b/contracts/Lens_SpokePool.sol
index e37229b83..46b98eb2a 100644
--- a/contracts/Lens_SpokePool.sol
+++ b/contracts/Lens_SpokePool.sol
@@ -14,6 +14,7 @@ contract Lens_SpokePool is ZkSync_SpokePool {
address _wrappedNativeTokenAddress,
IERC20 _circleUSDC,
ZkBridgeLike _zkUSDCBridge,
+ uint256 _l1ChainId,
ITokenMessenger _cctpTokenMessenger,
uint32 _depositQuoteTimeBuffer,
uint32 _fillDeadlineBuffer
@@ -22,6 +23,7 @@ contract Lens_SpokePool is ZkSync_SpokePool {
_wrappedNativeTokenAddress,
_circleUSDC,
_zkUSDCBridge,
+ _l1ChainId,
_cctpTokenMessenger,
_depositQuoteTimeBuffer,
_fillDeadlineBuffer
diff --git a/contracts/ZkSync_SpokePool.sol b/contracts/ZkSync_SpokePool.sol
index fd8a48990..10bfca569 100644
--- a/contracts/ZkSync_SpokePool.sol
+++ b/contracts/ZkSync_SpokePool.sol
@@ -6,6 +6,12 @@ import { CircleCCTPAdapter, CircleDomainIds, ITokenMessenger } from "./libraries
import { CrossDomainAddressUtils } from "./libraries/CrossDomainAddressUtils.sol";
import "./SpokePool.sol";
+// https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/bridge/asset-router/L2AssetRouter.sol#L321
+interface IL2AssetRouter {
+ function withdraw(bytes32 _assetId, bytes memory _assetData) external returns (bytes32);
+ function l1TokenAddress(address _l2TokenAddress) external view returns (address);
+}
+
// https://github.com/matter-labs/era-contracts/blob/6391c0d7bf6184d7f6718060e3991ba6f0efe4a7/zksync/contracts/bridge/L2ERC20Bridge.sol#L104
interface ZkBridgeLike {
function withdraw(address _l1Receiver, address _l2Token, uint256 _amount) external;
@@ -31,23 +37,45 @@ contract ZkSync_SpokePool is SpokePool, CircleCCTPAdapter {
// ETH on ZkSync implements a subset of the ERC-20 interface, with additional built-in support to bridge to L1.
address public l2Eth;
- // Bridge used to withdraw ERC20's to L1
- ZkBridgeLike public zkErc20Bridge;
+ // Legacy bridge used to withdraw ERC20's to L1, replaced by `l2AssetRouter`.
+ address public DEPRECATED_zkErc20Bridge;
+
+ /// @dev Legacy bridge used to withdraw USDC to L1, for withdrawing all other ERC20's we use `l2AssetRouter`.
/// @custom:oz-upgrades-unsafe-allow state-variable-immutable
ZkBridgeLike public immutable zkUSDCBridge;
+ /// @dev The offset from which the built-in, but user space contracts are located.
+ /// Source: https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/common/l2-helpers/L2ContractAddresses.sol#L12C1-L13C58
+ uint160 constant USER_CONTRACTS_OFFSET = 0x10000; // 2^16
+
+ /// Contract used to withdraw ERC20's to L1.
+ /// Source: https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/common/l2-helpers/L2ContractAddresses.sol#L68
+ address public constant L2_ASSET_ROUTER_ADDR = address(USER_CONTRACTS_OFFSET + 0x03);
+ IL2AssetRouter public constant l2AssetRouter = IL2AssetRouter(L2_ASSET_ROUTER_ADDR);
+
+ /// @dev An l2 system contract address, used in the assetId calculation for native assets.
+ /// This is needed for automatic bridging, i.e. without deploying the AssetHandler contract,
+ /// if the assetId can be calculated with this address then it is in fact an NTV asset
+ /// Source: https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/common/l2-helpers/L2ContractAddresses.sol#L70C1-L73C85
+ address public constant L2_NATIVE_TOKEN_VAULT_ADDR = address(USER_CONTRACTS_OFFSET + 0x04);
+
+ /// Used to compute asset ID needed to withdraw tokens.
+ /// @custom:oz-upgrades-unsafe-allow state-variable-immutable
+ uint256 public immutable l1ChainId;
+
event SetZkBridge(address indexed erc20Bridge, address indexed oldErc20Bridge);
error InvalidBridgeConfig();
/**
* @notice Constructor.
- * @notice Circle bridged & native USDC are optionally supported via configuration, but are mutually exclusive.
+ * @param _zkUSDCBridge Legacy bridge used to withdraw USDC to L1, for withdrawing all other ERC20's we use `l2AssetRouter`.
* @param _wrappedNativeTokenAddress wrappedNativeToken address for this network to set.
* @param _circleUSDC Circle USDC address on the SpokePool. Set to 0x0 to use the standard ERC20 bridge instead.
* If not set to zero, then either the zkUSDCBridge or cctpTokenMessenger must be set and will be used to
* bridge this token.
* @param _zkUSDCBridge Elastic chain custom bridge address for USDC (if deployed, or address(0) to disable).
+ * @param _l1ChainId Chain ID of the L1 chain.
* @param _cctpTokenMessenger TokenMessenger contract to bridge via CCTP. If the zero address is passed, CCTP bridging will be disabled.
* @param _depositQuoteTimeBuffer depositQuoteTimeBuffer to set. Quote timestamps can't be set more than this amount
* into the past from the block time of the deposit.
@@ -59,6 +87,7 @@ contract ZkSync_SpokePool is SpokePool, CircleCCTPAdapter {
address _wrappedNativeTokenAddress,
IERC20 _circleUSDC,
ZkBridgeLike _zkUSDCBridge,
+ uint256 _l1ChainId,
ITokenMessenger _cctpTokenMessenger,
uint32 _depositQuoteTimeBuffer,
uint32 _fillDeadlineBuffer
@@ -84,26 +113,24 @@ contract ZkSync_SpokePool is SpokePool, CircleCCTPAdapter {
}
zkUSDCBridge = _zkUSDCBridge;
+ l1ChainId = _l1ChainId;
}
/**
* @notice Initialize the ZkSync SpokePool.
* @param _initialDepositId Starting deposit ID. Set to 0 unless this is a re-deployment in order to mitigate
* relay hash collisions.
- * @param _zkErc20Bridge Address of L2 ERC20 gateway. Can be reset by admin.
* @param _crossDomainAdmin Cross domain admin to set. Can be changed by admin.
* @param _withdrawalRecipient Address which receives token withdrawals. Can be changed by admin. For Spoke Pools on L2, this will
* likely be the hub pool.
*/
function initialize(
uint32 _initialDepositId,
- ZkBridgeLike _zkErc20Bridge,
address _crossDomainAdmin,
address _withdrawalRecipient
) public initializer {
l2Eth = 0x000000000000000000000000000000000000800A;
__SpokePool_init(_initialDepositId, _crossDomainAdmin, _withdrawalRecipient);
- _setZkBridge(_zkErc20Bridge);
}
modifier onlyFromCrossDomainAdmin() {
@@ -111,18 +138,6 @@ contract ZkSync_SpokePool is SpokePool, CircleCCTPAdapter {
_;
}
- /********************************************************
- * ZKSYNC-SPECIFIC CROSS-CHAIN ADMIN FUNCTIONS *
- ********************************************************/
-
- /**
- * @notice Change L2 token bridge addresses. Callable only by admin.
- * @param _zkErc20Bridge New address of L2 ERC20 gateway.
- */
- function setZkBridge(ZkBridgeLike _zkErc20Bridge) public onlyAdmin nonReentrant {
- _setZkBridge(_zkErc20Bridge);
- }
-
/**************************************
* INTERNAL FUNCTIONS *
**************************************/
@@ -170,14 +185,25 @@ contract ZkSync_SpokePool is SpokePool, CircleCCTPAdapter {
zkUSDCBridge.withdraw(withdrawalRecipient, l2TokenAddress, amountToReturn);
}
} else {
- zkErc20Bridge.withdraw(withdrawalRecipient, l2TokenAddress, amountToReturn);
+ bytes32 assetId = _getAssetId(l2TokenAddress);
+ bytes memory data = _encodeBridgeBurnData(amountToReturn, withdrawalRecipient, l2TokenAddress);
+ l2AssetRouter.withdraw(assetId, data);
}
}
- function _setZkBridge(ZkBridgeLike _zkErc20Bridge) internal {
- address oldErc20Bridge = address(zkErc20Bridge);
- zkErc20Bridge = _zkErc20Bridge;
- emit SetZkBridge(address(_zkErc20Bridge), oldErc20Bridge);
+ // Implementation from https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/common/libraries/DataEncoding.sol#L117C14-L117C62
+ function _getAssetId(address _l2TokenAddress) internal view returns (bytes32) {
+ address l1TokenAddress = l2AssetRouter.l1TokenAddress(_l2TokenAddress);
+ return keccak256(abi.encode(l1ChainId, L2_NATIVE_TOKEN_VAULT_ADDR, l1TokenAddress));
+ }
+
+ // Implementation from https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/common/libraries/DataEncoding.sol#L24C1-L30C6
+ function _encodeBridgeBurnData(
+ uint256 _amount,
+ address _remoteReceiver,
+ address _l2TokenAddress
+ ) internal pure returns (bytes memory) {
+ return abi.encode(_amount, _remoteReceiver, _l2TokenAddress);
}
function _requireAdminSender() internal override onlyFromCrossDomainAdmin {}
diff --git a/deploy/016_deploy_zksync_spokepool.ts b/deploy/016_deploy_zksync_spokepool.ts
index d7b4a706d..94bab1711 100644
--- a/deploy/016_deploy_zksync_spokepool.ts
+++ b/deploy/016_deploy_zksync_spokepool.ts
@@ -20,10 +20,9 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
const artifact = await deployer.loadArtifact(contractName);
- const { zkErc20Bridge, zkUSDCBridge = ZERO_ADDRESS, cctpTokenMessenger } = L2_ADDRESS_MAP[spokeChainId];
+ const { zkUSDCBridge = ZERO_ADDRESS, cctpTokenMessenger } = L2_ADDRESS_MAP[spokeChainId];
const initArgs = [
0, // Start at 0 since this first time we're deploying this spoke pool. On future upgrades increase this.
- zkErc20Bridge,
hubPool.address,
hubPool.address,
];
@@ -44,6 +43,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
WETH[spokeChainId],
usdcAddress,
zkUSDCBridge,
+ hubChainId,
cctpTokenMessenger,
QUOTE_TIME_BUFFER,
FILL_DEADLINE_BUFFER,
diff --git a/deploy/059_deploy_lens_spokepool.ts b/deploy/059_deploy_lens_spokepool.ts
index 6dae89e45..441deef08 100644
--- a/deploy/059_deploy_lens_spokepool.ts
+++ b/deploy/059_deploy_lens_spokepool.ts
@@ -20,11 +20,10 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
const artifact = await deployer.loadArtifact(contractName);
- const { zkErc20Bridge, zkUSDCBridge, cctpTokenMessenger } = L2_ADDRESS_MAP[spokeChainId];
+ const { zkUSDCBridge, cctpTokenMessenger } = L2_ADDRESS_MAP[spokeChainId];
const initArgs = [
100_000, // Redeployment of the Spoke Pool proxy @ 09-01-2025. Offset the initial deposit ID by 100k
- zkErc20Bridge,
hubPool.address,
hubPool.address,
];
@@ -44,6 +43,7 @@ const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
WGHO[spokeChainId],
usdcAddress,
zkUSDCBridge,
+ hubChainId,
cctpTokenMessenger,
QUOTE_TIME_BUFFER,
FILL_DEADLINE_BUFFER,
diff --git a/deploy/consts.ts b/deploy/consts.ts
index d6634e61f..7efb48df5 100644
--- a/deploy/consts.ts
+++ b/deploy/consts.ts
@@ -225,7 +225,6 @@ export const L2_ADDRESS_MAP: { [key: number]: { [contractName: string]: string }
cctpMessageTransmitter: "0x7865fAfC2db2093669d92c0F33AeEF291086BEFD",
},
[CHAIN_IDs.ZK_SYNC]: {
- zkErc20Bridge: "0x11f943b2c77b743AB90f4A0Ae7d5A4e7FCA3E102",
cctpTokenMessenger: ZERO_ADDRESS, // CCTP not available on zkSync.
"1inchV6Router": "0x6fd4383cB451173D5f9304F041C7BCBf27d561fF",
permit2: "0x0000000000225e31d15943971f47ad3022f714fa",
@@ -259,7 +258,6 @@ export const L2_ADDRESS_MAP: { [key: number]: { [contractName: string]: string }
cctpV2TokenMessenger: "0x0000000000000000000000000000000000000000",
},
[CHAIN_IDs.LENS]: {
- zkErc20Bridge: "0xfBEC23c5BB0E076F2ef4d0AaD7fe331aE5A01143",
zkUSDCBridge: "0x7188B6975EeC82ae914b6eC7AC32b3c9a18b2c81",
cctpTokenMessenger: ZERO_ADDRESS, // Not available on Lens.
permit2: "0x0000000000225e31D15943971F47aD3022F714Fa",
diff --git a/deployments/lens/Lens_SpokePool.json b/deployments/lens/Lens_SpokePool.json
index 4c0139a75..ab9267bd7 100644
--- a/deployments/lens/Lens_SpokePool.json
+++ b/deployments/lens/Lens_SpokePool.json
@@ -1,5 +1,5 @@
{
- "address": "0xb234cA484866c811d0e6D3318866F583781ED045",
+ "address": "0x94359699c86fE6FaC1498b34e1b61AE93c1FfA98",
"abi": [
{
"inputs": [
@@ -18,6 +18,11 @@
"name": "_zkUSDCBridge",
"type": "address"
},
+ {
+ "internalType": "uint256",
+ "name": "_l1ChainId",
+ "type": "uint256"
+ },
{
"internalType": "contract ITokenMessenger",
"name": "_cctpTokenMessenger",
@@ -57,6 +62,11 @@
"name": "ExpiredFillDeadline",
"type": "error"
},
+ {
+ "inputs": [],
+ "name": "ExternalCallExecutionFailed",
+ "type": "error"
+ },
{
"inputs": [],
"name": "FillsArePaused",
@@ -153,6 +163,11 @@
"name": "MaxTransferSizeExceeded",
"type": "error"
},
+ {
+ "inputs": [],
+ "name": "MessageTooShort",
+ "type": "error"
+ },
{
"inputs": [],
"name": "MsgValueDoesNotMatchInputAmount",
@@ -178,6 +193,41 @@
"name": "NotExclusiveRelayer",
"type": "error"
},
+ {
+ "inputs": [],
+ "name": "OFTFeeUnderpaid",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OFTTokenMismatch",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftFeeCapExceeded",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftIncorrectAmountReceivedLD",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftIncorrectAmountSentLD",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftInsufficientBalanceForFee",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftLzFeeNotZero",
+ "type": "error"
+ },
{
"inputs": [],
"name": "RelayFilled",
@@ -188,6 +238,11 @@
"name": "WrongERC7683OrderId",
"type": "error"
},
+ {
+ "inputs": [],
+ "name": "ZeroAddressTarget",
+ "type": "error"
+ },
{
"anonymous": false,
"inputs": [
@@ -207,6 +262,25 @@
"name": "AdminChanged",
"type": "event"
},
+ {
+ "anonymous": false,
+ "inputs": [
+ {
+ "indexed": true,
+ "internalType": "address",
+ "name": "target",
+ "type": "address"
+ },
+ {
+ "indexed": false,
+ "internalType": "bytes",
+ "name": "data",
+ "type": "bytes"
+ }
+ ],
+ "name": "AdminExternalCallExecuted",
+ "type": "event"
+ },
{
"anonymous": false,
"inputs": [
@@ -981,6 +1055,25 @@
"name": "RequestedV3SlowFill",
"type": "event"
},
+ {
+ "anonymous": false,
+ "inputs": [
+ {
+ "indexed": true,
+ "internalType": "address",
+ "name": "token",
+ "type": "address"
+ },
+ {
+ "indexed": true,
+ "internalType": "address",
+ "name": "messenger",
+ "type": "address"
+ }
+ ],
+ "name": "SetOFTMessenger",
+ "type": "event"
+ },
{
"anonymous": false,
"inputs": [
@@ -1161,6 +1254,32 @@
"name": "V3FundsDeposited",
"type": "event"
},
+ {
+ "inputs": [],
+ "name": "DEPRECATED_zkErc20Bridge",
+ "outputs": [
+ {
+ "internalType": "address",
+ "name": "",
+ "type": "address"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "EMPTY_MSG_BYTES",
+ "outputs": [
+ {
+ "internalType": "bytes",
+ "name": "",
+ "type": "bytes"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
{
"inputs": [],
"name": "EMPTY_RELAYER",
@@ -1226,6 +1345,32 @@
"stateMutability": "view",
"type": "function"
},
+ {
+ "inputs": [],
+ "name": "OFT_DST_EID",
+ "outputs": [
+ {
+ "internalType": "uint32",
+ "name": "",
+ "type": "uint32"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "OFT_FEE_CAP",
+ "outputs": [
+ {
+ "internalType": "uint256",
+ "name": "",
+ "type": "uint256"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
{
"inputs": [],
"name": "UPDATE_BYTES32_DEPOSIT_DETAILS_HASH",
@@ -1721,6 +1866,25 @@
"stateMutability": "nonpayable",
"type": "function"
},
+ {
+ "inputs": [
+ {
+ "internalType": "bytes",
+ "name": "message",
+ "type": "bytes"
+ }
+ ],
+ "name": "executeExternalCall",
+ "outputs": [
+ {
+ "internalType": "bytes",
+ "name": "returnData",
+ "type": "bytes"
+ }
+ ],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
{
"inputs": [
{
@@ -2357,11 +2521,6 @@
"name": "_initialDepositId",
"type": "uint32"
},
- {
- "internalType": "contract ZkBridgeLike",
- "name": "_zkErc20Bridge",
- "type": "address"
- },
{
"internalType": "address",
"name": "_crossDomainAdmin",
@@ -2378,6 +2537,32 @@
"stateMutability": "nonpayable",
"type": "function"
},
+ {
+ "inputs": [],
+ "name": "l1ChainId",
+ "outputs": [
+ {
+ "internalType": "uint256",
+ "name": "",
+ "type": "uint256"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "l2AssetRouter",
+ "outputs": [
+ {
+ "internalType": "contract IL2AssetRouter",
+ "name": "",
+ "type": "address"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
{
"inputs": [],
"name": "l2Eth",
@@ -2423,6 +2608,25 @@
"stateMutability": "view",
"type": "function"
},
+ {
+ "inputs": [
+ {
+ "internalType": "address",
+ "name": "l2TokenAddress",
+ "type": "address"
+ }
+ ],
+ "name": "oftMessengers",
+ "outputs": [
+ {
+ "internalType": "address",
+ "name": "l2OftMessenger",
+ "type": "address"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
{
"inputs": [
{
@@ -2659,11 +2863,16 @@
"inputs": [
{
"internalType": "address",
- "name": "newWithdrawalRecipient",
+ "name": "token",
+ "type": "address"
+ },
+ {
+ "internalType": "address",
+ "name": "messenger",
"type": "address"
}
],
- "name": "setWithdrawalRecipient",
+ "name": "setOftMessenger",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
@@ -2671,12 +2880,12 @@
{
"inputs": [
{
- "internalType": "contract ZkBridgeLike",
- "name": "_zkErc20Bridge",
+ "internalType": "address",
+ "name": "newWithdrawalRecipient",
"type": "address"
}
],
- "name": "setZkBridge",
+ "name": "setWithdrawalRecipient",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
@@ -2931,19 +3140,6 @@
"stateMutability": "view",
"type": "function"
},
- {
- "inputs": [],
- "name": "zkErc20Bridge",
- "outputs": [
- {
- "internalType": "contract ZkBridgeLike",
- "name": "",
- "type": "address"
- }
- ],
- "stateMutability": "view",
- "type": "function"
- },
{
"inputs": [],
"name": "zkUSDCBridge",
@@ -2962,8 +3158,8 @@
"type": "receive"
}
],
- "numDeployments": 2,
- "solcInputHash": "80bd9f307075da448e98e006d3d37ce5",
+ "numDeployments": 3,
+ "solcInputHash": "47139abb5837f5482556d72341819801",
"metadata": {
"llvm_options": [],
"optimizer_settings": {
@@ -2974,11 +3170,11 @@
"level_middle_end": "Aggressive",
"level_middle_end_size": "Zero"
},
- "solc_version": "0.8.23",
- "solc_zkvm_edition": null,
+ "solc_version": "0.8.30",
+ "solc_zkvm_edition": "1.0.2",
"source_metadata": {
"compiler": {
- "version": "0.8.23+commit.f704f362"
+ "version": "0.8.30+commit.89ae86f4"
},
"language": "Solidity",
"output": {
@@ -3000,6 +3196,11 @@
"name": "_zkUSDCBridge",
"type": "address"
},
+ {
+ "internalType": "uint256",
+ "name": "_l1ChainId",
+ "type": "uint256"
+ },
{
"internalType": "contract ITokenMessenger",
"name": "_cctpTokenMessenger",
@@ -3039,6 +3240,11 @@
"name": "ExpiredFillDeadline",
"type": "error"
},
+ {
+ "inputs": [],
+ "name": "ExternalCallExecutionFailed",
+ "type": "error"
+ },
{
"inputs": [],
"name": "FillsArePaused",
@@ -3135,6 +3341,11 @@
"name": "MaxTransferSizeExceeded",
"type": "error"
},
+ {
+ "inputs": [],
+ "name": "MessageTooShort",
+ "type": "error"
+ },
{
"inputs": [],
"name": "MsgValueDoesNotMatchInputAmount",
@@ -3160,6 +3371,41 @@
"name": "NotExclusiveRelayer",
"type": "error"
},
+ {
+ "inputs": [],
+ "name": "OFTFeeUnderpaid",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OFTTokenMismatch",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftFeeCapExceeded",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftIncorrectAmountReceivedLD",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftIncorrectAmountSentLD",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftInsufficientBalanceForFee",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftLzFeeNotZero",
+ "type": "error"
+ },
{
"inputs": [],
"name": "RelayFilled",
@@ -3170,6 +3416,11 @@
"name": "WrongERC7683OrderId",
"type": "error"
},
+ {
+ "inputs": [],
+ "name": "ZeroAddressTarget",
+ "type": "error"
+ },
{
"anonymous": false,
"inputs": [
@@ -3189,6 +3440,25 @@
"name": "AdminChanged",
"type": "event"
},
+ {
+ "anonymous": false,
+ "inputs": [
+ {
+ "indexed": true,
+ "internalType": "address",
+ "name": "target",
+ "type": "address"
+ },
+ {
+ "indexed": false,
+ "internalType": "bytes",
+ "name": "data",
+ "type": "bytes"
+ }
+ ],
+ "name": "AdminExternalCallExecuted",
+ "type": "event"
+ },
{
"anonymous": false,
"inputs": [
@@ -3963,6 +4233,25 @@
"name": "RequestedV3SlowFill",
"type": "event"
},
+ {
+ "anonymous": false,
+ "inputs": [
+ {
+ "indexed": true,
+ "internalType": "address",
+ "name": "token",
+ "type": "address"
+ },
+ {
+ "indexed": true,
+ "internalType": "address",
+ "name": "messenger",
+ "type": "address"
+ }
+ ],
+ "name": "SetOFTMessenger",
+ "type": "event"
+ },
{
"anonymous": false,
"inputs": [
@@ -4143,6 +4432,32 @@
"name": "V3FundsDeposited",
"type": "event"
},
+ {
+ "inputs": [],
+ "name": "DEPRECATED_zkErc20Bridge",
+ "outputs": [
+ {
+ "internalType": "address",
+ "name": "",
+ "type": "address"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "EMPTY_MSG_BYTES",
+ "outputs": [
+ {
+ "internalType": "bytes",
+ "name": "",
+ "type": "bytes"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
{
"inputs": [],
"name": "EMPTY_RELAYER",
@@ -4208,6 +4523,32 @@
"stateMutability": "view",
"type": "function"
},
+ {
+ "inputs": [],
+ "name": "OFT_DST_EID",
+ "outputs": [
+ {
+ "internalType": "uint32",
+ "name": "",
+ "type": "uint32"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "OFT_FEE_CAP",
+ "outputs": [
+ {
+ "internalType": "uint256",
+ "name": "",
+ "type": "uint256"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
{
"inputs": [],
"name": "UPDATE_BYTES32_DEPOSIT_DETAILS_HASH",
@@ -4703,6 +5044,25 @@
"stateMutability": "nonpayable",
"type": "function"
},
+ {
+ "inputs": [
+ {
+ "internalType": "bytes",
+ "name": "message",
+ "type": "bytes"
+ }
+ ],
+ "name": "executeExternalCall",
+ "outputs": [
+ {
+ "internalType": "bytes",
+ "name": "returnData",
+ "type": "bytes"
+ }
+ ],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
{
"inputs": [
{
@@ -5339,11 +5699,6 @@
"name": "_initialDepositId",
"type": "uint32"
},
- {
- "internalType": "contract ZkBridgeLike",
- "name": "_zkErc20Bridge",
- "type": "address"
- },
{
"internalType": "address",
"name": "_crossDomainAdmin",
@@ -5360,6 +5715,32 @@
"stateMutability": "nonpayable",
"type": "function"
},
+ {
+ "inputs": [],
+ "name": "l1ChainId",
+ "outputs": [
+ {
+ "internalType": "uint256",
+ "name": "",
+ "type": "uint256"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "l2AssetRouter",
+ "outputs": [
+ {
+ "internalType": "contract IL2AssetRouter",
+ "name": "",
+ "type": "address"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
{
"inputs": [],
"name": "l2Eth",
@@ -5405,6 +5786,25 @@
"stateMutability": "view",
"type": "function"
},
+ {
+ "inputs": [
+ {
+ "internalType": "address",
+ "name": "l2TokenAddress",
+ "type": "address"
+ }
+ ],
+ "name": "oftMessengers",
+ "outputs": [
+ {
+ "internalType": "address",
+ "name": "l2OftMessenger",
+ "type": "address"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
{
"inputs": [
{
@@ -5641,11 +6041,16 @@
"inputs": [
{
"internalType": "address",
- "name": "newWithdrawalRecipient",
+ "name": "token",
+ "type": "address"
+ },
+ {
+ "internalType": "address",
+ "name": "messenger",
"type": "address"
}
],
- "name": "setWithdrawalRecipient",
+ "name": "setOftMessenger",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
@@ -5653,12 +6058,12 @@
{
"inputs": [
{
- "internalType": "contract ZkBridgeLike",
- "name": "_zkErc20Bridge",
+ "internalType": "address",
+ "name": "newWithdrawalRecipient",
"type": "address"
}
],
- "name": "setZkBridge",
+ "name": "setWithdrawalRecipient",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
@@ -5913,19 +6318,6 @@
"stateMutability": "view",
"type": "function"
},
- {
- "inputs": [],
- "name": "zkErc20Bridge",
- "outputs": [
- {
- "internalType": "contract ZkBridgeLike",
- "name": "",
- "type": "address"
- }
- ],
- "stateMutability": "view",
- "type": "function"
- },
{
"inputs": [],
"name": "zkUSDCBridge",
@@ -6077,6 +6469,14 @@
"rootBundleId": "Index of the root bundle that needs to be deleted. Note: this is intentionally a uint256 to ensure that a small input range doesn't limit which indices this method is able to reach."
}
},
+ "executeExternalCall(bytes)": {
+ "params": {
+ "message": "The message containing the target address and calldata to execute."
+ },
+ "returns": {
+ "returnData": "The return data from the executed call."
+ }
+ },
"executeRelayerRefundLeaf(uint32,(uint256,uint256,uint256[],uint32,address,address[]),bytes32[])": {
"params": {
"proof": "Inclusion proof for this leaf in relayer refund root in root bundle.",
@@ -6136,12 +6536,11 @@
"_0": "The deposit ID for the unsafe deposit."
}
},
- "initialize(uint32,address,address,address)": {
+ "initialize(uint32,address,address)": {
"params": {
"_crossDomainAdmin": "Cross domain admin to set. Can be changed by admin.",
"_initialDepositId": "Starting deposit ID. Set to 0 unless this is a re-deployment in order to mitigate relay hash collisions.",
- "_withdrawalRecipient": "Address which receives token withdrawals. Can be changed by admin. For Spoke Pools on L2, this will likely be the hub pool.",
- "_zkErc20Bridge": "Address of L2 ERC20 gateway. Can be reset by admin."
+ "_withdrawalRecipient": "Address which receives token withdrawals. Can be changed by admin. For Spoke Pools on L2, this will likely be the hub pool."
}
},
"pauseDeposits(bool)": {
@@ -6176,14 +6575,15 @@
"newCrossDomainAdmin": "New cross domain admin."
}
},
- "setWithdrawalRecipient(address)": {
+ "setOftMessenger(address,address)": {
"params": {
- "newWithdrawalRecipient": "New withdrawal recipient address."
+ "messenger": "IOFT contract address on the current chain for the specified token. Acts as a 'mailbox'",
+ "token": "token address on the current chain"
}
},
- "setZkBridge(address)": {
+ "setWithdrawalRecipient(address)": {
"params": {
- "_zkErc20Bridge": "New address of L2 ERC20 gateway."
+ "newWithdrawalRecipient": "New withdrawal recipient address."
}
},
"speedUpDeposit(bytes32,uint256,uint256,bytes32,bytes,bytes)": {
@@ -6238,8 +6638,48 @@
"version": 1
},
"userdoc": {
+ "errors": {
+ "OFTFeeUnderpaid()": [
+ {
+ "notice": "Thrown when the native fee sent by the caller is insufficient to cover the OFT transfer."
+ }
+ ],
+ "OftFeeCapExceeded()": [
+ {
+ "notice": "Thrown when OFT fee exceeds the configured cap "
+ }
+ ],
+ "OftIncorrectAmountReceivedLD()": [
+ {
+ "notice": "Thrown when amount received differs from expected amount "
+ }
+ ],
+ "OftIncorrectAmountSentLD()": [
+ {
+ "notice": "Thrown when amount sent differs from expected amount "
+ }
+ ],
+ "OftInsufficientBalanceForFee()": [
+ {
+ "notice": "Thrown when contract has insufficient balance to pay OFT fees "
+ }
+ ],
+ "OftLzFeeNotZero()": [
+ {
+ "notice": "Thrown when LayerZero token fee is not zero (only native fees supported) "
+ }
+ ]
+ },
+ "events": {
+ "AdminExternalCallExecuted(address,bytes)": {
+ "notice": "Emitted when the call to external contract is executed, triggered by an admin action"
+ }
+ },
"kind": "user",
"methods": {
+ "EMPTY_MSG_BYTES()": {
+ "notice": "Empty bytes array used for OFT messaging parameters "
+ },
"__SpokePool_init(uint32,address,address)": {
"notice": "Construct the base SpokePool."
},
@@ -6270,6 +6710,9 @@
"emergencyDeleteRootBundle(uint256)": {
"notice": "This method is intended to only be used in emergencies where a bad root bundle has reached the SpokePool."
},
+ "executeExternalCall(bytes)": {
+ "notice": "Execute an external call to a target contract."
+ },
"executeRelayerRefundLeaf(uint32,(uint256,uint256,uint256[],uint32,address,address[]),bytes32[])": {
"notice": "Executes a relayer refund leaf stored as part of a root bundle. Will send the relayer the amount they sent to the recipient plus a relayer fee."
},
@@ -6291,7 +6734,7 @@
"getUnsafeDepositId(address,bytes32,uint256)": {
"notice": "Returns the deposit ID for an unsafe deposit. This function is used to compute the deposit ID in unsafeDeposit and is provided as a convenience."
},
- "initialize(uint32,address,address,address)": {
+ "initialize(uint32,address,address)": {
"notice": "Initialize the ZkSync SpokePool."
},
"pauseDeposits(bool)": {
@@ -6309,12 +6752,12 @@
"setCrossDomainAdmin(address)": {
"notice": "Change cross domain admin address. Callable by admin only."
},
+ "setOftMessenger(address,address)": {
+ "notice": "Add token -> OFTMessenger relationship. Callable only by admin."
+ },
"setWithdrawalRecipient(address)": {
"notice": "Change L1 withdrawal recipient address. Callable by admin only."
},
- "setZkBridge(address)": {
- "notice": "Change L2 token bridge addresses. Callable only by admin."
- },
"speedUpDeposit(bytes32,uint256,uint256,bytes32,bytes,bytes)": {
"notice": "Depositor can use this function to signal to relayer to use updated output amount, recipient, and/or message. The speed up signature uniquely identifies the speed up based only on depositor, deposit ID and origin chain, so using this function in conjunction with unsafeDeposit is risky due to the chance of repeating a deposit ID."
},
@@ -6333,7 +6776,7 @@
"compilationTarget": {
"contracts/Lens_SpokePool.sol": "Lens_SpokePool"
},
- "evmVersion": "shanghai",
+ "evmVersion": "prague",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
@@ -6345,7 +6788,7 @@
"remappings": []
},
"sources": {
- "@openzeppelin/contracts-upgradeable/interfaces/IERC1967Upgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/interfaces/IERC1967Upgradeable.sol": {
"keccak256": "0x47d6e06872b12e72c79d1b5eb55842f860b5fb1207b2317c2358d2766b950a7b",
"license": "MIT",
"urls": [
@@ -6353,7 +6796,7 @@
"dweb:/ipfs/QmQoSrHhka35iKDK5iyNt8cuXXS5ANXVPjLhfsJjktB8V9"
]
},
- "@openzeppelin/contracts-upgradeable/interfaces/draft-IERC1822Upgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/interfaces/draft-IERC1822Upgradeable.sol": {
"keccak256": "0x77c89f893e403efc6929ba842b7ccf6534d4ffe03afe31670b4a528c0ad78c0f",
"license": "MIT",
"urls": [
@@ -6361,7 +6804,7 @@
"dweb:/ipfs/QmXdJDyYs6WMwMh21dez2BYPxhSUaUYFMDtVNcn2cgFR79"
]
},
- "@openzeppelin/contracts-upgradeable/proxy/ERC1967/ERC1967UpgradeUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/proxy/ERC1967/ERC1967UpgradeUpgradeable.sol": {
"keccak256": "0x7795808e3899c805254e3ae58074b20f799b466e3f43e057e47bedee5fb771f8",
"license": "MIT",
"urls": [
@@ -6369,7 +6812,7 @@
"dweb:/ipfs/QmRtm4Ese9u4jfxXyuWPXLwzenwFotuQjAWV7rXtZTB1E9"
]
},
- "@openzeppelin/contracts-upgradeable/proxy/beacon/IBeaconUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/proxy/beacon/IBeaconUpgradeable.sol": {
"keccak256": "0x24b86ac8c005b8c654fbf6ac34a5a4f61580d7273541e83e013e89d66fbf0908",
"license": "MIT",
"urls": [
@@ -6377,7 +6820,7 @@
"dweb:/ipfs/QmVMU5tWt7zBQMmf5cpMX8UMHV86T3kFeTxBTBjFqVWfoJ"
]
},
- "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/proxy/utils/Initializable.sol": {
"keccak256": "0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794",
"license": "MIT",
"urls": [
@@ -6385,7 +6828,7 @@
"dweb:/ipfs/QmRiNZLoJk5k3HPMYGPGjZFd2ke1ZxjhJZkM45Ec9GH9hv"
]
},
- "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/proxy/utils/UUPSUpgradeable.sol": {
"keccak256": "0xefb41f5c1a00249b7a99f0782f8c557865605426a3fb6e5fe9ae334293ae4f33",
"license": "MIT",
"urls": [
@@ -6393,7 +6836,7 @@
"dweb:/ipfs/Qmb5vcymmNEZUJMaHmYxnhvGJDEsGMae4YjcHwkA74jy99"
]
},
- "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/security/ReentrancyGuardUpgradeable.sol": {
"keccak256": "0x2025ccf05f6f1f2fd4e078e552836f525a1864e3854ed555047cd732320ab29b",
"license": "MIT",
"urls": [
@@ -6401,7 +6844,7 @@
"dweb:/ipfs/QmQa3DnvccwdWJeWrjgXPnFMTWbzWQWR39hVqC7eEwo2PC"
]
},
- "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/token/ERC20/IERC20Upgradeable.sol": {
"keccak256": "0x0e1f0f5f62f67a881cd1a9597acbc0a5e4071f3c2c10449a183b922ae7272e3f",
"license": "MIT",
"urls": [
@@ -6409,7 +6852,7 @@
"dweb:/ipfs/QmQXRuFzStEWqeEPbhQU6cAg9PaSowxJVo4PDKyRod7dco"
]
},
- "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20PermitUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/token/ERC20/extensions/IERC20PermitUpgradeable.sol": {
"keccak256": "0x07e881de3b9f6d2c07909f193f24b96c7fe4ea60013260f3f25aecd8bab3c2f8",
"license": "MIT",
"urls": [
@@ -6417,7 +6860,7 @@
"dweb:/ipfs/QmcRAzaSP1UnGr4vrGkfJmB2L9aiTYoXfV1Lg9gqrVRWn8"
]
},
- "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/token/ERC20/utils/SafeERC20Upgradeable.sol": {
"keccak256": "0x23b997be73d3dd46885262704f0f8cfc7273fdadfe303d37969a9561373972b5",
"license": "MIT",
"urls": [
@@ -6425,7 +6868,7 @@
"dweb:/ipfs/QmUZV5bMbgk2PAkV3coouSeSainHN2jhqaQDJaA7hQRyu2"
]
},
- "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/utils/AddressUpgradeable.sol": {
"keccak256": "0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422",
"license": "MIT",
"urls": [
@@ -6433,7 +6876,7 @@
"dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq"
]
},
- "@openzeppelin/contracts-upgradeable/utils/StorageSlotUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/utils/StorageSlotUpgradeable.sol": {
"keccak256": "0x07ac95acad040f1fb1f6120dd0aa5f702db69446e95f82613721879d30de0908",
"license": "MIT",
"urls": [
@@ -6441,7 +6884,7 @@
"dweb:/ipfs/QmWe49zj65jayrCe9jZpoWhYUZ1RiwSxyU2s7SBZnMztVy"
]
},
- "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/utils/StringsUpgradeable.sol": {
"keccak256": "0xb96dc79b65b7c37937919dcdb356a969ce0aa2e8338322bf4dc027a3c9c9a7eb",
"license": "MIT",
"urls": [
@@ -6449,7 +6892,7 @@
"dweb:/ipfs/QmPqpP3YeRbBdTJRe6Gv2eGsUaANf4J6RwTNRW36iYahfV"
]
},
- "@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/utils/cryptography/ECDSAUpgradeable.sol": {
"keccak256": "0xa014f65d84b02827055d99993ccdbfb4b56b2c9e91eb278d82a93330659d06e4",
"license": "MIT",
"urls": [
@@ -6457,7 +6900,7 @@
"dweb:/ipfs/QmTkDNWkq5o9Cv2jS7s6JvSmsPBkeunZhPe7Z2njGL31wo"
]
},
- "@openzeppelin/contracts-upgradeable/utils/math/MathUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/utils/math/MathUpgradeable.sol": {
"keccak256": "0x2bc0007987c229ae7624eb29be6a9b84f6a6a5872f76248b15208b131ea41c4e",
"license": "MIT",
"urls": [
@@ -6465,7 +6908,7 @@
"dweb:/ipfs/QmSCWfNoSvvTN57ic7o1RW6NqSxxGAqbBTnLKc7QHe27qB"
]
},
- "@openzeppelin/contracts-upgradeable/utils/math/SignedMathUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/utils/math/SignedMathUpgradeable.sol": {
"keccak256": "0x88f6b7bba3ee33eeb741f9a0f5bc98b6e6e352d0fe4905377bb328590f84095a",
"license": "MIT",
"urls": [
@@ -6473,7 +6916,7 @@
"dweb:/ipfs/QmXFkNxMc3AAGzhs2wUEZyErWQjsvoTGyYjuU5oZkFki5Z"
]
},
- "@openzeppelin/contracts/interfaces/IERC1271.sol": {
+ "@openzeppelin/contracts-v4/interfaces/IERC1271.sol": {
"keccak256": "0x0705a4b1b86d7b0bd8432118f226ba139c44b9dcaba0a6eafba2dd7d0639c544",
"license": "MIT",
"urls": [
@@ -6481,7 +6924,7 @@
"dweb:/ipfs/QmRKCJW6jjzR5UYZcLpGnhEJ75UVbH6EHkEa49sWx2SKng"
]
},
- "@openzeppelin/contracts/token/ERC20/IERC20.sol": {
+ "@openzeppelin/contracts-v4/token/ERC20/IERC20.sol": {
"keccak256": "0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305",
"license": "MIT",
"urls": [
@@ -6489,7 +6932,7 @@
"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53"
]
},
- "@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol": {
+ "@openzeppelin/contracts-v4/token/ERC20/extensions/IERC20Permit.sol": {
"keccak256": "0xb264c03a3442eb37a68ad620cefd1182766b58bee6cec40343480392d6b14d69",
"license": "MIT",
"urls": [
@@ -6497,7 +6940,7 @@
"dweb:/ipfs/QmVgfkwv2Fxw6hhTcDUZhE7NkoSKjab3ipM7UaRbt6uXb5"
]
},
- "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol": {
+ "@openzeppelin/contracts-v4/token/ERC20/utils/SafeERC20.sol": {
"keccak256": "0xabefac93435967b4d36a4fabcbdbb918d1f0b7ae3c3d85bc30923b326c927ed1",
"license": "MIT",
"urls": [
@@ -6505,7 +6948,7 @@
"dweb:/ipfs/QmRgCn6SP1hbBkExUADFuDo8xkT4UU47yjNF5FhCeRbQmS"
]
},
- "@openzeppelin/contracts/utils/Address.sol": {
+ "@openzeppelin/contracts-v4/utils/Address.sol": {
"keccak256": "0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa",
"license": "MIT",
"urls": [
@@ -6513,7 +6956,7 @@
"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm"
]
},
- "@openzeppelin/contracts/utils/Strings.sol": {
+ "@openzeppelin/contracts-v4/utils/Strings.sol": {
"keccak256": "0x3088eb2868e8d13d89d16670b5f8612c4ab9ff8956272837d8e90106c59c14a0",
"license": "MIT",
"urls": [
@@ -6521,7 +6964,7 @@
"dweb:/ipfs/QmPCW1bFisUzJkyjroY3yipwfism9RRCigCcK1hbXtVM8n"
]
},
- "@openzeppelin/contracts/utils/cryptography/ECDSA.sol": {
+ "@openzeppelin/contracts-v4/utils/cryptography/ECDSA.sol": {
"keccak256": "0x809bc3edb4bcbef8263fa616c1b60ee0004b50a8a1bfa164d8f57fd31f520c58",
"license": "MIT",
"urls": [
@@ -6529,7 +6972,7 @@
"dweb:/ipfs/QmTm34KVe6uZBZwq8dZDNWwPcm24qBJdxqL3rPxBJ4LrMv"
]
},
- "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol": {
+ "@openzeppelin/contracts-v4/utils/cryptography/MerkleProof.sol": {
"keccak256": "0xcf688741f79f4838d5301dcf72d0af9eff11bbab6ab0bb112ad144c7fb672dac",
"license": "MIT",
"urls": [
@@ -6537,7 +6980,7 @@
"dweb:/ipfs/QmR7m1zWQNfZHUKTtqnjoCjCBbNFcjCxV27rxf6iMfhVtG"
]
},
- "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol": {
+ "@openzeppelin/contracts-v4/utils/cryptography/SignatureChecker.sol": {
"keccak256": "0x3af3ca86df39aac39a0514c84459d691434a108d2151c8ce9d69f32e315cab80",
"license": "MIT",
"urls": [
@@ -6545,7 +6988,7 @@
"dweb:/ipfs/QmT6ZXStmK3Knhh9BokeVHQ9HXTBZNgL3Eb1ar1cYg1hWy"
]
},
- "@openzeppelin/contracts/utils/math/Math.sol": {
+ "@openzeppelin/contracts-v4/utils/math/Math.sol": {
"keccak256": "0xe4455ac1eb7fc497bb7402579e7b4d64d928b846fce7d2b6fde06d366f21c2b3",
"license": "MIT",
"urls": [
@@ -6553,7 +6996,7 @@
"dweb:/ipfs/QmSqE4mXHA2BXW58deDbXE8MTcsL5JSKNDbm23sVQxRLPS"
]
},
- "@openzeppelin/contracts/utils/math/SignedMath.sol": {
+ "@openzeppelin/contracts-v4/utils/math/SignedMath.sol": {
"keccak256": "0xf92515413956f529d95977adc9b0567d583c6203fc31ab1c23824c35187e3ddc",
"license": "MIT",
"urls": [
@@ -6562,35 +7005,35 @@
]
},
"contracts/Lens_SpokePool.sol": {
- "keccak256": "0xb640a9a72c7822484945e2e511e285549dca9e7cb031d1c580c1778cd864d37a",
+ "keccak256": "0xf614edc9b94a12c50415fa22cd98bc315d2d670d4a7f21ab633049221dc4a20b",
"license": "BUSL-1.1",
"urls": [
- "bzz-raw://96e990c2f52d47238464beacbeb50a499119eac78395157dcd19736a4e509c3e",
- "dweb:/ipfs/QmNfKT3UAXpCd1FUhFzLr7v8rQRA8uxPj6wmsmPiE4JtJn"
+ "bzz-raw://bea5fee4b991920ec4a556e2b22d74ff6d123ff1c275ef9f84e0d05d3bf4d8fc",
+ "dweb:/ipfs/Qma4pAi8S8nRboU1vzRLxEGh12pV17J6ETv7sZssgEHdC7"
]
},
"contracts/MerkleLib.sol": {
- "keccak256": "0xdaf19fdc82593b79a608af8f691aec89a3c0e47b210770deabbe66ece7c35bb1",
+ "keccak256": "0xd1842fc6092305350938b2bed201b84f18efb587c503500123387840fd35b197",
"license": "BUSL-1.1",
"urls": [
- "bzz-raw://03c37f78657beed37257187e237d74492de0199734aa03272a419f66161c0dca",
- "dweb:/ipfs/QmdcXMAoRLZejhh2xcVMWR3WfUvXcArKrCFEE82JDYiJbh"
+ "bzz-raw://0ae89f19dee6b25c87204999b91ebc8cadc5a893927d0f8f5cc0770247694bd0",
+ "dweb:/ipfs/Qmf4CW4Xqe1tueEXNVcBREJewWJ1zgDQovgz2NwRAfTgWz"
]
},
"contracts/SpokePool.sol": {
- "keccak256": "0xc3ef7fff0c2985702bfd44a22f6b3b8b7e6150d37dd3e1db1bc966e892d629a9",
+ "keccak256": "0x21e75d08601d3522f0e6d675360f27eb29759c107fbffe116b7e022b047c4c39",
"license": "BUSL-1.1",
"urls": [
- "bzz-raw://be57513109cc0282ca1c307188c1b03595d547d66ced6d64cdc9040f19171f2a",
- "dweb:/ipfs/QmcoNGPYJk6e24Ma5T5wPaz2nXtPxqd1WQHjfXUXVHKegX"
+ "bzz-raw://418cf413af2501e636edbdafa80289b9de481f0f4c632f276856ff5fc1fcb8eb",
+ "dweb:/ipfs/QmauPa3gWpNbPyaZg5got1zFmNFMoecvoSZvxq84bJ9ceA"
]
},
"contracts/ZkSync_SpokePool.sol": {
- "keccak256": "0xe86d3ce365ff1ffdf87b61da1ee16ea53d7fc892f9cdbf04c3a3c694552824e8",
+ "keccak256": "0x02fca25dd165333422ba113d49a6ebac34e6e84e67fe780e0c154cc2e125bfa6",
"license": "BUSL-1.1",
"urls": [
- "bzz-raw://caa7c48ac41c64bb9119d33b9fb2e91bdada9da2fb560814874a4ea6e513c563",
- "dweb:/ipfs/QmewtiaBdzxEJ3jpsmAGdUi6fnq2sHavRaBwyBYGUCMmLu"
+ "bzz-raw://38728695269acb02bffdead20255e335aca5672c64ad0a89dec823bc83f02b86",
+ "dweb:/ipfs/QmRwZWe8nTjdV8RWjHAUo6VQ8ynkDBq69Y4t6GfDNVGWTV"
]
},
"contracts/erc7683/ERC7683.sol": {
@@ -6618,11 +7061,11 @@
]
},
"contracts/external/interfaces/IPermit2.sol": {
- "keccak256": "0x68f40961ee44fbc71eff2037f2c88ba9bfbccf35b9b1eae5a527b71d19bf3a71",
+ "keccak256": "0x7c6a2087606df8c70ab1585b69d3f155e2301e274d5a056b3b7e2402929cff33",
"license": "MIT",
"urls": [
- "bzz-raw://2281f309f1b0df4d1c9beeeaa2673152c73e6e20991438420a9de18c51269ea7",
- "dweb:/ipfs/QmafDC3g5yBqPvSof5FmGKv4gMR3TXT5Xj3tULDA5CKmaE"
+ "bzz-raw://da44d21b12562dbad1e24192868ac196d10cdbe9a3d443fa58c1230e31a34ecc",
+ "dweb:/ipfs/Qmb5i46saxwcyyPW15tCUcqVn61vKVzVo8P7uZZ2mtMMjt"
]
},
"contracts/external/interfaces/WETH9Interface.sol": {
@@ -6634,19 +7077,27 @@
]
},
"contracts/interfaces/HubPoolInterface.sol": {
- "keccak256": "0xd8cfdded5db9bf29099e91abd8c8992b4deba1a22d4ffaed94c43ff3d47dcf33",
+ "keccak256": "0x94f2b1fdaeb4d557beca9fa86466e0bb74b1744357c318a8bea506e4c5fb5823",
"license": "MIT",
"urls": [
- "bzz-raw://aeefb0b7816fbfe2f63968f34726155d30b0428558df9a20f839042795b24c82",
- "dweb:/ipfs/QmT5uYJenMLkiBEWtzdEZ4SnsysAhQ9uyHdx3pKNU1gyVy"
+ "bzz-raw://7bd7b3b3c100edf48e461306117a2659fb068c3ce1eccdfe96f615521423c6c0",
+ "dweb:/ipfs/QmSRAxJFmVfYAWYw9W4VGUoxu6B3qX12UAJUgQREdfGJt1"
+ ]
+ },
+ "contracts/interfaces/IOFT.sol": {
+ "keccak256": "0x9c32621db83fa983cdc964eec1cd8ee07f98f40aca4d799abe953df620cf1994",
+ "license": "BUSL-1.1",
+ "urls": [
+ "bzz-raw://85219ca7bd16d067c3aae102aa19445fb6749725e562fd5b8fea76fcedc72266",
+ "dweb:/ipfs/QmdDsPMhcyEbhLjzamDEyAyTgvP3CQDBtH1g8CkPLHAMU2"
]
},
"contracts/interfaces/SpokePoolInterface.sol": {
- "keccak256": "0x67734f330d9b5eb5f7ea7f9f32d2d1cc107879154e9c9424623c6df1709b48e0",
+ "keccak256": "0xd6f689f4aa7b8f9591aa3ee3e228eb0e768f106aad1a4dda3f00eb92376cc9d1",
"license": "MIT",
"urls": [
- "bzz-raw://d80f8ef8f10046624d7ab588538f041bab0c18e475e90b287505d5feae52578f",
- "dweb:/ipfs/QmS7QbHqygik4H6BSm1Cvypx8cWB6QxoHSPZ3FAVDkgYQj"
+ "bzz-raw://d7305d11d78e3aa314451afcd776c33aece89c801c552b5aff3af0e3a5826574",
+ "dweb:/ipfs/QmdKx4XdXcEp4jmJEBQKeexwVnBTaPLa6QvHCmPowYw9JQ"
]
},
"contracts/interfaces/SpokePoolMessageHandler.sol": {
@@ -6674,11 +7125,11 @@
]
},
"contracts/libraries/CircleCCTPAdapter.sol": {
- "keccak256": "0x5007254d87c41857f737ddee8b06ef5838182acf6c593f8cc7ced972e03feecb",
+ "keccak256": "0x3eba540f2b9ec65544546ed337cb3e167d6bbf4967016fdb63ab40b4e613c965",
"license": "BUSL-1.1",
"urls": [
- "bzz-raw://6559694d840b3fdbef6da3079478e0ffc168fef81a568633ecb2b9fb860caf34",
- "dweb:/ipfs/QmNnnB5pr745DFZTfDsFSq3BJi2DooaRM8f31qGwXNjLrb"
+ "bzz-raw://7cbaa654c56d98912b0d3f51d5d9c27a7c0462cc79774c05578280344bbda531",
+ "dweb:/ipfs/QmatVR2hNbimHwNeU391X6LRG1MfYLasuxJHfTndJiimXn"
]
},
"contracts/libraries/CrossDomainAddressUtils.sol": {
@@ -6689,37 +7140,45 @@
"dweb:/ipfs/QmajkTu7x5UzzGKr31ZRjhHKAFLge4rxiRWkjuJpQYaYV5"
]
},
+ "contracts/libraries/OFTTransportAdapter.sol": {
+ "keccak256": "0x113bc1d94c8877542496fd057c163963fe589613f584c04f4f9fb743c1f69d81",
+ "license": "BUSL-1.1",
+ "urls": [
+ "bzz-raw://a0fc1131d28847fce763c01a10e0cf154adf259dfb06a72b2f03e9b167400c99",
+ "dweb:/ipfs/QmXjJGoqEE3jqqcMJ68mwUm7fVHA14fG3G39FrjRc9PnUU"
+ ]
+ },
"contracts/upgradeable/AddressLibUpgradeable.sol": {
- "keccak256": "0x655040da45a857cf609d7176c7b0647bf76d36e73e856af79d511014c7e8ef81",
+ "keccak256": "0x9509e139e9fce6ab70e242314424754cb0543d450877892a2c82789cb8e81574",
"license": "MIT",
"urls": [
- "bzz-raw://5c17767f34d57380767b49f8584d62598964fc813e6f3587d76b51ec2357bb4e",
- "dweb:/ipfs/QmSyoTa1Snn3KiJD7KjCwsPmNqpJzusXterbEXxbYCZoJK"
+ "bzz-raw://e31859d9c6240635d443247f84ee934a1a4f64d9f109d243522053bccf3be1aa",
+ "dweb:/ipfs/QmUC67udW4a8rdNn7cjR3B7VYiToK2nyxeQrMzEZteLWqk"
]
},
"contracts/upgradeable/EIP712CrossChainUpgradeable.sol": {
- "keccak256": "0xff617722706d1c0a6d346e56e4598cc5f60adea99b4ac1d2347dcd69270a14f6",
+ "keccak256": "0x0bf31fb2767fc6a135d5bfdf7458a08a4847feb68c69036a1d077da2c562ad63",
"license": "BUSL-1.1",
"urls": [
- "bzz-raw://e2d04649c09bad766c5632da2e3a4f1deed1e013e8b713fad1f101e06f4b56a3",
- "dweb:/ipfs/QmfCewdTDr2krzvNY5rH5BprngEtBmxPXCZf6JKavxw2Sb"
+ "bzz-raw://4c203db01a7e6199863837bf895caa52970cad1de167443e3df231d647c7d951",
+ "dweb:/ipfs/QmTppC2GRVJLHHg1uz3WPACr6LbEAErdW8Dj3M1AgD9gG6"
]
},
"contracts/upgradeable/MultiCallerUpgradeable.sol": {
- "keccak256": "0xc1378a7d63785d9381b8fb6e42962499ab26a243292e20981c2792511a4697f3",
+ "keccak256": "0x88ea9c08255277034a2823e8366534c4f0d2a58138ab0dd561f438537dbb9ab9",
"license": "BUSL-1.1",
"urls": [
- "bzz-raw://2ec8d733e528d6e79732409eb04aa5f8a8bcdf5888e677919a07d8b84afb1598",
- "dweb:/ipfs/QmQF23Gf9vHb6Ne6kaEZmQTjobWzasEWWr5YaBFkuEypz4"
+ "bzz-raw://d632736fc39ea8dc0cd7a3e46101f3c85c377bbf4241b179cdf9d6e228344709",
+ "dweb:/ipfs/QmXTYv3c8b9YHeBkoAeeQzriAEfMUEou9Uyh9iA8v4xqMZ"
]
}
},
"version": 1
},
- "zk_version": "1.5.7"
+ "zk_version": "1.5.15"
},
- "bytecode": "0x0004000000000002002b000000000002000000000501034f000000600110027000000da90010019d00000da9041001970003000000450355000200000005035500000001002001900000016c0000c13d0000008001000039000000400010043f000000040040008c000001da0000413d000000000145034f000000000205043b000000e00320027000000db90030009c000001de0000213d00000de50030009c000001f10000213d00000dfb0030009c000002ba0000a13d00000dfc0030009c000007e40000213d00000e020030009c00000c550000213d00000e050030009c000012670000613d00000e060030009c00001d100000c13d000000440040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b00000db50010009c00001d100000213d0000000402100039000000000a24004900000e2800a0009c00001d100000213d0000018000a0008c00001d100000413d000000000125034f000000000101043b00000dac0010009c00001d100000213d0000002006200039000000000365034f000000000303043b00000dac0030009c00001d100000213d0000002007600039000000000675034f000000000606043b00000dac0060009c00001d100000213d0000002007700039000000000875034f000000000808043b00000dac0080009c00001d100000213d0000002007700039000000000975034f000000000b09043b00000dac00b0009c00001d100000213d0000008009700039000000000795034f000000000707043b00000da90070009c00001d100000213d000000200c9000390000000009c5034f000000000909043b00000da90090009c00001d100000213d000000200dc00039000000000cd5034f000000000c0c043b00120000000c001d00000da900c0009c00001d100000213d0011002000d0003d000000110e500360000000000e0e043b0000001f0aa0008a00000e3d0fe0019700000e3d0da00197000000000cdf013f0000000000df004b000000000d00001900000e3d0d0040410000000000ae004b000000000a00001900000e3d0a00804100000e3d00c0009c000000000d0ac01900000000000d004b00001d100000c13d000000000a2e00190000000002a5034f000000000202043b00000db50020009c00001d100000213d000000000c240049000000200ea0003900000e3d0ac0019700000e3d0de00197000000000fad013f0000000000ad004b000000000a00001900000e3d0a0040410000000000ce004b000000000c00001900000e3d0c00204100000e3d00f0009c000000000a0cc01900000000000a004b00001d100000c13d000002000a0000390000004000a0043f000000800010043f000000a00030043f000000c00060043f000000e00080043f0000010000b0043f0000001103000029000000c00130008a000000000115034f000000000101043b000001200010043f000000a00130008a000000000115034f000000800330008a000000000335034f000000000101043b000001400010043f0000001f0120003900000ea6011001970000003f0110003900000ea601100197000000000303043b000001600030043f000001800070043f000001a00090043f0000001203000029000001c00030043f00000e290010009c00001f7f0000213d0000020001100039000000400010043f000002000020043f0000000001e20019000000000041004b00001d100000213d0000000003e5034f00000ea6042001980000001f0620018f0000022001400039000000aa0000613d0000022007000039000000000803034f000000008908043c0000000007970436000000000017004b000000a60000c13d000000000006004b000000b70000613d000000000343034f0000000304600210000000000601043300000000064601cf000000000646022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000363019f000000000031043500000220012000390000000000010435000001e000a0043f0000002401500370000000000101043b001200000001001d0000006501000039000000000101041a000000020010008c000019c60000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000e2a0010019800001c0e0000c13d000001c00100043d001100000001001d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000110200002900000da902200197000000000101043b00000da901100197000000000012004b000000e10000413d000000c00100043d00000dac0010009c0000239b0000213d0000000002000411000000000021004b00001cd40000c13d000000400400043d00000020024000390000004001000039000f00000002001d00000000001204350000006001400039000000800200043d00000000002104350000008001400039000000a00200043d0000000000210435000000a001400039000000c00200043d0000000000210435000000c001400039000000e00200043d0000000000210435000000e001400039000001000200043d00000000002104350000010001400039000001200200043d00000000002104350000012001400039000001400200043d00000000002104350000014001400039000001600200043d00000000002104350000016001400039000001800200043d0000000000210435000001a00100043d00000da90110019700000180024000390000000000120435000001c00100043d00000da901100197000001a0024000390000000000120435000001c0014000390000018002000039000001e00300043d0000000000210435000001e00240003900000000160304340000000000620435001100000004001d0000020002400039000000000006004b0000011c0000613d000000000300001900000000042300190000000005310019000000000505043300000000005404350000002003300039000000000063004b000001150000413d001000000006001d0000000001260019000000000001043500000e30010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b00000011040000290000004002400039000000000012043500000010010000290000001f0110003900000ea601100197000001e00210003900000000002404350000021f0110003900000ea6021001970000000001420019000000000021004b0000000002000039000000010200403900000db50010009c00001f7f0000213d000000010020019000001f7f0000c13d000000400010043f0000000f0100002900000da90010009c00000da90100804100000040011002100000001102000029000000000202043300000da90020009c00000da9020080410000006002200210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000301034f000000400100043d00000e470010009c00001f7f0000213d000000000203043b000000c003100039000001400400043d000000a00500043d000001e00600043d000000400030043f000000a0031000390000001207000029000000000073043500000080031000390000000000630435000000600310003900000000005304350000004003100039000000000043043500000020031000390000000000230435000000800200003900000000002104350000000002000411369f30760000040f000012990000013d000001a002000039000000400020043f0000000001000416000000000001004b00001d100000c13d0000001f0140003900000daa01100197000001a001100039000000400010043f0000001f0340018f00000dab06400198000001a0016000390000017e0000613d000000000705034f000000007807043c0000000002820436000000000012004b0000017a0000c13d000000000003004b0000018b0000613d000000000265034f0000000303300210000000000501043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f0000000000210435000000c00040008c00001d100000413d000001a00100043d00000dac0010009c00001d100000213d000001c00500043d00000dac0050009c00001d100000213d000001e00200043d001200000002001d00000dac0020009c00001d100000213d000002000200043d001100000002001d00000dac0020009c00001d100000213d000002200200043d00000da90020009c00001d100000213d000002400300043d00000da90030009c00001d100000213d00000dac011001970000000004000410000000800040043f000000a00010043f000000c00020043f000000e00030043f000000000100041a0000ff00001001900000163d0000c13d000000ff0210018f000000ff0020008c001000000005001d000001c30000613d000000ff011001bf000000000010041b000000ff01000039000000400200043d000000000012043500000da90020009c00000da9020080410000004001200210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000db1011001c70000800d02000039000000010300003900000db204000041369f36900000040f0000001005000029000000010020019000001d100000613d000001200050043f0000001101000029000001400010043f000001000000043f0000000401000039000000400400043d000000000114043600000db303000041000000000031043500000db40040009c00001f7f0000213d000000110200002900000dac022001970000004003400039000000400030043f00000000030404330000000004000414000000040020008c001100000002001d000016a90000c13d00000001020000390000000104000031000016ba0000013d000000000004004b00001d100000c13d0000000001000019000036a00001042e00000dba0030009c000001fc0000213d00000dd00030009c000002cd0000a13d00000dd10030009c000008140000213d00000dd70030009c00000c7a0000213d00000dda0030009c000012710000613d00000ddb0030009c00001d100000c13d0000000001000416000000000001004b00001d100000c13d0000086b01000039000000000101041a000000c001100270000014440000013d00000de60030009c0000066c0000a13d00000de70030009c000008200000213d00000ded0030009c00000cb70000213d00000df00030009c0000127e0000613d00000df10030009c00000ee40000613d00001d100000013d00000dbb0030009c000007ce0000a13d00000dbc0030009c000009420000213d00000dc20030009c00000ce60000213d00000dc50030009c000012850000613d00000dc60030009c00001d100000c13d000000640040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b00000db50010009c00001d100000213d0000000402100039000000000124004900000e280010009c00001d100000213d000001800010008c00001d100000413d0000020001000039000000400010043f000000000325034f000000000303043b000000800030043f0000002003200039000000000335034f000000000303043b000000a00030043f0000004003200039000000000335034f000000000303043b000000c00030043f0000006003200039000000000335034f000000000303043b000000e00030043f0000008003200039000000000335034f000000000303043b000001000030043f000000a003200039000000000335034f000000000303043b000001200030043f000000c003200039000000000335034f000000000303043b000001400030043f000000e003200039000000000335034f000000000303043b000001600030043f0000010003200039000000000335034f000000000303043b000001800030043f0000012003200039000000000635034f000000000606043b00000da90060009c00001d100000213d000001a00060043f0000002003300039000000000635034f000000000606043b00000da90060009c00001d100000213d000001c00060043f0000002003300039000000000335034f000000000303043b00000db50030009c00001d100000213d00000000032300190000001f02300039000000000042004b00001d100000813d000000000235034f000000000202043b00000db50020009c00001f7f0000213d0000001f0720003900000ea6077001970000003f0770003900000ea60770019700000e290070009c00001f7f0000213d00000020033000390000020007700039000000400070043f000002000020043f0000000007320019000000000047004b00001d100000213d000000000435034f00000ea6052001980000001f0620018f00000220035000390000026b0000613d0000022007000039000000000804034f000000008908043c0000000007970436000000000037004b000002670000c13d000000000006004b000002780000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f000000000043043500000220022000390000000000020435000001e00010043f0000006501000039000000000101041a000000020010008c000019c60000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000e2a0010019800001c0e0000c13d000001c00100043d001200000001001d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000120200002900000da902200197000000000101043b00000da901100197000000000012004b00001cc40000813d0000008001000039369f2dff0000040f001200000001001d000001400100043d001100000001001d000000a00100043d001000000001001d000001e00100043d000f00000001001d369f2a860000040f00000080021000390000000f0300002900000000003204350000006002100039000000100300002900000000003204350000004002100039000000110300002900000000003204350000002002100039000000120300002900000000003204350000008002000039000000000021043500000002020003670000002403200370000000000303043b000000a00410003900000000003404350000004402200370000000000202043b369f30760000040f000012990000013d00000e070030009c000009600000a13d00000e080030009c00000a930000213d00000e0b0030009c00000ee40000613d00000e0c0030009c00001d100000c13d0000000001000416000000000001004b00001d100000c13d0000000001000412002600000001001d002500200000003d000080050100003900000044030000390000000004000415000000260440008a000012b20000013d00000ddc0030009c000009710000a13d00000ddd0030009c00000c100000213d00000de00030009c00000eea0000613d00000de10030009c00001d100000c13d000000e40040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b001200000001001d00000db50010009c00001d100000213d0000001201000029001100040010003d000000110140006a00000e280010009c00001d100000213d000001800010008c00001d100000413d000000a401500370000000000101043b00000db50010009c00001d100000213d0000002302100039000000000042004b00001d100000813d0000000402100039000000000225034f000000000202043b001000000002001d00000db50020009c00001d100000213d0000002402100039000f00000002001d000e00100020002d0000000e0040006b00001d100000213d000000c401500370000000000101043b00000db50010009c00001d100000213d0000002302100039000000000042004b00001d100000813d0000000402100039000000000225034f000000000202043b000d00000002001d00000db50020009c00001d100000213d0000002402100039000c00000002001d000b000d0020002d0000000b0040006b00001d100000213d0000002401500370000000000101043b000700000001001d0000004401500370000000000101043b000a00000001001d0000006401500370000000000101043b000900000001001d0000008401500370000000000101043b000800000001001d0000006501000039000000000101041a000000020010008c000013620000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000e2a00100198000017420000c13d0000001201000029000501440010003d0000000501500360000000000101043b000600000001001d00000da90010009c00001d100000213d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b00000da901100197000000060010006b00001ccb0000813d000000000c0000310000001101c0006a00000e280010009c00001d100000213d000001800010008c00001d100000413d000000400100043d00000e460010009c00001f7f0000213d0000018002100039000000400020043f000000050b0000290000014002b0008a000000020d00036700000000022d034f000000000202043b00000000022104360000012003b0008a00000000033d034f000000000303043b00000000003204350000010003b0008a00000000033d034f000000000403043b00000040031000390000000000430435000000e004b0008a00000000044d034f000000000504043b00000060041000390000000000540435000000c005b0008a00000000055d034f000000000605043b00000080051000390000000000650435000000a006b0008a00000000066d034f000000000706043b000000a00610003900000000007604350000008007b0008a00000000077d034f000000000807043b000000c00710003900000000008704350000006008b0008a00000000088d034f000000000908043b000000e00810003900000000009804350000004009b0008a000000000a9d034f0000010009100039000000000a0a043b0000000000a90435000000200bb0008a000000000abd034f000000000e0a043b00000da900e0009c00001d100000213d000001200a10003900120000000a001d0000000000ea0435000000200eb00039000000000bed034f000000000f0b043b00000da900f0009c00001d100000213d000001400a10003900060000000a001d0000000000fa0435000000200ee00039000000000eed034f000000000e0e043b00000db500e0009c00001d100000213d000000110ae0002900050000000a001d0000001f0ea000390000000000ce004b000000000b00001900000e3d0b00804100000e3d0ee0019700000e3d0fc00197000000000afe013f0000000000fe004b000000000e00001900000e3d0e00404100000e3d00a0009c000000000e0bc01900000000000e004b00001d100000c13d000000050ad00360000000000a0a043b00000db500a0009c00001f7f0000213d000000000f0a00190000001f0aa0003900000ea60aa001970000003f0aa0003900000ea60aa00197000000400b00043d000000000eab001900040000000b001d0000000000be004b000000000a000039000000010a00403900000db500e0009c00001f7f0000213d0000000100a0019000001f7f0000c13d000000050a000029000000200ba000390000004000e0043f000000040e000029000000000efe043600050000000e001d000000000abf00190000000000ca004b00001d100000213d0002000000bd035300000ea60bf001980003001f00f00193000000050cb00029000003bb0000613d000000020e00035f000000050d00002900000000ea0e043c000000000dad04360000000000cd004b000003b70000c13d000000030000006b000003c90000613d000000020ab0035f000000030b000029000000030bb00210000000000d0c0433000000000dbd01cf000000000dbd022f000000000a0a043b000001000bb00089000000000aba022f000000000aba01cf000000000ada019f0000000000ac0435000000050af0002900000000000a0435000001600c100039000000040a0000290000000000ac0435000000400b00043d000000200db00039000000400a00003900050000000d001d0000000000ad04350000000001010433000000600ab0003900000000001a043500000000010204330000008002b0003900000000001204350000000001030433000000a002b0003900000000001204350000000001040433000000c002b0003900000000001204350000000001050433000000e002b00039000000000012043500000000010604330000010002b00039000000000012043500000000010704330000012002b00039000000000012043500000000010804330000014002b00039000000000012043500000000010904330000016002b0003900000000001204350000001201000029000000000101043300000da9011001970000018002b0003900000000001204350000000601000029000000000101043300000da901100197000001a002b00039000000000012043500000000010c0433000001c002b0003900000180030000390000000000320435000001e002b000390000000016010434000000000062043500120000000b001d0000020002b00039000000000006004b0000040b0000613d000000000300001900000000042300190000000005310019000000000505043300000000005404350000002003300039000000000063004b000004040000413d000600000006001d0000000001260019000000000001043500000e30010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b00000012040000290000004002400039000000000012043500000006010000290000001f0110003900000ea601100197000001e00210003900000000002404350000021f0110003900000ea6021001970000000001420019000000000021004b0000000002000039000000010200403900000db50010009c00001f7f0000213d000000010020019000001f7f0000c13d000000400010043f000000050100002900000da90010009c00000da90100804100000040011002100000001202000029000000000202043300000da90020009c00000da9020080410000006002200210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000301043b000000400100043d001200000001001d00000e470010009c00001f7f0000213d0000001201000029000000c004100039000000400040043f0000000001000031000000110210006a00000e280020009c00001d100000213d000001800020008c00001d100000413d000000120200002900000e480020009c00001f7f0000213d00000012070000290000024002700039000000400020043f00000002020003670000001108000029000000000582034f000000000505043b000600000005001d00000000005404350000002005800039000000000552034f000000000505043b000000e00670003900000000005604350000004005800039000000000552034f000000000505043b000001000670003900000000005604350000006005800039000000000552034f000000000505043b000001200670003900000000005604350000008005800039000000000552034f000000000505043b00000140067000390000000000560435000000a005800039000000000552034f000000000505043b00000160067000390000000000560435000000c005800039000000000552034f000000000505043b00000180067000390000000000560435000000e005800039000000000552034f000000000605043b000001a005700039000500000006001d00000000006504350000010005800039000000000552034f000001c006700039000000000505043b000400000005001d00000000005604350000012005800039000000000652034f000000000606043b00000da90060009c00001d100000213d0000001207000029000001e00770003900000000006704350000002005500039000000000652034f000000000606043b00000da90060009c00001d100000213d0000001207000029000002000770003900000000006704350000002005500039000000000552034f000000000505043b00000db50050009c00001d100000213d00000011075000290000001f05700039000000000015004b000000000600001900000e3d0600804100000e3d0550019700000e3d08100197000000000985013f000000000085004b000000000500001900000e3d0500404100000e3d0090009c000000000506c019000000000005004b00001d100000c13d000000000572034f000000000605043b00000db50060009c00001f7f0000213d0000001f0560003900000ea6055001970000003f0550003900000ea608500197000000400500043d0000000008850019000000000058004b0000000009000039000000010900403900000db50080009c00001f7f0000213d000000010090019000001f7f0000c13d0000002009700039000000400080043f00000000076504360000000008960019000000000018004b00001d100000213d000000000992034f00000ea60a6001980000001f0b60018f0000000008a70019000004cb0000613d000000000c09034f000000000d07001900000000ce0c043c000000000ded043600000000008d004b000004c70000c13d00000000000b004b000004d80000613d0000000009a9034f000000030ab00210000000000b080433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f00000000009804350000000006670019000000000006043500000012070000290000006006700039000000080800002900000000008604350000004006700039000000090800002900000000008604350000002006700039000000000036043500000000004704350000022003700039000000000053043500000010030000290000001f0330003900000ea6033001970000003f0330003900000ea604300197000000400300043d0000000005430019000000000035004b0000000006000039000000010600403900000db50050009c00001f7f0000213d000000010060019000001f7f0000c13d000000400050043f000000100500002900000000075304360000000e0010006b00001d100000213d0000000f05200360000000100800002900000ea6098001980000001f0680018f000000000a970019000005040000613d000000000805034f000000008b08043c0000000007b704360000000000a7004b000005000000c13d000000000006004b000000000795034f0000000308600210000005110000613d000000000b0a0433000000000b8b01cf000000000b8b022f000000000c07043b000001000d800089000000000cdc022f000000000cdc01cf000000000bbc019f0000000000ba0435000000100a000029000000200aa00039000000000ba3001900000000000b0435000000120c000029000000a00bc00039000000070d0000290000000000db0435000000800bc0003900000000003b0435000000060300002900000dac0030009c0000239b0000213d000000400300043d0000000004430019000000000034004b000000000b000039000000010b00403900000db50040009c00001f7f0000213d0000000100b0019000001f7f0000c13d000000400040043f00000010040000290000000004430436000000000b940019000000000009004b000005320000613d0000000009040019000000005c05043c0000000009c904360000000000b9004b0000052e0000c13d000000000006004b0000053d0000613d00000000050b043300000000058501cf000000000585022f000000000607043b0000010007800089000000000676022f00000000067601cf000000000556019f00000000005b04350000000005a3001900000000000504350000000d050000290000001f0550003900000ea6055001970000003f0550003900000ea605500197000000400600043d0000000005560019001000000006001d000000000065004b0000000006000039000000010600403900000db50050009c00001f7f0000213d000000010060019000001f7f0000c13d000000400050043f0000000d0500002900000010060000290000000005560436001100000005001d0000000b0010006b00001d100000213d0000000c022003600000000d0600002900000ea6056001980000001f0660018f0000001101500029000005610000613d000000000702034f0000001108000029000000007907043c0000000008980436000000000018004b0000055d0000c13d000000000006004b0000056e0000613d000000000252034f0000000305600210000000000601043300000000065601cf000000000656022f000000000202043b0000010005500089000000000252022f00000000025201cf000000000262019f000000000021043500000011020000290000000d01200029000000000001043500000da90040009c00000da9040080410000004001400210000000000203043300000da90020009c00000da9020080410000006002200210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000201043b000000400100043d000000c0031000390000000000230435000000a00210003900000008030000290000000000320435000000800210003900000009030000290000000000320435000000600210003900000005030000290000000000320435000000400210003900000004030000290000000000320435000000200210003900000e32030000410000000000320435000000c003000039000000000031043500000e330010009c00001f7f0000213d000000e003100039000000400030043f00000da90020009c00000da9020080410000004002200210000000000101043300000da90010009c00000da9010080410000006001100210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000e00000001001d0000047f01000039000000000201041a0000048001000039000000000301041a000000400100043d0000008004100039000000050500002900000000005404350000006004100039000000000034043500000040031000390000000000230435000000200210003900000e340300004100000000003204350000008003000039000f00000003001d000000000031043500000e350010009c00001f7f0000213d000000a003100039000000400030043f00000da90020009c00000da9020080410000004002200210000000000101043300000da90010009c00000da9010080410000006001100210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000400200043d00000022032000390000000e04000029000000000043043500000e360300004100000000003204350000000203200039000000000013043500000da90020009c00000da9020080410000004001200210000000000200041400000da90020009c00000da902008041000000c002200210000000000121019f00000e37011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000e00000001001d00000010010000290000000001010433000000410010008c0000063a0000c13d00000010010000290000004001100039000000000101043300000e380010009c0000063a0000213d00000010020000290000006002200039000000000202043300000011030000290000000003030433000000400400043d0000006005400039000000000015043500000040014000390000000000310435000000f801200270000000200240003900000000001204350000000e010000290000000000140435000000000000043f00000da90040009c00000da9040080410000004001400210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e39011001c70000000102000039369f36950000040f000000600310027000000da903300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000006220000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000061e0000c13d000000000005004b0000062f0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f000300000001035500000001002001900000264e0000613d000000000100043d00000dac0010019800000000010060190000063a0000613d000000060110014f00000dac001001980000276a0000613d000000400200043d000000440120003900000040030000390000000000310435000000200120003900000e3a03000041000000000031043500000024032000390000000e04000029000000000043043500000010030000290000000003030433000000640420003900000000003404350000008404200039000000000003004b000006530000613d000000000500001900000000064500190000001107500029000000000707043300000000007604350000002005500039000000000035004b0000064c0000413d000000000443001900000000000404350000001f0330003900000ea60330019700000064043000390000000000420435000000a30330003900000ea6043001970000000003240019000000000043004b0000000004000039000000010400403900000db50030009c00001f7f0000213d000000010040019000001f7f0000c13d000000400030043f000000000302043300000000020004140000000604000029000000040040008c0000265a0000c13d000000010200003900000001030000310000266c0000013d00000df20030009c00000a530000a13d00000df30030009c00000c3f0000213d000000000f05034f00000df60030009c00000ef50000613d00000df70030009c00001d100000c13d000000c40040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401f00370000000000101043b001200000001001d00000dac0010009c00001d100000213d0000004401f00370000000000101043b001000000001001d0000002401f00370000000000101043b001100000001001d0000006401f00370000000000101043b000f00000001001d00000dac0010009c00001d100000213d0000008401f00370000000000101043b00000db50010009c00001d100000213d0000002302100039000000000042004b00001d100000813d000000040210003900000000032f034f000000000303043b000e00000003001d00000db50030009c00001d100000213d0000002403100039000d00000003001d0000000e01300029000000000041004b00001d100000213d000000a401f00370000000000301043b00000db50030009c00001d100000213d0000002301300039000000000041004b00001d100000813d000000040130003900000000061f034f000000000606043b000c00000006001d00000db50060009c00001d100000213d0000002406300039000b00000006001d0000000c03600029000000000043004b00001d100000213d0000000e030000290000001f0330003900000ea603300197000900000003001d0000003f0330003900000ea60330019700000e2f0030009c00001f7f0000213d0000008003300039000000400030043f000000200220003900000000032f034f0000000e02000029000000800020043f00000ea604200198000a001f00200193000700000004001d000000a002400039000006c70000613d000000a004000039000000000603034f000000006706043c0000000004740436000000000024004b000006c30000c13d0000000a0000006b000006d50000613d00000007033003600000000a040000290000000304400210000000000602043300000000064601cf000000000646022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000363019f00000000003204350000000e02000029000000a00220003900000000000204350000000c020000290000001f0220003900000ea602200197000400000002001d0000003f0220003900000ea602200197000000400300043d0000000002230019000800000003001d000000000032004b0000000003000039000000010300403900000db50020009c00001f7f0000213d000000010030019000001f7f0000c13d000000400020043f000000200110003900000000021f034f0000000c010000290000000803000029000000000413043600000ea6031001980005001f00100193000300000003001d000600000004001d0000000001340019000006fa0000613d000000000302034f0000000604000029000000003503043c0000000004540436000000000014004b000006f60000c13d000000050000006b000007080000613d000000030220036000000005030000290000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f000000000021043500000006020000290000000c01200029000000000001043500000e30010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b000200000001001d000000800100043d00000da90010009c00000da9010080410000006001100210000000000200041400000da90020009c00000da902008041000000c002200210000000000121019f00000e31011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000201043b000000400100043d000000c0031000390000000000230435000000a0021000390000000f030000290000000000320435000000800210003900000010030000290000000000320435000000600210003900000002030000290000000000320435000000400210003900000011030000290000000000320435000000200210003900000e32030000410000000000320435000000c003000039000000000031043500000e330010009c00001f7f0000213d000000e003100039000000400030043f00000da90020009c00000da9020080410000004002200210000000000101043300000da90010009c00000da9010080410000006001100210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000100000001001d0000047f01000039000000000201041a0000048001000039000000000301041a000000400100043d0000008004100039000000020500002900000000005404350000006004100039000000000034043500000040031000390000000000230435000000200210003900000e340300004100000000003204350000008003000039000000000031043500000e350010009c00001f7f0000213d000000a003100039000000400030043f00000da90020009c00000da9020080410000004002200210000000000101043300000da90010009c00000da9010080410000006001100210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000400200043d00000022032000390000000104000029000000000043043500000e360300004100000000003204350000000203200039000000000013043500000da90020009c00000da9020080410000004001200210000000000200041400000da90020009c00000da902008041000000c002200210000000000121019f00000e37011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000200000001001d00000008010000290000000001010433000000410010008c0000079b0000c13d00000008010000290000004001100039000000000101043300000e380010009c00001e0d0000a13d000000400200043d000000440120003900000040030000390000000000310435000000200120003900000e3a03000041000000000031043500000024032000390000000204000029000000000043043500000008030000290000000003030433000000640420003900000000003404350000008404200039000000000003004b0000000608000029000007b50000613d000000000500001900000000064500190000000007850019000000000707043300000000007604350000002005500039000000000035004b000007ae0000413d000000000443001900000000000404350000001f0330003900000ea60330019700000064043000390000000000420435000000a30330003900000ea6043001970000000003240019000000000043004b0000000004000039000000010400403900000db50030009c00001f7f0000213d000000010040019000001f7f0000c13d000000400030043f000000000302043300000000020004140000001204000029000000040040008c00001eb20000c13d0000000102000039000000010400003100001ec40000013d00000dc70030009c00000a780000a13d00000dc80030009c00000c4a0000213d00000dcb0030009c00000f550000613d00000dcc0030009c00001d100000c13d0000000002040019000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b00000db50010009c00001d100000213d0000000401100039369f2b020000040f369f2dff0000040f00000ec40000013d00000dfd0030009c00000d200000213d00000e000030009c000012a80000613d00000e010030009c00001d100000c13d000000240040008c00001d100000413d0000000002000416000000000002004b00001d100000c13d0000000402500370000000000a02043b00000db500a0009c00001d100000213d0000002302a00039000000000042004b00001d100000813d0000000402a00039000000000225034f000000000b02043b00000db500b0009c00001d100000213d000000240ca000390000000503b002100000000002c30019000000000042004b00001d100000213d0000003f0230003900000e3c0420019700000e2f0040009c00001f7f0000213d0000008002400039000000400020043f0000008000b0043f00000000000b004b000017be0000c13d00000020010000390000000003120436000000800100043d0000000000130435000000400320003900000005041002100000000008340019000000000001004b000018950000c13d000000000128004900000caf0000013d00000dd20030009c00000d500000213d00000dd50030009c000012b60000613d00000dd60030009c00001d100000c13d000000440040008c00001d100000413d0000000001000416000000000001004b0000094d0000613d00001d100000013d00000de80030009c00000eb20000213d00000deb0030009c000013220000613d00000dec0030009c00001d100000c13d000001640040008c00001d100000413d0000000401500370000000000101043b001200000001001d00000dac0010009c00001d100000213d0000002401500370000000000101043b001100000001001d00000dac0010009c00001d100000213d0000004401500370000000000101043b001000000001001d00000dac0010009c00001d100000213d0000006401500370000000000101043b000f00000001001d00000dac0010009c00001d100000213d000000e401500370000000000101043b000e00000001001d00000dac0010009c00001d100000213d0000010401500370000000000101043b000d00000001001d00000da90010009c00001d100000213d0000012401500370000000000101043b000c00000001001d00000da90010009c00001d100000213d0000014401500370000000000101043b00000db50010009c00001d100000213d0000002302100039000000000042004b00001d100000813d000a00040010003d0000000a02500360000000000202043b000b00000002001d00000db50020009c00001d100000213d0000000b01100029000900240010003d000000090040006b00001d100000213d0000008401500370000000000101043b000800000001001d000000a401500370000000000101043b000700000001001d000000c401500370000000000101043b000600000001001d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b00000da9011001970000000d0210002900000da90020009c00000d1a0000213d0000006503000039000000000403041a000000020040008c000019c60000613d0000000204000039000000000043041b0000086b04000039000000000504041a00000e260050019800001b020000c13d000000c00350027000000da90330019700000da90030009c00000d1a0000613d00000e1705500197000000c00630021000000e5a0660009a00000e1606600197000000000556019f000000000054041b000000400400043d000d00000004001d00000e4c0040009c00001f7f0000213d0000000d05000029000001a004500039000000400040043f0000016004500039000400000004001d0000000c0600002900000000006404350000014004500039000500000004001d00000000002404350000012002500039000c00000002001d00000000001204350000010001500039000200000001001d0000000000310435000000e001500039000300000001001d0000000e020000290000000000210435000000c001500039000100000001001d00000006020000290000000000210435000000a001500039000600000001001d000000070200002900000000002104350000008001500039000e00000001001d000000080200002900000000002104350000006001500039000800000001001d0000000f0200002900000000002104350000004001500039000f00000001001d0000001002000029000000000021043500000012010000290000000001150436001200000001001d000000110200002900000000002104350000000b010000290000001f0110003900000ea6011001970000003f0110003900000ea602100197000000400100043d0000000002210019000000000012004b0000000003000039000000010300403900000db50020009c00001f7f0000213d000000010030019000001f7f0000c13d000000400020043f0000000b0200002900000000022104360000000904000029000000000040007c00001d100000213d0000000b0500002900000ea6045001980000001f0550018f00000000034200190000000a0600002900000020066000390000000206600367000008dc0000613d000000000706034f0000000008020019000000007907043c0000000008980436000000000038004b000008d80000c13d000000000005004b000008e90000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000b0220002900000000000204350000000d020000290000018003200039001100000003001d0000000000130435000000000102043300000dac0010009c0000239b0000213d0000000c010000290000000001010433001000000001001d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000100200002900000da902200197000000000101043b000b00000001001d001000000021005300000a500000413d00000e490100004100000000001004430000000001000412000000040010044300000040010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000da901100197000000100010006b00000a500000213d00000005010000290000000001010433001000000001001d00000e490100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000da9011001970000000b0010002a00000d1a0000413d000000100200002900000da9022001970000000b01100029000000000012004b00001d400000213d0000000401000029000000000101043300000da901100198001000000000001d000022d20000613d00000e4e0010009c000022cd0000813d0000000b0200002900000da9022001970000000001210019001000000001001d00000da90010009c00000d1a0000213d000022ce0000013d00000dbd0030009c00000ecb0000213d00000dc00030009c000013350000613d00000dc10030009c00001d100000c13d000000440040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b00000dac0010009c00001d100000213d0000002402500370000000000202043b001200000002001d00000dac0020009c00001d100000213d000000000010043f0000087301000039000000200010043f00000040020000390000000001000019369f365d0000040f0000001202000029369f2ba40000040f000000000101041a00000ec40000013d00000e0d0030009c000014370000613d00000e0e0030009c000011c70000613d00000e0f0030009c00001d100000c13d0000000001000416000000000001004b00001d100000c13d0000000001000412002800000001001d002700a00000003d000080050100003900000044030000390000000004000415000000280440008a000012b20000013d00000de20030009c000014480000613d00000de30030009c000012270000613d00000de40030009c00001d100000c13d000001a40040008c00001d100000413d0000012401500370000000000101043b001200000001001d00000da90010009c00001d100000213d0000014401500370000000000101043b001100000001001d00000da90010009c00001d100000213d0000016401500370000000000101043b001000000001001d00000da90010009c00001d100000213d0000018401500370000000000101043b00000db50010009c00001d100000213d0000002302100039000000000042004b00001d100000813d000e00040010003d0000000e02500360000000000202043b000f00000002001d00000db50020009c00001d100000213d0000000f01100029000d00240010003d0000000d0040006b00001d100000213d0000000401500370000000000101043b000c00000001001d0000002401500370000000000101043b000b00000001001d0000004401500370000000000101043b000a00000001001d0000006401500370000000000101043b000900000001001d0000008401500370000000000101043b000800000001001d000000a401500370000000000101043b000700000001001d000000c401500370000000000101043b000600000001001d000000e401500370000000000101043b000500000001001d0000010401500370000000000101043b0000006502000039000000000302041a000000020030008c000013620000613d0000000203000039000000000032041b0000086b02000039000000000202041a00000e2600200198000019bb0000c13d00000000020004110000006002200210000000a00020043f0000000c02000029000000b40020043f000000d40010043f0000005401000039000000800010043f0000010001000039000000400010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e4b011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000400200043d000400000002001d00000e4c0020009c00001f7f0000213d000000000101043b0000000403000029000001a002300039000000400020043f0000016002300039000300000002001d000000100400002900000000004204350000014002300039001000000002001d000000110400002900000000004204350000012002300039001100000002001d000000120400002900000000004204350000010002300039000100000002001d0000000000120435000000e001300039000200000001001d00000005020000290000000000210435000000c001300039000500000001001d00000006020000290000000000210435000000a001300039000600000001001d000000070200002900000000002104350000008001300039000700000001001d000000080200002900000000002104350000006001300039000800000001001d000000090200002900000000002104350000004001300039001200000001001d0000000a0200002900000000002104350000000c010000290000000001130436000c00000001001d0000000b0200002900000000002104350000000f010000290000001f0110003900000ea6011001970000003f0110003900000ea602100197000000400100043d0000000002210019000000000012004b0000000003000039000000010300403900000db50020009c00001f7f0000213d000000010030019000001f7f0000c13d000000400020043f0000000f0200002900000000022104360000000d04000029000000000040007c00001d100000213d0000000f0500002900000ea6045001980000001f0550018f00000000034200190000000e060000290000002006600039000000020660036700000a260000613d000000000706034f0000000008020019000000007907043c0000000008980436000000000038004b00000a220000c13d000000000005004b00000a330000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000f02200029000000000002043500000004020000290000018003200039000f00000003001d0000000000130435000000000102043300000dac0010009c0000239b0000213d00000011010000290000000001010433000e00000001001d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d0000000e0200002900000da902200197000000000101043b000d00000001001d000e00000021005300001d120000813d000000400100043d00000e5e020000410000239d0000013d00000df80030009c000015ba0000613d00000df90030009c000012510000613d00000dfa0030009c00001d100000c13d0000000001000416000000000001004b00001d100000c13d00000e49010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000400300043d00000da90030009c00000da90200004100000000020340190000004002200210000000000101043b00000dac011001970000000004000410000000000014004b000016470000c13d00000e6801000041000000000013043500000e22012001c7000036a00001042e00000dcd0030009c0000162c0000613d00000dce0030009c000012560000613d00000dcf0030009c00001d100000c13d000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b001200000001001d00000dac0010009c00001d100000213d0000086901000039000000000101041a00000e100110009a00000dac011001970000000002000411000000000012004b0000129e0000c13d369f2e850000040f0000001201000029369f35380000040f000012990000013d00000e090030009c00000f5c0000613d00000e0a0030009c00001d100000c13d0000000002040019000000640040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b00000db50010009c00001d100000213d000000000412004900000e280040009c00001d100000213d000000640040008c00001d100000413d0000002403500370000000000303043b001200000003001d00000da90030009c00001d100000213d0000004403500370000000000303043b00000db50030009c00001d100000213d0000002306300039000000000026004b00001d100000813d0000000406300039000000000665034f000000000606043b000f00000006001d00000db50060009c00001d100000213d00000024033000390000000f060000290000000506600210000d00000003001d001100000006001d000e00000036001d0000000e0020006b00001d100000213d0000006503000039000000000603041a000000020060008c000013620000613d0000000206000039000000000063041b001000040010003d0000001001500360000000000101043b000001830440008a00000e3d0310019700000e3d05400197000000000653013f000000000053004b000000000300001900000e3d03004041000000000041004b000000000400001900000e3d0400804100000e3d0060009c000000000304c019000000000003004b00001d100000c13d0000001001100029369f2b020000040f000c00000001001d0000008001100039000000000101043300000e2c0010009c0000239b0000813d369f2fe20000040f0000000c01000029369f2dff0000040f000000400200043d000b00000002001d00000e470020009c00001f7f0000213d0000000c0500002900000020025000390000000002020433000001600350003900000000030304330000000b06000029000000c004600039000000400040043f0000002004600039000a00000004001d00000000001404350000000000560435000000100100002900000040041000390000000201000367000000000441034f000000000404043b0000008005600039000700000005001d00000000003504350000006003600039000800000003001d00000000002304350000004002600039000c00000002001d0000000000420435000000a002600039000900000002001d000000000002043500000011020000290000003f0220003900000e3c02200197000000400300043d0000000002230019001100000003001d000000000032004b0000000003000039000000010300403900000db50020009c00001f7f0000213d000000010030019000001f7f0000c13d000000400020043f00000011020000290000000f040000290000000002420436001000000002001d0000000e02000029000000000020007c00001d100000213d0000000f0000006b0000000d040000290000000e0500002900000b230000613d0000001102000029000000000341034f000000000303043b000000200220003900000000003204350000002004400039000000000054004b00000b1c0000413d000000400100043d000f00000001001d00000e700010009c00001f7f0000213d0000000c010000290000000001010433000d00000001001d0000000b0100002900000000010104330000000f030000290000006002300039000000400020043f0000000001130436000e00000001001d00000e30010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b0000000f0200002900000040032000390000000d0200002900000000002304350000000e0200002900000000001204350000086c01000039000000000201041a000000120020006c000025ea0000a13d000000000010043f000000120100002900000003011000c900000e530110009a000000000101041a000d00000001001d000000400100043d0000002002100039000000200400003900000000004204350000000f040000290000000004040433000000400510003900000060060000390000000000650435000000a005100039000000007604043400000000006504350000000005070433000000c006100039000000000056043500000040054000390000000005050433000000e006100039000000000056043500000060054000390000000005050433000001000610003900000000005604350000008005400039000000000505043300000120061000390000000000560435000000a005400039000000000505043300000140061000390000000000560435000000c005400039000000000505043300000160061000390000000000560435000000e00540003900000000050504330000018006100039000000000056043500000100054000390000000005050433000001a00610003900000000005604350000012005400039000000000505043300000da905500197000001c00610003900000000005604350000014005400039000000000505043300000da905500197000001e0061000390000000000560435000001600440003900000000040404330000020005100039000001800600003900000000006504350000022006100039000000005404043400000000004604350000024006100039000000000004004b00000b950000613d000000000700001900000000086700190000000009750019000000000909043300000000009804350000002007700039000000000047004b00000b8e0000413d000000000564001900000000000504350000000e050000290000000005050433000000600610003900000000005604350000000003030433000000800510003900000000003504350000001f0340003900000ea603300197000002200430003900000000004104350000025f0330003900000ea6043001970000000003140019000000000043004b0000000004000039000000010400403900000db50030009c00001f7f0000213d000000010040019000001f7f0000c13d000000400030043f00000da90020009c00000da9020080410000004002200210000000000101043300000da90010009c00000da9010080410000006001100210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b00000011020000290000000002020433000000000002004b00000be10000613d0000000003000019001200000003001d000000050230021000000010022000290000000002020433000000000021004b00000bcf0000813d000000000010043f000000200020043f000000000100041400000bd20000013d000000000020043f000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b0000001203000029000000010330003900000011020000290000000002020433000000000023004b00000bc50000413d0000000d0010006c00001db60000c13d0000000b010000290000000001010433001100000001001d0000012001100039001000000001001d0000000001010433001200000001001d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b000000120200002900000da902200197000000000012004b0000167b0000413d0000000a010000290000000001010433001200000001001d000000000010043f0000087201000039000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000000101041a000000020010008c000021070000c13d000000400100043d00000e8d020000410000239d0000013d00000dde0030009c000011640000613d00000ddf0030009c00001d100000c13d000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b00001d100000c13d0000086902000039000000000202041a00000e100220009a00000dac022001970000000003000411000000000023004b0000129e0000c13d0000006502000039000000000302041a000000020030008c000013620000613d0000000203000039000000000032041b0000086b02000039000000000302041a00000e4203300197000000000001004b000000000400001900000e430400c041000000000343019f000000000032041b000000800010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e44011001c70000800d02000039000000010300003900000e450400004100000ce50000013d00000df40030009c000011b50000613d00000df50030009c00001d100000c13d0000000001000416000000000001004b00001d100000c13d0000086b01000039000000000101041a00000e2600100198000013300000013d00000dc90030009c000011c00000613d00000dca0030009c00001d100000c13d0000000001000416000000000001004b00001d100000c13d00000e2b01000041000000800010043f00000e2701000041000036a00001042e00000e030030009c0000134d0000613d00000e040030009c00001d100000c13d000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b001200000001001d00000dac0010009c00001d100000213d00000e49010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000dac011001970000000002000410000000000012004b0000167e0000c13d000000400100043d000000640210003900000e7c03000041000017310000013d000000000c05034f00000dd80030009c0000136c0000613d00000dd90030009c00001d100000c13d000000240040008c00001d100000413d0000000002000416000000000002004b00001d100000c13d0000000402c00370000000000202043b001000000002001d00000db50020009c00001d100000213d00000010020000290000002302200039000000000042004b00001d100000813d0000001002000029000000040220003900000000022c034f000000000202043b000f00000002001d00000db50020009c00001d100000213d0000001002000029000000240e2000390000000f0200002900000005032002100000000002e30019000000000042004b00001d100000213d0000003f0230003900000e3c0220019700000e2f0020009c00001f7f0000213d0000008002200039000000400020043f0000000f06000029000000800060043f000000000006004b000017d00000c13d00000020010000390000000003120436000000800100043d0000000000130435000000400320003900000005041002100000000007340019000000000001004b000018780000c13d000000000127004900000da90010009c00000da901008041000000600110021000000da90020009c00000da9020080410000004002200210000000000121019f000036a00001042e00000dee0030009c0000139b0000613d00000def0030009c00001d100000c13d000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b00001d100000c13d0000086902000039000000000202041a00000e100220009a00000dac022001970000000003000411000000000023004b0000129e0000c13d0000006502000039000000000302041a000000020030008c000013620000613d0000000203000039000000000032041b0000086b02000039000000000302041a00000e5f03300197000000000001004b000000000400001900000e600400c041000000000343019f000000000032041b000000800010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e44011001c70000800d02000039000000010300003900000e61040000410000124d0000013d00000dc30030009c000013a60000613d00000dc40030009c00001d100000c13d000001640040008c00001d100000413d0000010401500370000000000101043b001200000001001d00000da90010009c00001d100000213d0000012401500370000000000101043b001100000001001d00000da90010009c00001d100000213d0000014401500370000000000101043b00000db50010009c00001d100000213d0000002302100039000000000042004b00001d100000813d0000000402100039000000000225034f000000000202043b001000000002001d00000db50020009c00001d100000213d0000002402100039000f00000002001d0000001001200029000000000041004b00001d100000213d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b00000da901100197000e00000001001d0000001201100029001200000001001d00000da90010009c000019c20000a13d00000e8c01000041000000000010043f0000001101000039000000040010043f00000e8601000041000036a10001043000000dfe0030009c000013ab0000613d00000dff0030009c00001d100000c13d000000440040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000002401500370000000000701043b0000000401500370000000000601043b0000086901000039000000000101041a00000e100110009a00000dac011001970000000002000411000000000012004b0000129e0000c13d0000006501000039000000000201041a000000020020008c000013620000613d0000000202000039000000000021041b0000086c02000039000000000102041a00000db50010009c00001f7f0000213d0000000103100039000000000032041b000000000020043f00000003021000c900000e540320009a000000000063041b00000e530220009a000000000072041b000000000200041400000da90510019700000da90020009c00000da902008041000000c00120021000000e1a011001c70000800d02000039000000040300003900000e75040000410000124d0000013d00000dd30030009c000013b20000613d00000dd40030009c00001d100000c13d000000c40040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000006401500370000000000101043b001000000001001d0000004401500370000000000101043b000f00000001001d0000002401500370000000000101043b001100000001001d0000000401500370000000000101043b001200000001001d0000008401500370000000000101043b00000db50010009c00001d100000213d0000002302100039000000000042004b00001d100000813d0000000402100039000000000325034f000000000303043b000e00000003001d00000db50030009c00001d100000213d0000002403100039000d00000003001d0000000e01300029000000000041004b00001d100000213d000000a401500370000000000301043b00000db50030009c00001d100000213d0000002301300039000000000041004b00001d100000813d0000000401300039000000000615034f000000000606043b000c00000006001d00000db50060009c00001d100000213d0000002406300039000b00000006001d0000000c03600029000000000043004b00001d100000213d0000006503000039000000000403041a000000020040008c000013620000613d0000000204000039000000000043041b000000120300002900000e2c0030009c00001ab90000813d0000000e030000290000001f0330003900000ea603300197000900000003001d0000003f0330003900000ea60330019700000e2f0030009c00001f7f0000213d0000008003300039000000400030043f0000002002200039000000000325034f0000000e02000029000000800020043f00000ea604200198000a001f00200193000700000004001d000000a00240003900000dab0000613d000000a004000039000000000603034f000000006706043c0000000004740436000000000024004b00000da70000c13d0000000a0000006b00000db90000613d00000007033003600000000a040000290000000304400210000000000602043300000000064601cf000000000646022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000363019f00000000003204350000000e02000029000000a00220003900000000000204350000000c020000290000001f0220003900000ea602200197000400000002001d0000003f0220003900000ea602200197000000400300043d0000000002230019000800000003001d000000000032004b0000000003000039000000010300403900000db50020009c00001f7f0000213d000000010030019000001f7f0000c13d000000400020043f0000002001100039000000000215034f0000000c010000290000000803000029000000000413043600000ea6031001980005001f00100193000300000003001d000600000004001d000000000134001900000dde0000613d000000000302034f0000000604000029000000003503043c0000000004540436000000000014004b00000dda0000c13d000000050000006b00000dec0000613d000000030220036000000005030000290000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f000000000021043500000006020000290000000c01200029000000000001043500000e30010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b000200000001001d000000800100043d00000da90010009c00000da9010080410000006001100210000000000200041400000da90020009c00000da902008041000000c002200210000000000121019f00000e31011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000201043b000000400100043d000000c0031000390000000000230435000000a0021000390000001003000029000000000032043500000080021000390000000f030000290000000000320435000000600210003900000002030000290000000000320435000000400210003900000011030000290000000000320435000000200210003900000e32030000410000000000320435000000c003000039000000000031043500000e330010009c00001f7f0000213d000000e003100039000000400030043f00000da90020009c00000da9020080410000004002200210000000000101043300000da90010009c00000da9010080410000006001100210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000100000001001d0000047f01000039000000000201041a0000048001000039000000000301041a000000400100043d0000008004100039000000020500002900000000005404350000006004100039000000000034043500000040031000390000000000230435000000200210003900000e340300004100000000003204350000008003000039000000000031043500000e350010009c00001f7f0000213d000000a003100039000000400030043f00000da90020009c00000da9020080410000004002200210000000000101043300000da90010009c00000da9010080410000006001100210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000400200043d00000022032000390000000104000029000000000043043500000e360300004100000000003204350000000203200039000000000013043500000da90020009c00000da9020080410000004001200210000000000200041400000da90020009c00000da902008041000000c002200210000000000121019f00000e37011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000200000001001d00000008010000290000000001010433000000410010008c00000e7f0000c13d00000008010000290000004001100039000000000101043300000e380010009c00001e4f0000a13d000000400200043d000000440120003900000040030000390000000000310435000000200120003900000e3a03000041000000000031043500000024032000390000000204000029000000000043043500000008030000290000000003030433000000640420003900000000003404350000008404200039000000000003004b000000060800002900000e990000613d000000000500001900000000064500190000000007850019000000000707043300000000007604350000002005500039000000000035004b00000e920000413d000000000443001900000000000404350000001f0330003900000ea60330019700000064043000390000000000420435000000a30330003900000ea6043001970000000003240019000000000043004b0000000004000039000000010400403900000db50030009c00001f7f0000213d000000010040019000001f7f0000c13d000000400030043f000000000302043300000000020004140000001204000029000000040040008c00001f350000c13d0000000102000039000000010400003100001f470000013d00000de90030009c000013b70000613d00000dea0030009c00001d100000c13d000000640040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b00000dac0010009c00001d100000213d0000002402500370000000000202043b0000004403500370000000000303043b369f2d9e0000040f000000400200043d000000000012043500000da90020009c00000da902008041000000400120021000000e22011001c7000036a00001042e00000dbe0030009c000013fc0000613d00000dbf0030009c00001d100000c13d000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b001200000001001d00000dac0010009c00001d100000213d0000086901000039000000000101041a00000e100110009a00000dac011001970000000002000411000000000012004b0000129e0000c13d369f2e850000040f0000001201000029369f351b0000040f000012990000013d0000000001000416000000000001004b00001d100000c13d000000800000043f00000e2701000041000036a00001042e0000000001000416000000000001004b00001d100000c13d0000000001000412001600000001001d001500c00000003d000080050100003900000044030000390000000004000415000000160440008a000012b20000013d000001240040008c00001d100000413d0000000401f00370000000000101043b00000dac0010009c00001d100000213d0000002402f00370000000000202043b00000dac0020009c00001d100000213d0000004403f00370000000000303043b00000dac0030009c00001d100000213d000000a406f00370000000000606043b00000e630060019800000e6407000041000000000700601900000e6508600197000000000787019f000000000076004b00001d100000c13d000000c407f00370000000000707043b00000da90070009c00001d100000213d000000e408f00370000000000908043b00000db50090009c00001d100000213d00000000050400190000002308900039000000000048004b00001d100000813d000000040a9000390000000008af034f000000000808043b00000db50080009c00001f7f0000213d0000001f0c80003900000ea60cc001970000003f0cc0003900000ea60cc0019700000e2f00c0009c00001f7f0000213d0000002409900039000000800cc000390000004000c0043f000000800080043f0000000009980019000000000059004b00001d100000213d0000002004a0003900000000094f034f00000ea60a8001980000001f0b80018f000000a004a0003900000f360000613d000000a00c000039000000000d09034f00000000de0d043c000000000cec043600000000004c004b00000f320000c13d00000000000b004b00000f430000613d0000000009a9034f000000030ab00210000000000b040433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f0000000000940435000000a00480003900000000000404350000006504000039000000000404041a000000020040008c000019c60000613d00000002040000390000006505000039000000000045041b0000086b04000039000000000404041a00000e260040019800001b020000c13d0000006404f00370000000000404043b0000008405f00370000000000505043b000012240000013d0000000001000416000000000001004b00001d100000c13d00000da901000041000000800010043f00000e2701000041000036a00001042e000000640040008c00001d100000413d0000000401500370000000000101043b001200000001001d00000da90010009c00001d100000213d0000002401500370000000000101043b00000db50010009c00001d100000213d000000000a040019000000000214004900000e280020009c00001d100000213d000000c40020008c00001d100000413d0000014002000039000000400020043f0000000403100039000000000335034f000000000303043b000000800030043f0000002403100039000000000335034f000000000303043b000000a00030043f0000004403100039000000000635034f000000000606043b00000db50060009c00001d100000213d000000000616001900000023076000390000000000a7004b00001d100000813d0000000407600039000000000775034f000000000807043b00000db50080009c00001f7f0000213d00000005078002100000003f0970003900000e3c0990019700000e900090009c00001f7f0000213d0000014009900039000000400090043f000001400080043f000000240660003900000000076700190000000000a7004b00001d100000213d000000000008004b000000000405034f00000f9b0000613d000000000864034f000000000808043b000000200220003900000000008204350000002006600039000000000076004b00000f940000413d0000014002000039000000c00020043f0000002002300039000000000324034f000000000303043b00000da90030009c00001d100000213d000000e00030043f0000002002200039000000000325034f000000000303043b00000dac0030009c00001d100000213d000001000030043f0000002002200039000000000225034f000000000202043b00000db50020009c00001d100000213d000000000212001900000023012000390000000000a1004b000000000300001900000e3d0300804100000e3d01100197000000000001004b000000000600001900000e3d0600404100000e3d0010009c000000000603c019000000000006004b00001d100000c13d0000000401200039000000000115034f000000000301043b00000db50030009c00001f7f0000213d00000005063002100000003f0160003900000e3c07100197000000400100043d0000000007710019000000000017004b0000000008000039000000010800403900000db50070009c00001f7f0000213d000000010080019000001f7f0000c13d000000400070043f0000000000310435000000240220003900000000032600190000000000a3004b00001d100000213d000000000032004b00000fde0000813d0000000006010019000000000725034f000000000707043b00000dac0070009c00001d100000213d000000200660003900000000007604350000002002200039000000000032004b00000fd50000413d000001200010043f0000004401500370000000000101043b00000db50010009c00001d100000213d00000023021000390000000000a2004b000000000300001900000e3d0300804100000e3d02200197000000000002004b000000000600001900000e3d0600404100000e3d0020009c000000000603c019000000000006004b00001d100000c13d0000000402100039000000000225034f000000000202043b00000db50020009c00001f7f0000213d00000005032002100000003f0630003900000e3c06600197000000400700043d0000000006670019001000000007001d000000000076004b0000000007000039000000010700403900000db50060009c00001f7f0000213d000000010070019000001f7f0000c13d0000002401100039000000400060043f00000010060000290000000006260436000f00000006001d00000000031300190000000000a3004b00001d100000213d000000000002004b000010130000613d0000001002000029000000000415034f000000000404043b000000200220003900000000004204350000002001100039000000000031004b0000100c0000413d0000000001000415000600000001001d0000006501000039000000000101041a000000020010008c000019c60000613d00000002010000390000006502000039000000000012041b000001000100043d001100000001001d00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000110200002900110dac0020019b000000000101043b00000dac01100197000000110010006b000010430000c13d00000e8701000041000000000010044300000000010004100000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800a02000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b000021b80000c13d000000a00100043d001100000001001d00000e30010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b000000110010006b000021b50000c13d0000086c01000039000000000101041a000000120010006c000025ea0000a13d0000086c01000039000000000010043f000000120100002900000003011000c9000d00000001001d00000e540110009a000000000101041a000e00000001001d000000400100043d0000002002100039000000200300003900000000003204350000004003100039000000800400043d00000000004304350000006003100039000000a00400043d00000000004304350000008003100039000000c005000039000000c00400043d00000000005304350000010003100039000000000504043300000000005304350000012003100039000000000005004b0000107a0000613d00000000060000190000002004400039000000000704043300000000037304360000000106600039000000000056004b000010740000413d000000e00400043d00000da904400197000000a0051000390000000000450435000001000400043d00000dac04400197000000c00510003900000000004504350000000004130049000000400540008a000000e006100039000001200400043d000000000056043500000000050404330000000003530436000000000005004b000010930000613d00000000060000190000002004400039000000000704043300000dac0770019700000000037304360000000106600039000000000056004b0000108c0000413d0000000003130049000000200430008a00000000004104350000001f0330003900000ea6043001970000000003140019000000000043004b0000000004000039000000010400403900000db50030009c00001f7f0000213d000000010040019000001f7f0000c13d000000400030043f00000da90020009c00000da9020080410000004002200210000000000101043300000da90010009c00000da9010080410000006001100210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b00000010020000290000000002020433000000000002004b000010d50000613d001100000000001d000000110200002900000005022002100000000f022000290000000002020433000000000021004b000010c30000813d000000000010043f000000200020043f0000000001000414000010c60000013d000000000020043f000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b0000001103000029001100010030003d00000010020000290000000002020433000000110020006b000010b90000413d0000000e0010006c00001db60000c13d0000086c01000039000000000101041a000000120010006c000025ea0000a13d000000e00100043d001100000001001d000000080110027000000e9301100197000000000010043f0000000d0100002900000e940110009a000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d0000001102000029000000ff0220018f000000010220020f000000000101043b000000000301041a0000000000230170000023c40000c13d000000000223019f000000000021041b000001200200043d000000c00300043d0000000001000415000400000001001d000e00000003001d0000000013030434000b00000001001d000a00000002001d0000000021020434000800000002001d000c00000003001d000000000031004b000024420000c13d000000800100043d000300000001001d000000a00100043d000200000001001d000000e00100043d000100000001001d000001000100043d000f0dac0010019b0000000c0000006b000500000000001d000024450000c13d000000030000006b000024720000c13d0000000001000411001100000001001d000000000100041500000004011000690000000001000002000000400100043d0000002004100039000001200200043d000000a00500043d000000e00300043d000001000800043d000000c00600043d000000800700043d000000c00900003900000000009404350000000000710435000000c00410003900000000070604330000000000740435000000e00410003900000dac08800197000000000007004b0000112d0000613d00000000090000190000002006600039000000000a0604330000000004a404360000000109900039000000000079004b000011270000413d000000120600002900000da90660019700000da9073001970000000003140049000000600910003900000000003904350000004003100039000000000083043500000000080204330000000003840436000000000008004b000011410000613d00000000040000190000002002200039000000000902043300000dac0990019700000000039304360000000104400039000000000084004b0000113a0000413d000000110200002900000dac02200197000000a0041000390000000000240435000000050000006b0000000002000039000000010200c03900000080041000390000000000240435000000000213004900000da90020009c00000da902008041000000600220021000000da90010009c00000da9010080410000004001100210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000800d02000039000000040300003900000ea504000041369f36900000040f000000010020019000001d100000613d00000001010000390000006502000039000000000012041b0000000001000415000000060200002900001bed0000013d000000640040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b001200000001001d00000da90010009c00001d100000213d0000002401500370000000000101043b001100000001001d00000dac0010009c00001d100000213d0000004401500370000000000101043b001000000001001d00000dac0010009c00001d100000213d000000000100041a0000000801100270000000ff0110018f369f2ddd0000040f0000001201000029000000c00110021000000e16011001970000086b02000039000000000302041a00000e1703300197000000000113019f000000000012041b000000400100043d001200000001001d369f2a7b0000040f00000e180100004100000012020000290000002003200039000e00000003001d000000000013043500000009010000390000000000120435000000400100043d000f00000001001d369f2a7b0000040f00000e19010000410000000f020000290000002003200039000d00000003001d000000000013043500000005010000390000000000120435000000000100041a0000000801100270000000ff0110018f000c00000001001d369f2ddd0000040f0000000c01000029369f2ddd0000040f000000120100002900000000020104330000000e01000029369f365d0000040f0000000f020000290000000002020433001200000001001d0000000d01000029369f365d0000040f0000047f020000390000001203000029000000000032041b0000048002000039000000000012041b369f34cb0000040f369f34e30000040f0000001101000029369f34fe0000040f0000001001000029369f351b0000040f0000000001000019000036a00001042e0000000001000416000000000001004b00001d100000c13d0000000001000412001c00000001001d001b00400000003d0000800501000039000000440300003900000000040004150000001c0440008a000014410000013d0000000001000416000000000001004b00001d100000c13d0000086b01000039000000000101041a00000e2a00100198000013300000013d000001040040008c00001d100000413d000000000e05034f0000000401500370000000000201043b00000dac0020009c00001d100000213d0000002401e00370000000000301043b00000dac0030009c00001d100000213d0000008401e00370000000000601043b00000e630060019800000e6401000041000000000100601900000e6507600197000000000171019f000000000016004b00001d100000c13d000000a401e00370000000000701043b00000da90070009c00001d100000213d000000c401e00370000000000801043b00000db50080009c00001d100000213d00000000050400190000002301800039000000000041004b00001d100000813d000000040980003900000000019e034f000000000101043b00000db50010009c00001f7f0000213d0000001f0b10003900000ea60bb001970000003f0bb0003900000ea60bb0019700000e2f00b0009c00001f7f0000213d0000002408800039000000800bb000390000004000b0043f000000800010043f0000000008810019000000000058004b00001d100000213d000000200490003900000000084e034f00000ea6091001980000001f0a10018f000000a004900039000012050000613d000000a00b000039000000000c08034f00000000cd0c043c000000000bdb043600000000004b004b000012010000c13d00000000000a004b000012120000613d000000000898034f0000000309a00210000000000a040433000000000a9a01cf000000000a9a022f000000000808043b0000010009900089000000000898022f00000000089801cf0000000008a8019f0000000000840435000000a00110003900000000000104350000006501000039000000000101041a000000020010008c000019c60000613d00000002010000390000006504000039000000000014041b0000086b01000039000000000101041a00000e260010019800001b020000c13d0000004401e00370000000000401043b0000006401e00370000000000501043b00000000010004110000008008000039369f2e9d0000040f000012990000013d000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000501043b0000086901000039000000000101041a00000e100110009a00000dac011001970000000002000411000000000012004b0000129e0000c13d0000006501000039000000000201041a000000020020008c000013620000613d0000000202000039000000000021041b0000086c01000039000000000201041a000000000052004b000025ea0000a13d000000000010043f00000003015000c900000e530210009a000000000002041b00000e540110009a000000000001041b000000000100041400000da90010009c00000da901008041000000c00110021000000e1a011001c70000800d02000039000000020300003900000e5504000041369f36900000040f000000010020019000001d100000613d000012990000013d0000000001000416000000000001004b00001d100000c13d0000086901000039000016300000013d000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b000000000010043f0000087201000039000000200010043f00000040020000390000000001000019369f365d0000040f000000000101041a000000800010043f00000e2701000041000036a00001042e0000000001000416000000000001004b00001d100000c13d0000800b01000039000000040300003900000000040004150000002b0440008a000000050440021000000e24020000410000127a0000013d0000000001000416000000000001004b00001d100000c13d0000800b01000039000000040300003900000000040004150000002b0440008a000000050440021000000e3002000041369f36720000040f000000800010043f00000e2701000041000036a00001042e0000000001000416000000000001004b00001d100000c13d00000e3201000041000000800010043f00000e2701000041000036a00001042e000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b001200000001001d00000dac0010009c00001d100000213d0000086901000039000000000101041a00000e100110009a00000dac011001970000000002000411000000000012004b0000129e0000c13d369f2e850000040f0000001201000029369f34fe0000040f00000001010000390000006502000039000000000012041b0000000001000019000036a00001042e00000daf01000041000000800010043f0000002001000039000000840010043f0000001801000039000000a40010043f00000e6901000041000000c40010043f00000e7401000041000036a1000104300000000001000416000000000001004b00001d100000c13d0000000001000412002000000001001d001f01000000003d000080050100003900000044030000390000000004000415000000200440008a000000050440021000000e4902000041369f36720000040f000016310000013d000001840040008c00001d100000413d0000010401500370000000000101043b001200000001001d00000da90010009c00001d100000213d0000012401500370000000000101043b001100000001001d00000da90010009c00001d100000213d0000014401500370000000000101043b001000000001001d00000da90010009c00001d100000213d0000016401500370000000000101043b00000db50010009c00001d100000213d00000000030400190000002302100039000000000042004b00001d100000813d0000000402100039000000000225034f000000000202043b000f00000002001d00000db50020009c00001d100000213d0000002402100039000e00000002001d0000000f01200029000000000031004b00001d100000213d0000006501000039000000000101041a000000020010008c000013620000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000e2600100198000019bb0000c13d000000c00110027000000da901100197000d00000001001d369f2df40000040f0000086b03000039000000000203041a00000e1702200197000000c00110021000000e1601100197000000000112019f000000000013041b369f2a920000040f00000002020003670000000403200370000000000303043b0000000004010019000c00000001001d00000000013104360000002403200370000000000303043b00000000003104350000004401200370000000000101043b000000400340003900000000001304350000006401200370000000000101043b000000600340003900000000001304350000008401200370000000000101043b00000080034000390000000000130435000000a401200370000000000101043b000000a0034000390000000000130435000000c401200370000000000101043b000000c0034000390000000000130435000000e401200370000000000101043b000000e002400039000000000012043500000100014000390000000d02000029000000000021043500000120014000390000001202000029000000000021043500000140014000390000001102000029000000000021043500000160014000390000001002000029000000000021043500000000030000310000000e010000290000000f0200002900001ab20000013d0000000001000416000000000001004b00001d100000c13d0000000001000412001800000001001d001700e00000003d000080050100003900000044030000390000000004000415000000180440008a000000050440021000000e4902000041369f36720000040f000000000001004b0000000001000039000000010100c039000000800010043f00000e2701000041000036a00001042e000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b0000086c02000039000000000202041a000000000021004b00001d100000813d369f2b960000040f000000000201041a0000000101100039000000000101041a000000400300043d00000020043000390000000000140435000000000023043500000da90030009c00000da903008041000000400130021000000e23011001c7000036a00001042e000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b001200000001001d00000db50010009c00001d100000213d0000001201000029001100040010003d000000110140006a00000e280010009c00001d100000213d000001800010008c00001d100000413d0000006501000039000000000201041a000000020020008c000016570000c13d00000daf01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f00000e8f01000041000000c40010043f00000e7401000041000036a100010430000000440040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000002401c00370000000000201043b0000000401c00370000000000101043b00000e2c0010009c000016350000813d001100000002001d001200000001001d000000000010043f0000087301000039000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000000200041100000dac02200197001000000002001d000000000020043f000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000000101041a000000000001004b000017460000c13d000000400100043d00000e41020000410000239d0000013d0000000001000416000000000001004b00001d100000c13d0000000001000412001a00000001001d001900800000003d0000800501000039000000440300003900000000040004150000001a0440008a000014410000013d0000000001000416000000000001004b00001d100000c13d00000c5a01000039000016300000013d0000000001000416000000000001004b00001d100000c13d00000e7601000041000000800010043f00000e2701000041000036a00001042e0000000001000416000000000001004b00001d100000c13d0000086a01000039000016300000013d000001840040008c00001d100000413d0000000401500370000000000101043b001200000001001d00000dac0010009c00001d100000213d0000002401500370000000000101043b001100000001001d00000dac0010009c00001d100000213d0000004401500370000000000101043b001000000001001d00000dac0010009c00001d100000213d0000006401500370000000000101043b000f00000001001d00000dac0010009c00001d100000213d000000e401500370000000000101043b000e00000001001d00000dac0010009c00001d100000213d0000010401500370000000000101043b000d00000001001d00000da90010009c00001d100000213d0000012401500370000000000101043b000c00000001001d00000da90010009c00001d100000213d0000014401500370000000000101043b000b00000001001d00000da90010009c00001d100000213d0000016401500370000000000101043b00000db50010009c00001d100000213d00000000020400190000000401100039369f2ae80000040f0000000203000367000000c404300370000000000704043b000000a404300370000000000604043b0000008403300370000000000503043b000000000c010019000000000d0200190000001201000029000000110200002900000010030000290000000f040000290000000e080000290000000d090000290000000c0a0000290000000b0b000029369f2bb40000040f0000000001000019000036a00001042e000000840040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b001200000001001d00000da90010009c00001d100000213d0000002401500370000000000101043b001100000001001d00000dac0010009c00001d100000213d0000004401500370000000000101043b001000000001001d00000dac0010009c00001d100000213d0000006401500370000000000101043b000f00000001001d00000dac0010009c00001d100000213d0000000001000415000000140110008a000e000500100218000000000200041a000dff00002001940000178e0000c13d0000000001000415000000130110008a000e000500100218000000ff002001900000178e0000c13d00000ea70120019700000001021001bf00000ea80120019700000100021001bf000e00000000001d000000000020041b00000c5a01000039000000000301041a00000e15033001970000800a033001bf000000000031041b000000400100043d0000ff0000200190000018c90000c13d000000640210003900000e20030000410000000000320435000000440210003900000e2103000041000000000032043500000024021000390000002b03000039000017370000013d0000000001000416000000000001004b00001d100000c13d0000000001000412002a00000001001d002900600000003d0000800501000039000000440300003900000000040004150000002a0440008a000000050440021000000e4902000041369f36720000040f00000da901100197000000800010043f00000e2701000041000036a00001042e000000640040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000002401500370000000000101043b00000db50010009c00001d100000213d00000000030400190000002302100039000000000042004b00001d100000813d001100040010003d0000001102500360000000000202043b001200000002001d00000db50020009c00001d100000213d0000002401100039000f00000001001d001000120010002d000000100030006b00001d100000213d0000004401500370000000000101043b00000db50010009c00001d100000213d0000002302100039000000000032004b00001d100000813d0000000402100039000000000225034f000000000202043b000e00000002001d00000db50020009c00001d100000213d0000002401100039000d00000001001d0000000e01100029000000000031004b00001d100000213d00000e30010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000201043b0000004001000039000000a00010043f0000001203000029000000e00030043f00000ea6043001980000001f0530018f00000100034000390000001101000029001100200010003d00000002010003670000001106100360000014900000613d0000010007000039000000000806034f000000008908043c0000000007970436000000000037004b0000148c0000c13d000000000005004b0000149d0000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000120400002900000100034000390000000000030435000000c00020043f0000001f0240003900000ea6022001970000009f0320003900000ea6033001970000006002200039000000800020043f00000e2f0030009c00001f7f0000213d0000008003300039000000400030043f0000000401100370000000000101043b000c00000001001d00000da90020009c00000da9020080410000006001200210000000000200041400000da90020009c00000da902008041000000c002200210000000000121019f00000e31011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b0000000c0010006c00001bf30000c13d0000001201000029000000200010008c00001d100000413d00000002010003670000001102100360000000000202043b00000db50020009c00001d100000213d0000000f0d2000290000001002d0006900000e280020009c00001d100000213d000001800020008c00001d100000413d000000400200043d00000e460020009c00001f7f0000213d0000018003200039000000400030043f0000000003d1034f000000000303043b00000000033204360000002004d00039000000000441034f000000000404043b00000000004304350000004004d00039000000000441034f000000000504043b000000400420003900000000005404350000006005d00039000000000551034f000000000605043b000000600520003900000000006504350000008006d00039000000000661034f000000000706043b00000080062000390000000000760435000000a007d00039000000000771034f000000000807043b000000a0072000390000000000870435000000c008d00039000000000881034f000000000908043b000000c0082000390000000000980435000000e009d00039000000000991034f000000000a09043b000000e0092000390000000000a90435000001000ad00039000000000ba1034f000001000a200039000000000b0b043b0000000000ba0435000001200cd00039000000000bc1034f000000000e0b043b00000da900e0009c00001d100000213d000001200b2000390000000000eb0435000000200ec00039000000000ce1034f000000000f0c043b00000da900f0009c00001d100000213d000001400c20003900120000000c001d0000000000fc0435000000200ee00039000000000ee1034f000000000e0e043b00000db500e0009c00001d100000213d000000000fde00190000001f0df000390000001000d0006c00001d100000813d000000000df1034f000000000c0d043b00110000000c001d00000db500c0009c00001f7f0000213d000000110c0000290000001f0dc0003900000ea60dd001970000003f0dd0003900000ea60dd00197000000400c00043d000000000edc0019000f0000000c001d0000000000ce004b000000000d000039000000010d00403900000db500e0009c00001f7f0000213d0000000100d0019000001f7f0000c13d000000200df000390000004000e0043f000000110c0000290000000f0e000029000000000ece0436000c0000000e001d000000000edc00190000001000e0006c00001d100000213d000b000000d10353000000110d00002900000ea60ed001980010001f00d00193000a0000000e001d0000000c0fe000290000153d0000613d0000000b0e00035f0000000c0d00002900000000ec0e043c000000000dcd04360000000000fd004b000015390000c13d000000100000006b0000154c0000613d0000000a0d0000290000000b0cd0035f000000100d000029000000030dd00210000000000e0f0433000000000ede01cf000000000ede022f000000000c0c043b000001000dd00089000000000cdc022f000000000cdc01cf000000000cec019f0000000000cf04350000000c0d000029000000110cd0002900000000000c0435000001600f2000390000000f0c0000290000000000cf04350000000e0c0000290000002000c0008c00001d100000413d000000400d00043d00000e5700d0009c00001f7f0000213d000000200cd000390000004000c0043f0000000d01100360000000000e01043b0000000000ed0435000000400d00043d0000002001d0003900000e580c000041001000000001001d0000000000c10435000000240cd000390000006001000039001100000001001d00000000001c04350000000002020433000000840cd0003900000000002c04350000000002030433000000a403d0003900000000002304350000000002040433000000c403d0003900000000002304350000000002050433000000e403d00039000000000023043500000000020604330000010403d00039000000000023043500000000020704330000012403d00039000000000023043500000000020804330000014403d00039000000000023043500000000020904330000016403d00039000000000023043500000000020a04330000018403d00039000000000023043500000000020b043300000da902200197000001a403d0003900000000002304350000001201000029000000000201043300000da902200197000001c403d00039000000000023043500000000020f0433000001e403d00039000001800400003900000000004304350000020403d000390000000042020434000000000023043500000000030004110000022405d00039000000000002004b0000159d0000613d000000000600001900000000075600190000000008640019000000000808043300000000008704350000002006600039000000000026004b000015960000413d000000000452001900000000000404350000006404d0003900000000003404350000004403d000390000000000e304350000001f0220003900000ea602200197000002040320003900000000003d0435000002430220003900000ea6032001970000000002d30019000000000032004b0000000003000039000000010300403900000db50020009c00001f7f0000213d000000010030019000001f7f0000c13d000000400020043f00000000040d043300000000030004140000000002000410000000040020008c000021ec0000c13d00000001010000310000000002000019000021fe0000013d000000440040008c00001d100000413d000000000805034f0000000401500370000000000101043b001200000001001d00000dac0010009c00001d100000213d0000002401800370000000000201043b00000db50020009c00001d100000213d00000000050400190000002301200039000000000041004b00001d100000813d0000000403200039000000000138034f000000000101043b00000db50010009c00001f7f0000213d0000001f0610003900000ea6066001970000003f0660003900000ea60660019700000e2f0060009c00001f7f0000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000052004b00001d100000213d0000002002300039000000000328034f00000ea6041001980000001f0510018f000000a002400039000015e80000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000015e40000c13d000000000005004b000015f50000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a001100039000000000001043500000e49010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000dac011001970000000002000410000000000012004b00000c760000613d00000e6802000041000000000202041a00000dac02200197000000000012004b0000172e0000c13d0000086901000039000000000101041a00000e100110009a00000dac011001970000000002000411000000000012004b00001b050000c13d0000000001000415001000000001001d00000e6b01000041000000000101041a000000ff0010019000001bf60000c13d000000400200043d00000e6c01000041001100000002001d000000000012043500000000010004140000001202000029000000040020008c00001c110000c13d00000000050004150000001e0550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900001c3f0000013d0000000001000416000000000001004b00001d100000c13d00000c5b01000039000000000101041a00000dac01100197000000800010043f00000e2701000041000036a00001042e000000800200003900000e2d01000041000000000012043500000da90020009c00000da902008041000000400120021000000db7011001c7000036a100010430000000400100043d000000640210003900000dad030000410000000000320435000000440210003900000dae03000041000000000032043500000024021000390000002703000039000017370000013d000000640130003900000e66040000410000000000410435000000440130003900000e6704000041000000000041043500000024013000390000003804000039000000000041043500000daf01000041000000000013043500000004013000390000002003000039000000000031043500000db0012001c7000036a1000104300000000202000039000000000021041b0000086b01000039000000000101041a00000e2a00100198000017420000c13d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d0000001202000029001001440020003d00000002020003670000001003200360000000000101043b000000000303043b00000da90030009c00001d100000213d00000da901100197000000000013004b000019bf0000813d0000001003000029000f0020003000920000000f02200360000000000202043b00000da90020009c00001d100000213d000000000012004b00001b0c0000813d000000400100043d00000e8e020000410000239d0000013d00000e6802000041000000000202041a00000dac02200197000000000012004b0000172e0000c13d000000400300043d0000086901000039000000000101041a00000e100110009a00000dac011001970000000002000411000000000012004b000017ae0000c13d001100000003001d00000e570030009c00001f7f0000213d00000011010000290000002002100039000e00000002001d000000400020043f00000000000104350000000001000415000f00000001001d00000e6b01000041000000000101041a000000ff00100190000019d70000c13d000000400200043d00000e6c01000041001000000002001d000000000012043500000000010004140000001202000029000000040020008c000019f10000c13d0000000005000415000000220550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900001a1f0000013d00000da90010009c00000da901008041000000400110021000000da90030009c00000da9030080410000006003300210000000000113019f00000da90040009c00000da904008041000000c003400210000000000131019f369f36950000040f000000010220018f0003000000010355000000600110027000010da90010019d00000da904100197000000000004004b000016dd0000c13d000000600100003900000080030000390000001205000029000000100400002900000dac04400197000000000002004b0000000002000019000016cc0000613d0000000001010433000000200010008c0000000002000019000016cc0000c13d000000000103043300000dac001001980000000002000039000000010200c039000000010120018f000001600010043f000000000004004b000017070000613d00000dac02500197000000110000006b00000000030000390000000103006039000000000002004b0000000002000039000000010200c039000000000232013f0000000100200190000017070000613d000000400100043d00000db6020000410000239d0000013d00000db50040009c00001f7f0000213d0000001f0140003900000ea6011001970000003f0110003900000ea603100197000000400100043d0000000003310019000000000013004b0000000006000039000000010600403900000db50030009c00001f7f0000213d000000010060019000001f7f0000c13d000000400030043f000000000341043600000ea6054001980000001f0640018f00000000045300190000000307000367000016f90000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b000016f50000c13d000000000006004b000016be0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000016be0000013d000001800050043f000000800200043d00000140000004430000016000200443000000a00200043d00000020030000390000018000300443000001a0002004430000004002000039000000c00400043d000001c000200443000001e0004004430000006002000039000000e00400043d000002000020044300000220004004430000008002000039000001000400043d00000240002004430000026000400443000000a002000039000001200400043d0000028000200443000002a000400443000000c002000039000001400400043d000002c000200443000002e000400443000000e0020000390000030000200443000003200010044300000100010000390000034000100443000003600050044300000100003004430000000901000039000001200010044300000db801000041000036a00001042e000000400100043d000000640210003900000e77030000410000000000320435000000440210003900000e7803000041000000000032043500000024021000390000002c03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000db0011001c7000036a10001043000000e7d01000041000000800010043f00000e2e01000041000036a100010430000f00000001001d0000001201000029000000000010043f0000087301000039000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b0000001002000029000000000020043f000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000000001041b000000400200043d000000110100002900000dac0010009c000016360000213d000000200120003900000e3f03000041000000000031043500000044012000390000000f0300002900000000003104350000002401200039000000110300002900000000003104350000004401000039000000000012043500000e2f0020009c00001f7f0000213d0000008001200039000000400010043f0000001201000029369f354d0000040f000000400100043d0000000f02000029000000000021043500000da90010009c00000da9010080410000004001100210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000db1011001c70000800d02000039000000040300003900000e4004000041000000120500002900000011060000290000000007000411369f36900000040f000000010020019000001d100000613d000001dc0000013d000c00000002001d00000e1101000041000000000010044300000000010004100000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b000018bc0000c13d0000000c01000029000000ff0110018f000000010010008c0000000e010000290000000501100270000000000100003f000000010100603f000018bf0000c13d000000000200041a00000ea70120019700000001021001bf0000000d0000006b000014220000613d000e00010000003d000014250000013d000000440130003900000e6902000041000000000021043500000024013000390000001802000039000000000021043500000daf01000041000000000013043500000004013000390000002002000039000000000021043500000da90030009c00000da903008041000000400130021000000e6a011001c7000036a10001043000000e470040009c00001f7f0000213d000000600d00003900000000040000190000004005200039000000400050043f00000020052000390000000000d504350000000000020435000000a00540003900000000002504350000002004400039000000000034004b000019180000813d000000400200043d00000db40020009c000017c20000a13d00001f7f0000013d000000600f0000390000000002000019000000a0062000390000000000f604350000002002200039000000000032004b000017d20000413d000000200d00008a0000000006000019000e0000000e001d000000100340006a001200000006001d00110005006002180000001102e0002900000000022c034f000000000202043b000000430330008a00000e3d0630019700000e3d07200197000000000867013f000000000067004b000000000600001900000e3d06004041000000000032004b000000000300001900000e3d0300804100000e3d0080009c000000000603c019000000000006004b00001d100000c13d00000000050400190000000003e2001900000000023c034f000000000402043b00000db50040009c00001d100000213d0000000006450049000000200330003900000e3d0760019700000e3d08300197000000000978013f000000000078004b000000000700001900000e3d07004041000000000063004b000000000600001900000e3d0600204100000e3d0090009c000000000706c019000000000007004b00001d100000c13d00000000073c034f0000000008d40170000000400300043d00000000068300190000180e0000613d000000000907034f000000000a030019000000009b09043c000000000aba043600000000006a004b0000180a0000c13d0000001f094001900000181b0000613d000000000787034f0000000308900210000000000906043300000000098901cf000000000989022f000000000707043b0000010008800089000000000787022f00000000078701cf000000000797019f00000000007604350000000006430019000000000006043500000000060004140000000002000410000000040020008c000018280000c13d000000010600003100000001020000390000000004050019000000000006004b00000000030f0019000018410000c13d000018670000013d00000da90040009c00000da904008041000000600140021000000da90030009c00000da9030080410000004003300210000000000113019f00000da90060009c00000da906008041000000c003600210000000000113019f369f369a0000040f000000600f0000390000000e0e000029000000200d00008a0000000004000031000000020c000367000000010220018f0003000000010355000000600310027000010da90030019d00000da906300197000000000006004b00000000030f0019000018670000613d00000db50060009c00001f7f0000213d0000001f036000390000000003d3016f0000003f033000390000000007d3016f000000400300043d0000000007730019000000000037004b0000000008000039000000010800403900000db50070009c00001f7f0000213d000000010080019000001f7f0000c13d000000400070043f00000000096304360000000008d6017000000000078900190000185a0000613d000000000a01034f00000000ab0a043c0000000009b90436000000000079004b000018560000c13d0000001f06600190000018670000613d000000000881034f0000000306600210000000000907043300000000096901cf000000000969022f000000000808043b0000010006600089000000000868022f00000000066801cf000000000696019f0000000000670435000000000002004b00001abd0000613d000000800200043d0000001206000029000000000062004b000025ea0000a13d0000001102000029000000a0022000390000000000320435000000800200043d000000000062004b000025ea0000a13d00000001066000390000000f0060006c000017da0000413d000000400200043d00000ca50000013d00000080040000390000000006000019000018830000013d0000001f0980003900000ea6099001970000000008780019000000000008043500000000077900190000000106600039000000000016004b00000cae0000813d0000000008270049000000400880008a00000000038304360000002004400039000000000804043300000000980804340000000007870436000000000008004b0000187b0000613d000000000a000019000000000b7a0019000000000ca90019000000000c0c04330000000000cb0435000000200aa0003900000000008a004b0000188d0000413d0000187b0000013d000000800400003900000040050000390000000007000019000018a10000013d0000001f0a90003900000ea60aa001970000000009890019000000000009043500000000088a00190000000107700039000000000017004b000008120000813d0000000009280049000000400990008a00000000039304360000002004400039000000000904043300000000a9090434000000000009004b0000000009000039000000010900c0390000000009980436000000000a0a04330000000000590435000000400b80003900000000a90a043400000000009b04350000006008800039000000000009004b000018990000613d000000000b000019000000000c8b0019000000000dba0019000000000d0d04330000000000dc0435000000200bb0003900000000009b004b000018b40000413d000018990000013d0000000e010000290000000501100270000000000100003f000000400100043d000000640210003900000e13030000410000000000320435000000440210003900000e1403000041000000000032043500000024021000390000002e03000039000017370000013d0000001202000029000000c00220021000000e16022001970000086b03000039000000000403041a00000e1704400197000000000224019f000000000023041b00000db40010009c00001f7f0000213d0000004002100039000000400020043f0000000902000039000000000221043600000e18030000410000000000320435000000400300043d001200000003001d00000db40030009c00001f7f0000213d00000012040000290000004003400039000000400030043f0000000503000039000000000434043600000e1903000041000d00000004001d000000000034043500000da90020009c00000da9020080410000004002200210000000000101043300000da90010009c00000da9010080410000006001100210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d0000000d0200002900000da90020009c00000da90200804100000040022002100000001203000029000000000303043300000da90030009c00000da9030080410000006003300210000000000223019f000000000101043b001200000001001d000000000100041400000da90010009c00000da901008041000000c001100210000000000121019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b0000047f020000390000001203000029000000000032041b0000048002000039000000000012041b000000000100041a0000ff000010019000001ca60000c13d000000400100043d0000142e0000013d000000200e00008a000000000f000410000000000300001900100000000a001d000f0000000b001d000e0000000c001d000019270000013d000000010220018f000000110300002900000000022304360000000000420435000000120300002900000001033000390000000000b3004b00001bf10000813d000000800200043d000000000032004b000025ea0000a13d001200000003001d00000005023002100000000004c200190000000203000367000000000443034f000000000504043b00000000040000310000000006a40049000000430660008a00000e3d0760019700000e3d08500197000000000978013f000000000078004b000000000700001900000e3d07004041000000000065004b000000000600001900000e3d0600804100000e3d0090009c000000000706c019000000000007004b00001d100000c13d000000a0022000390000000002020433001100000002001d0000000005c50019000000000253034f000000000202043b00000db50020009c00001d100000213d0000000006240049000000200450003900000e3d0560019700000e3d07400197000000000857013f000000000057004b000000000500001900000e3d05004041000000000064004b000000000600001900000e3d0600204100000e3d0080009c000000000506c019000000000005004b00001d100000c13d000000000543034f0000000006e20170000000400300043d0000000004630019000019620000613d000000000705034f0000000008030019000000007907043c0000000008980436000000000048004b0000195e0000c13d0000001f072001900000196f0000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000004230019000000000004043500000000040004140000000400f0008c0000197a0000c13d00000001030000310000000102000039000000000003004b00000000040d0019000019940000c13d0000191f0000013d00000da90020009c00000da902008041000000600120021000000da90030009c00000da9030080410000004002300210000000000112019f00000da90040009c00000da904008041000000c002400210000000000112019f00000000020f0019369f369a0000040f000000000f000410000000200e00008a000000600d0000390000000e0c0000290000000f0b000029000000100a0000290003000000010355000000600310027000010da90030019d00000da903300197000000000003004b00000000040d00190000191f0000613d00000db50030009c00001f7f0000213d0000001f043000390000000004e4016f0000003f044000390000000005e4016f000000400400043d0000000005540019000000000045004b0000000006000039000000010600403900000db50050009c00001f7f0000213d000000010060019000001f7f0000c13d000000400050043f00000000073404360000000006e301700000000005670019000019ad0000613d000000000801034f000000008908043c0000000007970436000000000057004b000019a90000c13d0000001f033001900000191f0000613d000000000661034f0000000303300210000000000705043300000000073701cf000000000737022f000000000606043b0000010003300089000000000636022f00000000033601cf000000000373019f00000000003504350000191f0000013d00000e4a01000041000000800010043f00000e2e01000041000036a100010430000000400100043d00000e7e020000410000239d0000013d0000006501000039000000000101041a000000020010008c00001a6f0000c13d000000400100043d000000440210003900000e8f03000041000000000032043500000024021000390000001f03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000e6a011001c7000036a10001043000000e1101000041000000000010044300000012010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001be60000c13d000000400100043d000000640210003900000e7a030000410000000000320435000000440210003900000e7b03000041000000000032043500000024021000390000002d03000039000017370000013d000000100200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000db7011001c70000001202000029369f36950000040f000000600310027000000da903300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000100570002900001a0b0000613d000000000801034f0000001009000029000000008a08043c0000000009a90436000000000059004b00001a070000c13d000000000006004b00001a180000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000210550008a0000000505500210000000010020019000001c8a0000613d0000001f01400039000000600210018f0000001001200029000000000021004b0000000002000039000000010200403900000db50010009c00001f7f0000213d000000010020019000001f7f0000c13d000000400010043f000000200030008c00001d100000413d000000100200002900000000020204330000000503500270000000000302001f00000e680020009c00001c9a0000c13d00000e1101000041000000000010044300000012010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b000019e70000613d00000e6801000041000000000201041a00000e15022001970000001205000029000000000252019f000000000021041b000000000100041400000da90010009c00000da901008041000000c00110021000000e1a011001c70000800d02000039000000020300003900000e6f04000041369f36900000040f000000010020019000001d100000613d00000011010000290000000001010433000000000001004b00001beb0000613d000000400100043d001000000001001d00000e700010009c00001f7f0000213d00000010030000290000006001300039000000400010043f000000400130003900000e71020000410000000000210435000000200130003900000e72020000410000000000210435000000270100003900000000001304350000001101000029000000000201043300000000010004140000001203000029000000040030008c00001d430000c13d0000000102000039000000010400003100001d560000013d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000e260010019800001b020000c13d000000c00110027000000da901100197000d00000001001d369f2df40000040f0000086b03000039000000000203041a00000e1702200197000000c00110021000000e1601100197000000000112019f000000000013041b369f2a920000040f00000002020003670000000403200370000000000303043b0000000004010019000c00000001001d00000000013104360000002403200370000000000303043b00000000003104350000004401200370000000000101043b000000400340003900000000001304350000006401200370000000000101043b000000600340003900000000001304350000008401200370000000000101043b00000080034000390000000000130435000000a401200370000000000101043b000000a0034000390000000000130435000000c401200370000000000101043b000000c0034000390000000000130435000000e401200370000000000101043b000000e002400039000000000012043500000100014000390000000d02000029000000000021043500000120014000390000000e02000029000000000021043500000140014000390000001202000029000000000021043500000160014000390000001102000029000000000021043500000000030000310000000f010000290000001002000029369f2a9e0000040f0000000c03000029000001800230003900000000001204350000000001030019369f33640000040f000012990000013d00000e2d01000041000000800010043f00000e2e01000041000036a1000104300000000001030433000000440010008c00001d100000413d0000000401300039000000000101043300000e280010009c00001d100000213d000000200010008c00001d100000413d0000002402300039000000000302043300000db50030009c00001d100000213d000000000421001900000000012300190000001f02100039000000000042004b000000000300001900000e3d0300804100000e3d0220019700000e3d05400197000000000652013f000000000052004b000000000200001900000e3d0200404100000e3d0060009c000000000203c019000000000002004b00001d100000c13d000000003101043400000db50010009c00001f7f0000213d0000001f021000390000000002d2016f0000003f022000390000000005d2016f000000400200043d0000000005520019000000000025004b0000000006000039000000010600403900000db50050009c00001f7f0000213d000000010060019000001f7f0000c13d000000400050043f00000000051204360000000006310019000000000046004b00001d100000213d000000000001004b00001af90000613d000000000400001900000000065400190000000007340019000000000707043300000000007604350000002004400039000000000014004b00001af20000413d0000000001150019000000000001043500000daf01000041000000400300043d001200000003001d00000000001304350000000401300039369f2dc80000040f00001c900000013d000000400100043d00000e4a020000410000239d0000013d000000400100043d000000440210003900000e6903000041000000000032043500000024021000390000001803000039000019cc0000013d00000000020000310000001101000029369f2b020000040f369f2dff0000040f000e00000001001d000000000010043f0000087201000039000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000000101041a000000000001004b00001ca30000c13d0000000e01000029000000000010043f0000087201000039000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b0000000102000039000000000021041b00000002020003670000000f01200360000000000101043b000f00000001001d00000da90010009c00001d100000213d0000001001200360000000000101043b000e00000001001d00000da90010009c00001d100000213d0000001001000029001000200010003d0000001001200360000000000101043b0000000003000031000000120430006a000000230440008a00000e3d0540019700000e3d06100197000000000756013f000000000056004b000000000500001900000e3d05004041000000000041004b000000000400001900000e3d0400804100000e3d0070009c000000000504c019000000000005004b00001d100000c13d0000001104100029000000000142034f000000000101043b00000db50010009c00001d100000213d0000000005130049000000200640003900000e3d0450019700000e3d07600197000000000847013f000000000047004b000000000400001900000e3d04004041000000000056004b000000000500001900000e3d0500204100000e3d0080009c000000000405c019000000000004004b00001d100000c13d0000001f0410003900000ea6044001970000003f0440003900000ea605400197000000400400043d0000000005540019000000000045004b0000000008000039000000010800403900000db50050009c00001f7f0000213d000000010080019000001f7f0000c13d000000400050043f00000000051404360000000008610019000000000038004b00001d100000213d000000000662034f00000ea6071001980000001f0810018f000000000375001900001b810000613d000000000906034f000000000a050019000000009b09043c000000000aba043600000000003a004b00001b7d0000c13d000000000008004b00001b8e0000613d000000000676034f0000000307800210000000000803043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000630435000000000115001900000000000104350000000003040433000000000003004b000000000100001900001ba70000613d00000da90050009c00000da905008041000000400150021000000da90030009c00000da9030080410000006002300210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d0000000202000367000000000101043b000000100b000029000000a003b0008a000000000332034f000000c004b0008a000000000442034f000000e005b0008a000000000752034f0000010005b0008a000000000852034f0000006005b0008a000000000652034f0000008005b0008a0000012009b0008a000001600ab0008a000001400bb0008a000000000bb2034f000000000aa2034f000000000992034f000000000252034f000000000502043b000000000606043b000000000208043b000000000707043b000000000404043b000000000303043b000000000809043b00000000090a043b000000000a0b043b000000400b00043d000001200cb0003900000000001c04350000010001b000390000000000a10435000000e001b000390000000000910435000000c001b000390000000000810435000000a001b000390000000e0800002900000000008104350000008001b000390000000f0800002900000000008104350000006001b0003900000000003104350000004001b0003900000000004104350000002001b00039000000000071043500000000002b043500000da900b0009c00000da90b0080410000004001b00210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e80011001c70000800d02000039000000030300003900000e81040000410000124d0000013d00000e6801000041000000000201041a00000e150220019700000012022001af000000000021041b00000000010004150000000f02000029000000000112004900000000010000020000000001000019000036a00001042e000000400200043d000008090000013d000000400100043d00000e56020000410000239d0000013d00000e1101000041000000000010044300000012010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b000019e70000613d00000e6801000041000000000201041a00000e150220019700000012022001af000000000021041b0000000001000415000000100200002900001bed0000013d000000400100043d00000e7d020000410000239d0000013d000000110200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000db7011001c70000001202000029369f36950000040f000000600310027000000da903300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000110570002900001c2b0000613d000000000801034f0000001109000029000000008a08043c0000000009a90436000000000059004b00001c270000c13d000000000006004b00001c380000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000000050004150000001d0550008a0000000505500210000000010020019000001c8a0000613d0000001f01400039000000600210018f0000001101200029000000000021004b0000000002000039000000010200403900000db50010009c00001f7f0000213d000000010020019000001f7f0000c13d000000400010043f000000200030008c00001d100000413d000000110200002900000000020204330000000503500270000000000302001f00000e680020009c00001c9a0000c13d00000e1101000041000000000010044300000012010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b000019e70000613d00000e6801000041000000000201041a00000e15022001970000001205000029000000000252019f000000000021041b000000000100041400000da90010009c00000da901008041000000c00110021000000e1a011001c70000800d02000039000000020300003900000e6f04000041369f36900000040f000000010020019000001d100000613d000000400100043d001100000001001d00000e700010009c00001f7f0000213d00000011030000290000006001300039000000400010043f000000400130003900000e71020000410000000000210435000000200130003900000e7202000041000000000021043500000027010000390000000000130435000000800200043d00000000010004140000001203000029000000040030008c00001db90000c13d0000000102000039000000010400003100001dc80000013d000000400200043d001200000002001d00000daf0100004100000000001204350000000401200039369f33570000040f0000001202000029000000000121004900000da90010009c00000da901008041000000600110021000000da90020009c00000da9020080410000004002200210000000000121019f000036a100010430000000640210003900000e6d030000410000000000320435000000440210003900000e6e03000041000000000032043500000024021000390000002903000039000017370000013d000000400100043d00000e7f020000410000239d0000013d00000001020000390000006501000039000000000021041b000000100000006b00001cae0000c13d000000400100043d00000e1f020000410000239d0000013d0000086901000039000000000201041a00000e15022001970000001005000029000000000252019f000000000021041b000000000100041400000da90010009c00000da901008041000000c00110021000000e1a011001c70000800d02000039000000020300003900000e1b04000041369f36900000040f000000010020019000001d100000613d0000000f0000006b00001cd70000c13d000000400100043d00000e1e020000410000239d0000013d000000c00100043d00000dac0010009c0000239b0000213d0000000002000411000000000021004b000002990000613d00001cd40000013d000000120100002900000044011000390000000201100367000000000101043b00000dac0010009c0000239b0000213d0000000002000411000000000021004b000003370000613d000000400100043d00000e82020000410000239d0000013d0000086a01000039000000000201041a00000e15022001970000000f05000029000000000252019f000000000021041b000000000100041400000da90010009c00000da901008041000000c00110021000000e1a011001c70000800d02000039000000020300003900000e1c04000041369f36900000040f000000010020019000001d100000613d00000c5b01000039000000000201041a00000e15032001970000001105000029000000000353019f000000000031041b000000000100041400000dac0620019700000da90010009c00000da901008041000000c00110021000000e1a011001c70000800d02000039000000030300003900000e1d04000041369f36900000040f000000010020019000001d100000613d0000000e0000006b000001dc0000c13d000000000200041a00000ea801200197000000000010041b000000400100043d0000000103000039000000000031043500000da90010009c00000da9010080410000004001100210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000db1011001c70000800d0200003900000db204000041369f36900000040f0000000100200190000001dc0000c13d0000000001000019000036a10001043000000e490100004100000000001004430000000001000412000000040010044300000040010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000da9011001970000000e0010006b00000a500000213d00000010010000290000000001010433000e00000001001d00000e490100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000da9011001970000000d0010002a00000d1a0000413d0000000e0200002900000da9022001970000000d01100029000000000012004b00001e910000a13d000000400100043d00000e5d020000410000239d0000013d0000000e0300002900000da90030009c00000da903008041000000400330021000000da90020009c00000da9020080410000006002200210000000000232019f00000da90010009c00000da901008041000000c001100210000000000112019f0000001202000029369f369a0000040f000000010220018f0003000000010355000000600110027000010da90010019d00000da904100197000000000004004b00001d730000c13d000000600100003900000080030000390000000001010433000000000002004b00001d9d0000c13d000000000001004b00001ddb0000c13d000000400300043d001200000003001d00000daf01000041000000000013043500000004013000390000002002000039000000000021043500000024023000390000001001000029369f2ad60000040f0000001202000029000000000121004900000da90010009c00000da90100804100000da90020009c00000da90200804100000060011002100000004002200210000000000121019f000036a10001043000000db50040009c00001f7f0000213d0000001f0140003900000ea6011001970000003f0110003900000ea603100197000000400100043d0000000003310019000000000013004b0000000006000039000000010600403900000db50030009c00001f7f0000213d000000010060019000001f7f0000c13d000000400030043f000000000341043600000ea6054001980000001f0640018f0000000004530019000000030700036700001d8f0000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00001d8b0000c13d000000000006004b00001d5a0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500001d5a0000013d000000000001004b00001beb0000c13d00000e1101000041000000000010044300000012010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001beb0000c13d000000400100043d000000440210003900000e7903000041000000000032043500000024021000390000001d03000039000019cc0000013d000000400100043d00000e92020000410000239d0000013d00000da90020009c00000da902008041000000600220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e73011001c70000001202000029369f369a0000040f000000010220018f0003000000010355000000600110027000010da90010019d00000da904100197000000000004004b00001de30000c13d000000600100003900000080030000390000000001010433000000000002004b00001e9f0000c13d000000000001004b00001ddb0000c13d000000400300043d001200000003001d00000daf0100004100000000001304350000000401300039000000200200003900000000002104350000002402300039000000110100002900001d680000013d00000da90030009c00000da903008041000000400230021000000da90010009c00000da9010080410000006001100210000000000121019f000036a10001043000000db50040009c00001f7f0000213d0000001f0140003900000ea6011001970000003f0110003900000ea603100197000000400100043d0000000003310019000000000013004b0000000005000039000000010500403900000db50030009c00001f7f0000213d000000010050019000001f7f0000c13d000000400030043f000000000341043600000ea6054001980000001f0640018f0000000004530019000000030700036700001dff0000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00001dfb0000c13d000000000006004b00001dcc0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500001dcc0000013d00000008020000290000006002200039000000000202043300000006030000290000000003030433000000400400043d0000006005400039000000000015043500000040014000390000000000310435000000f8012002700000002002400039000000000012043500000002010000290000000000140435000000000000043f00000da90040009c00000da9040080410000004001400210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e39011001c70000000102000039369f36950000040f000000600310027000000da903300197000000200030008c000000200400003900000000040340190000001f0540018f000000200440019000001e360000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b00001e320000c13d000000000005004b00001e430000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000001f850000613d000000000100043d00000dac0010019800000000010060190000079b0000613d000000120110014f00000dac0010019800001ed40000613d0000079b0000013d00000008020000290000006002200039000000000202043300000006030000290000000003030433000000400400043d0000006005400039000000000015043500000040014000390000000000310435000000f8012002700000002002400039000000000012043500000002010000290000000000140435000000000000043f00000da90040009c00000da9040080410000004001400210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e39011001c70000000102000039369f36950000040f000000600310027000000da903300197000000200030008c000000200400003900000000040340190000001f0540018f000000200440019000001e780000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b00001e740000c13d000000000005004b00001e850000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000001f910000613d000000000100043d00000dac00100198000000000100601900000e7f0000613d000000120110014f00000dac0010019800001fde0000613d00000e7f0000013d0000000301000029000000000101043300000da901100198000e00000000001d000020430000613d00000e4e0010009c0000203b0000813d0000000d0200002900000da9022001970000000001210019000e00000001001d00000da90010009c00000d1a0000213d0000203c0000013d000000000001004b00001c0b0000c13d00000e1101000041000000000010044300000012010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001c0b0000c13d00001daf0000013d00000da90010009c00000da901008041000000400110021000000da90030009c00000da9030080410000006003300210000000000113019f00000da90020009c00000da902008041000000c002200210000000000121019f0000001202000029369f36950000040f000000010220018f0003000000010355000000600110027000010da90010019d00000da904100197000000000004004b00001f530000c13d00000060010000390000008003000039000000000002004b00001f500000613d0000000001010433000000200010008c00001f500000413d00000e280010009c00001d100000213d000000200010008c00001d100000413d000000000103043300000e3a0010009c00001f500000c13d000000400100043d00000080021000390000000e03000029000000000032043500000040021000390000008003000039000000000032043500000020021000390000000f03000029000000000032043500000010020000290000000000210435000000a003100039000000070430002900000002020003670000000d05200360000000070000006b00001eec0000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b00001ee80000c13d0000000a0000006b00001efa0000613d00000007055003600000000a060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000e04300029000000000004043500000009033000290000000004130049000000600510003900000000004504350000000c0400002900000000034304360000000b042003600000000302300029000000030000006b00001f0c0000613d000000000504034f0000000006030019000000005705043c0000000006760436000000000026004b00001f080000c13d000000120500002900000dac06500197000000050000006b00001f1c0000613d000000030440036000000005050000290000000305500210000000000702043300000000075701cf000000000757022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000474019f00000000004204350000000c0230002900000000000204350000000402100069000000000232001900000da90020009c00000da902008041000000600220021000000da90010009c00000da9010080410000004001100210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000800d02000039000000030300003900000e3b040000410000001105000029369f36900000040f0000000100200190000001dc0000c13d00001d100000013d00000da90010009c00000da901008041000000400110021000000da90030009c00000da9030080410000006003300210000000000113019f00000da90020009c00000da902008041000000c002200210000000000121019f0000001202000029369f36950000040f000000010220018f0003000000010355000000600110027000010da90010019d00000da904100197000000000004004b00001f7d0000c13d00000060010000390000008003000039000000000002004b00001f500000613d0000000001010433000000200010008c00001fd70000813d000000400100043d00000e62020000410000239d0000013d00000db50040009c00001f7f0000213d0000001f0140003900000ea6011001970000003f0110003900000ea603100197000000400100043d0000000003310019000000000013004b0000000005000039000000010500403900000db50030009c00001f7f0000213d000000010050019000001f7f0000c13d000000400030043f000000000341043600000ea6054001980000001f0640018f0000000004530019000000030700036700001f6f0000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00001f6b0000c13d000000000006004b00001ec80000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500001ec80000013d00000db50040009c00001faf0000a13d00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a1000104300000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001f8c0000c13d00001f9c0000013d0000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001f980000c13d000000000005004b00001fa90000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000da90020009c00000da9020080410000004002200210000000000112019f000036a1000104300000001f0140003900000ea6011001970000003f0110003900000ea603100197000000400100043d0000000003310019000000000013004b0000000005000039000000010500403900000db50030009c00001f7f0000213d000000010050019000001f7f0000c13d000000400030043f000000000341043600000ea6054001980000001f0640018f0000000004530019000000030700036700001fc90000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00001fc50000c13d000000000006004b00001f4b0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500001f4b0000013d00000e280010009c00001d100000213d000000200010008c00001d100000413d000000000103043300000e3a0010009c00001f500000c13d000000400100043d00000080021000390000000e0300002900000000003204350000004002100039000000800300003900000000003204350000002002100039000000100300002900000000003204350000000f020000290000000000210435000000a003100039000000070430002900000002020003670000000d05200360000000070000006b00001ff60000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b00001ff20000c13d0000000a0000006b000020040000613d00000007055003600000000a060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000e04300029000000000004043500000009033000290000000004130049000000600510003900000000004504350000000c0400002900000000034304360000000b042003600000000302300029000000030000006b000020160000613d000000000504034f0000000006030019000000005705043c0000000006760436000000000026004b000020120000c13d000000050000006b000020240000613d000000030440036000000005050000290000000305500210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004204350000000c0230002900000000000204350000000402100069000000000232001900000da90020009c00000da902008041000000600220021000000da90010009c00000da9010080410000004001100210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000800d02000039000000030300003900000e3b04000041000000110500002900000012060000290000124d0000013d000e00000001001d00000002010000290000000001010433000000000001004b000020430000c13d000000400100043d00000e5b020000410000239d0000013d00000012010000290000000001010433000d00000001001d00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000dac011001970000000d0010006b000020920000c13d0000000001000416000000000001004b000020950000613d000000070100002900000000010104330000000002000416000000000012004b000023a30000c13d00000e110100004100000000001004430000000d010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000400200043d00000e4f01000041000b00000002001d000000000012043500000000010004140000000d02000029000000040020008c0000208c0000613d0000000b0200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e50011001c7000080090200003900000000030004160000000d040000290000000005000019369f36900000040f000000600310027000010da90030019d00030000000103550000000100200190000023210000613d0000000b0100002900000db50010009c00001f7f0000213d0000000b01000029000000400010043f000020b20000013d0000000001000416000000000001004b000023a30000c13d0000001201000029000000000101043300000dac0010009c0000239b0000213d00000007020000290000000003020433000000400200043d000000200420003900000e5105000041000000000054043500000064042000390000000000340435000000000300041000000dac0330019700000044042000390000000000340435000000000300041100000dac03300197000000240420003900000000003404350000006403000039000000000032043500000e350020009c00001f7f0000213d000000a003200039000000400030043f369f354d0000040f000000400100043d000b00000001001d0000000401000029000000000701043300000001010000290000000006010433000000050100002900000000050104330000000f01000029000000000101043300000008020000290000000002020433000000070300002900000000030304330000000604000029000000000404043300000011080000290000000008080433000000100900002900000000090904330000000c0a000029000000000a0a0433000000020b000029000000000b0b0433000000120c000029000000000c0c04330000000b0e0000290000000000ce0435000001200ce00039000001400d0000390000000000dc0435000001000ce000390000000000bc0435000000e00be000390000000000ab0435000000c00ae000390000000e0b0000290000000000ba043500000da909900197000000a00ae0003900000000009a043500000da9088001970000008009e0003900000000008904350000006008e0003900000000004804350000004004e0003900000000003404350000002003e0003900000000002304350000014002e00039000000003101043400000000001204350000016002e00039000000000001004b000020f00000613d000000000400001900000000082400190000000009430019000000000909043300000000009804350000002004400039000000000014004b000020e90000413d0000001f0310003900000ea60330019700000000012100190000000000010435000001600130003900000da90010009c00000da90100804100000060011002100000000b0200002900000da90020009c00000da9020080410000004002200210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000800d02000039000000040300003900000e52040000410000124d0000013d0000001201000029000000000010043f0000087201000039000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b0000000202000039000000000021041b000000110200002900000020012000390000000001010433000400000001001d0000000001020433000500000001001d00000040012000390000000001010433000600000001001d00000100012000390000000001010433000300000001001d000000e0012000390000000001010433000200000001001d00000009010000290000000001010433000b00000001001d000000c0012000390000000001010433000d00000001001d000000a0012000390000000001010433000e00000001001d0000008001200039000100000001001d0000000001010433000f00000001001d00000060012000390000000001010433000a00000001001d00000140012000390000000001010433000900000001001d00000010010000290000000001010433001000000001001d000001600120003900000000010104330000000012010434000000000002004b001200000000001d000021550000613d00000da90020009c00000da902008041000000600220021000000da90010009c00000da9010080410000004001100210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b001200000001001d00000008010000290000000001010433001100000001001d000000070100002900000000010104330000000023010434000000000003004b0000000001000019000021700000613d00000da90030009c00000da903008041000000600130021000000da90020009c00000da9020080410000004002200210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000400200043d00000e2f0020009c00001f7f0000213d000000090300002900000da905300197000000100300002900000da9063001970000000c0300002900000000070304330000008003200039000000400030043f000000600320003900000002040000390000000000430435000000400420003900000000007404350000002007200039000000000017043500000011010000290000000000120435000000400100043d000001400810003900000012090000290000000000980435000001200810003900000004090000290000000000980435000001000810003900000005090000290000000000980435000000e00810003900000006090000290000000000980435000000c0081000390000000000580435000000a005100039000000000065043500000080051000390000000b06000029000000000065043500000060051000390000000d06000029000000000065043500000040051000390000000e06000029000000000065043500000020051000390000000f0600002900000000006504350000000a0500002900000000005104350000000002020433000001600510003900000000002504350000000002070433000001800510003900000000002504350000000002040433000001a00410003900000000002404350000000002030433000000030020008c000022340000413d00000e8c01000041000000000010043f0000002101000039000000040010043f00000e8601000041000036a100010430000000400100043d00000e91020000410000239d0000013d00000e8701000041000000000010044300000000010004100000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800a02000039369f36950000040f000000010020019000002a610000613d000000000101043b000e00000001001d00000e1101000041000000000010044300000011010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000400200043d00000e4f01000041000d00000002001d000000000012043500000000010004140000001102000029000000040020008c000023b10000613d0000000d0200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f0000000e0000006b000023a60000c13d00000db7011001c70000001102000029000023ab0000013d000000100100002900000da90010009c00000da901008041000000400110021000000da90040009c00000da9040080410000006004400210000000000114019f00000da90030009c00000da903008041000000c003300210000000000113019f369f369a0000040f000000010220015f0003000000010355000000600110027000010da90010019d00000da901100197000000000001004b000022090000c13d0000000100200190000001dc0000613d000000400200043d001200000002001d00000e590100004100000000001204350000000401200039000000110200002900001b000000013d00000db50010009c00001f7f0000213d0000001f0310003900000ea6033001970000003f0330003900000ea603300197000000400400043d0000000003340019001100000004001d000000000043004b0000000004000039000000010400403900000db50030009c00001f7f0000213d000000010040019000001f7f0000c13d000000400030043f0000001103000029000000000613043600000ea6031001980000001f0410018f00000000013600190000000305000367000022260000613d000000000705034f000000007807043c0000000006860436000000000016004b000022220000c13d000000000004004b000022000000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000022000000013d000001c003100039000000000023043500000da90010009c00000da9010080410000004001100210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e83011001c70000800d02000039000000040300003900000e8404000041000000020500002900000003060000290000000007000019369f36900000040f000000010020019000001d100000613d00000001010000290000000001010433001100000001001d00000dac0010009c0000239b0000213d00000008010000290000000001010433001000000001001d00000dac0010009c0000239b0000213d0000000c010000290000000001010433000f00000001001d00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000dac01100197000000110010006b000023c70000c13d00000e1101000041000000000010044300000010010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b00000e490200004100000000002004430000000002000412000000040020044300000020020000390000002400200443000000000001004b000024560000c13d000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000e1102000041000000000020044300000dac01100197001200000001001d0000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000400200043d00000e85010000410000000000120435000e00000002001d00000004012000390000000f02000029000000000021043500000000010004140000001202000029000000040020008c000022b40000613d0000000e0200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e86011001c70000001202000029369f36900000040f000000600310027000010da90030019d00030000000103550000000100200190000026700000613d0000000e0100002900000db50010009c00001f7f0000213d0000000e01000029000000400010043f00000e8701000041000000000010044300000000010004100000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800a02000039369f36950000040f000000010020019000002a610000613d000000000101043b0000000f0010006c0000267d0000813d000000400100043d000000440210003900000e8b0300004100001db20000013d001000000001001d00000003010000290000000001010433000000000001004b000020400000613d0000000f010000290000000001010433000b00000001001d00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000dac011001970000000b0010006b0000232e0000c13d0000000001000416000000000001004b000023310000613d0000000e0100002900000000010104330000000002000416000000000012004b000023a30000c13d00000e110100004100000000001004430000000b010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000400200043d00000e4f01000041000a00000002001d000000000012043500000000010004140000000b02000029000000040020008c0000231b0000613d0000000a0200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e50011001c7000080090200003900000000030004160000000b040000290000000005000019369f36900000040f000000600310027000010da90030019d00030000000103550000000100200190000024f90000613d0000000a0100002900000db50010009c00001f7f0000213d0000000a01000029000000400010043f0000234e0000013d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023290000c13d00001f9c0000013d0000000001000416000000000001004b000023a30000c13d0000000f01000029000000000101043300000dac0010009c0000239b0000213d0000000e020000290000000003020433000000400200043d000000200420003900000e5105000041000000000054043500000064042000390000000000340435000000000300041000000dac0330019700000044042000390000000000340435000000000300041100000dac03300197000000240420003900000000003404350000006403000039000000000032043500000e350020009c00001f7f0000213d000000a003200039000000400030043f369f354d0000040f000000400100043d000a00000001001d0000000d010000290000000007010433000000020100002900000000060104330000000101000029000000000501043300000011010000290000000001010433000000080200002900000000020204330000000e030000290000000003030433000000060400002900000000040404330000000c08000029000000000808043300000005090000290000000009090433000000120a000029000000000a0a0433000000030b000029000000000b0b04330000000f0c000029000000000c0c04330000000a0e0000290000000000ce0435000001200ce00039000001400d0000390000000000dc0435000001000ce000390000000000bc0435000000e00be000390000000000ab0435000000c00ae00039000000100b0000290000000000ba043500000da909900197000000a00ae0003900000000009a043500000da9088001970000008009e0003900000000008904350000006008e0003900000000004804350000004004e0003900000000003404350000002003e0003900000000002304350000014002e00039000000003101043400000000001204350000016002e00039000000000001004b0000238c0000613d000000000400001900000000082400190000000009430019000000000909043300000000009804350000002004400039000000000014004b000023850000413d0000001f0310003900000ea60330019700000000012100190000000000010435000001600130003900000da90010009c00000da90100804100000060011002100000000a0200002900000da90020009c00000da9020080410000004002200210000000000121019f0000000002000414000020fe0000013d000000400100043d00000e2d02000041000000000021043500000da90010009c00000da901008041000000400110021000000db7011001c7000036a100010430000000400100043d00000e5c020000410000239d0000013d00000e50011001c700008009020000390000000e0300002900000011040000290000000005000019369f36900000040f0003000000010355000000600310027000010da90030019d0000000100200190000023b70000613d0000000d0100002900000db50010009c00001f7f0000213d0000000d01000029000000400010043f000010430000013d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023bf0000c13d00001f9c0000013d000000400100043d00000e95020000410000239d0000013d000000400200043d000000200120003900000e3f03000041000000000031043500000044012000390000000f0300002900000000003104350000002401200039000000100300002900000000003104350000004401000039000000000012043500000e2f0020009c00001f7f0000213d0000008001200039000000400010043f0000001101000029369f354d0000040f00000007010000290000000001010433000e00000001001d0000000021010434001200000002001d000000000001004b000012990000613d00000e1101000041000000000010044300000010010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b000012990000613d00000e1101000041000000000010044300000010010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000400300043d000000640130003900000080020000390000000000210435000000000100041100000dac011001970000004402300039000000000012043500000024013000390000000f02000029000000000021043500000e8a01000041000000000013043500000004013000390000001102000029000000000021043500000084023000390000000e0100002900000000010104330000000000120435001100000003001d000000a402300039000000000001004b000024200000613d000000000300001900000000042300190000001205300029000000000505043300000000005404350000002003300039000000000013004b000024190000413d0000000002210019000000000002043500000000020004140000001003000029000000040030008c0000243c0000613d0000001f0110003900000ea601100197000000a40110003900000da90010009c00000da9010080410000006001100210000000110300002900000da90030009c00000da9030080410000004003300210000000000131019f00000da90020009c00000da902008041000000c002200210000000000112019f0000001002000029369f36900000040f000000600310027000010da90030019d00030000000103550000000100200190000026840000613d000000110100002900000db50010009c00001f7f0000213d0000001101000029000000400010043f000012990000013d000000400100043d00000e96020000410000239d0000013d000000400200043d00000e97010000410000000000120435000000000100041000000dac01100197001100000002001d0000000402200039000000000012043500000000010004140000000f02000029000000040020008c000025060000c13d0000000103000031000000200030008c00000020040000390000000004034019000025310000013d000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b000000400200043d000000200320003900000e3f04000041000000000043043500000044032000390000000f0400002900000000004304350000002403200039000000100400002900000000004304350000004403000039000000000032043500000e2f0020009c00001f7f0000213d0000008003200039000000400030043f00000dac01100197000023d80000013d0000000001000415000e00000001001d00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000dac011001970000000f0010006b000025fc0000c13d00000e110100004100000000001004430000000f010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000400200043d00000e85010000410000000000120435001100000002001d00000004012000390000000302000029000000000021043500000000010004140000000f02000029000000040020008c000024b20000613d000000110200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e86011001c70000000f02000029369f36900000040f000000600310027000010da90030019d00030000000103550000000100200190000026910000613d000000110100002900000db50010009c00001f7f0000213d0000001101000029000000400010043f0000086a01000039000000000101041a001100000001001d00000c5a01000039000000000101041a00000e1102000041000000000020044300000dac01100197001000000001001d0000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000110100002900000dac01100197000000400300043d00000ea2020000410000000000230435001100000003001d0000000402300039000000000012043500000000010004140000001002000029000000040020008c0000286f0000613d000000110200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000ea3011001c70000800902000039000000030300002900000010040000290000000005000019369f36900000040f000000600310027000010da90030019d000300000001035500000001002001900000286f0000c13d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000024f40000c13d00001f9c0000013d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000025010000c13d00001f9c0000013d000000110200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e86011001c70000000f02000029369f36950000040f000000600310027000000da903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000001105700029000025200000613d000000000801034f0000001109000029000000008a08043c0000000009a90436000000000059004b0000251c0000c13d000000000006004b0000252d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000025f00000613d0000001f01400039000000600210018f0000001101200029000000000021004b0000000002000039000000010200403900000db50010009c00001f7f0000213d000000010020019000001f7f0000c13d000000400010043f000000200030008c00001d100000413d00000011010000290000000001010433000700000001001d000500000000001d001100000000001d001000000000001d0000254a0000013d00000011020000290000000102200039001100000002001d0000000c0020006c0000110d0000813d0000000e010000290000000001010433000000110010006c000025ea0000a13d000000110100002900000005021002100000000b01200029000d00000001001d0000000001010433000000000001004b000025450000613d000000100010002a00000d1a0000413d0000001004100029001000000004001d000000070040006c0000269e0000213d0000000a030000290000000003030433000000110030006c000025ea0000a13d0000000802200029000900000002001d0000000003020433000000400200043d00000044042000390000000000140435000000200120003900000e3f04000041000000000041043500000dac03300197000000240420003900000000003404350000004403000039000000000032043500000e2f0020009c00001f7f0000213d0000008003200039000000400030043f000000000302043300000000020004140000000f04000029000000040040008c0000257a0000c13d0000000001010433000000000010043f0000000103000031000025a60000013d00000da90010009c00000da901008041000000400110021000000da90030009c00000da9030080410000006003300210000000000113019f00000da90020009c00000da902008041000000c002200210000000000121019f0000000f02000029369f36900000040f000000600310027000000da903300197000000200030008c000000200500003900000000050340190000002004500190000025940000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000025900000c13d0000001f05500190000025a10000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000025bb0000613d000000000100043d000000000003004b000025ab0000613d000000010010008c000025450000613d000025bb0000013d00000e110100004100000000001004430000000f010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b000025450000c13d0000000e010000290000000001010433000000110010006c000025ea0000a13d0000000d010000290000000001010433000d00000001001d0000000f01000029000000000010043f0000087301000039000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d0000000a020000290000000002020433000000110020006c000025ea0000a13d000000000101043b0000000902000029000000000202043300000dac02200197000000000020043f000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000000201041a0000000d0020002a00000d1a0000413d0000000d02200029000000000021041b000500010000003d000025450000013d00000e8c01000041000000000010043f0000003201000039000000040010043f00000e8601000041000036a1000104300000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000025f70000c13d00001f9c0000013d00000e4901000041000000000010044300000000010004120000000400100443000000a0010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000dac011001970000000f0010006b000026a10000c13d00000e4901000041000000000010044300000000010004120000000400100443000000c0010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000e490200004100000000002004430000000002000412000000040020044300000dac00100198000026e60000c13d00000100010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000201043b0000000001000415000c00000001001d000000400400043d000000440140003900000003030000290000000000310435000000200140003900000e9c0300004100000000003104350000004403000039000000000034043500000dac032001970000002402400039001000000003001d0000000000320435001100000004001d00000e2f0040009c00001f7f0000213d00000011030000290000008002300039000000400020043f000000000303043300000000020004140000000f04000029000000040040008c0000271c0000c13d000000010200003900000001040000310000272e0000013d0000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000026550000c13d00001f9c0000013d00000da90010009c00000da901008041000000400110021000000da90030009c00000da9030080410000006003300210000000000113019f00000da90020009c00000da902008041000000c002200210000000000121019f0000000602000029369f36950000040f000000010220018f0003000000010355000000600110027000010da90010019d00000da903100197000000000003004b000027330000c13d00000060010000390000275d0000013d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000026780000c13d00001f9c0000013d00000000010004140000001002000029000000040020008c0000276e0000c13d000000010200003900000001010000310000287f0000013d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000268c0000c13d00001f9c0000013d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000026990000c13d00001f9c0000013d000000400100043d00000e98020000410000239d0000013d0000086a01000039000000000101041a001100000001001d00000c5b01000039000000000101041a00000e1102000041000000000020044300000dac01100197001000000001001d0000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000110100002900000dac01100197000000400400043d00000044024000390000000303000029000000000032043500000024024000390000000f03000029000000000032043500000e99020000410000000000240435001100000004001d0000000402400039000000000012043500000000010004140000001002000029000000040020008c0000286f0000613d000000110200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e6a011001c70000001002000029369f36900000040f000000600310027000010da90030019d000300000001035500000001002001900000286f0000c13d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000026e10000c13d00001f9c0000013d0000086a01000039000000000101041a000c00000001001d000000a0010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b000d00000001001d00000e4901000041000000000010044300000000010004120000000400100443000000c0010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b000000400400043d00000e9a02000041000000000024043500000004024000390000000003000410000000000032043500000dac02100197001100000004001d0000002401400039001000000002001d000000000021043500000000010004140000000d0200002900000dac02200197000b00000002001d000000040020008c000027750000c13d0000000103000031000000200030008c00000020040000390000000004034019000027a00000013d00000da90010009c00000da901008041000000400110021000000da90030009c00000da9030080410000006003300210000000000113019f00000da90020009c00000da902008041000000c002200210000000000121019f0000000f02000029369f36900000040f000000010220018f0003000000010355000000600110027000010da90010019d00000da904100197000000000004004b000027cf0000c13d00000060030000390000008001000039000027f80000013d00000db50030009c00001f7f0000213d0000001f0130003900000ea6011001970000003f0110003900000ea604100197000000400100043d0000000004410019000000000014004b0000000005000039000000010500403900000db50040009c00001f7f0000213d000000010050019000001f7f0000c13d000000400040043f000000000631043600000ea6043001980000001f0530018f000f00000006001d00000000034600190000000306000367000027500000613d000000000706034f0000000f08000029000000007907043c0000000008980436000000000038004b0000274c0000c13d000000000005004b0000275d0000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000000002004b00001f500000613d0000000001010433000000200010008c00001f500000413d00000e280010009c00001d100000213d000000200010008c00001d100000413d0000000f01000029000000000101043300000e3a0010009c00001f500000c13d00000012010000290000000a02000029369f30760000040f000012990000013d00000da90010009c00000da901008041000000c0011002100000000f0000006b000028750000c13d00000010020000290000287a0000013d000000110200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e9b011001c70000000b02000029369f36950000040f000000600310027000000da903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000011057000290000278f0000613d000000000801034f0000001109000029000000008a08043c0000000009a90436000000000059004b0000278b0000c13d000000000006004b0000279c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000028b50000613d0000001f01400039000000600110018f0000001102100029000000000012004b0000000001000039000000010100403900000db50020009c00001f7f0000213d000000010010019000001f7f0000c13d000000400020043f000000200030008c00001d100000413d00000011010000290000000001010433000000030010002a00000d1a0000413d0000000301100029000000200320003900000e9c040000410000000000430435000000440320003900000000001304350000002401200039000000100300002900000000003104350000004401000039000000000012043500000e2f0020009c00001f7f0000213d0000008001200039000000400010043f0000000d01000029369f354d0000040f00000e9d01000041000000400200043d000d00000002001d000000000012043500000000010004140000001002000029000000040020008c000028c10000c13d0000000103000031000000200030008c00000020040000390000000004034019000028ec0000013d00000db50040009c00001f7f0000213d0000001f0140003900000ea6011001970000003f0110003900000ea601100197000000400300043d0000000001130019000000000031004b0000000005000039000000010500403900000db50010009c00001f7f0000213d000000010050019000001f7f0000c13d000000400010043f000000000143043600000ea6054001980000001f0640018f00000000045100190000000307000367000027eb0000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000027e70000c13d000000000006004b000027f80000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000028230000613d0000000002000415000000240220008a000d0005002002180000000002030433000000000002004b0000280f0000613d00000e280020009c00001d100000213d000000200020008c00001d100000413d0000000001010433000000000001004b0000000002000039000000010200c039000000000021004b00001d100000c13d0000000002000415000000230220008a000d000500200218000000000001004b000028230000613d00000e110100004100000000001004430000000f010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b0000000d010000290000000501100270000000000100003f000000010100c03f000028370000c13d000000400200043d000000200120003900000e9c030000410000000000310435000000240120003900000010030000290000000000310435000000440100003900000000001204350000004401200039000000000001043500000e2f0020009c00001f7f0000213d0000008001200039000000400010043f0000000f01000029369f354d0000040f0000000f010000290000001102000029369f354d0000040f00000000010004150000000c0110006900000000010000020000086a01000039000000000101041a001100000001001d00000e1101000041000000000010044300000010010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000110100002900000dac01100197000000400400043d00000044024000390000000303000029000000000032043500000024024000390000000f03000029000000000032043500000e99020000410000000000240435001100000004001d0000000402400039000000000012043500000000010004140000001002000029000000040020008c0000286f0000613d000000110200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e6a011001c70000001002000029369f36900000040f000000600310027000010da90030019d00030000000103550000000100200190000029c30000613d000000110100002900000db50010009c00001f7f0000213d0000001101000029000000400010043f00002a420000013d00000e1a011001c700008009020000390000000f0300002900000010040000290000000005000019369f36900000040f0003000000010355000000600110027000010da90010019d00000da901100197000000000001004b000028a90000613d00000db50010009c00001f7f0000213d0000001f0310003900000ea6033001970000003f0330003900000ea604300197000000400300043d0000000004430019000000000034004b0000000005000039000000010500403900000db50040009c00001f7f0000213d000000010050019000001f7f0000c13d000000400040043f000000000613043600000ea6031001980000001f0410018f000000000136001900000003050003670000289c0000613d000000000705034f000000007807043c0000000006860436000000000016004b000028980000c13d000000000004004b000028a90000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003104350000000100200190000023d90000c13d000000400100043d000000640210003900000e88030000410000000000320435000000440210003900000e8903000041000000000032043500000024021000390000003a03000039000017370000013d0000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000028bc0000c13d00001f9c0000013d0000000d0200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000db7011001c70000001002000029369f36950000040f000000600310027000000da903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d05700029000028db0000613d000000000801034f0000000d09000029000000008a08043c0000000009a90436000000000059004b000028d70000c13d000000000006004b000028e80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000029d00000613d0000001f01400039000000600110018f0000000d04100029000000000014004b00000000020000390000000102004039001100000004001d00000db50040009c00001f7f0000213d000000010020019000001f7f0000c13d0000001102000029000000400020043f000000200030008c00001d100000413d0000000d02000029000000000202043300000dac0020009c00001d100000213d00000e9e040000410000001105000029000000000045043500000004045000390000000b0500002900000000005404350000000004000414000000040020008c000029340000613d000000110100002900000da90010009c00000da901008041000000400110021000000da90040009c00000da904008041000000c003400210000000000113019f00000e86011001c7369f36950000040f000000600310027000000da903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000001105700029000029210000613d000000000801034f0000001109000029000000008a08043c0000000009a90436000000000059004b0000291d0000c13d000000000006004b0000292e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000029dc0000613d0000001f01400039000000600110018f000000110110002900000db50010009c00001f7f0000213d000000400010043f000000200030008c00001d100000413d00000011010000290000000001010433000a00000001001d00000e4901000041000000000010044300000000010004120000000400100443000000e0010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d0000000c0200002900090dac0020019b000000000101043b000000000001004b000029e80000c13d000000400100043d001100000001001d000d00030000002d00000ea1010000410000001102000029000000000012043500000e490100004100000000001004430000000001000412000000040010044300000080010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f0000000d040000290000000a0040006c0000000a030000290000000003044019000c00000003001d000000010020019000002a610000613d000000000101043b000000110400002900000064024000390000000b03000029000000000032043500000044024000390000000903000029000000000032043500000004024000390000000c030000290000000000320435000000240240003900000da901100197000000000012043500000000010004140000001002000029000000040020008c000029820000c13d0000000103000031000000200030008c00000020040000390000000004034019000029ad0000013d0000001102000029001100000002001d00000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000db0011001c70000001002000029369f36900000040f000000600310027000000da903300197000000200030008c00000020040000390000000004034019000000200640019000000011056000290000299c0000613d000000000701034f0000001108000029000000007907043c0000000008980436000000000058004b000029980000c13d0000001f07400190000029a90000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002a620000613d0000001f01400039000000600210018f0000001101200029000000000021004b0000000002000039000000010200403900000db50010009c00001f7f0000213d000000010020019000001f7f0000c13d000000400010043f000000200030008c00001d100000413d0000001102000029000000000202043300000db50020009c00001d100000213d0000000c03000029000d000d00300073001100000001001d000029540000c13d00002a420000013d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000029cb0000c13d00001f9c0000013d0000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000029d70000c13d00001f9c0000013d0000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000029e30000c13d00001f9c0000013d000d00030000002d00000e1101000041000000000010044300000010010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f0000000d040000290000000a0040006c0000000a030000290000000003044019000c00000003001d000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000400200043d00000e9f01000041001100000002001d000000000012043500000e490100004100000000001004430000000001000412000000040010044300000080010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b0000001104000029000000c402400039000007d003000039000000000032043500000064024000390000000b03000029000000000032043500000044024000390000000903000029000000000032043500000004024000390000000c03000029000000000032043500000da90110019700000024024000390000000000120435000000a40140003900000000000104350000008401400039000000000001043500000000010004140000001002000029000000040020008c00002a3a0000613d000000110200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000ea0011001c70000001002000029369f36900000040f000000600310027000010da90030019d0003000000010355000000010020019000002a6e0000613d000000110100002900000db50010009c00001f7f0000213d0000001101000029000000400010043f0000000c02000029000d000d00200073000029e90000c13d000000010100002900000da90610019700000000010004150000000e0110006900000000010000020000000001000411001100000001001d00000dac01100197000000400200043d000000200320003900000000001304350000000301000029000000000012043500000da90020009c00000da9020080410000004001200210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e3e011001c70000800d02000039000000040300003900000ea40400004100000002050000290000000f07000029369f36900000040f000000010020019000001d100000613d000011110000013d000000000001042f0000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002a690000c13d00001f9c0000013d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002a760000c13d00001f9c0000013d00000ea90010009c00002a800000813d0000004001100039000000400010043f000000000001042d00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a100010430000000400100043d00000eaa0010009c00002a8c0000813d000000c002100039000000400020043f000000000001042d00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a100010430000000400100043d00000eab0010009c00002a980000813d000001a002100039000000400020043f000000000001042d00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a10001043000000eac0020009c00002ace0000813d00000000040100190000001f0120003900000ea6011001970000003f0110003900000ea605100197000000400100043d0000000005510019000000000015004b0000000007000039000000010700403900000db50050009c00002ace0000213d000000010070019000002ace0000c13d000000400050043f00000000052104360000000007420019000000000037004b00002ad40000213d00000ea6062001980000001f0720018f0000000204400367000000000365001900002abe0000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b00002aba0000c13d000000000007004b00002acb0000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a1000104300000000001000019000036a10001043000000000430104340000000001320436000000000003004b00002ae20000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b00002adb0000413d000000000213001900000000000204350000001f0230003900000ea6022001970000000001210019000000000001042d0000001f03100039000000000023004b000000000400001900000e3d0400404100000e3d0520019700000e3d03300197000000000653013f000000000053004b000000000300001900000e3d0300204100000e3d0060009c000000000304c019000000000003004b00002b000000613d0000000203100367000000000303043b00000db50030009c00002b000000213d00000020011000390000000004310019000000000024004b00002b000000213d0000000002030019000000000001042d0000000001000019000036a1000104300000000003010019000000000112004900000e280010009c00002b8e0000213d0000017f0010008c00002b8e0000a13d000000400100043d00000ead0010009c00002b900000813d0000018004100039000000400040043f0000000204000367000000000534034f000000000505043b00000000055104360000002006300039000000000664034f000000000606043b00000000006504350000004005300039000000000554034f000000000505043b000000400610003900000000005604350000006005300039000000000554034f000000000505043b000000600610003900000000005604350000008005300039000000000554034f000000000505043b00000080061000390000000000560435000000a005300039000000000554034f000000000505043b000000a0061000390000000000560435000000c005300039000000000554034f000000000505043b000000c0061000390000000000560435000000e005300039000000000554034f000000000505043b000000e00610003900000000005604350000010005300039000000000554034f0000010006100039000000000505043b00000000005604350000012005300039000000000654034f000000000606043b00000da90060009c00002b8e0000213d000001200710003900000000006704350000002005500039000000000654034f000000000606043b00000da90060009c00002b8e0000213d000001400710003900000000006704350000002005500039000000000554034f000000000505043b00000db50050009c00002b8e0000213d00000000063500190000001f03600039000000000023004b000000000500001900000e3d0500804100000e3d0330019700000e3d07200197000000000873013f000000000073004b000000000300001900000e3d0300404100000e3d0080009c000000000305c019000000000003004b00002b8e0000c13d000000000364034f000000000303043b00000db50030009c00002b900000213d0000001f0530003900000ea6055001970000003f0550003900000ea608500197000000400500043d0000000008850019000000000058004b0000000009000039000000010900403900000db50080009c00002b900000213d000000010090019000002b900000c13d0000002009600039000000400080043f00000000063504360000000008930019000000000028004b00002b8e0000213d000000000494034f00000ea6073001980000001f0830018f000000000276001900002b7c0000613d000000000904034f000000000a060019000000009b09043c000000000aba043600000000002a004b00002b780000c13d000000000008004b00002b890000613d000000000474034f0000000307800210000000000802043300000000087801cf000000000878022f000000000404043b0000010007700089000000000474022f00000000047401cf000000000484019f00000000004204350000000002360019000000000002043500000160021000390000000000520435000000000001042d0000000001000019000036a10001043000000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a1000104300000086c02000039000000000302041a000000000013004b00002b9e0000a13d000000000020043f00000003011000c900000e530110009a000000000001042d00000e8c01000041000000000010043f0000003201000039000000040010043f00000e8601000041000036a10001043000000dac02200197000000000020043f000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000002bb20000613d000000000101043b000000000001042d0000000001000019000036a100010430000f000000000002000900000002001d000000650e00003900000000020e041a000000020020008c00002d600000613d00080000000c001d000000020200003900000000002e041b0000086b0c000039000000000f0c041a00000e2600f0019800002d710000c13d000000c00ef0027000000da90ee0019700000da900e0009c00002d5a0000613d00000e170ff00197000000c002e0021000000e5a0220009a00000e16022001970000000002f2019f00000000002c041b000000400200043d000f00000002001d00000eab0020009c00002d4c0000813d0000000f0c000029000001a002c00039000000400020043f00000da902b00197000001600bc0003900000000002b043500000da902a00197000001400ac00039000c0000000a001d00000000002a043500000da9029001970000012009c00039000d00000009001d00000000002904350000010002c00039000600000002001d0000000000e2043500000dac02800197000000e008c00039000a00000008001d0000000000280435000000c002c00039000400000002001d0000000000720435000000a002c00039000500000002001d00000000006204350000008002c00039000b00000002001d000000000052043500000dac024001970000006004c00039000300000004001d000000000024043500000dac023001970000004003c00039000e00000003001d000000000023043500000dac0110019700000000021c0436000000090100002900000dac01100197000200000002001d000000000012043500000db500d0009c00002d4c0000213d0000001f01d0003900000ea6011001970000003f0110003900000ea602100197000000400100043d0000000002210019000000000012004b0000000003000039000000010300403900000db50020009c00002d4c0000213d000000010030019000002d4c0000c13d000000400020043f0000000002d10436000000080600002900000000046d0019000000000040007c00002d520000213d00000ea604d001980000001f05d0018f0000000206600367000000000342001900002c1b0000613d000000000706034f0000000008020019000000007907043c0000000008980436000000000038004b00002c170000c13d000000000005004b00002c280000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f000000000043043500080000000b001d0000000002d2001900000000000204350000000f020000290000018003200039000100000003001d0000000000130435000000000102043300000e2c0010009c00002d570000813d0000000d010000290000000001010433000900000001001d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002d4b0000613d000000090200002900000da902200197000000000101043b000700000001001d000900000021005300002d540000413d00000e490100004100000000001004430000000001000412000000040010044300000040010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002d4b0000613d000000000101043b00000da901100197000000090010006b00002d540000213d0000000c010000290000000001010433000900000001001d00000e490100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002d4b0000613d000000000101043b00000da9011001970000000703000029000000000031001a00002d5a0000413d000000090200002900000da9022001970000000001310019000000000012004b000000080100002900002d740000213d000000000101043300000da90210019800002c870000613d00000e4e0020009c00002c7f0000813d00000da901300197000000000212001900000da90020009c00002d5a0000213d000800000002001d0000000a010000290000000001010433000000000001004b00002c880000c13d000000400100043d00000e5b0200004100002d790000013d000800000000001d0000000e010000290000000001010433000900000001001d00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002d4b0000613d0000000002000416000000000101043b00000dac011001970000000903000029000000000013004b00002cd40000c13d000000000002004b00002cd60000613d0000000b010000290000000001010433000000000012004b00002d770000c13d00000e110100004100000000001004430000000400300443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002d4b0000613d0000000904000029000000000101043b000000000001004b00002d520000613d000000400e00043d00000e4f0100004100000000001e04350000000001000414000000040040008c00002cd00000613d00000da900e0009c00000da90200004100000000020e4019000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e50011001c700008009020000390000000003000416000000000500001900090000000e001d369f36900000040f000000090e000029000000600310027000010da90030019d0003000000010355000000010020019000002d7f0000613d00000db500e0009c00002d4c0000213d0000004000e0043f00002cf20000013d000000000002004b00002d770000c13d0000000e01000029000000000101043300000dac0010009c00002d570000213d0000000b020000290000000003020433000000400200043d000000200420003900000e5105000041000000000054043500000064042000390000000000340435000000000300041000000dac0330019700000044042000390000000000340435000000000300041100000dac03300197000000240420003900000000003404350000006403000039000000000032043500000e350020009c00002d4c0000213d000000a003200039000000400030043f369f354d0000040f000000400e00043d0000000f010000290000000007010433000000060100002900000000060104330000000401000029000000000501043300000001010000290000000001010433000000030200002900000000020204330000000b030000290000000003030433000000050400002900000000040404330000000d0800002900000000080804330000000c090000290000000009090433000000020a000029000000000a0a04330000000a0b000029000000000b0b04330000000e0c000029000000000c0c04330000000000ce0435000001200ce00039000001400d0000390000000000dc0435000001000ce000390000000000bc0435000000e00be000390000000000ab0435000000c00ae00039000000080b0000290000000000ba043500000da909900197000000a00ae0003900000000009a043500000da9088001970000008009e0003900000000008904350000006008e0003900000000004804350000004004e0003900000000003404350000002003e0003900000000002304350000014002e00039000000003101043400000000001204350000016002e00039000000000001004b00002d2f0000613d000000000400001900000000082400190000000009430019000000000909043300000000009804350000002004400039000000000014004b00002d280000413d0000001f0310003900000ea60330019700000000012100190000000000010435000001600130003900000da90010009c00000da901008041000000600110021000000da900e0009c00000da90e0080410000004002e00210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000800d02000039000000040300003900000e5204000041369f36900000040f000000010020019000002d520000613d00000001010000390000006502000039000000000012041b000000000001042d000000000001042f00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a1000104300000000001000019000036a100010430000000400100043d00000e5e0200004100002d790000013d000000400100043d00000e2d0200004100002d790000013d00000e8c01000041000000000010043f0000001101000039000000040010043f00000e8601000041000036a100010430000000400100043d000000440210003900000e8f03000041000000000032043500000024021000390000001f03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000e6a011001c7000036a100010430000000400100043d00000e4a0200004100002d790000013d000000400100043d00000e5d0200004100002d790000013d000000400100043d00000e5c02000041000000000021043500000da90010009c00000da901008041000000400110021000000db7011001c7000036a10001043000000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900002d8b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d870000c13d000000000005004b00002d980000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000da90020009c00000da9020080410000004002200210000000000112019f000036a100010430000000400400043d00000054054000390000000000350435000000600310021000000020014000390000000000310435000000340340003900000000002304350000005402000039000000000024043500000eae0040009c00002dc00000813d0000008002400039000000400020043f00000da90010009c00000da9010080410000004001100210000000000204043300000da90020009c00000da9020080410000006002200210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000002dc60000613d000000000101043b000000000001042d00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a1000104300000000001000019000036a10001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b00002dd70000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b00002dd00000413d000000000312001900000000000304350000001f0220003900000ea6022001970000000001120019000000000001042d000000000001004b00002de00000613d000000000001042d000000400100043d000000640210003900000e20030000410000000000320435000000440210003900000e2103000041000000000032043500000024021000390000002b03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000db0011001c7000036a10001043000000da90110019700000da90010009c00002df90000613d0000000101100039000000000001042d00000e8c01000041000000000010043f0000001101000039000000040010043f00000e8601000041000036a1000104300003000000000002000000400500043d00000020035000390000004002000039000100000003001d000000000023043500000060025000390000000043010434000000000032043500000000020404330000008003500039000000000023043500000040021000390000000002020433000000a003500039000000000023043500000060021000390000000002020433000000c003500039000000000023043500000080021000390000000002020433000000e0035000390000000000230435000000a002100039000000000202043300000100035000390000000000230435000000c002100039000000000202043300000120035000390000000000230435000000e00210003900000000020204330000014003500039000000000023043500000100021000390000000002020433000001600350003900000000002304350000012002100039000000000202043300000da902200197000001800350003900000000002304350000014002100039000000000202043300000da902200197000001a003500039000000000023043500000160011000390000000001010433000001c00250003900000180030000390000000000320435000001e00250003900000000160104340000000000620435000300000005001d0000020002500039000000000006004b00002e450000613d000000000300001900000000042300190000000005310019000000000505043300000000005404350000002003300039000000000063004b00002e3e0000413d0000000001260019000000000001043500000e30010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039000200000006001d369f36950000040f000000010020019000002e7c0000613d000000000101043b00000003040000290000004002400039000000000012043500000002010000290000001f0110003900000ea601100197000001e00310003900000000003404350000021f0110003900000ea6021001970000000001420019000000000021004b0000000002000039000000010200403900000db50010009c00002e7d0000213d000000010020019000002e7d0000c13d000000400010043f000000010100002900000da90010009c00000da9010080410000004001100210000000000204043300000da90020009c00000da9020080410000006002200210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000002e830000613d000000000101043b000000000001042d000000000001042f00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a1000104300000000001000019000036a1000104300000006501000039000000000201041a000000020020008c00002e8c0000613d0000000202000039000000000021041b000000000001042d000000400100043d000000440210003900000e8f03000041000000000032043500000024021000390000001f03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000e6a011001c7000036a100010430000b00000000000200000e650960019700000e630060019800000e64060000410000000006006019000000000a96019f00000e3d09a00197000000010600008a00000e3d0090009c000000000600c0190000000109600210000000ff06a00270000000000996019f000000ff0000008b00000000090a601900000000069a013f000000000696004900000eaf0060009c00002fac0000813d000a00000007001d000900000003001d00080000000a001d000400000002001d000500000001001d000600000008001d000700000005001d000b00000004001d00000eb00040009c00002faf0000813d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002fa30000613d0000000a0200002900030da90020019b000000000101043b000000030110006c000a00000001001d00002fa40000413d00000e490100004100000000001004430000000001000412000000040010044300000040010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002fa30000613d000000000101043b00000da9011001970000000a0010006b00002fb20000213d0000086b01000039000000000201041a000000c00320027000000da90330019700000da90030009c00002fa40000613d00000e1702200197000200000003001d000000c00330021000000e5a0330009a00000e1603300197000000000223019f000000000021041b00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002fa30000613d000000090200002900000dac04200197000000000101043b00000dac03100197000000000034004b000a00000004001d00002f2d0000c13d0000000001000416000000000001004b00002f2d0000613d0000000b0010006c00002fbb0000c13d00000e11010000410000000000100443000900000003001d0000000400300443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002fa30000613d000000000101043b000000000001004b00002faa0000613d000000400200043d00000e4f01000041000000000012043500000000010004140000000904000029000000040040008c0000000b030000290000000a0500002900002f520000613d00000da90020009c000100000002001d00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f000000000003004b00002f470000613d00000e50011001c70000800902000039000000000500001900002f490000013d000000400200043d000000200120003900000e5103000041000000000031043500000064012000390000000b030000290000000000310435000000000100041000000dac0110019700000044032000390000000000130435000000000100041100000dac01100197000000240320003900000000001304350000006401000039000000000012043500000eb10020009c00002fb50000813d000000a001200039000000400010043f0000000001040019369f354d0000040f0000000a050000290000000b0300002900002f550000013d00000db7011001c70000000002040019369f36900000040f0003000000010355000000600410027000010da90040019d00000001002001900000000b030000290000000a05000029000000010200002900002fc30000613d00000db50020009c00002fb50000213d000000400020043f0000000206000029000000080100002900000eb20110009900000000023100a9000000000003004b00002f5e0000613d0000000b032000fa000000000031004b00002fa40000c13d000000400100043d000001200310003900000140040000390000000000430435000000040300002900000dac03300197000000e0041000390000000000340435000000a00310003900000da904000041000000000043043500000080031000390000000304000029000000000043043500000eb20220012a0000006003100039000000000023043500000040021000390000000b030000290000000000320435000000000251043600000100031000390000000000030435000000c0031000390000000000030435000000000002043500000140031000390000000602000029000000004202043400000000002304350000016003100039000000050500002900000dac07500197000000000002004b00002f890000613d000000000500001900000000093500190000000008540019000000000808043300000000008904350000002005500039000000000025004b00002f820000413d0000001f0420003900000ea60440019700000000023200190000000000020435000001600240003900000da90020009c00000da902008041000000600220021000000da90010009c00000da9010080410000004001100210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000800d02000039000000040300003900000e52040000410000000705000029369f36900000040f000000010020019000002faa0000613d000000000001042d000000000001042f00000e8c01000041000000000010043f0000001101000039000000040010043f00000e8601000041000036a1000104300000000001000019000036a100010430000000400100043d00000eb40200004100002fbd0000013d000000400100043d00000eb30200004100002fbd0000013d000000400100043d00000e5e0200004100002fbd0000013d00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a100010430000000400100043d00000e5c02000041000000000021043500000da90010009c00000da901008041000000400110021000000db7011001c7000036a10001043000000da9034001970000001f0530018f00000dab06300198000000400200043d000000000462001900002fcf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002fcb0000c13d000000000005004b00002fdc0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000da90020009c00000da9020080410000004002200210000000000112019f000036a1000104300003000000000002000300000001001d00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f00000001002001900000304e0000613d000000000101043b00000dac02100197000000030100002900000dac01100197000300000002001d000000000021004b0000304d0000c13d00000e8701000041000000000010044300000000010004100000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800a02000039369f36950000040f00000001002001900000304e0000613d000000000101043b000000000001004b0000304d0000613d00000e8701000041000000000010044300000000010004100000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800a02000039369f36950000040f00000001002001900000304e0000613d000000000101043b000200000001001d00000e1101000041000000000010044300000003010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f00000001002001900000304e0000613d000000000101043b000000000001004b0000304f0000613d000000400400043d00000e4f01000041000000000014043500000000010004140000000302000029000000040020008c0000304a0000613d00000da90040009c000100000004001d00000da9020000410000000002044019000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f0000000203000029000000000003004b000030410000613d00000e50011001c7000080090200003900000003040000290000000005000019000030430000013d00000db7011001c70000000302000029369f36900000040f0003000000010355000000600310027000010da90030019d00000001002001900000000104000029000030570000613d00000eac0040009c000030510000813d000000400040043f000000000001042d000000000001042f0000000001000019000036a10001043000000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a10001043000000da9033001970000001f0530018f00000dab06300198000000400200043d0000000004620019000030630000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000305f0000c13d000000000005004b000030700000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000da90020009c00000da9020080410000004002200210000000000112019f000036a1000104300014000000000002000f00000002001d001400000001001d0000000021010434001200000002001d001100000001001d0000012001100039001000000001001d0000000001010433001300000001001d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f0000000100200190000032ff0000613d000000000101043b000000130200002900000da902200197000000000012004b000033090000413d00000012010000290000000001010433001300000001001d000000000010043f0000087201000039000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f0000000100200190000032fd0000613d000000000101043b000000000101041a001200000001001d0000001301000029000000000010043f0000087201000039000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f0000001203000029000000010030008c00000000030000390000000103006039001200000003001d0000000100200190000032fd0000613d00000872030000390000001302000029000000000101043b000000000101041a000000020010008c0000330c0000613d000000000020043f000000200030043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f0000000100200190000032fd0000613d000000000101043b0000000202000039000000000021041b000000110200002900000020012000390000000001010433000800000001001d0000000001020433000a00000001001d00000040012000390000000001010433000b00000001001d00000100012000390000000001010433000600000001001d000000e0012000390000000001010433000500000001001d0000001401000029000000a0011000390000000001010433000c00000001001d000000c0012000390000000001010433000d00000001001d000000a0012000390000000001010433000e00000001001d0000008001200039000400000001001d0000000001010433001300000001001d00000060012000390000000001010433000900000001001d00000140012000390000000001010433000700000001001d00000010010000290000000001010433001000000001001d000001600120003900000000010104330000000012010434000000000002004b000031060000613d00000da90020009c00000da902008041000000600220021000000da90010009c00000da9010080410000004001100210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f0000000100200190000032fd0000613d000000000901043b000031070000013d000000000900001900000014010000290000006002100039001100000002001d00000000080204330000008001100039000300000001001d00000000010104330000000012010434000000000002004b0000312b0000613d000100000008001d000200000009001d00000da90020009c00000da902008041000000600220021000000da90010009c00000da9010080410000004001100210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f0000000100200190000032fd0000613d000000000101043b00000002090000290000000108000029000000400200043d00000eae0020009c0000312f0000413d000033000000013d0000000001000019000000400200043d00000eae0020009c000033000000813d000000070300002900000da905300197000000100300002900000da90630019700000014030000290000004003300039001000000003001d00000000070304330000008003200039000000400030043f00000060032000390000001204000029000000000043043500000040042000390000000000740435000000200720003900000000001704350000000000820435000000400100043d0000014008100039000000000098043500000120081000390000000809000029000000000098043500000100081000390000000a090000290000000000980435000000e0081000390000000b090000290000000000980435000000c0081000390000000000580435000000a005100039000000000065043500000080051000390000000c06000029000000000065043500000060051000390000000d06000029000000000065043500000040051000390000000e060000290000000000650435000000200510003900000013060000290000000000650435000000090500002900000000005104350000000002020433000001600510003900000000002504350000000002070433000001800510003900000000002504350000000002040433000001a00410003900000000002404350000000002030433000000030020008c000033140000813d000001c003100039000000000023043500000da90010009c00000da9010080410000004001100210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e83011001c70000800d02000039000000040300003900000e8404000041000000050500002900000006060000290000000f07000029369f36900000040f0000000100200190000032fd0000613d00000004010000290000000001010433001300000001001d00000e2c0010009c000033060000813d00000011010000290000000001010433001400000001001d00000dac0010009c000033060000213d00000010010000290000000001010433001200000001001d00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f0000000100200190000032ff0000613d000000000301043b000000400200043d000000200120003900000e51040000410000000000410435000000000100041100000dac041001970000002401200039001100000004001d00000000004104350000006401200039000000440420003900000dac03300197000000130030006b0000006403000039000031e90000c13d000000000500041000000dac05500197000000000054043500000012040000290000000000410435000000000032043500000e350020009c000033000000213d000000a001200039000000400010043f0000001301000029369f354d0000040f00000e1101000041000000000010044300000014010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f0000000100200190000032ff0000613d000000000101043b00000e490200004100000000002004430000000002000412000000040020044300000020020000390000002400200443000000000001004b0000325b0000613d000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f0000000100200190000032ff0000613d000000000101043b000000400200043d000000200320003900000e3f0400004100000000004304350000004403200039000000120400002900000000004304350000002403200039000000140400002900000000004304350000004403000039000000000032043500000e2f0020009c000033000000213d0000008003200039000000400030043f00000dac01100197000031f30000013d0000001405000029000000000054043500000012040000290000000000410435000000000032043500000e350020009c000033000000213d000000a001200039000000400010043f0000001301000029369f354d0000040f00000003010000290000000001010433000f00000001001d0000000021010434001000000002001d000000000001004b00000014020000290000325a0000613d00000e110100004100000000001004430000000400200443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f0000000100200190000032ff0000613d000000000101043b000000000001004b00000014020000290000325a0000613d00000e110100004100000000001004430000000400200443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f0000000100200190000032ff0000613d000000000101043b000000000001004b000032fd0000613d000000400700043d00000064017000390000008002000039000000000021043500000044017000390000001102000029000000000021043500000024017000390000001202000029000000000021043500000e8a01000041000000000017043500000004017000390000001302000029000000000021043500000084027000390000000f0100002900000000010104330000000000120435000000a402700039000000000001004b00000010060000290000323a0000613d000000000300001900000000042300190000000005360019000000000505043300000000005404350000002003300039000000000013004b000032330000413d0000000002210019000000000002043500000000040004140000001402000029000000040020008c000032570000613d0000001f0110003900000ea601100197000000a40110003900000da90010009c00000da901008041000000600110021000000da90070009c00000da90300004100000000030740190000004003300210000000000131019f00000da90040009c00000da904008041000000c003400210000000000113019f001400000007001d369f36900000040f0000001407000029000000600310027000010da90030019d000300000001035500000001002001900000331a0000613d00000db50070009c000033000000213d000000400070043f000000000001042d000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f0000000100200190000032ff0000613d000000000101043b00000e1102000041000000000020044300000dac01100197001000000001001d0000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f0000000100200190000032ff0000613d000000000101043b000000000001004b000032fd0000613d000000400400043d00000e8501000041000000000014043500000004014000390000001202000029000000000021043500000000010004140000001002000029000000040020008c000032910000613d00000da90040009c00000da9030000410000000003044019000000400330021000000da90010009c00000da901008041000000c001100210000000000131019f00000e86011001c7001000000004001d369f36900000040f0000001004000029000000600310027000010da90030019d00030000000103550000000100200190000033380000613d00000db50040009c0000000002000410000033000000213d000000400040043f00000e870100004100000000001004430000000400200443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800a02000039369f36950000040f0000000100200190000032ff0000613d000000000101043b0000001203000029000000000031004b000033270000413d00000000010004140000001404000029000000040040008c000032ae0000c13d00000001020000390000000101000031000000000001004b000032bf0000c13d000032e70000013d00000da90010009c00000da901008041000000c001100210000000000003004b000032b70000613d00000e1a011001c700008009020000390000000005000019000032b80000013d0000000002040019369f36900000040f0003000000010355000000600110027000010da90010019d00000da901100197000000000001004b000032e70000613d00000db50010009c000033000000213d0000001f0410003900000ea6044001970000003f0440003900000ea605400197000000400400043d0000000005540019000000000045004b0000000006000039000000010600403900000db50050009c000033000000213d0000000100600190000033000000c13d000000400050043f000000000614043600000ea6031001980000001f0410018f00000000013600190000000305000367000032da0000613d000000000705034f000000007807043c0000000006860436000000000016004b000032d60000c13d000000000004004b000032e70000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003104350000000100200190000031f40000c13d000000400100043d000000640210003900000e88030000410000000000320435000000440210003900000e8903000041000000000032043500000024021000390000003a03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000db0011001c7000036a1000104300000000001000019000036a100010430000000000001042f00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a100010430000000400100043d00000e2d020000410000330e0000013d000000400100043d00000e8e020000410000330e0000013d000000400100043d00000e8d02000041000000000021043500000da90010009c00000da901008041000000400110021000000db7011001c7000036a10001043000000e8c01000041000000000010043f0000002101000039000000040010043f00000e8601000041000036a10001043000000da9033001970000001f0530018f00000dab06300198000000400200043d0000000004620019000033440000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000033220000c13d000033440000013d000000400100043d000000440210003900000e8b03000041000000000032043500000024021000390000001d03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000e6a011001c7000036a10001043000000da9033001970000001f0530018f00000dab06300198000000400200043d0000000004620019000033440000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000033400000c13d000000000005004b000033510000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000da90020009c00000da9020080410000004002200210000000000112019f000036a100010430000000600210003900000eb5030000410000000000320435000000400210003900000eb603000041000000000032043500000020021000390000002e030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d00090000000000020000000032010434000600000003001d00000e2c0020009c000034900000813d000900000001001d0000012001100039000500000001001d0000000001010433000800000001001d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f00000001002001900000348c0000613d000000080200002900000da902200197000000000101043b000700000001001d00080000002100530000348d0000413d00000e490100004100000000001004430000000001000412000000040010044300000040010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f00000001002001900000348c0000613d000000000101043b00000da901100197000000080010006b0000348d0000213d00000009010000290000014001100039000400000001001d0000000001010433000800000001001d00000e490100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f00000001002001900000348c0000613d000000000101043b00000da9011001970000000705000029000000000051001a0000000903000029000034a60000413d000000080200002900000da9022001970000000001510019000000000012004b000034950000213d0000016001300039000000000101043300000da902100198000000e004300039000300000004001d000033c40000613d00000e4e0020009c000033bd0000813d00000da901500197000000000212001900000da90020009c000034a60000213d000200000002001d0000000001040433000000000001004b000033c50000c13d000000400100043d00000e5b02000041000034a00000013d000200000000001d0000004001300039000800000001001d0000000001010433000700000001001d00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f00000001002001900000348c0000613d0000000004000416000000000101043b00000dac011001970000000703000029000000000013004b000034160000c13d000000000004004b0000000902000029000034190000613d0000008001200039000100000001001d0000000001010433000000000014004b0000349e0000c13d00000e110100004100000000001004430000000400300443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f00000001002001900000348c0000613d0000000704000029000000000101043b000000000001004b000034930000613d000000400e00043d00000e4f0100004100000000001e04350000000001000414000000040040008c000034100000613d00000da900e0009c00000da90200004100000000020e4019000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e50011001c700008009020000390000000003000416000000000500001900070000000e001d369f36900000040f000000070e000029000000600310027000010da90030019d00030000000103550000000100200190000034ac0000613d00000db500e0009c00000009070000290000000103000029000034980000213d0000004000e0043f000034380000013d000000000004004b00000009020000290000349e0000c13d0000000801000029000000000101043300000dac0010009c000034900000213d00000080062000390000000003060433000000400200043d000000200420003900000e5105000041000000000054043500000064042000390000000000340435000000000300041000000dac0330019700000044042000390000000000340435000000000300041100000dac03300197000000240420003900000000003404350000006403000039000000000032043500000eb10020009c000034980000813d000000a003200039000000400030043f000100000006001d369f354d0000040f00000001030000290000000907000029000000400e00043d00000100017000390000000006010433000000c001700039000000000501043300000180017000390000000001010433000000600270003900000000020204330000000003030433000000a00470003900000000040404330000000508000029000000000808043300000004090000290000000009090433000000060a000029000000000a0a04330000000007070433000000030b000029000000000b0b0433000000080c000029000000000c0c04330000000000ce0435000001200ce00039000001400d0000390000000000dc0435000001000ce000390000000000bc0435000000e00be000390000000000ab0435000000c00ae00039000000020b0000290000000000ba043500000da909900197000000a00ae0003900000000009a043500000da9088001970000008009e0003900000000008904350000006008e0003900000000004804350000004004e0003900000000003404350000002003e0003900000000002304350000014002e00039000000003101043400000000001204350000016002e00039000000000001004b000034730000613d000000000400001900000000082400190000000009430019000000000909043300000000009804350000002004400039000000000014004b0000346c0000413d0000001f0310003900000ea60330019700000000012100190000000000010435000001600130003900000da90010009c00000da901008041000000600110021000000da900e0009c00000da90e0080410000004002e00210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000800d02000039000000040300003900000e5204000041369f36900000040f0000000100200190000034930000613d000000000001042d000000000001042f000000400100043d00000e5e02000041000034a00000013d000000400100043d00000e2d02000041000034a00000013d0000000001000019000036a100010430000000400100043d00000e5d02000041000034a00000013d00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a100010430000000400100043d00000e5c02000041000000000021043500000da90010009c00000da901008041000000400110021000000db7011001c7000036a10001043000000e8c01000041000000000010043f0000001101000039000000040010043f00000e8601000041000036a10001043000000da9033001970000001f0530018f00000dab06300198000000400200043d0000000004620019000034b80000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000034b40000c13d000000000005004b000034c50000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000da90020009c00000da9020080410000004002200210000000000112019f000036a100010430000000000100041a0000ff0000100190000034cf0000613d000000000001042d000000400100043d000000640210003900000e20030000410000000000320435000000440210003900000e2103000041000000000032043500000024021000390000002b03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000db0011001c7000036a100010430000000000100041a0000ff0000100190000034ea0000613d00000001010000390000006502000039000000000012041b000000000001042d000000400100043d000000640210003900000e20030000410000000000320435000000440210003900000e2103000041000000000032043500000024021000390000002b03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000db0011001c7000036a10001043000000dac05100198000035110000613d0000086901000039000000000201041a00000e1502200197000000000252019f000000000021041b000000000100041400000da90010009c00000da901008041000000c00110021000000e1a011001c70000800d02000039000000020300003900000e1b04000041369f36900000040f0000000100200190000035190000613d000000000001042d000000400100043d00000e1f02000041000000000021043500000da90010009c00000da901008041000000400110021000000db7011001c7000036a1000104300000000001000019000036a10001043000000dac051001980000352e0000613d0000086a01000039000000000201041a00000e1502200197000000000252019f000000000021041b000000000100041400000da90010009c00000da901008041000000c00110021000000e1a011001c70000800d02000039000000020300003900000e1c04000041369f36900000040f0000000100200190000035360000613d000000000001042d000000400100043d00000e1e02000041000000000021043500000da90010009c00000da901008041000000400110021000000db7011001c7000036a1000104300000000001000019000036a10001043000000dac0510019700000c5b01000039000000000201041a00000e1503200197000000000353019f000000000031041b000000000100041400000dac0620019700000da90010009c00000da901008041000000c00110021000000e1a011001c70000800d02000039000000030300003900000e1d04000041369f36900000040f00000001002001900000354b0000613d000000000001042d0000000001000019000036a1000104300004000000000002000000400400043d00000ea90040009c000036100000813d00000dac051001970000004001400039000000400010043f000000200140003900000eb70300004100000000003104350000002001000039000000000014043500000000230204340000000001000414000000040050008c000035880000c13d0000000101000032000035c30000613d00000db50010009c000036100000213d0000001f0310003900000ea6033001970000003f0330003900000ea603300197000000400a00043d00000000033a00190000000000a3004b0000000004000039000000010400403900000db50030009c000036100000213d0000000100400190000036100000c13d000000400030043f00000000051a043600000ea6021001980000001f0310018f000000000125001900000003040003670000357a0000613d000000000604034f000000006706043c0000000005750436000000000015004b000035760000c13d000000000003004b000035c40000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000035c40000013d000200000004001d00000da90030009c00000da903008041000000600330021000000da90020009c00000da9020080410000004002200210000000000223019f00000da90010009c00000da901008041000000c001100210000000000112019f000100000005001d0000000002050019369f36900000040f0003000000010355000000600310027000010da90030019d00000da904300198000035db0000613d0000001f0340003900000daa033001970000003f0330003900000eb803300197000000400a00043d00000000033a00190000000000a3004b0000000005000039000000010500403900000db50030009c000036100000213d0000000100500190000036100000c13d000000400030043f0000001f0540018f00000000034a043600000dab064001980000000004630019000035b50000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000048004b000035b10000c13d000000000005004b000035dd0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000035dd0000013d000000600a0000390000000002000415000000040220008a000000050220021000000000010a0433000000000001004b000035e50000c13d00020000000a001d00000e1101000041000000000010044300000004010000390000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f0000000100200190000036420000613d0000000002000415000000040220008a000035f80000013d000000600a000039000000800300003900000000010a043300000001002001900000362c0000613d0000000002000415000000030220008a0000000502200210000000000001004b000035e80000613d000000050220027000000000020a001f000036020000013d00020000000a001d00000e1101000041000000000010044300000001010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f0000000100200190000036420000613d0000000002000415000000030220008a0000000502200210000000000101043b000000000001004b000000020a000029000036430000613d00000000010a0433000000050220027000000000020a001f000000000001004b0000360f0000613d00000e280010009c000036160000213d0000001f0010008c000036160000a13d0000002001a000390000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000036160000c13d000000000001004b000036180000613d000000000001042d00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a1000104300000000001000019000036a100010430000000400100043d000000640210003900000eb9030000410000000000320435000000440210003900000eba03000041000000000032043500000024021000390000002a03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000db0011001c7000036a100010430000000000001004b000036540000c13d000000400300043d000100000003001d00000daf01000041000000000013043500000004013000390000002002000039000000000021043500000024023000390000000201000029369f2ad60000040f0000000102000029000000000121004900000da90010009c00000da90100804100000da90020009c00000da90200804100000060011002100000004002200210000000000121019f000036a100010430000000000001042f000000400100043d000000440210003900000e7903000041000000000032043500000024021000390000001d03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000e6a011001c7000036a10001043000000da90030009c00000da903008041000000400230021000000da90010009c00000da9010080410000006001100210000000000121019f000036a100010430000000000001042f00000da90010009c00000da901008041000000400110021000000da90020009c00000da9020080410000006002200210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f0000000100200190000036700000613d000000000101043b000000000001042d0000000001000019000036a10001043000000000050100190000000000200443000000050030008c000036800000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b000036780000413d00000da90030009c00000da9030080410000006001300210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000ebb011001c70000000002050019369f36950000040f00000001002001900000368f0000613d000000000101043b000000000001042d000000000001042f00003693002104210000000102000039000000000001042d0000000002000019000000000001042d00003698002104230000000102000039000000000001042d0000000002000019000000000001042d0000369d002104250000000102000039000000000001042d0000000002000019000000000001042d0000369f00000432000036a00001042e000036a1000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff616c697a696e6700000000000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320696e69746908c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000000000000000000000002000000000000000000000000000000000000200000000000000000000000007f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024984690484000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf000000000000000000000000000000000000000000000000ffffffffffffffff5110d79100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000002000000000000000000000000000002800000010000000000000000000000000000000000000000000000000000000000000000000000000082e2c43e00000000000000000000000000000000000000000000000000000000bb3e04b400000000000000000000000000000000000000000000000000000000de7eba7700000000000000000000000000000000000000000000000000000000ee2a53f700000000000000000000000000000000000000000000000000000000fb6bf74b00000000000000000000000000000000000000000000000000000000fb6bf74c00000000000000000000000000000000000000000000000000000000fc8a584f00000000000000000000000000000000000000000000000000000000ee2a53f800000000000000000000000000000000000000000000000000000000f79f29ed00000000000000000000000000000000000000000000000000000000e322921000000000000000000000000000000000000000000000000000000000e322921100000000000000000000000000000000000000000000000000000000ea86bd4600000000000000000000000000000000000000000000000000000000de7eba7800000000000000000000000000000000000000000000000000000000deff4b2400000000000000000000000000000000000000000000000000000000ceb4c98600000000000000000000000000000000000000000000000000000000dda5211200000000000000000000000000000000000000000000000000000000dda5211300000000000000000000000000000000000000000000000000000000ddd224f100000000000000000000000000000000000000000000000000000000ceb4c98700000000000000000000000000000000000000000000000000000000d7e1583a00000000000000000000000000000000000000000000000000000000bb3e04b500000000000000000000000000000000000000000000000000000000c35c83fc00000000000000000000000000000000000000000000000000000000cd44141f000000000000000000000000000000000000000000000000000000009a8a059100000000000000000000000000000000000000000000000000000000ad5425c500000000000000000000000000000000000000000000000000000000b370b7f400000000000000000000000000000000000000000000000000000000b370b7f500000000000000000000000000000000000000000000000000000000babb6aac00000000000000000000000000000000000000000000000000000000ad5425c600000000000000000000000000000000000000000000000000000000adb5a6a600000000000000000000000000000000000000000000000000000000a18a096d00000000000000000000000000000000000000000000000000000000a18a096e00000000000000000000000000000000000000000000000000000000ac9650d8000000000000000000000000000000000000000000000000000000009a8a059200000000000000000000000000000000000000000000000000000000a1244c67000000000000000000000000000000000000000000000000000000009748cf7b00000000000000000000000000000000000000000000000000000000979f2bc100000000000000000000000000000000000000000000000000000000979f2bc20000000000000000000000000000000000000000000000000000000099cc2968000000000000000000000000000000000000000000000000000000009748cf7c0000000000000000000000000000000000000000000000000000000097943aa90000000000000000000000000000000000000000000000000000000082e2c43f000000000000000000000000000000000000000000000000000000008a7860ce000000000000000000000000000000000000000000000000000000008b15788e000000000000000000000000000000000000000000000000000000004f1ef28500000000000000000000000000000000000000000000000000000000670fa8ab00000000000000000000000000000000000000000000000000000000775c0d02000000000000000000000000000000000000000000000000000000007b939231000000000000000000000000000000000000000000000000000000007b939232000000000000000000000000000000000000000000000000000000007ef413e100000000000000000000000000000000000000000000000000000000775c0d03000000000000000000000000000000000000000000000000000000007aef642c000000000000000000000000000000000000000000000000000000006e400982000000000000000000000000000000000000000000000000000000006e40098300000000000000000000000000000000000000000000000000000000738b62e500000000000000000000000000000000000000000000000000000000670fa8ac000000000000000000000000000000000000000000000000000000006bbbcd2e00000000000000000000000000000000000000000000000000000000541f4f130000000000000000000000000000000000000000000000000000000057f6dcb70000000000000000000000000000000000000000000000000000000057f6dcb8000000000000000000000000000000000000000000000000000000006068d6cb00000000000000000000000000000000000000000000000000000000541f4f1400000000000000000000000000000000000000000000000000000000577f51f8000000000000000000000000000000000000000000000000000000004f1ef286000000000000000000000000000000000000000000000000000000005285e0580000000000000000000000000000000000000000000000000000000052d1902d0000000000000000000000000000000000000000000000000000000029cb924c000000000000000000000000000000000000000000000000000000003a90dc8400000000000000000000000000000000000000000000000000000000490e49ee00000000000000000000000000000000000000000000000000000000490e49ef00000000000000000000000000000000000000000000000000000000493a4f84000000000000000000000000000000000000000000000000000000003a90dc8500000000000000000000000000000000000000000000000000000000437b9116000000000000000000000000000000000000000000000000000000002e63e599000000000000000000000000000000000000000000000000000000002e63e59a000000000000000000000000000000000000000000000000000000003659cfe60000000000000000000000000000000000000000000000000000000029cb924d000000000000000000000000000000000000000000000000000000002e3781150000000000000000000000000000000000000000000000000000000015348e43000000000000000000000000000000000000000000000000000000001b3d5558000000000000000000000000000000000000000000000000000000001b3d5559000000000000000000000000000000000000000000000000000000001fab657c0000000000000000000000000000000000000000000000000000000015348e440000000000000000000000000000000000000000000000000000000017fcb39b00000000000000000000000000000000000000000000000000000000079bd2c7000000000000000000000000000000000000000000000000000000001186ec330000000000000000000000000000000000000000000000000000000011eac855ffffffffffffffffffffffffeeeeffffffffffffffffffffffffffffffffeeef1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000647920696e697469616c697a6564000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c726561ffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffff000000000000000000000000000000000000000000000000ffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff4143524f53532d56320000000000000000000000000000000000000000000000312e302e300000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000a9e8c42c9e7fca7f62755189a16b2f5314d43d8fb24e91ba54e6d65f9314e849a73e8909f8616742d7fe701153d82666f7b7cd480552e23ebb05d358c22fd04eab9987862d7dab8c2bf2f09eb3ad7b6c1961c86fe3e9e7d3ef50dc98995d72d4b606125600000000000000000000000000000000000000000000000000000000ba97b39d000000000000000000000000000000000000000000000000000000006e697469616c697a696e67000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206900000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000000ff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000008000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000fffffffffffffdff000000ff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c097ce7bc90715b34b9f10000000000000000000000000000000010000000000000000000000000000000000000000f3d81dae000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f9a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b0200000000000000000000000000000000000000000000a000000000000000008d1994e2bbbd77564cdca06dd819e7ee2a5efa06c80dcb59a4a7b6e39edc538f000000000000000000000000000000000000000000000000ffffffffffffff1fc2f8787176b8ac6bf7215b4adcc1e069bf4ab82d9ab1df05a57a91d425935b6e000000000000000000000000000000000000000000000000ffffffffffffff5f190100000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000420000000000000000000000007fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a000000000000000000000000000000000000000800000000000000000000000001626ba7e0000000000000000000000000000000000000000000000000000000045e04bc8f121ba11466985789ca2822a91109f31bb8ac85504a37b7eaf873c267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000040000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000006c172ea51018fb2eb2118f3f8a507c4df71eb519b8c0052834dc3c920182fef4d950afdc00000000000000000000000000000000000000000000000000000000ffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000010000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000200000008000000000000000002d5b62420992e5a4afce0e77742636ca2608ef58289fd2e1baa5161ef6e7e41e000000000000000000000000000000000000000000000000fffffffffffffe7f000000000000000000000000000000000000000000000000ffffffffffffff3f000000000000000000000000000000000000000000000000fffffffffffffdbf310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e5a65d188000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000054000000a00000000000000000000000000000000000000000000000000000000000000000fffffffffffffe5f02000002000000000000000000000000000000440000000000000000000000000000000000000000000000000000000000000000000000000000000001e13381d0e30db000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000400000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000032ed1a409ef04c7b0227189c3a103dc5ac10e775a15b785dcc510201f7c25ad38e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b38e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b27c1af0646963afc3343245b103731965735a893347bfa0d58a5dc77a77ae691c1e191e8e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdfdeff4b2400000000000000000000000000000000000000000000000000000000b8fe37a700000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000000000000000000000000000000000000495d907f000000000000000000000000000000000000000000000000000000006452a35d00000000000000000000000000000000000000000000000000000000582e388900000000000000000000000000000000000000000000000000000000f722177f00000000000000000000000000000000000000000000000000000000ffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000010000000000000000000000000000000000000000000000000000000000e88463c2f254e2b070013a2dc7ee1e099f9bc00534cbdf03af551dc26ae49219938a1821000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000007fffffffffffffff6c6564207468726f7567682064656c656761746563616c6c0000000000000000555550535570677261646561626c653a206d757374206e6f742062652063616c360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc4f4e4c595f434f554e544552504152545f47415445574159000000000000000000000000000000000000000000000000000000640000000000000000000000004910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914352d1902d000000000000000000000000000000000000000000000000000000006961626c6555554944000000000000000000000000000000000000000000000045524331393637557067726164653a20756e737570706f727465642070726f78bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b000000000000000000000000000000000000000000000000ffffffffffffff9f206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c0000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000064000000800000000000000000c86ba04c55bc5eb2f2876b91c438849a296dbec7b08751c3074d92e04f0a77af0000000000000000000000000000000000000000000000000000000001e133806163746976652070726f7879000000000000000000000000000000000000000046756e6374696f6e206d7573742062652063616c6c6564207468726f75676820416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006f74206120636f6e747261637400000000000000000000000000000000000000455243313936373a206e657720696d706c656d656e746174696f6e206973206e64656c656761746563616c6c00000000000000000000000000000000000000007b21f8aa0000000000000000000000000000000000000000000000000000000009deb9ec00000000000000000000000000000000000000000000000000000000012f9e440000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000001400000000000000000000000003cee3e290f36226751cd0b3321b213890fe9c768e922f267fa6111836ce05c32c3a9b9d00000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000001e000000000000000000000000044b559f101f8fbcc8a0ea43fa91a05a729a5ea6e14a7c75aa7503746901372082e1a7d4d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f396563697069656e74206d61792068617665207265766572746564000000000000416464726573733a20756e61626c6520746f2073656e642076616c75652c20723a5be8cb00000000000000000000000000000000000000000000000000000000416464726573733a20696e73756666696369656e742062616c616e63650000004e487b71000000000000000000000000000000000000000000000000000000008f260c6000000000000000000000000000000000000000000000000000000000d642b7d9000000000000000000000000000000000000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c00000000000000000000000000000000000000000000000000fffffffffffffebf7a47c9a200000000000000000000000000000000000000000000000000000000b05e92fa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff8e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b1954476d900000000000000000000000000000000000000000000000000000000cd298b380000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000005bb5506200000000000000000000000000000000000000000000000000000000d9caed1200000000000000000000000000000000000000000000000000000000dd62ed3e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000095ea7b300000000000000000000000000000000000000000000000000000000cb75c11c00000000000000000000000000000000000000000000000000000000a56ec632000000000000000000000000000000000000000000000000000000008e0250ee0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e40000000000000000000000006fd3504e0000000000000000000000000000000000000000000000000000000051cff8d9000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000024000000000000000000000000fa7fa7cf6d7dde5f9be65a67e6a1a747e7aa864dcd2d793353c722d80fbbb357f4ad92585b1bc117fbdd644990adf0827bc4c95baeae8a23322af807b6d0020effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff000000000000000000000000000000000000000000000000ffffffffffffffc0000000000000000000000000000000000000000000000000ffffffffffffff40000000000000000000000000000000000000000000000000fffffffffffffe600000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000fffffffffffffe80000000000000000000000000000000000000000000000000ffffffffffffff8000000000000000000000000000000000000000000000000006f05b59d3b200000000000000000000000000000000000000c097ce7bc90715b34b9f1000000001000000000000000000000000000000000000000000000000ffffffffffffff600000000000000000000000000000000000000000000000000de0b6b3a7640000c45b6b5200000000000000000000000000000000000000000000000000000000a13c425c000000000000000000000000000000000000000000000000000000006f6e206973206e6f74205555505300000000000000000000000000000000000045524331393637557067726164653a206e657720696d706c656d656e746174695361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656400000000000000000000000000000000000000000000000000000003ffffffe06f742073756363656564000000000000000000000000000000000000000000005361666545524332303a204552433230206f7065726174696f6e20646964206e02000002000000000000000000000000000000000000000000000000000000006fc0d1431d6f2ea100cd46addd6881c633d8d0288816254206cf41ba8d46d687",
- "deployedBytecode": "0x0004000000000002002b000000000002000000000501034f000000600110027000000da90010019d00000da9041001970003000000450355000200000005035500000001002001900000016c0000c13d0000008001000039000000400010043f000000040040008c000001da0000413d000000000145034f000000000205043b000000e00320027000000db90030009c000001de0000213d00000de50030009c000001f10000213d00000dfb0030009c000002ba0000a13d00000dfc0030009c000007e40000213d00000e020030009c00000c550000213d00000e050030009c000012670000613d00000e060030009c00001d100000c13d000000440040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b00000db50010009c00001d100000213d0000000402100039000000000a24004900000e2800a0009c00001d100000213d0000018000a0008c00001d100000413d000000000125034f000000000101043b00000dac0010009c00001d100000213d0000002006200039000000000365034f000000000303043b00000dac0030009c00001d100000213d0000002007600039000000000675034f000000000606043b00000dac0060009c00001d100000213d0000002007700039000000000875034f000000000808043b00000dac0080009c00001d100000213d0000002007700039000000000975034f000000000b09043b00000dac00b0009c00001d100000213d0000008009700039000000000795034f000000000707043b00000da90070009c00001d100000213d000000200c9000390000000009c5034f000000000909043b00000da90090009c00001d100000213d000000200dc00039000000000cd5034f000000000c0c043b00120000000c001d00000da900c0009c00001d100000213d0011002000d0003d000000110e500360000000000e0e043b0000001f0aa0008a00000e3d0fe0019700000e3d0da00197000000000cdf013f0000000000df004b000000000d00001900000e3d0d0040410000000000ae004b000000000a00001900000e3d0a00804100000e3d00c0009c000000000d0ac01900000000000d004b00001d100000c13d000000000a2e00190000000002a5034f000000000202043b00000db50020009c00001d100000213d000000000c240049000000200ea0003900000e3d0ac0019700000e3d0de00197000000000fad013f0000000000ad004b000000000a00001900000e3d0a0040410000000000ce004b000000000c00001900000e3d0c00204100000e3d00f0009c000000000a0cc01900000000000a004b00001d100000c13d000002000a0000390000004000a0043f000000800010043f000000a00030043f000000c00060043f000000e00080043f0000010000b0043f0000001103000029000000c00130008a000000000115034f000000000101043b000001200010043f000000a00130008a000000000115034f000000800330008a000000000335034f000000000101043b000001400010043f0000001f0120003900000ea6011001970000003f0110003900000ea601100197000000000303043b000001600030043f000001800070043f000001a00090043f0000001203000029000001c00030043f00000e290010009c00001f7f0000213d0000020001100039000000400010043f000002000020043f0000000001e20019000000000041004b00001d100000213d0000000003e5034f00000ea6042001980000001f0620018f0000022001400039000000aa0000613d0000022007000039000000000803034f000000008908043c0000000007970436000000000017004b000000a60000c13d000000000006004b000000b70000613d000000000343034f0000000304600210000000000601043300000000064601cf000000000646022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000363019f000000000031043500000220012000390000000000010435000001e000a0043f0000002401500370000000000101043b001200000001001d0000006501000039000000000101041a000000020010008c000019c60000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000e2a0010019800001c0e0000c13d000001c00100043d001100000001001d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000110200002900000da902200197000000000101043b00000da901100197000000000012004b000000e10000413d000000c00100043d00000dac0010009c0000239b0000213d0000000002000411000000000021004b00001cd40000c13d000000400400043d00000020024000390000004001000039000f00000002001d00000000001204350000006001400039000000800200043d00000000002104350000008001400039000000a00200043d0000000000210435000000a001400039000000c00200043d0000000000210435000000c001400039000000e00200043d0000000000210435000000e001400039000001000200043d00000000002104350000010001400039000001200200043d00000000002104350000012001400039000001400200043d00000000002104350000014001400039000001600200043d00000000002104350000016001400039000001800200043d0000000000210435000001a00100043d00000da90110019700000180024000390000000000120435000001c00100043d00000da901100197000001a0024000390000000000120435000001c0014000390000018002000039000001e00300043d0000000000210435000001e00240003900000000160304340000000000620435001100000004001d0000020002400039000000000006004b0000011c0000613d000000000300001900000000042300190000000005310019000000000505043300000000005404350000002003300039000000000063004b000001150000413d001000000006001d0000000001260019000000000001043500000e30010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b00000011040000290000004002400039000000000012043500000010010000290000001f0110003900000ea601100197000001e00210003900000000002404350000021f0110003900000ea6021001970000000001420019000000000021004b0000000002000039000000010200403900000db50010009c00001f7f0000213d000000010020019000001f7f0000c13d000000400010043f0000000f0100002900000da90010009c00000da90100804100000040011002100000001102000029000000000202043300000da90020009c00000da9020080410000006002200210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000301034f000000400100043d00000e470010009c00001f7f0000213d000000000203043b000000c003100039000001400400043d000000a00500043d000001e00600043d000000400030043f000000a0031000390000001207000029000000000073043500000080031000390000000000630435000000600310003900000000005304350000004003100039000000000043043500000020031000390000000000230435000000800200003900000000002104350000000002000411369f30760000040f000012990000013d000001a002000039000000400020043f0000000001000416000000000001004b00001d100000c13d0000001f0140003900000daa01100197000001a001100039000000400010043f0000001f0340018f00000dab06400198000001a0016000390000017e0000613d000000000705034f000000007807043c0000000002820436000000000012004b0000017a0000c13d000000000003004b0000018b0000613d000000000265034f0000000303300210000000000501043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f0000000000210435000000c00040008c00001d100000413d000001a00100043d00000dac0010009c00001d100000213d000001c00500043d00000dac0050009c00001d100000213d000001e00200043d001200000002001d00000dac0020009c00001d100000213d000002000200043d001100000002001d00000dac0020009c00001d100000213d000002200200043d00000da90020009c00001d100000213d000002400300043d00000da90030009c00001d100000213d00000dac011001970000000004000410000000800040043f000000a00010043f000000c00020043f000000e00030043f000000000100041a0000ff00001001900000163d0000c13d000000ff0210018f000000ff0020008c001000000005001d000001c30000613d000000ff011001bf000000000010041b000000ff01000039000000400200043d000000000012043500000da90020009c00000da9020080410000004001200210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000db1011001c70000800d02000039000000010300003900000db204000041369f36900000040f0000001005000029000000010020019000001d100000613d000001200050043f0000001101000029000001400010043f000001000000043f0000000401000039000000400400043d000000000114043600000db303000041000000000031043500000db40040009c00001f7f0000213d000000110200002900000dac022001970000004003400039000000400030043f00000000030404330000000004000414000000040020008c001100000002001d000016a90000c13d00000001020000390000000104000031000016ba0000013d000000000004004b00001d100000c13d0000000001000019000036a00001042e00000dba0030009c000001fc0000213d00000dd00030009c000002cd0000a13d00000dd10030009c000008140000213d00000dd70030009c00000c7a0000213d00000dda0030009c000012710000613d00000ddb0030009c00001d100000c13d0000000001000416000000000001004b00001d100000c13d0000086b01000039000000000101041a000000c001100270000014440000013d00000de60030009c0000066c0000a13d00000de70030009c000008200000213d00000ded0030009c00000cb70000213d00000df00030009c0000127e0000613d00000df10030009c00000ee40000613d00001d100000013d00000dbb0030009c000007ce0000a13d00000dbc0030009c000009420000213d00000dc20030009c00000ce60000213d00000dc50030009c000012850000613d00000dc60030009c00001d100000c13d000000640040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b00000db50010009c00001d100000213d0000000402100039000000000124004900000e280010009c00001d100000213d000001800010008c00001d100000413d0000020001000039000000400010043f000000000325034f000000000303043b000000800030043f0000002003200039000000000335034f000000000303043b000000a00030043f0000004003200039000000000335034f000000000303043b000000c00030043f0000006003200039000000000335034f000000000303043b000000e00030043f0000008003200039000000000335034f000000000303043b000001000030043f000000a003200039000000000335034f000000000303043b000001200030043f000000c003200039000000000335034f000000000303043b000001400030043f000000e003200039000000000335034f000000000303043b000001600030043f0000010003200039000000000335034f000000000303043b000001800030043f0000012003200039000000000635034f000000000606043b00000da90060009c00001d100000213d000001a00060043f0000002003300039000000000635034f000000000606043b00000da90060009c00001d100000213d000001c00060043f0000002003300039000000000335034f000000000303043b00000db50030009c00001d100000213d00000000032300190000001f02300039000000000042004b00001d100000813d000000000235034f000000000202043b00000db50020009c00001f7f0000213d0000001f0720003900000ea6077001970000003f0770003900000ea60770019700000e290070009c00001f7f0000213d00000020033000390000020007700039000000400070043f000002000020043f0000000007320019000000000047004b00001d100000213d000000000435034f00000ea6052001980000001f0620018f00000220035000390000026b0000613d0000022007000039000000000804034f000000008908043c0000000007970436000000000037004b000002670000c13d000000000006004b000002780000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f000000000043043500000220022000390000000000020435000001e00010043f0000006501000039000000000101041a000000020010008c000019c60000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000e2a0010019800001c0e0000c13d000001c00100043d001200000001001d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000120200002900000da902200197000000000101043b00000da901100197000000000012004b00001cc40000813d0000008001000039369f2dff0000040f001200000001001d000001400100043d001100000001001d000000a00100043d001000000001001d000001e00100043d000f00000001001d369f2a860000040f00000080021000390000000f0300002900000000003204350000006002100039000000100300002900000000003204350000004002100039000000110300002900000000003204350000002002100039000000120300002900000000003204350000008002000039000000000021043500000002020003670000002403200370000000000303043b000000a00410003900000000003404350000004402200370000000000202043b369f30760000040f000012990000013d00000e070030009c000009600000a13d00000e080030009c00000a930000213d00000e0b0030009c00000ee40000613d00000e0c0030009c00001d100000c13d0000000001000416000000000001004b00001d100000c13d0000000001000412002600000001001d002500200000003d000080050100003900000044030000390000000004000415000000260440008a000012b20000013d00000ddc0030009c000009710000a13d00000ddd0030009c00000c100000213d00000de00030009c00000eea0000613d00000de10030009c00001d100000c13d000000e40040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b001200000001001d00000db50010009c00001d100000213d0000001201000029001100040010003d000000110140006a00000e280010009c00001d100000213d000001800010008c00001d100000413d000000a401500370000000000101043b00000db50010009c00001d100000213d0000002302100039000000000042004b00001d100000813d0000000402100039000000000225034f000000000202043b001000000002001d00000db50020009c00001d100000213d0000002402100039000f00000002001d000e00100020002d0000000e0040006b00001d100000213d000000c401500370000000000101043b00000db50010009c00001d100000213d0000002302100039000000000042004b00001d100000813d0000000402100039000000000225034f000000000202043b000d00000002001d00000db50020009c00001d100000213d0000002402100039000c00000002001d000b000d0020002d0000000b0040006b00001d100000213d0000002401500370000000000101043b000700000001001d0000004401500370000000000101043b000a00000001001d0000006401500370000000000101043b000900000001001d0000008401500370000000000101043b000800000001001d0000006501000039000000000101041a000000020010008c000013620000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000e2a00100198000017420000c13d0000001201000029000501440010003d0000000501500360000000000101043b000600000001001d00000da90010009c00001d100000213d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b00000da901100197000000060010006b00001ccb0000813d000000000c0000310000001101c0006a00000e280010009c00001d100000213d000001800010008c00001d100000413d000000400100043d00000e460010009c00001f7f0000213d0000018002100039000000400020043f000000050b0000290000014002b0008a000000020d00036700000000022d034f000000000202043b00000000022104360000012003b0008a00000000033d034f000000000303043b00000000003204350000010003b0008a00000000033d034f000000000403043b00000040031000390000000000430435000000e004b0008a00000000044d034f000000000504043b00000060041000390000000000540435000000c005b0008a00000000055d034f000000000605043b00000080051000390000000000650435000000a006b0008a00000000066d034f000000000706043b000000a00610003900000000007604350000008007b0008a00000000077d034f000000000807043b000000c00710003900000000008704350000006008b0008a00000000088d034f000000000908043b000000e00810003900000000009804350000004009b0008a000000000a9d034f0000010009100039000000000a0a043b0000000000a90435000000200bb0008a000000000abd034f000000000e0a043b00000da900e0009c00001d100000213d000001200a10003900120000000a001d0000000000ea0435000000200eb00039000000000bed034f000000000f0b043b00000da900f0009c00001d100000213d000001400a10003900060000000a001d0000000000fa0435000000200ee00039000000000eed034f000000000e0e043b00000db500e0009c00001d100000213d000000110ae0002900050000000a001d0000001f0ea000390000000000ce004b000000000b00001900000e3d0b00804100000e3d0ee0019700000e3d0fc00197000000000afe013f0000000000fe004b000000000e00001900000e3d0e00404100000e3d00a0009c000000000e0bc01900000000000e004b00001d100000c13d000000050ad00360000000000a0a043b00000db500a0009c00001f7f0000213d000000000f0a00190000001f0aa0003900000ea60aa001970000003f0aa0003900000ea60aa00197000000400b00043d000000000eab001900040000000b001d0000000000be004b000000000a000039000000010a00403900000db500e0009c00001f7f0000213d0000000100a0019000001f7f0000c13d000000050a000029000000200ba000390000004000e0043f000000040e000029000000000efe043600050000000e001d000000000abf00190000000000ca004b00001d100000213d0002000000bd035300000ea60bf001980003001f00f00193000000050cb00029000003bb0000613d000000020e00035f000000050d00002900000000ea0e043c000000000dad04360000000000cd004b000003b70000c13d000000030000006b000003c90000613d000000020ab0035f000000030b000029000000030bb00210000000000d0c0433000000000dbd01cf000000000dbd022f000000000a0a043b000001000bb00089000000000aba022f000000000aba01cf000000000ada019f0000000000ac0435000000050af0002900000000000a0435000001600c100039000000040a0000290000000000ac0435000000400b00043d000000200db00039000000400a00003900050000000d001d0000000000ad04350000000001010433000000600ab0003900000000001a043500000000010204330000008002b0003900000000001204350000000001030433000000a002b0003900000000001204350000000001040433000000c002b0003900000000001204350000000001050433000000e002b00039000000000012043500000000010604330000010002b00039000000000012043500000000010704330000012002b00039000000000012043500000000010804330000014002b00039000000000012043500000000010904330000016002b0003900000000001204350000001201000029000000000101043300000da9011001970000018002b0003900000000001204350000000601000029000000000101043300000da901100197000001a002b00039000000000012043500000000010c0433000001c002b0003900000180030000390000000000320435000001e002b000390000000016010434000000000062043500120000000b001d0000020002b00039000000000006004b0000040b0000613d000000000300001900000000042300190000000005310019000000000505043300000000005404350000002003300039000000000063004b000004040000413d000600000006001d0000000001260019000000000001043500000e30010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b00000012040000290000004002400039000000000012043500000006010000290000001f0110003900000ea601100197000001e00210003900000000002404350000021f0110003900000ea6021001970000000001420019000000000021004b0000000002000039000000010200403900000db50010009c00001f7f0000213d000000010020019000001f7f0000c13d000000400010043f000000050100002900000da90010009c00000da90100804100000040011002100000001202000029000000000202043300000da90020009c00000da9020080410000006002200210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000301043b000000400100043d001200000001001d00000e470010009c00001f7f0000213d0000001201000029000000c004100039000000400040043f0000000001000031000000110210006a00000e280020009c00001d100000213d000001800020008c00001d100000413d000000120200002900000e480020009c00001f7f0000213d00000012070000290000024002700039000000400020043f00000002020003670000001108000029000000000582034f000000000505043b000600000005001d00000000005404350000002005800039000000000552034f000000000505043b000000e00670003900000000005604350000004005800039000000000552034f000000000505043b000001000670003900000000005604350000006005800039000000000552034f000000000505043b000001200670003900000000005604350000008005800039000000000552034f000000000505043b00000140067000390000000000560435000000a005800039000000000552034f000000000505043b00000160067000390000000000560435000000c005800039000000000552034f000000000505043b00000180067000390000000000560435000000e005800039000000000552034f000000000605043b000001a005700039000500000006001d00000000006504350000010005800039000000000552034f000001c006700039000000000505043b000400000005001d00000000005604350000012005800039000000000652034f000000000606043b00000da90060009c00001d100000213d0000001207000029000001e00770003900000000006704350000002005500039000000000652034f000000000606043b00000da90060009c00001d100000213d0000001207000029000002000770003900000000006704350000002005500039000000000552034f000000000505043b00000db50050009c00001d100000213d00000011075000290000001f05700039000000000015004b000000000600001900000e3d0600804100000e3d0550019700000e3d08100197000000000985013f000000000085004b000000000500001900000e3d0500404100000e3d0090009c000000000506c019000000000005004b00001d100000c13d000000000572034f000000000605043b00000db50060009c00001f7f0000213d0000001f0560003900000ea6055001970000003f0550003900000ea608500197000000400500043d0000000008850019000000000058004b0000000009000039000000010900403900000db50080009c00001f7f0000213d000000010090019000001f7f0000c13d0000002009700039000000400080043f00000000076504360000000008960019000000000018004b00001d100000213d000000000992034f00000ea60a6001980000001f0b60018f0000000008a70019000004cb0000613d000000000c09034f000000000d07001900000000ce0c043c000000000ded043600000000008d004b000004c70000c13d00000000000b004b000004d80000613d0000000009a9034f000000030ab00210000000000b080433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f00000000009804350000000006670019000000000006043500000012070000290000006006700039000000080800002900000000008604350000004006700039000000090800002900000000008604350000002006700039000000000036043500000000004704350000022003700039000000000053043500000010030000290000001f0330003900000ea6033001970000003f0330003900000ea604300197000000400300043d0000000005430019000000000035004b0000000006000039000000010600403900000db50050009c00001f7f0000213d000000010060019000001f7f0000c13d000000400050043f000000100500002900000000075304360000000e0010006b00001d100000213d0000000f05200360000000100800002900000ea6098001980000001f0680018f000000000a970019000005040000613d000000000805034f000000008b08043c0000000007b704360000000000a7004b000005000000c13d000000000006004b000000000795034f0000000308600210000005110000613d000000000b0a0433000000000b8b01cf000000000b8b022f000000000c07043b000001000d800089000000000cdc022f000000000cdc01cf000000000bbc019f0000000000ba0435000000100a000029000000200aa00039000000000ba3001900000000000b0435000000120c000029000000a00bc00039000000070d0000290000000000db0435000000800bc0003900000000003b0435000000060300002900000dac0030009c0000239b0000213d000000400300043d0000000004430019000000000034004b000000000b000039000000010b00403900000db50040009c00001f7f0000213d0000000100b0019000001f7f0000c13d000000400040043f00000010040000290000000004430436000000000b940019000000000009004b000005320000613d0000000009040019000000005c05043c0000000009c904360000000000b9004b0000052e0000c13d000000000006004b0000053d0000613d00000000050b043300000000058501cf000000000585022f000000000607043b0000010007800089000000000676022f00000000067601cf000000000556019f00000000005b04350000000005a3001900000000000504350000000d050000290000001f0550003900000ea6055001970000003f0550003900000ea605500197000000400600043d0000000005560019001000000006001d000000000065004b0000000006000039000000010600403900000db50050009c00001f7f0000213d000000010060019000001f7f0000c13d000000400050043f0000000d0500002900000010060000290000000005560436001100000005001d0000000b0010006b00001d100000213d0000000c022003600000000d0600002900000ea6056001980000001f0660018f0000001101500029000005610000613d000000000702034f0000001108000029000000007907043c0000000008980436000000000018004b0000055d0000c13d000000000006004b0000056e0000613d000000000252034f0000000305600210000000000601043300000000065601cf000000000656022f000000000202043b0000010005500089000000000252022f00000000025201cf000000000262019f000000000021043500000011020000290000000d01200029000000000001043500000da90040009c00000da9040080410000004001400210000000000203043300000da90020009c00000da9020080410000006002200210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000201043b000000400100043d000000c0031000390000000000230435000000a00210003900000008030000290000000000320435000000800210003900000009030000290000000000320435000000600210003900000005030000290000000000320435000000400210003900000004030000290000000000320435000000200210003900000e32030000410000000000320435000000c003000039000000000031043500000e330010009c00001f7f0000213d000000e003100039000000400030043f00000da90020009c00000da9020080410000004002200210000000000101043300000da90010009c00000da9010080410000006001100210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000e00000001001d0000047f01000039000000000201041a0000048001000039000000000301041a000000400100043d0000008004100039000000050500002900000000005404350000006004100039000000000034043500000040031000390000000000230435000000200210003900000e340300004100000000003204350000008003000039000f00000003001d000000000031043500000e350010009c00001f7f0000213d000000a003100039000000400030043f00000da90020009c00000da9020080410000004002200210000000000101043300000da90010009c00000da9010080410000006001100210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000400200043d00000022032000390000000e04000029000000000043043500000e360300004100000000003204350000000203200039000000000013043500000da90020009c00000da9020080410000004001200210000000000200041400000da90020009c00000da902008041000000c002200210000000000121019f00000e37011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000e00000001001d00000010010000290000000001010433000000410010008c0000063a0000c13d00000010010000290000004001100039000000000101043300000e380010009c0000063a0000213d00000010020000290000006002200039000000000202043300000011030000290000000003030433000000400400043d0000006005400039000000000015043500000040014000390000000000310435000000f801200270000000200240003900000000001204350000000e010000290000000000140435000000000000043f00000da90040009c00000da9040080410000004001400210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e39011001c70000000102000039369f36950000040f000000600310027000000da903300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000006220000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000061e0000c13d000000000005004b0000062f0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f000300000001035500000001002001900000264e0000613d000000000100043d00000dac0010019800000000010060190000063a0000613d000000060110014f00000dac001001980000276a0000613d000000400200043d000000440120003900000040030000390000000000310435000000200120003900000e3a03000041000000000031043500000024032000390000000e04000029000000000043043500000010030000290000000003030433000000640420003900000000003404350000008404200039000000000003004b000006530000613d000000000500001900000000064500190000001107500029000000000707043300000000007604350000002005500039000000000035004b0000064c0000413d000000000443001900000000000404350000001f0330003900000ea60330019700000064043000390000000000420435000000a30330003900000ea6043001970000000003240019000000000043004b0000000004000039000000010400403900000db50030009c00001f7f0000213d000000010040019000001f7f0000c13d000000400030043f000000000302043300000000020004140000000604000029000000040040008c0000265a0000c13d000000010200003900000001030000310000266c0000013d00000df20030009c00000a530000a13d00000df30030009c00000c3f0000213d000000000f05034f00000df60030009c00000ef50000613d00000df70030009c00001d100000c13d000000c40040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401f00370000000000101043b001200000001001d00000dac0010009c00001d100000213d0000004401f00370000000000101043b001000000001001d0000002401f00370000000000101043b001100000001001d0000006401f00370000000000101043b000f00000001001d00000dac0010009c00001d100000213d0000008401f00370000000000101043b00000db50010009c00001d100000213d0000002302100039000000000042004b00001d100000813d000000040210003900000000032f034f000000000303043b000e00000003001d00000db50030009c00001d100000213d0000002403100039000d00000003001d0000000e01300029000000000041004b00001d100000213d000000a401f00370000000000301043b00000db50030009c00001d100000213d0000002301300039000000000041004b00001d100000813d000000040130003900000000061f034f000000000606043b000c00000006001d00000db50060009c00001d100000213d0000002406300039000b00000006001d0000000c03600029000000000043004b00001d100000213d0000000e030000290000001f0330003900000ea603300197000900000003001d0000003f0330003900000ea60330019700000e2f0030009c00001f7f0000213d0000008003300039000000400030043f000000200220003900000000032f034f0000000e02000029000000800020043f00000ea604200198000a001f00200193000700000004001d000000a002400039000006c70000613d000000a004000039000000000603034f000000006706043c0000000004740436000000000024004b000006c30000c13d0000000a0000006b000006d50000613d00000007033003600000000a040000290000000304400210000000000602043300000000064601cf000000000646022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000363019f00000000003204350000000e02000029000000a00220003900000000000204350000000c020000290000001f0220003900000ea602200197000400000002001d0000003f0220003900000ea602200197000000400300043d0000000002230019000800000003001d000000000032004b0000000003000039000000010300403900000db50020009c00001f7f0000213d000000010030019000001f7f0000c13d000000400020043f000000200110003900000000021f034f0000000c010000290000000803000029000000000413043600000ea6031001980005001f00100193000300000003001d000600000004001d0000000001340019000006fa0000613d000000000302034f0000000604000029000000003503043c0000000004540436000000000014004b000006f60000c13d000000050000006b000007080000613d000000030220036000000005030000290000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f000000000021043500000006020000290000000c01200029000000000001043500000e30010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b000200000001001d000000800100043d00000da90010009c00000da9010080410000006001100210000000000200041400000da90020009c00000da902008041000000c002200210000000000121019f00000e31011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000201043b000000400100043d000000c0031000390000000000230435000000a0021000390000000f030000290000000000320435000000800210003900000010030000290000000000320435000000600210003900000002030000290000000000320435000000400210003900000011030000290000000000320435000000200210003900000e32030000410000000000320435000000c003000039000000000031043500000e330010009c00001f7f0000213d000000e003100039000000400030043f00000da90020009c00000da9020080410000004002200210000000000101043300000da90010009c00000da9010080410000006001100210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000100000001001d0000047f01000039000000000201041a0000048001000039000000000301041a000000400100043d0000008004100039000000020500002900000000005404350000006004100039000000000034043500000040031000390000000000230435000000200210003900000e340300004100000000003204350000008003000039000000000031043500000e350010009c00001f7f0000213d000000a003100039000000400030043f00000da90020009c00000da9020080410000004002200210000000000101043300000da90010009c00000da9010080410000006001100210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000400200043d00000022032000390000000104000029000000000043043500000e360300004100000000003204350000000203200039000000000013043500000da90020009c00000da9020080410000004001200210000000000200041400000da90020009c00000da902008041000000c002200210000000000121019f00000e37011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000200000001001d00000008010000290000000001010433000000410010008c0000079b0000c13d00000008010000290000004001100039000000000101043300000e380010009c00001e0d0000a13d000000400200043d000000440120003900000040030000390000000000310435000000200120003900000e3a03000041000000000031043500000024032000390000000204000029000000000043043500000008030000290000000003030433000000640420003900000000003404350000008404200039000000000003004b0000000608000029000007b50000613d000000000500001900000000064500190000000007850019000000000707043300000000007604350000002005500039000000000035004b000007ae0000413d000000000443001900000000000404350000001f0330003900000ea60330019700000064043000390000000000420435000000a30330003900000ea6043001970000000003240019000000000043004b0000000004000039000000010400403900000db50030009c00001f7f0000213d000000010040019000001f7f0000c13d000000400030043f000000000302043300000000020004140000001204000029000000040040008c00001eb20000c13d0000000102000039000000010400003100001ec40000013d00000dc70030009c00000a780000a13d00000dc80030009c00000c4a0000213d00000dcb0030009c00000f550000613d00000dcc0030009c00001d100000c13d0000000002040019000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b00000db50010009c00001d100000213d0000000401100039369f2b020000040f369f2dff0000040f00000ec40000013d00000dfd0030009c00000d200000213d00000e000030009c000012a80000613d00000e010030009c00001d100000c13d000000240040008c00001d100000413d0000000002000416000000000002004b00001d100000c13d0000000402500370000000000a02043b00000db500a0009c00001d100000213d0000002302a00039000000000042004b00001d100000813d0000000402a00039000000000225034f000000000b02043b00000db500b0009c00001d100000213d000000240ca000390000000503b002100000000002c30019000000000042004b00001d100000213d0000003f0230003900000e3c0420019700000e2f0040009c00001f7f0000213d0000008002400039000000400020043f0000008000b0043f00000000000b004b000017be0000c13d00000020010000390000000003120436000000800100043d0000000000130435000000400320003900000005041002100000000008340019000000000001004b000018950000c13d000000000128004900000caf0000013d00000dd20030009c00000d500000213d00000dd50030009c000012b60000613d00000dd60030009c00001d100000c13d000000440040008c00001d100000413d0000000001000416000000000001004b0000094d0000613d00001d100000013d00000de80030009c00000eb20000213d00000deb0030009c000013220000613d00000dec0030009c00001d100000c13d000001640040008c00001d100000413d0000000401500370000000000101043b001200000001001d00000dac0010009c00001d100000213d0000002401500370000000000101043b001100000001001d00000dac0010009c00001d100000213d0000004401500370000000000101043b001000000001001d00000dac0010009c00001d100000213d0000006401500370000000000101043b000f00000001001d00000dac0010009c00001d100000213d000000e401500370000000000101043b000e00000001001d00000dac0010009c00001d100000213d0000010401500370000000000101043b000d00000001001d00000da90010009c00001d100000213d0000012401500370000000000101043b000c00000001001d00000da90010009c00001d100000213d0000014401500370000000000101043b00000db50010009c00001d100000213d0000002302100039000000000042004b00001d100000813d000a00040010003d0000000a02500360000000000202043b000b00000002001d00000db50020009c00001d100000213d0000000b01100029000900240010003d000000090040006b00001d100000213d0000008401500370000000000101043b000800000001001d000000a401500370000000000101043b000700000001001d000000c401500370000000000101043b000600000001001d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b00000da9011001970000000d0210002900000da90020009c00000d1a0000213d0000006503000039000000000403041a000000020040008c000019c60000613d0000000204000039000000000043041b0000086b04000039000000000504041a00000e260050019800001b020000c13d000000c00350027000000da90330019700000da90030009c00000d1a0000613d00000e1705500197000000c00630021000000e5a0660009a00000e1606600197000000000556019f000000000054041b000000400400043d000d00000004001d00000e4c0040009c00001f7f0000213d0000000d05000029000001a004500039000000400040043f0000016004500039000400000004001d0000000c0600002900000000006404350000014004500039000500000004001d00000000002404350000012002500039000c00000002001d00000000001204350000010001500039000200000001001d0000000000310435000000e001500039000300000001001d0000000e020000290000000000210435000000c001500039000100000001001d00000006020000290000000000210435000000a001500039000600000001001d000000070200002900000000002104350000008001500039000e00000001001d000000080200002900000000002104350000006001500039000800000001001d0000000f0200002900000000002104350000004001500039000f00000001001d0000001002000029000000000021043500000012010000290000000001150436001200000001001d000000110200002900000000002104350000000b010000290000001f0110003900000ea6011001970000003f0110003900000ea602100197000000400100043d0000000002210019000000000012004b0000000003000039000000010300403900000db50020009c00001f7f0000213d000000010030019000001f7f0000c13d000000400020043f0000000b0200002900000000022104360000000904000029000000000040007c00001d100000213d0000000b0500002900000ea6045001980000001f0550018f00000000034200190000000a0600002900000020066000390000000206600367000008dc0000613d000000000706034f0000000008020019000000007907043c0000000008980436000000000038004b000008d80000c13d000000000005004b000008e90000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000b0220002900000000000204350000000d020000290000018003200039001100000003001d0000000000130435000000000102043300000dac0010009c0000239b0000213d0000000c010000290000000001010433001000000001001d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000100200002900000da902200197000000000101043b000b00000001001d001000000021005300000a500000413d00000e490100004100000000001004430000000001000412000000040010044300000040010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000da901100197000000100010006b00000a500000213d00000005010000290000000001010433001000000001001d00000e490100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000da9011001970000000b0010002a00000d1a0000413d000000100200002900000da9022001970000000b01100029000000000012004b00001d400000213d0000000401000029000000000101043300000da901100198001000000000001d000022d20000613d00000e4e0010009c000022cd0000813d0000000b0200002900000da9022001970000000001210019001000000001001d00000da90010009c00000d1a0000213d000022ce0000013d00000dbd0030009c00000ecb0000213d00000dc00030009c000013350000613d00000dc10030009c00001d100000c13d000000440040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b00000dac0010009c00001d100000213d0000002402500370000000000202043b001200000002001d00000dac0020009c00001d100000213d000000000010043f0000087301000039000000200010043f00000040020000390000000001000019369f365d0000040f0000001202000029369f2ba40000040f000000000101041a00000ec40000013d00000e0d0030009c000014370000613d00000e0e0030009c000011c70000613d00000e0f0030009c00001d100000c13d0000000001000416000000000001004b00001d100000c13d0000000001000412002800000001001d002700a00000003d000080050100003900000044030000390000000004000415000000280440008a000012b20000013d00000de20030009c000014480000613d00000de30030009c000012270000613d00000de40030009c00001d100000c13d000001a40040008c00001d100000413d0000012401500370000000000101043b001200000001001d00000da90010009c00001d100000213d0000014401500370000000000101043b001100000001001d00000da90010009c00001d100000213d0000016401500370000000000101043b001000000001001d00000da90010009c00001d100000213d0000018401500370000000000101043b00000db50010009c00001d100000213d0000002302100039000000000042004b00001d100000813d000e00040010003d0000000e02500360000000000202043b000f00000002001d00000db50020009c00001d100000213d0000000f01100029000d00240010003d0000000d0040006b00001d100000213d0000000401500370000000000101043b000c00000001001d0000002401500370000000000101043b000b00000001001d0000004401500370000000000101043b000a00000001001d0000006401500370000000000101043b000900000001001d0000008401500370000000000101043b000800000001001d000000a401500370000000000101043b000700000001001d000000c401500370000000000101043b000600000001001d000000e401500370000000000101043b000500000001001d0000010401500370000000000101043b0000006502000039000000000302041a000000020030008c000013620000613d0000000203000039000000000032041b0000086b02000039000000000202041a00000e2600200198000019bb0000c13d00000000020004110000006002200210000000a00020043f0000000c02000029000000b40020043f000000d40010043f0000005401000039000000800010043f0000010001000039000000400010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e4b011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000400200043d000400000002001d00000e4c0020009c00001f7f0000213d000000000101043b0000000403000029000001a002300039000000400020043f0000016002300039000300000002001d000000100400002900000000004204350000014002300039001000000002001d000000110400002900000000004204350000012002300039001100000002001d000000120400002900000000004204350000010002300039000100000002001d0000000000120435000000e001300039000200000001001d00000005020000290000000000210435000000c001300039000500000001001d00000006020000290000000000210435000000a001300039000600000001001d000000070200002900000000002104350000008001300039000700000001001d000000080200002900000000002104350000006001300039000800000001001d000000090200002900000000002104350000004001300039001200000001001d0000000a0200002900000000002104350000000c010000290000000001130436000c00000001001d0000000b0200002900000000002104350000000f010000290000001f0110003900000ea6011001970000003f0110003900000ea602100197000000400100043d0000000002210019000000000012004b0000000003000039000000010300403900000db50020009c00001f7f0000213d000000010030019000001f7f0000c13d000000400020043f0000000f0200002900000000022104360000000d04000029000000000040007c00001d100000213d0000000f0500002900000ea6045001980000001f0550018f00000000034200190000000e060000290000002006600039000000020660036700000a260000613d000000000706034f0000000008020019000000007907043c0000000008980436000000000038004b00000a220000c13d000000000005004b00000a330000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000f02200029000000000002043500000004020000290000018003200039000f00000003001d0000000000130435000000000102043300000dac0010009c0000239b0000213d00000011010000290000000001010433000e00000001001d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d0000000e0200002900000da902200197000000000101043b000d00000001001d000e00000021005300001d120000813d000000400100043d00000e5e020000410000239d0000013d00000df80030009c000015ba0000613d00000df90030009c000012510000613d00000dfa0030009c00001d100000c13d0000000001000416000000000001004b00001d100000c13d00000e49010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000400300043d00000da90030009c00000da90200004100000000020340190000004002200210000000000101043b00000dac011001970000000004000410000000000014004b000016470000c13d00000e6801000041000000000013043500000e22012001c7000036a00001042e00000dcd0030009c0000162c0000613d00000dce0030009c000012560000613d00000dcf0030009c00001d100000c13d000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b001200000001001d00000dac0010009c00001d100000213d0000086901000039000000000101041a00000e100110009a00000dac011001970000000002000411000000000012004b0000129e0000c13d369f2e850000040f0000001201000029369f35380000040f000012990000013d00000e090030009c00000f5c0000613d00000e0a0030009c00001d100000c13d0000000002040019000000640040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b00000db50010009c00001d100000213d000000000412004900000e280040009c00001d100000213d000000640040008c00001d100000413d0000002403500370000000000303043b001200000003001d00000da90030009c00001d100000213d0000004403500370000000000303043b00000db50030009c00001d100000213d0000002306300039000000000026004b00001d100000813d0000000406300039000000000665034f000000000606043b000f00000006001d00000db50060009c00001d100000213d00000024033000390000000f060000290000000506600210000d00000003001d001100000006001d000e00000036001d0000000e0020006b00001d100000213d0000006503000039000000000603041a000000020060008c000013620000613d0000000206000039000000000063041b001000040010003d0000001001500360000000000101043b000001830440008a00000e3d0310019700000e3d05400197000000000653013f000000000053004b000000000300001900000e3d03004041000000000041004b000000000400001900000e3d0400804100000e3d0060009c000000000304c019000000000003004b00001d100000c13d0000001001100029369f2b020000040f000c00000001001d0000008001100039000000000101043300000e2c0010009c0000239b0000813d369f2fe20000040f0000000c01000029369f2dff0000040f000000400200043d000b00000002001d00000e470020009c00001f7f0000213d0000000c0500002900000020025000390000000002020433000001600350003900000000030304330000000b06000029000000c004600039000000400040043f0000002004600039000a00000004001d00000000001404350000000000560435000000100100002900000040041000390000000201000367000000000441034f000000000404043b0000008005600039000700000005001d00000000003504350000006003600039000800000003001d00000000002304350000004002600039000c00000002001d0000000000420435000000a002600039000900000002001d000000000002043500000011020000290000003f0220003900000e3c02200197000000400300043d0000000002230019001100000003001d000000000032004b0000000003000039000000010300403900000db50020009c00001f7f0000213d000000010030019000001f7f0000c13d000000400020043f00000011020000290000000f040000290000000002420436001000000002001d0000000e02000029000000000020007c00001d100000213d0000000f0000006b0000000d040000290000000e0500002900000b230000613d0000001102000029000000000341034f000000000303043b000000200220003900000000003204350000002004400039000000000054004b00000b1c0000413d000000400100043d000f00000001001d00000e700010009c00001f7f0000213d0000000c010000290000000001010433000d00000001001d0000000b0100002900000000010104330000000f030000290000006002300039000000400020043f0000000001130436000e00000001001d00000e30010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b0000000f0200002900000040032000390000000d0200002900000000002304350000000e0200002900000000001204350000086c01000039000000000201041a000000120020006c000025ea0000a13d000000000010043f000000120100002900000003011000c900000e530110009a000000000101041a000d00000001001d000000400100043d0000002002100039000000200400003900000000004204350000000f040000290000000004040433000000400510003900000060060000390000000000650435000000a005100039000000007604043400000000006504350000000005070433000000c006100039000000000056043500000040054000390000000005050433000000e006100039000000000056043500000060054000390000000005050433000001000610003900000000005604350000008005400039000000000505043300000120061000390000000000560435000000a005400039000000000505043300000140061000390000000000560435000000c005400039000000000505043300000160061000390000000000560435000000e00540003900000000050504330000018006100039000000000056043500000100054000390000000005050433000001a00610003900000000005604350000012005400039000000000505043300000da905500197000001c00610003900000000005604350000014005400039000000000505043300000da905500197000001e0061000390000000000560435000001600440003900000000040404330000020005100039000001800600003900000000006504350000022006100039000000005404043400000000004604350000024006100039000000000004004b00000b950000613d000000000700001900000000086700190000000009750019000000000909043300000000009804350000002007700039000000000047004b00000b8e0000413d000000000564001900000000000504350000000e050000290000000005050433000000600610003900000000005604350000000003030433000000800510003900000000003504350000001f0340003900000ea603300197000002200430003900000000004104350000025f0330003900000ea6043001970000000003140019000000000043004b0000000004000039000000010400403900000db50030009c00001f7f0000213d000000010040019000001f7f0000c13d000000400030043f00000da90020009c00000da9020080410000004002200210000000000101043300000da90010009c00000da9010080410000006001100210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b00000011020000290000000002020433000000000002004b00000be10000613d0000000003000019001200000003001d000000050230021000000010022000290000000002020433000000000021004b00000bcf0000813d000000000010043f000000200020043f000000000100041400000bd20000013d000000000020043f000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b0000001203000029000000010330003900000011020000290000000002020433000000000023004b00000bc50000413d0000000d0010006c00001db60000c13d0000000b010000290000000001010433001100000001001d0000012001100039001000000001001d0000000001010433001200000001001d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b000000120200002900000da902200197000000000012004b0000167b0000413d0000000a010000290000000001010433001200000001001d000000000010043f0000087201000039000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000000101041a000000020010008c000021070000c13d000000400100043d00000e8d020000410000239d0000013d00000dde0030009c000011640000613d00000ddf0030009c00001d100000c13d000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b00001d100000c13d0000086902000039000000000202041a00000e100220009a00000dac022001970000000003000411000000000023004b0000129e0000c13d0000006502000039000000000302041a000000020030008c000013620000613d0000000203000039000000000032041b0000086b02000039000000000302041a00000e4203300197000000000001004b000000000400001900000e430400c041000000000343019f000000000032041b000000800010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e44011001c70000800d02000039000000010300003900000e450400004100000ce50000013d00000df40030009c000011b50000613d00000df50030009c00001d100000c13d0000000001000416000000000001004b00001d100000c13d0000086b01000039000000000101041a00000e2600100198000013300000013d00000dc90030009c000011c00000613d00000dca0030009c00001d100000c13d0000000001000416000000000001004b00001d100000c13d00000e2b01000041000000800010043f00000e2701000041000036a00001042e00000e030030009c0000134d0000613d00000e040030009c00001d100000c13d000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b001200000001001d00000dac0010009c00001d100000213d00000e49010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000dac011001970000000002000410000000000012004b0000167e0000c13d000000400100043d000000640210003900000e7c03000041000017310000013d000000000c05034f00000dd80030009c0000136c0000613d00000dd90030009c00001d100000c13d000000240040008c00001d100000413d0000000002000416000000000002004b00001d100000c13d0000000402c00370000000000202043b001000000002001d00000db50020009c00001d100000213d00000010020000290000002302200039000000000042004b00001d100000813d0000001002000029000000040220003900000000022c034f000000000202043b000f00000002001d00000db50020009c00001d100000213d0000001002000029000000240e2000390000000f0200002900000005032002100000000002e30019000000000042004b00001d100000213d0000003f0230003900000e3c0220019700000e2f0020009c00001f7f0000213d0000008002200039000000400020043f0000000f06000029000000800060043f000000000006004b000017d00000c13d00000020010000390000000003120436000000800100043d0000000000130435000000400320003900000005041002100000000007340019000000000001004b000018780000c13d000000000127004900000da90010009c00000da901008041000000600110021000000da90020009c00000da9020080410000004002200210000000000121019f000036a00001042e00000dee0030009c0000139b0000613d00000def0030009c00001d100000c13d000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b00001d100000c13d0000086902000039000000000202041a00000e100220009a00000dac022001970000000003000411000000000023004b0000129e0000c13d0000006502000039000000000302041a000000020030008c000013620000613d0000000203000039000000000032041b0000086b02000039000000000302041a00000e5f03300197000000000001004b000000000400001900000e600400c041000000000343019f000000000032041b000000800010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e44011001c70000800d02000039000000010300003900000e61040000410000124d0000013d00000dc30030009c000013a60000613d00000dc40030009c00001d100000c13d000001640040008c00001d100000413d0000010401500370000000000101043b001200000001001d00000da90010009c00001d100000213d0000012401500370000000000101043b001100000001001d00000da90010009c00001d100000213d0000014401500370000000000101043b00000db50010009c00001d100000213d0000002302100039000000000042004b00001d100000813d0000000402100039000000000225034f000000000202043b001000000002001d00000db50020009c00001d100000213d0000002402100039000f00000002001d0000001001200029000000000041004b00001d100000213d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b00000da901100197000e00000001001d0000001201100029001200000001001d00000da90010009c000019c20000a13d00000e8c01000041000000000010043f0000001101000039000000040010043f00000e8601000041000036a10001043000000dfe0030009c000013ab0000613d00000dff0030009c00001d100000c13d000000440040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000002401500370000000000701043b0000000401500370000000000601043b0000086901000039000000000101041a00000e100110009a00000dac011001970000000002000411000000000012004b0000129e0000c13d0000006501000039000000000201041a000000020020008c000013620000613d0000000202000039000000000021041b0000086c02000039000000000102041a00000db50010009c00001f7f0000213d0000000103100039000000000032041b000000000020043f00000003021000c900000e540320009a000000000063041b00000e530220009a000000000072041b000000000200041400000da90510019700000da90020009c00000da902008041000000c00120021000000e1a011001c70000800d02000039000000040300003900000e75040000410000124d0000013d00000dd30030009c000013b20000613d00000dd40030009c00001d100000c13d000000c40040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000006401500370000000000101043b001000000001001d0000004401500370000000000101043b000f00000001001d0000002401500370000000000101043b001100000001001d0000000401500370000000000101043b001200000001001d0000008401500370000000000101043b00000db50010009c00001d100000213d0000002302100039000000000042004b00001d100000813d0000000402100039000000000325034f000000000303043b000e00000003001d00000db50030009c00001d100000213d0000002403100039000d00000003001d0000000e01300029000000000041004b00001d100000213d000000a401500370000000000301043b00000db50030009c00001d100000213d0000002301300039000000000041004b00001d100000813d0000000401300039000000000615034f000000000606043b000c00000006001d00000db50060009c00001d100000213d0000002406300039000b00000006001d0000000c03600029000000000043004b00001d100000213d0000006503000039000000000403041a000000020040008c000013620000613d0000000204000039000000000043041b000000120300002900000e2c0030009c00001ab90000813d0000000e030000290000001f0330003900000ea603300197000900000003001d0000003f0330003900000ea60330019700000e2f0030009c00001f7f0000213d0000008003300039000000400030043f0000002002200039000000000325034f0000000e02000029000000800020043f00000ea604200198000a001f00200193000700000004001d000000a00240003900000dab0000613d000000a004000039000000000603034f000000006706043c0000000004740436000000000024004b00000da70000c13d0000000a0000006b00000db90000613d00000007033003600000000a040000290000000304400210000000000602043300000000064601cf000000000646022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000363019f00000000003204350000000e02000029000000a00220003900000000000204350000000c020000290000001f0220003900000ea602200197000400000002001d0000003f0220003900000ea602200197000000400300043d0000000002230019000800000003001d000000000032004b0000000003000039000000010300403900000db50020009c00001f7f0000213d000000010030019000001f7f0000c13d000000400020043f0000002001100039000000000215034f0000000c010000290000000803000029000000000413043600000ea6031001980005001f00100193000300000003001d000600000004001d000000000134001900000dde0000613d000000000302034f0000000604000029000000003503043c0000000004540436000000000014004b00000dda0000c13d000000050000006b00000dec0000613d000000030220036000000005030000290000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f000000000021043500000006020000290000000c01200029000000000001043500000e30010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b000200000001001d000000800100043d00000da90010009c00000da9010080410000006001100210000000000200041400000da90020009c00000da902008041000000c002200210000000000121019f00000e31011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000201043b000000400100043d000000c0031000390000000000230435000000a0021000390000001003000029000000000032043500000080021000390000000f030000290000000000320435000000600210003900000002030000290000000000320435000000400210003900000011030000290000000000320435000000200210003900000e32030000410000000000320435000000c003000039000000000031043500000e330010009c00001f7f0000213d000000e003100039000000400030043f00000da90020009c00000da9020080410000004002200210000000000101043300000da90010009c00000da9010080410000006001100210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000100000001001d0000047f01000039000000000201041a0000048001000039000000000301041a000000400100043d0000008004100039000000020500002900000000005404350000006004100039000000000034043500000040031000390000000000230435000000200210003900000e340300004100000000003204350000008003000039000000000031043500000e350010009c00001f7f0000213d000000a003100039000000400030043f00000da90020009c00000da9020080410000004002200210000000000101043300000da90010009c00000da9010080410000006001100210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000400200043d00000022032000390000000104000029000000000043043500000e360300004100000000003204350000000203200039000000000013043500000da90020009c00000da9020080410000004001200210000000000200041400000da90020009c00000da902008041000000c002200210000000000121019f00000e37011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000200000001001d00000008010000290000000001010433000000410010008c00000e7f0000c13d00000008010000290000004001100039000000000101043300000e380010009c00001e4f0000a13d000000400200043d000000440120003900000040030000390000000000310435000000200120003900000e3a03000041000000000031043500000024032000390000000204000029000000000043043500000008030000290000000003030433000000640420003900000000003404350000008404200039000000000003004b000000060800002900000e990000613d000000000500001900000000064500190000000007850019000000000707043300000000007604350000002005500039000000000035004b00000e920000413d000000000443001900000000000404350000001f0330003900000ea60330019700000064043000390000000000420435000000a30330003900000ea6043001970000000003240019000000000043004b0000000004000039000000010400403900000db50030009c00001f7f0000213d000000010040019000001f7f0000c13d000000400030043f000000000302043300000000020004140000001204000029000000040040008c00001f350000c13d0000000102000039000000010400003100001f470000013d00000de90030009c000013b70000613d00000dea0030009c00001d100000c13d000000640040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b00000dac0010009c00001d100000213d0000002402500370000000000202043b0000004403500370000000000303043b369f2d9e0000040f000000400200043d000000000012043500000da90020009c00000da902008041000000400120021000000e22011001c7000036a00001042e00000dbe0030009c000013fc0000613d00000dbf0030009c00001d100000c13d000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b001200000001001d00000dac0010009c00001d100000213d0000086901000039000000000101041a00000e100110009a00000dac011001970000000002000411000000000012004b0000129e0000c13d369f2e850000040f0000001201000029369f351b0000040f000012990000013d0000000001000416000000000001004b00001d100000c13d000000800000043f00000e2701000041000036a00001042e0000000001000416000000000001004b00001d100000c13d0000000001000412001600000001001d001500c00000003d000080050100003900000044030000390000000004000415000000160440008a000012b20000013d000001240040008c00001d100000413d0000000401f00370000000000101043b00000dac0010009c00001d100000213d0000002402f00370000000000202043b00000dac0020009c00001d100000213d0000004403f00370000000000303043b00000dac0030009c00001d100000213d000000a406f00370000000000606043b00000e630060019800000e6407000041000000000700601900000e6508600197000000000787019f000000000076004b00001d100000c13d000000c407f00370000000000707043b00000da90070009c00001d100000213d000000e408f00370000000000908043b00000db50090009c00001d100000213d00000000050400190000002308900039000000000048004b00001d100000813d000000040a9000390000000008af034f000000000808043b00000db50080009c00001f7f0000213d0000001f0c80003900000ea60cc001970000003f0cc0003900000ea60cc0019700000e2f00c0009c00001f7f0000213d0000002409900039000000800cc000390000004000c0043f000000800080043f0000000009980019000000000059004b00001d100000213d0000002004a0003900000000094f034f00000ea60a8001980000001f0b80018f000000a004a0003900000f360000613d000000a00c000039000000000d09034f00000000de0d043c000000000cec043600000000004c004b00000f320000c13d00000000000b004b00000f430000613d0000000009a9034f000000030ab00210000000000b040433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f0000000000940435000000a00480003900000000000404350000006504000039000000000404041a000000020040008c000019c60000613d00000002040000390000006505000039000000000045041b0000086b04000039000000000404041a00000e260040019800001b020000c13d0000006404f00370000000000404043b0000008405f00370000000000505043b000012240000013d0000000001000416000000000001004b00001d100000c13d00000da901000041000000800010043f00000e2701000041000036a00001042e000000640040008c00001d100000413d0000000401500370000000000101043b001200000001001d00000da90010009c00001d100000213d0000002401500370000000000101043b00000db50010009c00001d100000213d000000000a040019000000000214004900000e280020009c00001d100000213d000000c40020008c00001d100000413d0000014002000039000000400020043f0000000403100039000000000335034f000000000303043b000000800030043f0000002403100039000000000335034f000000000303043b000000a00030043f0000004403100039000000000635034f000000000606043b00000db50060009c00001d100000213d000000000616001900000023076000390000000000a7004b00001d100000813d0000000407600039000000000775034f000000000807043b00000db50080009c00001f7f0000213d00000005078002100000003f0970003900000e3c0990019700000e900090009c00001f7f0000213d0000014009900039000000400090043f000001400080043f000000240660003900000000076700190000000000a7004b00001d100000213d000000000008004b000000000405034f00000f9b0000613d000000000864034f000000000808043b000000200220003900000000008204350000002006600039000000000076004b00000f940000413d0000014002000039000000c00020043f0000002002300039000000000324034f000000000303043b00000da90030009c00001d100000213d000000e00030043f0000002002200039000000000325034f000000000303043b00000dac0030009c00001d100000213d000001000030043f0000002002200039000000000225034f000000000202043b00000db50020009c00001d100000213d000000000212001900000023012000390000000000a1004b000000000300001900000e3d0300804100000e3d01100197000000000001004b000000000600001900000e3d0600404100000e3d0010009c000000000603c019000000000006004b00001d100000c13d0000000401200039000000000115034f000000000301043b00000db50030009c00001f7f0000213d00000005063002100000003f0160003900000e3c07100197000000400100043d0000000007710019000000000017004b0000000008000039000000010800403900000db50070009c00001f7f0000213d000000010080019000001f7f0000c13d000000400070043f0000000000310435000000240220003900000000032600190000000000a3004b00001d100000213d000000000032004b00000fde0000813d0000000006010019000000000725034f000000000707043b00000dac0070009c00001d100000213d000000200660003900000000007604350000002002200039000000000032004b00000fd50000413d000001200010043f0000004401500370000000000101043b00000db50010009c00001d100000213d00000023021000390000000000a2004b000000000300001900000e3d0300804100000e3d02200197000000000002004b000000000600001900000e3d0600404100000e3d0020009c000000000603c019000000000006004b00001d100000c13d0000000402100039000000000225034f000000000202043b00000db50020009c00001f7f0000213d00000005032002100000003f0630003900000e3c06600197000000400700043d0000000006670019001000000007001d000000000076004b0000000007000039000000010700403900000db50060009c00001f7f0000213d000000010070019000001f7f0000c13d0000002401100039000000400060043f00000010060000290000000006260436000f00000006001d00000000031300190000000000a3004b00001d100000213d000000000002004b000010130000613d0000001002000029000000000415034f000000000404043b000000200220003900000000004204350000002001100039000000000031004b0000100c0000413d0000000001000415000600000001001d0000006501000039000000000101041a000000020010008c000019c60000613d00000002010000390000006502000039000000000012041b000001000100043d001100000001001d00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000110200002900110dac0020019b000000000101043b00000dac01100197000000110010006b000010430000c13d00000e8701000041000000000010044300000000010004100000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800a02000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b000021b80000c13d000000a00100043d001100000001001d00000e30010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000101043b000000110010006b000021b50000c13d0000086c01000039000000000101041a000000120010006c000025ea0000a13d0000086c01000039000000000010043f000000120100002900000003011000c9000d00000001001d00000e540110009a000000000101041a000e00000001001d000000400100043d0000002002100039000000200300003900000000003204350000004003100039000000800400043d00000000004304350000006003100039000000a00400043d00000000004304350000008003100039000000c005000039000000c00400043d00000000005304350000010003100039000000000504043300000000005304350000012003100039000000000005004b0000107a0000613d00000000060000190000002004400039000000000704043300000000037304360000000106600039000000000056004b000010740000413d000000e00400043d00000da904400197000000a0051000390000000000450435000001000400043d00000dac04400197000000c00510003900000000004504350000000004130049000000400540008a000000e006100039000001200400043d000000000056043500000000050404330000000003530436000000000005004b000010930000613d00000000060000190000002004400039000000000704043300000dac0770019700000000037304360000000106600039000000000056004b0000108c0000413d0000000003130049000000200430008a00000000004104350000001f0330003900000ea6043001970000000003140019000000000043004b0000000004000039000000010400403900000db50030009c00001f7f0000213d000000010040019000001f7f0000c13d000000400030043f00000da90020009c00000da9020080410000004002200210000000000101043300000da90010009c00000da9010080410000006001100210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b00000010020000290000000002020433000000000002004b000010d50000613d001100000000001d000000110200002900000005022002100000000f022000290000000002020433000000000021004b000010c30000813d000000000010043f000000200020043f0000000001000414000010c60000013d000000000020043f000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b0000001103000029001100010030003d00000010020000290000000002020433000000110020006b000010b90000413d0000000e0010006c00001db60000c13d0000086c01000039000000000101041a000000120010006c000025ea0000a13d000000e00100043d001100000001001d000000080110027000000e9301100197000000000010043f0000000d0100002900000e940110009a000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d0000001102000029000000ff0220018f000000010220020f000000000101043b000000000301041a0000000000230170000023c40000c13d000000000223019f000000000021041b000001200200043d000000c00300043d0000000001000415000400000001001d000e00000003001d0000000013030434000b00000001001d000a00000002001d0000000021020434000800000002001d000c00000003001d000000000031004b000024420000c13d000000800100043d000300000001001d000000a00100043d000200000001001d000000e00100043d000100000001001d000001000100043d000f0dac0010019b0000000c0000006b000500000000001d000024450000c13d000000030000006b000024720000c13d0000000001000411001100000001001d000000000100041500000004011000690000000001000002000000400100043d0000002004100039000001200200043d000000a00500043d000000e00300043d000001000800043d000000c00600043d000000800700043d000000c00900003900000000009404350000000000710435000000c00410003900000000070604330000000000740435000000e00410003900000dac08800197000000000007004b0000112d0000613d00000000090000190000002006600039000000000a0604330000000004a404360000000109900039000000000079004b000011270000413d000000120600002900000da90660019700000da9073001970000000003140049000000600910003900000000003904350000004003100039000000000083043500000000080204330000000003840436000000000008004b000011410000613d00000000040000190000002002200039000000000902043300000dac0990019700000000039304360000000104400039000000000084004b0000113a0000413d000000110200002900000dac02200197000000a0041000390000000000240435000000050000006b0000000002000039000000010200c03900000080041000390000000000240435000000000213004900000da90020009c00000da902008041000000600220021000000da90010009c00000da9010080410000004001100210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000800d02000039000000040300003900000ea504000041369f36900000040f000000010020019000001d100000613d00000001010000390000006502000039000000000012041b0000000001000415000000060200002900001bed0000013d000000640040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b001200000001001d00000da90010009c00001d100000213d0000002401500370000000000101043b001100000001001d00000dac0010009c00001d100000213d0000004401500370000000000101043b001000000001001d00000dac0010009c00001d100000213d000000000100041a0000000801100270000000ff0110018f369f2ddd0000040f0000001201000029000000c00110021000000e16011001970000086b02000039000000000302041a00000e1703300197000000000113019f000000000012041b000000400100043d001200000001001d369f2a7b0000040f00000e180100004100000012020000290000002003200039000e00000003001d000000000013043500000009010000390000000000120435000000400100043d000f00000001001d369f2a7b0000040f00000e19010000410000000f020000290000002003200039000d00000003001d000000000013043500000005010000390000000000120435000000000100041a0000000801100270000000ff0110018f000c00000001001d369f2ddd0000040f0000000c01000029369f2ddd0000040f000000120100002900000000020104330000000e01000029369f365d0000040f0000000f020000290000000002020433001200000001001d0000000d01000029369f365d0000040f0000047f020000390000001203000029000000000032041b0000048002000039000000000012041b369f34cb0000040f369f34e30000040f0000001101000029369f34fe0000040f0000001001000029369f351b0000040f0000000001000019000036a00001042e0000000001000416000000000001004b00001d100000c13d0000000001000412001c00000001001d001b00400000003d0000800501000039000000440300003900000000040004150000001c0440008a000014410000013d0000000001000416000000000001004b00001d100000c13d0000086b01000039000000000101041a00000e2a00100198000013300000013d000001040040008c00001d100000413d000000000e05034f0000000401500370000000000201043b00000dac0020009c00001d100000213d0000002401e00370000000000301043b00000dac0030009c00001d100000213d0000008401e00370000000000601043b00000e630060019800000e6401000041000000000100601900000e6507600197000000000171019f000000000016004b00001d100000c13d000000a401e00370000000000701043b00000da90070009c00001d100000213d000000c401e00370000000000801043b00000db50080009c00001d100000213d00000000050400190000002301800039000000000041004b00001d100000813d000000040980003900000000019e034f000000000101043b00000db50010009c00001f7f0000213d0000001f0b10003900000ea60bb001970000003f0bb0003900000ea60bb0019700000e2f00b0009c00001f7f0000213d0000002408800039000000800bb000390000004000b0043f000000800010043f0000000008810019000000000058004b00001d100000213d000000200490003900000000084e034f00000ea6091001980000001f0a10018f000000a004900039000012050000613d000000a00b000039000000000c08034f00000000cd0c043c000000000bdb043600000000004b004b000012010000c13d00000000000a004b000012120000613d000000000898034f0000000309a00210000000000a040433000000000a9a01cf000000000a9a022f000000000808043b0000010009900089000000000898022f00000000089801cf0000000008a8019f0000000000840435000000a00110003900000000000104350000006501000039000000000101041a000000020010008c000019c60000613d00000002010000390000006504000039000000000014041b0000086b01000039000000000101041a00000e260010019800001b020000c13d0000004401e00370000000000401043b0000006401e00370000000000501043b00000000010004110000008008000039369f2e9d0000040f000012990000013d000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000501043b0000086901000039000000000101041a00000e100110009a00000dac011001970000000002000411000000000012004b0000129e0000c13d0000006501000039000000000201041a000000020020008c000013620000613d0000000202000039000000000021041b0000086c01000039000000000201041a000000000052004b000025ea0000a13d000000000010043f00000003015000c900000e530210009a000000000002041b00000e540110009a000000000001041b000000000100041400000da90010009c00000da901008041000000c00110021000000e1a011001c70000800d02000039000000020300003900000e5504000041369f36900000040f000000010020019000001d100000613d000012990000013d0000000001000416000000000001004b00001d100000c13d0000086901000039000016300000013d000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b000000000010043f0000087201000039000000200010043f00000040020000390000000001000019369f365d0000040f000000000101041a000000800010043f00000e2701000041000036a00001042e0000000001000416000000000001004b00001d100000c13d0000800b01000039000000040300003900000000040004150000002b0440008a000000050440021000000e24020000410000127a0000013d0000000001000416000000000001004b00001d100000c13d0000800b01000039000000040300003900000000040004150000002b0440008a000000050440021000000e3002000041369f36720000040f000000800010043f00000e2701000041000036a00001042e0000000001000416000000000001004b00001d100000c13d00000e3201000041000000800010043f00000e2701000041000036a00001042e000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b001200000001001d00000dac0010009c00001d100000213d0000086901000039000000000101041a00000e100110009a00000dac011001970000000002000411000000000012004b0000129e0000c13d369f2e850000040f0000001201000029369f34fe0000040f00000001010000390000006502000039000000000012041b0000000001000019000036a00001042e00000daf01000041000000800010043f0000002001000039000000840010043f0000001801000039000000a40010043f00000e6901000041000000c40010043f00000e7401000041000036a1000104300000000001000416000000000001004b00001d100000c13d0000000001000412002000000001001d001f01000000003d000080050100003900000044030000390000000004000415000000200440008a000000050440021000000e4902000041369f36720000040f000016310000013d000001840040008c00001d100000413d0000010401500370000000000101043b001200000001001d00000da90010009c00001d100000213d0000012401500370000000000101043b001100000001001d00000da90010009c00001d100000213d0000014401500370000000000101043b001000000001001d00000da90010009c00001d100000213d0000016401500370000000000101043b00000db50010009c00001d100000213d00000000030400190000002302100039000000000042004b00001d100000813d0000000402100039000000000225034f000000000202043b000f00000002001d00000db50020009c00001d100000213d0000002402100039000e00000002001d0000000f01200029000000000031004b00001d100000213d0000006501000039000000000101041a000000020010008c000013620000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000e2600100198000019bb0000c13d000000c00110027000000da901100197000d00000001001d369f2df40000040f0000086b03000039000000000203041a00000e1702200197000000c00110021000000e1601100197000000000112019f000000000013041b369f2a920000040f00000002020003670000000403200370000000000303043b0000000004010019000c00000001001d00000000013104360000002403200370000000000303043b00000000003104350000004401200370000000000101043b000000400340003900000000001304350000006401200370000000000101043b000000600340003900000000001304350000008401200370000000000101043b00000080034000390000000000130435000000a401200370000000000101043b000000a0034000390000000000130435000000c401200370000000000101043b000000c0034000390000000000130435000000e401200370000000000101043b000000e002400039000000000012043500000100014000390000000d02000029000000000021043500000120014000390000001202000029000000000021043500000140014000390000001102000029000000000021043500000160014000390000001002000029000000000021043500000000030000310000000e010000290000000f0200002900001ab20000013d0000000001000416000000000001004b00001d100000c13d0000000001000412001800000001001d001700e00000003d000080050100003900000044030000390000000004000415000000180440008a000000050440021000000e4902000041369f36720000040f000000000001004b0000000001000039000000010100c039000000800010043f00000e2701000041000036a00001042e000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b0000086c02000039000000000202041a000000000021004b00001d100000813d369f2b960000040f000000000201041a0000000101100039000000000101041a000000400300043d00000020043000390000000000140435000000000023043500000da90030009c00000da903008041000000400130021000000e23011001c7000036a00001042e000000240040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b001200000001001d00000db50010009c00001d100000213d0000001201000029001100040010003d000000110140006a00000e280010009c00001d100000213d000001800010008c00001d100000413d0000006501000039000000000201041a000000020020008c000016570000c13d00000daf01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f00000e8f01000041000000c40010043f00000e7401000041000036a100010430000000440040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000002401c00370000000000201043b0000000401c00370000000000101043b00000e2c0010009c000016350000813d001100000002001d001200000001001d000000000010043f0000087301000039000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000000200041100000dac02200197001000000002001d000000000020043f000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000000101041a000000000001004b000017460000c13d000000400100043d00000e41020000410000239d0000013d0000000001000416000000000001004b00001d100000c13d0000000001000412001a00000001001d001900800000003d0000800501000039000000440300003900000000040004150000001a0440008a000014410000013d0000000001000416000000000001004b00001d100000c13d00000c5a01000039000016300000013d0000000001000416000000000001004b00001d100000c13d00000e7601000041000000800010043f00000e2701000041000036a00001042e0000000001000416000000000001004b00001d100000c13d0000086a01000039000016300000013d000001840040008c00001d100000413d0000000401500370000000000101043b001200000001001d00000dac0010009c00001d100000213d0000002401500370000000000101043b001100000001001d00000dac0010009c00001d100000213d0000004401500370000000000101043b001000000001001d00000dac0010009c00001d100000213d0000006401500370000000000101043b000f00000001001d00000dac0010009c00001d100000213d000000e401500370000000000101043b000e00000001001d00000dac0010009c00001d100000213d0000010401500370000000000101043b000d00000001001d00000da90010009c00001d100000213d0000012401500370000000000101043b000c00000001001d00000da90010009c00001d100000213d0000014401500370000000000101043b000b00000001001d00000da90010009c00001d100000213d0000016401500370000000000101043b00000db50010009c00001d100000213d00000000020400190000000401100039369f2ae80000040f0000000203000367000000c404300370000000000704043b000000a404300370000000000604043b0000008403300370000000000503043b000000000c010019000000000d0200190000001201000029000000110200002900000010030000290000000f040000290000000e080000290000000d090000290000000c0a0000290000000b0b000029369f2bb40000040f0000000001000019000036a00001042e000000840040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000000401500370000000000101043b001200000001001d00000da90010009c00001d100000213d0000002401500370000000000101043b001100000001001d00000dac0010009c00001d100000213d0000004401500370000000000101043b001000000001001d00000dac0010009c00001d100000213d0000006401500370000000000101043b000f00000001001d00000dac0010009c00001d100000213d0000000001000415000000140110008a000e000500100218000000000200041a000dff00002001940000178e0000c13d0000000001000415000000130110008a000e000500100218000000ff002001900000178e0000c13d00000ea70120019700000001021001bf00000ea80120019700000100021001bf000e00000000001d000000000020041b00000c5a01000039000000000301041a00000e15033001970000800a033001bf000000000031041b000000400100043d0000ff0000200190000018c90000c13d000000640210003900000e20030000410000000000320435000000440210003900000e2103000041000000000032043500000024021000390000002b03000039000017370000013d0000000001000416000000000001004b00001d100000c13d0000000001000412002a00000001001d002900600000003d0000800501000039000000440300003900000000040004150000002a0440008a000000050440021000000e4902000041369f36720000040f00000da901100197000000800010043f00000e2701000041000036a00001042e000000640040008c00001d100000413d0000000001000416000000000001004b00001d100000c13d0000002401500370000000000101043b00000db50010009c00001d100000213d00000000030400190000002302100039000000000042004b00001d100000813d001100040010003d0000001102500360000000000202043b001200000002001d00000db50020009c00001d100000213d0000002401100039000f00000001001d001000120010002d000000100030006b00001d100000213d0000004401500370000000000101043b00000db50010009c00001d100000213d0000002302100039000000000032004b00001d100000813d0000000402100039000000000225034f000000000202043b000e00000002001d00000db50020009c00001d100000213d0000002401100039000d00000001001d0000000e01100029000000000031004b00001d100000213d00000e30010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d000000000201043b0000004001000039000000a00010043f0000001203000029000000e00030043f00000ea6043001980000001f0530018f00000100034000390000001101000029001100200010003d00000002010003670000001106100360000014900000613d0000010007000039000000000806034f000000008908043c0000000007970436000000000037004b0000148c0000c13d000000000005004b0000149d0000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000120400002900000100034000390000000000030435000000c00020043f0000001f0240003900000ea6022001970000009f0320003900000ea6033001970000006002200039000000800020043f00000e2f0030009c00001f7f0000213d0000008003300039000000400030043f0000000401100370000000000101043b000c00000001001d00000da90020009c00000da9020080410000006001200210000000000200041400000da90020009c00000da902008041000000c002200210000000000121019f00000e31011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b0000000c0010006c00001bf30000c13d0000001201000029000000200010008c00001d100000413d00000002010003670000001102100360000000000202043b00000db50020009c00001d100000213d0000000f0d2000290000001002d0006900000e280020009c00001d100000213d000001800020008c00001d100000413d000000400200043d00000e460020009c00001f7f0000213d0000018003200039000000400030043f0000000003d1034f000000000303043b00000000033204360000002004d00039000000000441034f000000000404043b00000000004304350000004004d00039000000000441034f000000000504043b000000400420003900000000005404350000006005d00039000000000551034f000000000605043b000000600520003900000000006504350000008006d00039000000000661034f000000000706043b00000080062000390000000000760435000000a007d00039000000000771034f000000000807043b000000a0072000390000000000870435000000c008d00039000000000881034f000000000908043b000000c0082000390000000000980435000000e009d00039000000000991034f000000000a09043b000000e0092000390000000000a90435000001000ad00039000000000ba1034f000001000a200039000000000b0b043b0000000000ba0435000001200cd00039000000000bc1034f000000000e0b043b00000da900e0009c00001d100000213d000001200b2000390000000000eb0435000000200ec00039000000000ce1034f000000000f0c043b00000da900f0009c00001d100000213d000001400c20003900120000000c001d0000000000fc0435000000200ee00039000000000ee1034f000000000e0e043b00000db500e0009c00001d100000213d000000000fde00190000001f0df000390000001000d0006c00001d100000813d000000000df1034f000000000c0d043b00110000000c001d00000db500c0009c00001f7f0000213d000000110c0000290000001f0dc0003900000ea60dd001970000003f0dd0003900000ea60dd00197000000400c00043d000000000edc0019000f0000000c001d0000000000ce004b000000000d000039000000010d00403900000db500e0009c00001f7f0000213d0000000100d0019000001f7f0000c13d000000200df000390000004000e0043f000000110c0000290000000f0e000029000000000ece0436000c0000000e001d000000000edc00190000001000e0006c00001d100000213d000b000000d10353000000110d00002900000ea60ed001980010001f00d00193000a0000000e001d0000000c0fe000290000153d0000613d0000000b0e00035f0000000c0d00002900000000ec0e043c000000000dcd04360000000000fd004b000015390000c13d000000100000006b0000154c0000613d0000000a0d0000290000000b0cd0035f000000100d000029000000030dd00210000000000e0f0433000000000ede01cf000000000ede022f000000000c0c043b000001000dd00089000000000cdc022f000000000cdc01cf000000000cec019f0000000000cf04350000000c0d000029000000110cd0002900000000000c0435000001600f2000390000000f0c0000290000000000cf04350000000e0c0000290000002000c0008c00001d100000413d000000400d00043d00000e5700d0009c00001f7f0000213d000000200cd000390000004000c0043f0000000d01100360000000000e01043b0000000000ed0435000000400d00043d0000002001d0003900000e580c000041001000000001001d0000000000c10435000000240cd000390000006001000039001100000001001d00000000001c04350000000002020433000000840cd0003900000000002c04350000000002030433000000a403d0003900000000002304350000000002040433000000c403d0003900000000002304350000000002050433000000e403d00039000000000023043500000000020604330000010403d00039000000000023043500000000020704330000012403d00039000000000023043500000000020804330000014403d00039000000000023043500000000020904330000016403d00039000000000023043500000000020a04330000018403d00039000000000023043500000000020b043300000da902200197000001a403d0003900000000002304350000001201000029000000000201043300000da902200197000001c403d00039000000000023043500000000020f0433000001e403d00039000001800400003900000000004304350000020403d000390000000042020434000000000023043500000000030004110000022405d00039000000000002004b0000159d0000613d000000000600001900000000075600190000000008640019000000000808043300000000008704350000002006600039000000000026004b000015960000413d000000000452001900000000000404350000006404d0003900000000003404350000004403d000390000000000e304350000001f0220003900000ea602200197000002040320003900000000003d0435000002430220003900000ea6032001970000000002d30019000000000032004b0000000003000039000000010300403900000db50020009c00001f7f0000213d000000010030019000001f7f0000c13d000000400020043f00000000040d043300000000030004140000000002000410000000040020008c000021ec0000c13d00000001010000310000000002000019000021fe0000013d000000440040008c00001d100000413d000000000805034f0000000401500370000000000101043b001200000001001d00000dac0010009c00001d100000213d0000002401800370000000000201043b00000db50020009c00001d100000213d00000000050400190000002301200039000000000041004b00001d100000813d0000000403200039000000000138034f000000000101043b00000db50010009c00001f7f0000213d0000001f0610003900000ea6066001970000003f0660003900000ea60660019700000e2f0060009c00001f7f0000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000052004b00001d100000213d0000002002300039000000000328034f00000ea6041001980000001f0510018f000000a002400039000015e80000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000015e40000c13d000000000005004b000015f50000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a001100039000000000001043500000e49010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000dac011001970000000002000410000000000012004b00000c760000613d00000e6802000041000000000202041a00000dac02200197000000000012004b0000172e0000c13d0000086901000039000000000101041a00000e100110009a00000dac011001970000000002000411000000000012004b00001b050000c13d0000000001000415001000000001001d00000e6b01000041000000000101041a000000ff0010019000001bf60000c13d000000400200043d00000e6c01000041001100000002001d000000000012043500000000010004140000001202000029000000040020008c00001c110000c13d00000000050004150000001e0550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900001c3f0000013d0000000001000416000000000001004b00001d100000c13d00000c5b01000039000000000101041a00000dac01100197000000800010043f00000e2701000041000036a00001042e000000800200003900000e2d01000041000000000012043500000da90020009c00000da902008041000000400120021000000db7011001c7000036a100010430000000400100043d000000640210003900000dad030000410000000000320435000000440210003900000dae03000041000000000032043500000024021000390000002703000039000017370000013d000000640130003900000e66040000410000000000410435000000440130003900000e6704000041000000000041043500000024013000390000003804000039000000000041043500000daf01000041000000000013043500000004013000390000002003000039000000000031043500000db0012001c7000036a1000104300000000202000039000000000021041b0000086b01000039000000000101041a00000e2a00100198000017420000c13d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002a610000613d0000001202000029001001440020003d00000002020003670000001003200360000000000101043b000000000303043b00000da90030009c00001d100000213d00000da901100197000000000013004b000019bf0000813d0000001003000029000f0020003000920000000f02200360000000000202043b00000da90020009c00001d100000213d000000000012004b00001b0c0000813d000000400100043d00000e8e020000410000239d0000013d00000e6802000041000000000202041a00000dac02200197000000000012004b0000172e0000c13d000000400300043d0000086901000039000000000101041a00000e100110009a00000dac011001970000000002000411000000000012004b000017ae0000c13d001100000003001d00000e570030009c00001f7f0000213d00000011010000290000002002100039000e00000002001d000000400020043f00000000000104350000000001000415000f00000001001d00000e6b01000041000000000101041a000000ff00100190000019d70000c13d000000400200043d00000e6c01000041001000000002001d000000000012043500000000010004140000001202000029000000040020008c000019f10000c13d0000000005000415000000220550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900001a1f0000013d00000da90010009c00000da901008041000000400110021000000da90030009c00000da9030080410000006003300210000000000113019f00000da90040009c00000da904008041000000c003400210000000000131019f369f36950000040f000000010220018f0003000000010355000000600110027000010da90010019d00000da904100197000000000004004b000016dd0000c13d000000600100003900000080030000390000001205000029000000100400002900000dac04400197000000000002004b0000000002000019000016cc0000613d0000000001010433000000200010008c0000000002000019000016cc0000c13d000000000103043300000dac001001980000000002000039000000010200c039000000010120018f000001600010043f000000000004004b000017070000613d00000dac02500197000000110000006b00000000030000390000000103006039000000000002004b0000000002000039000000010200c039000000000232013f0000000100200190000017070000613d000000400100043d00000db6020000410000239d0000013d00000db50040009c00001f7f0000213d0000001f0140003900000ea6011001970000003f0110003900000ea603100197000000400100043d0000000003310019000000000013004b0000000006000039000000010600403900000db50030009c00001f7f0000213d000000010060019000001f7f0000c13d000000400030043f000000000341043600000ea6054001980000001f0640018f00000000045300190000000307000367000016f90000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b000016f50000c13d000000000006004b000016be0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000016be0000013d000001800050043f000000800200043d00000140000004430000016000200443000000a00200043d00000020030000390000018000300443000001a0002004430000004002000039000000c00400043d000001c000200443000001e0004004430000006002000039000000e00400043d000002000020044300000220004004430000008002000039000001000400043d00000240002004430000026000400443000000a002000039000001200400043d0000028000200443000002a000400443000000c002000039000001400400043d000002c000200443000002e000400443000000e0020000390000030000200443000003200010044300000100010000390000034000100443000003600050044300000100003004430000000901000039000001200010044300000db801000041000036a00001042e000000400100043d000000640210003900000e77030000410000000000320435000000440210003900000e7803000041000000000032043500000024021000390000002c03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000db0011001c7000036a10001043000000e7d01000041000000800010043f00000e2e01000041000036a100010430000f00000001001d0000001201000029000000000010043f0000087301000039000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b0000001002000029000000000020043f000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000000001041b000000400200043d000000110100002900000dac0010009c000016360000213d000000200120003900000e3f03000041000000000031043500000044012000390000000f0300002900000000003104350000002401200039000000110300002900000000003104350000004401000039000000000012043500000e2f0020009c00001f7f0000213d0000008001200039000000400010043f0000001201000029369f354d0000040f000000400100043d0000000f02000029000000000021043500000da90010009c00000da9010080410000004001100210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000db1011001c70000800d02000039000000040300003900000e4004000041000000120500002900000011060000290000000007000411369f36900000040f000000010020019000001d100000613d000001dc0000013d000c00000002001d00000e1101000041000000000010044300000000010004100000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b000018bc0000c13d0000000c01000029000000ff0110018f000000010010008c0000000e010000290000000501100270000000000100003f000000010100603f000018bf0000c13d000000000200041a00000ea70120019700000001021001bf0000000d0000006b000014220000613d000e00010000003d000014250000013d000000440130003900000e6902000041000000000021043500000024013000390000001802000039000000000021043500000daf01000041000000000013043500000004013000390000002002000039000000000021043500000da90030009c00000da903008041000000400130021000000e6a011001c7000036a10001043000000e470040009c00001f7f0000213d000000600d00003900000000040000190000004005200039000000400050043f00000020052000390000000000d504350000000000020435000000a00540003900000000002504350000002004400039000000000034004b000019180000813d000000400200043d00000db40020009c000017c20000a13d00001f7f0000013d000000600f0000390000000002000019000000a0062000390000000000f604350000002002200039000000000032004b000017d20000413d000000200d00008a0000000006000019000e0000000e001d000000100340006a001200000006001d00110005006002180000001102e0002900000000022c034f000000000202043b000000430330008a00000e3d0630019700000e3d07200197000000000867013f000000000067004b000000000600001900000e3d06004041000000000032004b000000000300001900000e3d0300804100000e3d0080009c000000000603c019000000000006004b00001d100000c13d00000000050400190000000003e2001900000000023c034f000000000402043b00000db50040009c00001d100000213d0000000006450049000000200330003900000e3d0760019700000e3d08300197000000000978013f000000000078004b000000000700001900000e3d07004041000000000063004b000000000600001900000e3d0600204100000e3d0090009c000000000706c019000000000007004b00001d100000c13d00000000073c034f0000000008d40170000000400300043d00000000068300190000180e0000613d000000000907034f000000000a030019000000009b09043c000000000aba043600000000006a004b0000180a0000c13d0000001f094001900000181b0000613d000000000787034f0000000308900210000000000906043300000000098901cf000000000989022f000000000707043b0000010008800089000000000787022f00000000078701cf000000000797019f00000000007604350000000006430019000000000006043500000000060004140000000002000410000000040020008c000018280000c13d000000010600003100000001020000390000000004050019000000000006004b00000000030f0019000018410000c13d000018670000013d00000da90040009c00000da904008041000000600140021000000da90030009c00000da9030080410000004003300210000000000113019f00000da90060009c00000da906008041000000c003600210000000000113019f369f369a0000040f000000600f0000390000000e0e000029000000200d00008a0000000004000031000000020c000367000000010220018f0003000000010355000000600310027000010da90030019d00000da906300197000000000006004b00000000030f0019000018670000613d00000db50060009c00001f7f0000213d0000001f036000390000000003d3016f0000003f033000390000000007d3016f000000400300043d0000000007730019000000000037004b0000000008000039000000010800403900000db50070009c00001f7f0000213d000000010080019000001f7f0000c13d000000400070043f00000000096304360000000008d6017000000000078900190000185a0000613d000000000a01034f00000000ab0a043c0000000009b90436000000000079004b000018560000c13d0000001f06600190000018670000613d000000000881034f0000000306600210000000000907043300000000096901cf000000000969022f000000000808043b0000010006600089000000000868022f00000000066801cf000000000696019f0000000000670435000000000002004b00001abd0000613d000000800200043d0000001206000029000000000062004b000025ea0000a13d0000001102000029000000a0022000390000000000320435000000800200043d000000000062004b000025ea0000a13d00000001066000390000000f0060006c000017da0000413d000000400200043d00000ca50000013d00000080040000390000000006000019000018830000013d0000001f0980003900000ea6099001970000000008780019000000000008043500000000077900190000000106600039000000000016004b00000cae0000813d0000000008270049000000400880008a00000000038304360000002004400039000000000804043300000000980804340000000007870436000000000008004b0000187b0000613d000000000a000019000000000b7a0019000000000ca90019000000000c0c04330000000000cb0435000000200aa0003900000000008a004b0000188d0000413d0000187b0000013d000000800400003900000040050000390000000007000019000018a10000013d0000001f0a90003900000ea60aa001970000000009890019000000000009043500000000088a00190000000107700039000000000017004b000008120000813d0000000009280049000000400990008a00000000039304360000002004400039000000000904043300000000a9090434000000000009004b0000000009000039000000010900c0390000000009980436000000000a0a04330000000000590435000000400b80003900000000a90a043400000000009b04350000006008800039000000000009004b000018990000613d000000000b000019000000000c8b0019000000000dba0019000000000d0d04330000000000dc0435000000200bb0003900000000009b004b000018b40000413d000018990000013d0000000e010000290000000501100270000000000100003f000000400100043d000000640210003900000e13030000410000000000320435000000440210003900000e1403000041000000000032043500000024021000390000002e03000039000017370000013d0000001202000029000000c00220021000000e16022001970000086b03000039000000000403041a00000e1704400197000000000224019f000000000023041b00000db40010009c00001f7f0000213d0000004002100039000000400020043f0000000902000039000000000221043600000e18030000410000000000320435000000400300043d001200000003001d00000db40030009c00001f7f0000213d00000012040000290000004003400039000000400030043f0000000503000039000000000434043600000e1903000041000d00000004001d000000000034043500000da90020009c00000da9020080410000004002200210000000000101043300000da90010009c00000da9010080410000006001100210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d0000000d0200002900000da90020009c00000da90200804100000040022002100000001203000029000000000303043300000da90030009c00000da9030080410000006003300210000000000223019f000000000101043b001200000001001d000000000100041400000da90010009c00000da901008041000000c001100210000000000121019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b0000047f020000390000001203000029000000000032041b0000048002000039000000000012041b000000000100041a0000ff000010019000001ca60000c13d000000400100043d0000142e0000013d000000200e00008a000000000f000410000000000300001900100000000a001d000f0000000b001d000e0000000c001d000019270000013d000000010220018f000000110300002900000000022304360000000000420435000000120300002900000001033000390000000000b3004b00001bf10000813d000000800200043d000000000032004b000025ea0000a13d001200000003001d00000005023002100000000004c200190000000203000367000000000443034f000000000504043b00000000040000310000000006a40049000000430660008a00000e3d0760019700000e3d08500197000000000978013f000000000078004b000000000700001900000e3d07004041000000000065004b000000000600001900000e3d0600804100000e3d0090009c000000000706c019000000000007004b00001d100000c13d000000a0022000390000000002020433001100000002001d0000000005c50019000000000253034f000000000202043b00000db50020009c00001d100000213d0000000006240049000000200450003900000e3d0560019700000e3d07400197000000000857013f000000000057004b000000000500001900000e3d05004041000000000064004b000000000600001900000e3d0600204100000e3d0080009c000000000506c019000000000005004b00001d100000c13d000000000543034f0000000006e20170000000400300043d0000000004630019000019620000613d000000000705034f0000000008030019000000007907043c0000000008980436000000000048004b0000195e0000c13d0000001f072001900000196f0000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000004230019000000000004043500000000040004140000000400f0008c0000197a0000c13d00000001030000310000000102000039000000000003004b00000000040d0019000019940000c13d0000191f0000013d00000da90020009c00000da902008041000000600120021000000da90030009c00000da9030080410000004002300210000000000112019f00000da90040009c00000da904008041000000c002400210000000000112019f00000000020f0019369f369a0000040f000000000f000410000000200e00008a000000600d0000390000000e0c0000290000000f0b000029000000100a0000290003000000010355000000600310027000010da90030019d00000da903300197000000000003004b00000000040d00190000191f0000613d00000db50030009c00001f7f0000213d0000001f043000390000000004e4016f0000003f044000390000000005e4016f000000400400043d0000000005540019000000000045004b0000000006000039000000010600403900000db50050009c00001f7f0000213d000000010060019000001f7f0000c13d000000400050043f00000000073404360000000006e301700000000005670019000019ad0000613d000000000801034f000000008908043c0000000007970436000000000057004b000019a90000c13d0000001f033001900000191f0000613d000000000661034f0000000303300210000000000705043300000000073701cf000000000737022f000000000606043b0000010003300089000000000636022f00000000033601cf000000000373019f00000000003504350000191f0000013d00000e4a01000041000000800010043f00000e2e01000041000036a100010430000000400100043d00000e7e020000410000239d0000013d0000006501000039000000000101041a000000020010008c00001a6f0000c13d000000400100043d000000440210003900000e8f03000041000000000032043500000024021000390000001f03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000e6a011001c7000036a10001043000000e1101000041000000000010044300000012010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001be60000c13d000000400100043d000000640210003900000e7a030000410000000000320435000000440210003900000e7b03000041000000000032043500000024021000390000002d03000039000017370000013d000000100200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000db7011001c70000001202000029369f36950000040f000000600310027000000da903300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000100570002900001a0b0000613d000000000801034f0000001009000029000000008a08043c0000000009a90436000000000059004b00001a070000c13d000000000006004b00001a180000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000210550008a0000000505500210000000010020019000001c8a0000613d0000001f01400039000000600210018f0000001001200029000000000021004b0000000002000039000000010200403900000db50010009c00001f7f0000213d000000010020019000001f7f0000c13d000000400010043f000000200030008c00001d100000413d000000100200002900000000020204330000000503500270000000000302001f00000e680020009c00001c9a0000c13d00000e1101000041000000000010044300000012010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b000019e70000613d00000e6801000041000000000201041a00000e15022001970000001205000029000000000252019f000000000021041b000000000100041400000da90010009c00000da901008041000000c00110021000000e1a011001c70000800d02000039000000020300003900000e6f04000041369f36900000040f000000010020019000001d100000613d00000011010000290000000001010433000000000001004b00001beb0000613d000000400100043d001000000001001d00000e700010009c00001f7f0000213d00000010030000290000006001300039000000400010043f000000400130003900000e71020000410000000000210435000000200130003900000e72020000410000000000210435000000270100003900000000001304350000001101000029000000000201043300000000010004140000001203000029000000040030008c00001d430000c13d0000000102000039000000010400003100001d560000013d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000e260010019800001b020000c13d000000c00110027000000da901100197000d00000001001d369f2df40000040f0000086b03000039000000000203041a00000e1702200197000000c00110021000000e1601100197000000000112019f000000000013041b369f2a920000040f00000002020003670000000403200370000000000303043b0000000004010019000c00000001001d00000000013104360000002403200370000000000303043b00000000003104350000004401200370000000000101043b000000400340003900000000001304350000006401200370000000000101043b000000600340003900000000001304350000008401200370000000000101043b00000080034000390000000000130435000000a401200370000000000101043b000000a0034000390000000000130435000000c401200370000000000101043b000000c0034000390000000000130435000000e401200370000000000101043b000000e002400039000000000012043500000100014000390000000d02000029000000000021043500000120014000390000000e02000029000000000021043500000140014000390000001202000029000000000021043500000160014000390000001102000029000000000021043500000000030000310000000f010000290000001002000029369f2a9e0000040f0000000c03000029000001800230003900000000001204350000000001030019369f33640000040f000012990000013d00000e2d01000041000000800010043f00000e2e01000041000036a1000104300000000001030433000000440010008c00001d100000413d0000000401300039000000000101043300000e280010009c00001d100000213d000000200010008c00001d100000413d0000002402300039000000000302043300000db50030009c00001d100000213d000000000421001900000000012300190000001f02100039000000000042004b000000000300001900000e3d0300804100000e3d0220019700000e3d05400197000000000652013f000000000052004b000000000200001900000e3d0200404100000e3d0060009c000000000203c019000000000002004b00001d100000c13d000000003101043400000db50010009c00001f7f0000213d0000001f021000390000000002d2016f0000003f022000390000000005d2016f000000400200043d0000000005520019000000000025004b0000000006000039000000010600403900000db50050009c00001f7f0000213d000000010060019000001f7f0000c13d000000400050043f00000000051204360000000006310019000000000046004b00001d100000213d000000000001004b00001af90000613d000000000400001900000000065400190000000007340019000000000707043300000000007604350000002004400039000000000014004b00001af20000413d0000000001150019000000000001043500000daf01000041000000400300043d001200000003001d00000000001304350000000401300039369f2dc80000040f00001c900000013d000000400100043d00000e4a020000410000239d0000013d000000400100043d000000440210003900000e6903000041000000000032043500000024021000390000001803000039000019cc0000013d00000000020000310000001101000029369f2b020000040f369f2dff0000040f000e00000001001d000000000010043f0000087201000039000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000000101041a000000000001004b00001ca30000c13d0000000e01000029000000000010043f0000087201000039000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b0000000102000039000000000021041b00000002020003670000000f01200360000000000101043b000f00000001001d00000da90010009c00001d100000213d0000001001200360000000000101043b000e00000001001d00000da90010009c00001d100000213d0000001001000029001000200010003d0000001001200360000000000101043b0000000003000031000000120430006a000000230440008a00000e3d0540019700000e3d06100197000000000756013f000000000056004b000000000500001900000e3d05004041000000000041004b000000000400001900000e3d0400804100000e3d0070009c000000000504c019000000000005004b00001d100000c13d0000001104100029000000000142034f000000000101043b00000db50010009c00001d100000213d0000000005130049000000200640003900000e3d0450019700000e3d07600197000000000847013f000000000047004b000000000400001900000e3d04004041000000000056004b000000000500001900000e3d0500204100000e3d0080009c000000000405c019000000000004004b00001d100000c13d0000001f0410003900000ea6044001970000003f0440003900000ea605400197000000400400043d0000000005540019000000000045004b0000000008000039000000010800403900000db50050009c00001f7f0000213d000000010080019000001f7f0000c13d000000400050043f00000000051404360000000008610019000000000038004b00001d100000213d000000000662034f00000ea6071001980000001f0810018f000000000375001900001b810000613d000000000906034f000000000a050019000000009b09043c000000000aba043600000000003a004b00001b7d0000c13d000000000008004b00001b8e0000613d000000000676034f0000000307800210000000000803043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000630435000000000115001900000000000104350000000003040433000000000003004b000000000100001900001ba70000613d00000da90050009c00000da905008041000000400150021000000da90030009c00000da9030080410000006002300210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d0000000202000367000000000101043b000000100b000029000000a003b0008a000000000332034f000000c004b0008a000000000442034f000000e005b0008a000000000752034f0000010005b0008a000000000852034f0000006005b0008a000000000652034f0000008005b0008a0000012009b0008a000001600ab0008a000001400bb0008a000000000bb2034f000000000aa2034f000000000992034f000000000252034f000000000502043b000000000606043b000000000208043b000000000707043b000000000404043b000000000303043b000000000809043b00000000090a043b000000000a0b043b000000400b00043d000001200cb0003900000000001c04350000010001b000390000000000a10435000000e001b000390000000000910435000000c001b000390000000000810435000000a001b000390000000e0800002900000000008104350000008001b000390000000f0800002900000000008104350000006001b0003900000000003104350000004001b0003900000000004104350000002001b00039000000000071043500000000002b043500000da900b0009c00000da90b0080410000004001b00210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e80011001c70000800d02000039000000030300003900000e81040000410000124d0000013d00000e6801000041000000000201041a00000e150220019700000012022001af000000000021041b00000000010004150000000f02000029000000000112004900000000010000020000000001000019000036a00001042e000000400200043d000008090000013d000000400100043d00000e56020000410000239d0000013d00000e1101000041000000000010044300000012010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b000019e70000613d00000e6801000041000000000201041a00000e150220019700000012022001af000000000021041b0000000001000415000000100200002900001bed0000013d000000400100043d00000e7d020000410000239d0000013d000000110200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000db7011001c70000001202000029369f36950000040f000000600310027000000da903300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000110570002900001c2b0000613d000000000801034f0000001109000029000000008a08043c0000000009a90436000000000059004b00001c270000c13d000000000006004b00001c380000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000000050004150000001d0550008a0000000505500210000000010020019000001c8a0000613d0000001f01400039000000600210018f0000001101200029000000000021004b0000000002000039000000010200403900000db50010009c00001f7f0000213d000000010020019000001f7f0000c13d000000400010043f000000200030008c00001d100000413d000000110200002900000000020204330000000503500270000000000302001f00000e680020009c00001c9a0000c13d00000e1101000041000000000010044300000012010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b000019e70000613d00000e6801000041000000000201041a00000e15022001970000001205000029000000000252019f000000000021041b000000000100041400000da90010009c00000da901008041000000c00110021000000e1a011001c70000800d02000039000000020300003900000e6f04000041369f36900000040f000000010020019000001d100000613d000000400100043d001100000001001d00000e700010009c00001f7f0000213d00000011030000290000006001300039000000400010043f000000400130003900000e71020000410000000000210435000000200130003900000e7202000041000000000021043500000027010000390000000000130435000000800200043d00000000010004140000001203000029000000040030008c00001db90000c13d0000000102000039000000010400003100001dc80000013d000000400200043d001200000002001d00000daf0100004100000000001204350000000401200039369f33570000040f0000001202000029000000000121004900000da90010009c00000da901008041000000600110021000000da90020009c00000da9020080410000004002200210000000000121019f000036a100010430000000640210003900000e6d030000410000000000320435000000440210003900000e6e03000041000000000032043500000024021000390000002903000039000017370000013d000000400100043d00000e7f020000410000239d0000013d00000001020000390000006501000039000000000021041b000000100000006b00001cae0000c13d000000400100043d00000e1f020000410000239d0000013d0000086901000039000000000201041a00000e15022001970000001005000029000000000252019f000000000021041b000000000100041400000da90010009c00000da901008041000000c00110021000000e1a011001c70000800d02000039000000020300003900000e1b04000041369f36900000040f000000010020019000001d100000613d0000000f0000006b00001cd70000c13d000000400100043d00000e1e020000410000239d0000013d000000c00100043d00000dac0010009c0000239b0000213d0000000002000411000000000021004b000002990000613d00001cd40000013d000000120100002900000044011000390000000201100367000000000101043b00000dac0010009c0000239b0000213d0000000002000411000000000021004b000003370000613d000000400100043d00000e82020000410000239d0000013d0000086a01000039000000000201041a00000e15022001970000000f05000029000000000252019f000000000021041b000000000100041400000da90010009c00000da901008041000000c00110021000000e1a011001c70000800d02000039000000020300003900000e1c04000041369f36900000040f000000010020019000001d100000613d00000c5b01000039000000000201041a00000e15032001970000001105000029000000000353019f000000000031041b000000000100041400000dac0620019700000da90010009c00000da901008041000000c00110021000000e1a011001c70000800d02000039000000030300003900000e1d04000041369f36900000040f000000010020019000001d100000613d0000000e0000006b000001dc0000c13d000000000200041a00000ea801200197000000000010041b000000400100043d0000000103000039000000000031043500000da90010009c00000da9010080410000004001100210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000db1011001c70000800d0200003900000db204000041369f36900000040f0000000100200190000001dc0000c13d0000000001000019000036a10001043000000e490100004100000000001004430000000001000412000000040010044300000040010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000da9011001970000000e0010006b00000a500000213d00000010010000290000000001010433000e00000001001d00000e490100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000da9011001970000000d0010002a00000d1a0000413d0000000e0200002900000da9022001970000000d01100029000000000012004b00001e910000a13d000000400100043d00000e5d020000410000239d0000013d0000000e0300002900000da90030009c00000da903008041000000400330021000000da90020009c00000da9020080410000006002200210000000000232019f00000da90010009c00000da901008041000000c001100210000000000112019f0000001202000029369f369a0000040f000000010220018f0003000000010355000000600110027000010da90010019d00000da904100197000000000004004b00001d730000c13d000000600100003900000080030000390000000001010433000000000002004b00001d9d0000c13d000000000001004b00001ddb0000c13d000000400300043d001200000003001d00000daf01000041000000000013043500000004013000390000002002000039000000000021043500000024023000390000001001000029369f2ad60000040f0000001202000029000000000121004900000da90010009c00000da90100804100000da90020009c00000da90200804100000060011002100000004002200210000000000121019f000036a10001043000000db50040009c00001f7f0000213d0000001f0140003900000ea6011001970000003f0110003900000ea603100197000000400100043d0000000003310019000000000013004b0000000006000039000000010600403900000db50030009c00001f7f0000213d000000010060019000001f7f0000c13d000000400030043f000000000341043600000ea6054001980000001f0640018f0000000004530019000000030700036700001d8f0000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00001d8b0000c13d000000000006004b00001d5a0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500001d5a0000013d000000000001004b00001beb0000c13d00000e1101000041000000000010044300000012010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001beb0000c13d000000400100043d000000440210003900000e7903000041000000000032043500000024021000390000001d03000039000019cc0000013d000000400100043d00000e92020000410000239d0000013d00000da90020009c00000da902008041000000600220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e73011001c70000001202000029369f369a0000040f000000010220018f0003000000010355000000600110027000010da90010019d00000da904100197000000000004004b00001de30000c13d000000600100003900000080030000390000000001010433000000000002004b00001e9f0000c13d000000000001004b00001ddb0000c13d000000400300043d001200000003001d00000daf0100004100000000001304350000000401300039000000200200003900000000002104350000002402300039000000110100002900001d680000013d00000da90030009c00000da903008041000000400230021000000da90010009c00000da9010080410000006001100210000000000121019f000036a10001043000000db50040009c00001f7f0000213d0000001f0140003900000ea6011001970000003f0110003900000ea603100197000000400100043d0000000003310019000000000013004b0000000005000039000000010500403900000db50030009c00001f7f0000213d000000010050019000001f7f0000c13d000000400030043f000000000341043600000ea6054001980000001f0640018f0000000004530019000000030700036700001dff0000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00001dfb0000c13d000000000006004b00001dcc0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500001dcc0000013d00000008020000290000006002200039000000000202043300000006030000290000000003030433000000400400043d0000006005400039000000000015043500000040014000390000000000310435000000f8012002700000002002400039000000000012043500000002010000290000000000140435000000000000043f00000da90040009c00000da9040080410000004001400210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e39011001c70000000102000039369f36950000040f000000600310027000000da903300197000000200030008c000000200400003900000000040340190000001f0540018f000000200440019000001e360000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b00001e320000c13d000000000005004b00001e430000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000001f850000613d000000000100043d00000dac0010019800000000010060190000079b0000613d000000120110014f00000dac0010019800001ed40000613d0000079b0000013d00000008020000290000006002200039000000000202043300000006030000290000000003030433000000400400043d0000006005400039000000000015043500000040014000390000000000310435000000f8012002700000002002400039000000000012043500000002010000290000000000140435000000000000043f00000da90040009c00000da9040080410000004001400210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e39011001c70000000102000039369f36950000040f000000600310027000000da903300197000000200030008c000000200400003900000000040340190000001f0540018f000000200440019000001e780000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b00001e740000c13d000000000005004b00001e850000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000001f910000613d000000000100043d00000dac00100198000000000100601900000e7f0000613d000000120110014f00000dac0010019800001fde0000613d00000e7f0000013d0000000301000029000000000101043300000da901100198000e00000000001d000020430000613d00000e4e0010009c0000203b0000813d0000000d0200002900000da9022001970000000001210019000e00000001001d00000da90010009c00000d1a0000213d0000203c0000013d000000000001004b00001c0b0000c13d00000e1101000041000000000010044300000012010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001c0b0000c13d00001daf0000013d00000da90010009c00000da901008041000000400110021000000da90030009c00000da9030080410000006003300210000000000113019f00000da90020009c00000da902008041000000c002200210000000000121019f0000001202000029369f36950000040f000000010220018f0003000000010355000000600110027000010da90010019d00000da904100197000000000004004b00001f530000c13d00000060010000390000008003000039000000000002004b00001f500000613d0000000001010433000000200010008c00001f500000413d00000e280010009c00001d100000213d000000200010008c00001d100000413d000000000103043300000e3a0010009c00001f500000c13d000000400100043d00000080021000390000000e03000029000000000032043500000040021000390000008003000039000000000032043500000020021000390000000f03000029000000000032043500000010020000290000000000210435000000a003100039000000070430002900000002020003670000000d05200360000000070000006b00001eec0000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b00001ee80000c13d0000000a0000006b00001efa0000613d00000007055003600000000a060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000e04300029000000000004043500000009033000290000000004130049000000600510003900000000004504350000000c0400002900000000034304360000000b042003600000000302300029000000030000006b00001f0c0000613d000000000504034f0000000006030019000000005705043c0000000006760436000000000026004b00001f080000c13d000000120500002900000dac06500197000000050000006b00001f1c0000613d000000030440036000000005050000290000000305500210000000000702043300000000075701cf000000000757022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000474019f00000000004204350000000c0230002900000000000204350000000402100069000000000232001900000da90020009c00000da902008041000000600220021000000da90010009c00000da9010080410000004001100210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000800d02000039000000030300003900000e3b040000410000001105000029369f36900000040f0000000100200190000001dc0000c13d00001d100000013d00000da90010009c00000da901008041000000400110021000000da90030009c00000da9030080410000006003300210000000000113019f00000da90020009c00000da902008041000000c002200210000000000121019f0000001202000029369f36950000040f000000010220018f0003000000010355000000600110027000010da90010019d00000da904100197000000000004004b00001f7d0000c13d00000060010000390000008003000039000000000002004b00001f500000613d0000000001010433000000200010008c00001fd70000813d000000400100043d00000e62020000410000239d0000013d00000db50040009c00001f7f0000213d0000001f0140003900000ea6011001970000003f0110003900000ea603100197000000400100043d0000000003310019000000000013004b0000000005000039000000010500403900000db50030009c00001f7f0000213d000000010050019000001f7f0000c13d000000400030043f000000000341043600000ea6054001980000001f0640018f0000000004530019000000030700036700001f6f0000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00001f6b0000c13d000000000006004b00001ec80000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500001ec80000013d00000db50040009c00001faf0000a13d00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a1000104300000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001f8c0000c13d00001f9c0000013d0000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001f980000c13d000000000005004b00001fa90000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000da90020009c00000da9020080410000004002200210000000000112019f000036a1000104300000001f0140003900000ea6011001970000003f0110003900000ea603100197000000400100043d0000000003310019000000000013004b0000000005000039000000010500403900000db50030009c00001f7f0000213d000000010050019000001f7f0000c13d000000400030043f000000000341043600000ea6054001980000001f0640018f0000000004530019000000030700036700001fc90000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00001fc50000c13d000000000006004b00001f4b0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500001f4b0000013d00000e280010009c00001d100000213d000000200010008c00001d100000413d000000000103043300000e3a0010009c00001f500000c13d000000400100043d00000080021000390000000e0300002900000000003204350000004002100039000000800300003900000000003204350000002002100039000000100300002900000000003204350000000f020000290000000000210435000000a003100039000000070430002900000002020003670000000d05200360000000070000006b00001ff60000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b00001ff20000c13d0000000a0000006b000020040000613d00000007055003600000000a060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000e04300029000000000004043500000009033000290000000004130049000000600510003900000000004504350000000c0400002900000000034304360000000b042003600000000302300029000000030000006b000020160000613d000000000504034f0000000006030019000000005705043c0000000006760436000000000026004b000020120000c13d000000050000006b000020240000613d000000030440036000000005050000290000000305500210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004204350000000c0230002900000000000204350000000402100069000000000232001900000da90020009c00000da902008041000000600220021000000da90010009c00000da9010080410000004001100210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000800d02000039000000030300003900000e3b04000041000000110500002900000012060000290000124d0000013d000e00000001001d00000002010000290000000001010433000000000001004b000020430000c13d000000400100043d00000e5b020000410000239d0000013d00000012010000290000000001010433000d00000001001d00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000dac011001970000000d0010006b000020920000c13d0000000001000416000000000001004b000020950000613d000000070100002900000000010104330000000002000416000000000012004b000023a30000c13d00000e110100004100000000001004430000000d010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000400200043d00000e4f01000041000b00000002001d000000000012043500000000010004140000000d02000029000000040020008c0000208c0000613d0000000b0200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e50011001c7000080090200003900000000030004160000000d040000290000000005000019369f36900000040f000000600310027000010da90030019d00030000000103550000000100200190000023210000613d0000000b0100002900000db50010009c00001f7f0000213d0000000b01000029000000400010043f000020b20000013d0000000001000416000000000001004b000023a30000c13d0000001201000029000000000101043300000dac0010009c0000239b0000213d00000007020000290000000003020433000000400200043d000000200420003900000e5105000041000000000054043500000064042000390000000000340435000000000300041000000dac0330019700000044042000390000000000340435000000000300041100000dac03300197000000240420003900000000003404350000006403000039000000000032043500000e350020009c00001f7f0000213d000000a003200039000000400030043f369f354d0000040f000000400100043d000b00000001001d0000000401000029000000000701043300000001010000290000000006010433000000050100002900000000050104330000000f01000029000000000101043300000008020000290000000002020433000000070300002900000000030304330000000604000029000000000404043300000011080000290000000008080433000000100900002900000000090904330000000c0a000029000000000a0a0433000000020b000029000000000b0b0433000000120c000029000000000c0c04330000000b0e0000290000000000ce0435000001200ce00039000001400d0000390000000000dc0435000001000ce000390000000000bc0435000000e00be000390000000000ab0435000000c00ae000390000000e0b0000290000000000ba043500000da909900197000000a00ae0003900000000009a043500000da9088001970000008009e0003900000000008904350000006008e0003900000000004804350000004004e0003900000000003404350000002003e0003900000000002304350000014002e00039000000003101043400000000001204350000016002e00039000000000001004b000020f00000613d000000000400001900000000082400190000000009430019000000000909043300000000009804350000002004400039000000000014004b000020e90000413d0000001f0310003900000ea60330019700000000012100190000000000010435000001600130003900000da90010009c00000da90100804100000060011002100000000b0200002900000da90020009c00000da9020080410000004002200210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000800d02000039000000040300003900000e52040000410000124d0000013d0000001201000029000000000010043f0000087201000039000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b0000000202000039000000000021041b000000110200002900000020012000390000000001010433000400000001001d0000000001020433000500000001001d00000040012000390000000001010433000600000001001d00000100012000390000000001010433000300000001001d000000e0012000390000000001010433000200000001001d00000009010000290000000001010433000b00000001001d000000c0012000390000000001010433000d00000001001d000000a0012000390000000001010433000e00000001001d0000008001200039000100000001001d0000000001010433000f00000001001d00000060012000390000000001010433000a00000001001d00000140012000390000000001010433000900000001001d00000010010000290000000001010433001000000001001d000001600120003900000000010104330000000012010434000000000002004b001200000000001d000021550000613d00000da90020009c00000da902008041000000600220021000000da90010009c00000da9010080410000004001100210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b001200000001001d00000008010000290000000001010433001100000001001d000000070100002900000000010104330000000023010434000000000003004b0000000001000019000021700000613d00000da90030009c00000da903008041000000600130021000000da90020009c00000da9020080410000004002200210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000400200043d00000e2f0020009c00001f7f0000213d000000090300002900000da905300197000000100300002900000da9063001970000000c0300002900000000070304330000008003200039000000400030043f000000600320003900000002040000390000000000430435000000400420003900000000007404350000002007200039000000000017043500000011010000290000000000120435000000400100043d000001400810003900000012090000290000000000980435000001200810003900000004090000290000000000980435000001000810003900000005090000290000000000980435000000e00810003900000006090000290000000000980435000000c0081000390000000000580435000000a005100039000000000065043500000080051000390000000b06000029000000000065043500000060051000390000000d06000029000000000065043500000040051000390000000e06000029000000000065043500000020051000390000000f0600002900000000006504350000000a0500002900000000005104350000000002020433000001600510003900000000002504350000000002070433000001800510003900000000002504350000000002040433000001a00410003900000000002404350000000002030433000000030020008c000022340000413d00000e8c01000041000000000010043f0000002101000039000000040010043f00000e8601000041000036a100010430000000400100043d00000e91020000410000239d0000013d00000e8701000041000000000010044300000000010004100000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800a02000039369f36950000040f000000010020019000002a610000613d000000000101043b000e00000001001d00000e1101000041000000000010044300000011010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000400200043d00000e4f01000041000d00000002001d000000000012043500000000010004140000001102000029000000040020008c000023b10000613d0000000d0200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f0000000e0000006b000023a60000c13d00000db7011001c70000001102000029000023ab0000013d000000100100002900000da90010009c00000da901008041000000400110021000000da90040009c00000da9040080410000006004400210000000000114019f00000da90030009c00000da903008041000000c003300210000000000113019f369f369a0000040f000000010220015f0003000000010355000000600110027000010da90010019d00000da901100197000000000001004b000022090000c13d0000000100200190000001dc0000613d000000400200043d001200000002001d00000e590100004100000000001204350000000401200039000000110200002900001b000000013d00000db50010009c00001f7f0000213d0000001f0310003900000ea6033001970000003f0330003900000ea603300197000000400400043d0000000003340019001100000004001d000000000043004b0000000004000039000000010400403900000db50030009c00001f7f0000213d000000010040019000001f7f0000c13d000000400030043f0000001103000029000000000613043600000ea6031001980000001f0410018f00000000013600190000000305000367000022260000613d000000000705034f000000007807043c0000000006860436000000000016004b000022220000c13d000000000004004b000022000000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000022000000013d000001c003100039000000000023043500000da90010009c00000da9010080410000004001100210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e83011001c70000800d02000039000000040300003900000e8404000041000000020500002900000003060000290000000007000019369f36900000040f000000010020019000001d100000613d00000001010000290000000001010433001100000001001d00000dac0010009c0000239b0000213d00000008010000290000000001010433001000000001001d00000dac0010009c0000239b0000213d0000000c010000290000000001010433000f00000001001d00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000dac01100197000000110010006b000023c70000c13d00000e1101000041000000000010044300000010010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b00000e490200004100000000002004430000000002000412000000040020044300000020020000390000002400200443000000000001004b000024560000c13d000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000e1102000041000000000020044300000dac01100197001200000001001d0000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000400200043d00000e85010000410000000000120435000e00000002001d00000004012000390000000f02000029000000000021043500000000010004140000001202000029000000040020008c000022b40000613d0000000e0200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e86011001c70000001202000029369f36900000040f000000600310027000010da90030019d00030000000103550000000100200190000026700000613d0000000e0100002900000db50010009c00001f7f0000213d0000000e01000029000000400010043f00000e8701000041000000000010044300000000010004100000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800a02000039369f36950000040f000000010020019000002a610000613d000000000101043b0000000f0010006c0000267d0000813d000000400100043d000000440210003900000e8b0300004100001db20000013d001000000001001d00000003010000290000000001010433000000000001004b000020400000613d0000000f010000290000000001010433000b00000001001d00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000dac011001970000000b0010006b0000232e0000c13d0000000001000416000000000001004b000023310000613d0000000e0100002900000000010104330000000002000416000000000012004b000023a30000c13d00000e110100004100000000001004430000000b010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000400200043d00000e4f01000041000a00000002001d000000000012043500000000010004140000000b02000029000000040020008c0000231b0000613d0000000a0200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e50011001c7000080090200003900000000030004160000000b040000290000000005000019369f36900000040f000000600310027000010da90030019d00030000000103550000000100200190000024f90000613d0000000a0100002900000db50010009c00001f7f0000213d0000000a01000029000000400010043f0000234e0000013d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023290000c13d00001f9c0000013d0000000001000416000000000001004b000023a30000c13d0000000f01000029000000000101043300000dac0010009c0000239b0000213d0000000e020000290000000003020433000000400200043d000000200420003900000e5105000041000000000054043500000064042000390000000000340435000000000300041000000dac0330019700000044042000390000000000340435000000000300041100000dac03300197000000240420003900000000003404350000006403000039000000000032043500000e350020009c00001f7f0000213d000000a003200039000000400030043f369f354d0000040f000000400100043d000a00000001001d0000000d010000290000000007010433000000020100002900000000060104330000000101000029000000000501043300000011010000290000000001010433000000080200002900000000020204330000000e030000290000000003030433000000060400002900000000040404330000000c08000029000000000808043300000005090000290000000009090433000000120a000029000000000a0a0433000000030b000029000000000b0b04330000000f0c000029000000000c0c04330000000a0e0000290000000000ce0435000001200ce00039000001400d0000390000000000dc0435000001000ce000390000000000bc0435000000e00be000390000000000ab0435000000c00ae00039000000100b0000290000000000ba043500000da909900197000000a00ae0003900000000009a043500000da9088001970000008009e0003900000000008904350000006008e0003900000000004804350000004004e0003900000000003404350000002003e0003900000000002304350000014002e00039000000003101043400000000001204350000016002e00039000000000001004b0000238c0000613d000000000400001900000000082400190000000009430019000000000909043300000000009804350000002004400039000000000014004b000023850000413d0000001f0310003900000ea60330019700000000012100190000000000010435000001600130003900000da90010009c00000da90100804100000060011002100000000a0200002900000da90020009c00000da9020080410000004002200210000000000121019f0000000002000414000020fe0000013d000000400100043d00000e2d02000041000000000021043500000da90010009c00000da901008041000000400110021000000db7011001c7000036a100010430000000400100043d00000e5c020000410000239d0000013d00000e50011001c700008009020000390000000e0300002900000011040000290000000005000019369f36900000040f0003000000010355000000600310027000010da90030019d0000000100200190000023b70000613d0000000d0100002900000db50010009c00001f7f0000213d0000000d01000029000000400010043f000010430000013d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023bf0000c13d00001f9c0000013d000000400100043d00000e95020000410000239d0000013d000000400200043d000000200120003900000e3f03000041000000000031043500000044012000390000000f0300002900000000003104350000002401200039000000100300002900000000003104350000004401000039000000000012043500000e2f0020009c00001f7f0000213d0000008001200039000000400010043f0000001101000029369f354d0000040f00000007010000290000000001010433000e00000001001d0000000021010434001200000002001d000000000001004b000012990000613d00000e1101000041000000000010044300000010010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b000012990000613d00000e1101000041000000000010044300000010010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000400300043d000000640130003900000080020000390000000000210435000000000100041100000dac011001970000004402300039000000000012043500000024013000390000000f02000029000000000021043500000e8a01000041000000000013043500000004013000390000001102000029000000000021043500000084023000390000000e0100002900000000010104330000000000120435001100000003001d000000a402300039000000000001004b000024200000613d000000000300001900000000042300190000001205300029000000000505043300000000005404350000002003300039000000000013004b000024190000413d0000000002210019000000000002043500000000020004140000001003000029000000040030008c0000243c0000613d0000001f0110003900000ea601100197000000a40110003900000da90010009c00000da9010080410000006001100210000000110300002900000da90030009c00000da9030080410000004003300210000000000131019f00000da90020009c00000da902008041000000c002200210000000000112019f0000001002000029369f36900000040f000000600310027000010da90030019d00030000000103550000000100200190000026840000613d000000110100002900000db50010009c00001f7f0000213d0000001101000029000000400010043f000012990000013d000000400100043d00000e96020000410000239d0000013d000000400200043d00000e97010000410000000000120435000000000100041000000dac01100197001100000002001d0000000402200039000000000012043500000000010004140000000f02000029000000040020008c000025060000c13d0000000103000031000000200030008c00000020040000390000000004034019000025310000013d000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b000000400200043d000000200320003900000e3f04000041000000000043043500000044032000390000000f0400002900000000004304350000002403200039000000100400002900000000004304350000004403000039000000000032043500000e2f0020009c00001f7f0000213d0000008003200039000000400030043f00000dac01100197000023d80000013d0000000001000415000e00000001001d00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000dac011001970000000f0010006b000025fc0000c13d00000e110100004100000000001004430000000f010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000400200043d00000e85010000410000000000120435001100000002001d00000004012000390000000302000029000000000021043500000000010004140000000f02000029000000040020008c000024b20000613d000000110200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e86011001c70000000f02000029369f36900000040f000000600310027000010da90030019d00030000000103550000000100200190000026910000613d000000110100002900000db50010009c00001f7f0000213d0000001101000029000000400010043f0000086a01000039000000000101041a001100000001001d00000c5a01000039000000000101041a00000e1102000041000000000020044300000dac01100197001000000001001d0000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000110100002900000dac01100197000000400300043d00000ea2020000410000000000230435001100000003001d0000000402300039000000000012043500000000010004140000001002000029000000040020008c0000286f0000613d000000110200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000ea3011001c70000800902000039000000030300002900000010040000290000000005000019369f36900000040f000000600310027000010da90030019d000300000001035500000001002001900000286f0000c13d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000024f40000c13d00001f9c0000013d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000025010000c13d00001f9c0000013d000000110200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e86011001c70000000f02000029369f36950000040f000000600310027000000da903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000001105700029000025200000613d000000000801034f0000001109000029000000008a08043c0000000009a90436000000000059004b0000251c0000c13d000000000006004b0000252d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000025f00000613d0000001f01400039000000600210018f0000001101200029000000000021004b0000000002000039000000010200403900000db50010009c00001f7f0000213d000000010020019000001f7f0000c13d000000400010043f000000200030008c00001d100000413d00000011010000290000000001010433000700000001001d000500000000001d001100000000001d001000000000001d0000254a0000013d00000011020000290000000102200039001100000002001d0000000c0020006c0000110d0000813d0000000e010000290000000001010433000000110010006c000025ea0000a13d000000110100002900000005021002100000000b01200029000d00000001001d0000000001010433000000000001004b000025450000613d000000100010002a00000d1a0000413d0000001004100029001000000004001d000000070040006c0000269e0000213d0000000a030000290000000003030433000000110030006c000025ea0000a13d0000000802200029000900000002001d0000000003020433000000400200043d00000044042000390000000000140435000000200120003900000e3f04000041000000000041043500000dac03300197000000240420003900000000003404350000004403000039000000000032043500000e2f0020009c00001f7f0000213d0000008003200039000000400030043f000000000302043300000000020004140000000f04000029000000040040008c0000257a0000c13d0000000001010433000000000010043f0000000103000031000025a60000013d00000da90010009c00000da901008041000000400110021000000da90030009c00000da9030080410000006003300210000000000113019f00000da90020009c00000da902008041000000c002200210000000000121019f0000000f02000029369f36900000040f000000600310027000000da903300197000000200030008c000000200500003900000000050340190000002004500190000025940000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000025900000c13d0000001f05500190000025a10000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000025bb0000613d000000000100043d000000000003004b000025ab0000613d000000010010008c000025450000613d000025bb0000013d00000e110100004100000000001004430000000f010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b000025450000c13d0000000e010000290000000001010433000000110010006c000025ea0000a13d0000000d010000290000000001010433000d00000001001d0000000f01000029000000000010043f0000087301000039000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d0000000a020000290000000002020433000000110020006c000025ea0000a13d000000000101043b0000000902000029000000000202043300000dac02200197000000000020043f000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000001d100000613d000000000101043b000000000201041a0000000d0020002a00000d1a0000413d0000000d02200029000000000021041b000500010000003d000025450000013d00000e8c01000041000000000010043f0000003201000039000000040010043f00000e8601000041000036a1000104300000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000025f70000c13d00001f9c0000013d00000e4901000041000000000010044300000000010004120000000400100443000000a0010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000dac011001970000000f0010006b000026a10000c13d00000e4901000041000000000010044300000000010004120000000400100443000000c0010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b00000e490200004100000000002004430000000002000412000000040020044300000dac00100198000026e60000c13d00000100010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000201043b0000000001000415000c00000001001d000000400400043d000000440140003900000003030000290000000000310435000000200140003900000e9c0300004100000000003104350000004403000039000000000034043500000dac032001970000002402400039001000000003001d0000000000320435001100000004001d00000e2f0040009c00001f7f0000213d00000011030000290000008002300039000000400020043f000000000303043300000000020004140000000f04000029000000040040008c0000271c0000c13d000000010200003900000001040000310000272e0000013d0000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000026550000c13d00001f9c0000013d00000da90010009c00000da901008041000000400110021000000da90030009c00000da9030080410000006003300210000000000113019f00000da90020009c00000da902008041000000c002200210000000000121019f0000000602000029369f36950000040f000000010220018f0003000000010355000000600110027000010da90010019d00000da903100197000000000003004b000027330000c13d00000060010000390000275d0000013d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000026780000c13d00001f9c0000013d00000000010004140000001002000029000000040020008c0000276e0000c13d000000010200003900000001010000310000287f0000013d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000268c0000c13d00001f9c0000013d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000026990000c13d00001f9c0000013d000000400100043d00000e98020000410000239d0000013d0000086a01000039000000000101041a001100000001001d00000c5b01000039000000000101041a00000e1102000041000000000020044300000dac01100197001000000001001d0000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000110100002900000dac01100197000000400400043d00000044024000390000000303000029000000000032043500000024024000390000000f03000029000000000032043500000e99020000410000000000240435001100000004001d0000000402400039000000000012043500000000010004140000001002000029000000040020008c0000286f0000613d000000110200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e6a011001c70000001002000029369f36900000040f000000600310027000010da90030019d000300000001035500000001002001900000286f0000c13d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000026e10000c13d00001f9c0000013d0000086a01000039000000000101041a000c00000001001d000000a0010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b000d00000001001d00000e4901000041000000000010044300000000010004120000000400100443000000c0010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b000000400400043d00000e9a02000041000000000024043500000004024000390000000003000410000000000032043500000dac02100197001100000004001d0000002401400039001000000002001d000000000021043500000000010004140000000d0200002900000dac02200197000b00000002001d000000040020008c000027750000c13d0000000103000031000000200030008c00000020040000390000000004034019000027a00000013d00000da90010009c00000da901008041000000400110021000000da90030009c00000da9030080410000006003300210000000000113019f00000da90020009c00000da902008041000000c002200210000000000121019f0000000f02000029369f36900000040f000000010220018f0003000000010355000000600110027000010da90010019d00000da904100197000000000004004b000027cf0000c13d00000060030000390000008001000039000027f80000013d00000db50030009c00001f7f0000213d0000001f0130003900000ea6011001970000003f0110003900000ea604100197000000400100043d0000000004410019000000000014004b0000000005000039000000010500403900000db50040009c00001f7f0000213d000000010050019000001f7f0000c13d000000400040043f000000000631043600000ea6043001980000001f0530018f000f00000006001d00000000034600190000000306000367000027500000613d000000000706034f0000000f08000029000000007907043c0000000008980436000000000038004b0000274c0000c13d000000000005004b0000275d0000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000000002004b00001f500000613d0000000001010433000000200010008c00001f500000413d00000e280010009c00001d100000213d000000200010008c00001d100000413d0000000f01000029000000000101043300000e3a0010009c00001f500000c13d00000012010000290000000a02000029369f30760000040f000012990000013d00000da90010009c00000da901008041000000c0011002100000000f0000006b000028750000c13d00000010020000290000287a0000013d000000110200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e9b011001c70000000b02000029369f36950000040f000000600310027000000da903300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000011057000290000278f0000613d000000000801034f0000001109000029000000008a08043c0000000009a90436000000000059004b0000278b0000c13d000000000006004b0000279c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000028b50000613d0000001f01400039000000600110018f0000001102100029000000000012004b0000000001000039000000010100403900000db50020009c00001f7f0000213d000000010010019000001f7f0000c13d000000400020043f000000200030008c00001d100000413d00000011010000290000000001010433000000030010002a00000d1a0000413d0000000301100029000000200320003900000e9c040000410000000000430435000000440320003900000000001304350000002401200039000000100300002900000000003104350000004401000039000000000012043500000e2f0020009c00001f7f0000213d0000008001200039000000400010043f0000000d01000029369f354d0000040f00000e9d01000041000000400200043d000d00000002001d000000000012043500000000010004140000001002000029000000040020008c000028c10000c13d0000000103000031000000200030008c00000020040000390000000004034019000028ec0000013d00000db50040009c00001f7f0000213d0000001f0140003900000ea6011001970000003f0110003900000ea601100197000000400300043d0000000001130019000000000031004b0000000005000039000000010500403900000db50010009c00001f7f0000213d000000010050019000001f7f0000c13d000000400010043f000000000143043600000ea6054001980000001f0640018f00000000045100190000000307000367000027eb0000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000027e70000c13d000000000006004b000027f80000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000028230000613d0000000002000415000000240220008a000d0005002002180000000002030433000000000002004b0000280f0000613d00000e280020009c00001d100000213d000000200020008c00001d100000413d0000000001010433000000000001004b0000000002000039000000010200c039000000000021004b00001d100000c13d0000000002000415000000230220008a000d000500200218000000000001004b000028230000613d00000e110100004100000000001004430000000f010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b0000000d010000290000000501100270000000000100003f000000010100c03f000028370000c13d000000400200043d000000200120003900000e9c030000410000000000310435000000240120003900000010030000290000000000310435000000440100003900000000001204350000004401200039000000000001043500000e2f0020009c00001f7f0000213d0000008001200039000000400010043f0000000f01000029369f354d0000040f0000000f010000290000001102000029369f354d0000040f00000000010004150000000c0110006900000000010000020000086a01000039000000000101041a001100000001001d00000e1101000041000000000010044300000010010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000110100002900000dac01100197000000400400043d00000044024000390000000303000029000000000032043500000024024000390000000f03000029000000000032043500000e99020000410000000000240435001100000004001d0000000402400039000000000012043500000000010004140000001002000029000000040020008c0000286f0000613d000000110200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e6a011001c70000001002000029369f36900000040f000000600310027000010da90030019d00030000000103550000000100200190000029c30000613d000000110100002900000db50010009c00001f7f0000213d0000001101000029000000400010043f00002a420000013d00000e1a011001c700008009020000390000000f0300002900000010040000290000000005000019369f36900000040f0003000000010355000000600110027000010da90010019d00000da901100197000000000001004b000028a90000613d00000db50010009c00001f7f0000213d0000001f0310003900000ea6033001970000003f0330003900000ea604300197000000400300043d0000000004430019000000000034004b0000000005000039000000010500403900000db50040009c00001f7f0000213d000000010050019000001f7f0000c13d000000400040043f000000000613043600000ea6031001980000001f0410018f000000000136001900000003050003670000289c0000613d000000000705034f000000007807043c0000000006860436000000000016004b000028980000c13d000000000004004b000028a90000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003104350000000100200190000023d90000c13d000000400100043d000000640210003900000e88030000410000000000320435000000440210003900000e8903000041000000000032043500000024021000390000003a03000039000017370000013d0000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000028bc0000c13d00001f9c0000013d0000000d0200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000db7011001c70000001002000029369f36950000040f000000600310027000000da903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000d05700029000028db0000613d000000000801034f0000000d09000029000000008a08043c0000000009a90436000000000059004b000028d70000c13d000000000006004b000028e80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000029d00000613d0000001f01400039000000600110018f0000000d04100029000000000014004b00000000020000390000000102004039001100000004001d00000db50040009c00001f7f0000213d000000010020019000001f7f0000c13d0000001102000029000000400020043f000000200030008c00001d100000413d0000000d02000029000000000202043300000dac0020009c00001d100000213d00000e9e040000410000001105000029000000000045043500000004045000390000000b0500002900000000005404350000000004000414000000040020008c000029340000613d000000110100002900000da90010009c00000da901008041000000400110021000000da90040009c00000da904008041000000c003400210000000000113019f00000e86011001c7369f36950000040f000000600310027000000da903300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000001105700029000029210000613d000000000801034f0000001109000029000000008a08043c0000000009a90436000000000059004b0000291d0000c13d000000000006004b0000292e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000029dc0000613d0000001f01400039000000600110018f000000110110002900000db50010009c00001f7f0000213d000000400010043f000000200030008c00001d100000413d00000011010000290000000001010433000a00000001001d00000e4901000041000000000010044300000000010004120000000400100443000000e0010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d0000000c0200002900090dac0020019b000000000101043b000000000001004b000029e80000c13d000000400100043d001100000001001d000d00030000002d00000ea1010000410000001102000029000000000012043500000e490100004100000000001004430000000001000412000000040010044300000080010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f0000000d040000290000000a0040006c0000000a030000290000000003044019000c00000003001d000000010020019000002a610000613d000000000101043b000000110400002900000064024000390000000b03000029000000000032043500000044024000390000000903000029000000000032043500000004024000390000000c030000290000000000320435000000240240003900000da901100197000000000012043500000000010004140000001002000029000000040020008c000029820000c13d0000000103000031000000200030008c00000020040000390000000004034019000029ad0000013d0000001102000029001100000002001d00000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000db0011001c70000001002000029369f36900000040f000000600310027000000da903300197000000200030008c00000020040000390000000004034019000000200640019000000011056000290000299c0000613d000000000701034f0000001108000029000000007907043c0000000008980436000000000058004b000029980000c13d0000001f07400190000029a90000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002a620000613d0000001f01400039000000600210018f0000001101200029000000000021004b0000000002000039000000010200403900000db50010009c00001f7f0000213d000000010020019000001f7f0000c13d000000400010043f000000200030008c00001d100000413d0000001102000029000000000202043300000db50020009c00001d100000213d0000000c03000029000d000d00300073001100000001001d000029540000c13d00002a420000013d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000029cb0000c13d00001f9c0000013d0000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000029d70000c13d00001f9c0000013d0000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000029e30000c13d00001f9c0000013d000d00030000002d00000e1101000041000000000010044300000010010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f0000000d040000290000000a0040006c0000000a030000290000000003044019000c00000003001d000000010020019000002a610000613d000000000101043b000000000001004b00001d100000613d000000400200043d00000e9f01000041001100000002001d000000000012043500000e490100004100000000001004430000000001000412000000040010044300000080010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002a610000613d000000000101043b0000001104000029000000c402400039000007d003000039000000000032043500000064024000390000000b03000029000000000032043500000044024000390000000903000029000000000032043500000004024000390000000c03000029000000000032043500000da90110019700000024024000390000000000120435000000a40140003900000000000104350000008401400039000000000001043500000000010004140000001002000029000000040020008c00002a3a0000613d000000110200002900000da90020009c00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000ea0011001c70000001002000029369f36900000040f000000600310027000010da90030019d0003000000010355000000010020019000002a6e0000613d000000110100002900000db50010009c00001f7f0000213d0000001101000029000000400010043f0000000c02000029000d000d00200073000029e90000c13d000000010100002900000da90610019700000000010004150000000e0110006900000000010000020000000001000411001100000001001d00000dac01100197000000400200043d000000200320003900000000001304350000000301000029000000000012043500000da90020009c00000da9020080410000004001200210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e3e011001c70000800d02000039000000040300003900000ea40400004100000002050000290000000f07000029369f36900000040f000000010020019000001d100000613d000011110000013d000000000001042f0000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002a690000c13d00001f9c0000013d00000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900001f9c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002a760000c13d00001f9c0000013d00000ea90010009c00002a800000813d0000004001100039000000400010043f000000000001042d00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a100010430000000400100043d00000eaa0010009c00002a8c0000813d000000c002100039000000400020043f000000000001042d00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a100010430000000400100043d00000eab0010009c00002a980000813d000001a002100039000000400020043f000000000001042d00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a10001043000000eac0020009c00002ace0000813d00000000040100190000001f0120003900000ea6011001970000003f0110003900000ea605100197000000400100043d0000000005510019000000000015004b0000000007000039000000010700403900000db50050009c00002ace0000213d000000010070019000002ace0000c13d000000400050043f00000000052104360000000007420019000000000037004b00002ad40000213d00000ea6062001980000001f0720018f0000000204400367000000000365001900002abe0000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b00002aba0000c13d000000000007004b00002acb0000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a1000104300000000001000019000036a10001043000000000430104340000000001320436000000000003004b00002ae20000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b00002adb0000413d000000000213001900000000000204350000001f0230003900000ea6022001970000000001210019000000000001042d0000001f03100039000000000023004b000000000400001900000e3d0400404100000e3d0520019700000e3d03300197000000000653013f000000000053004b000000000300001900000e3d0300204100000e3d0060009c000000000304c019000000000003004b00002b000000613d0000000203100367000000000303043b00000db50030009c00002b000000213d00000020011000390000000004310019000000000024004b00002b000000213d0000000002030019000000000001042d0000000001000019000036a1000104300000000003010019000000000112004900000e280010009c00002b8e0000213d0000017f0010008c00002b8e0000a13d000000400100043d00000ead0010009c00002b900000813d0000018004100039000000400040043f0000000204000367000000000534034f000000000505043b00000000055104360000002006300039000000000664034f000000000606043b00000000006504350000004005300039000000000554034f000000000505043b000000400610003900000000005604350000006005300039000000000554034f000000000505043b000000600610003900000000005604350000008005300039000000000554034f000000000505043b00000080061000390000000000560435000000a005300039000000000554034f000000000505043b000000a0061000390000000000560435000000c005300039000000000554034f000000000505043b000000c0061000390000000000560435000000e005300039000000000554034f000000000505043b000000e00610003900000000005604350000010005300039000000000554034f0000010006100039000000000505043b00000000005604350000012005300039000000000654034f000000000606043b00000da90060009c00002b8e0000213d000001200710003900000000006704350000002005500039000000000654034f000000000606043b00000da90060009c00002b8e0000213d000001400710003900000000006704350000002005500039000000000554034f000000000505043b00000db50050009c00002b8e0000213d00000000063500190000001f03600039000000000023004b000000000500001900000e3d0500804100000e3d0330019700000e3d07200197000000000873013f000000000073004b000000000300001900000e3d0300404100000e3d0080009c000000000305c019000000000003004b00002b8e0000c13d000000000364034f000000000303043b00000db50030009c00002b900000213d0000001f0530003900000ea6055001970000003f0550003900000ea608500197000000400500043d0000000008850019000000000058004b0000000009000039000000010900403900000db50080009c00002b900000213d000000010090019000002b900000c13d0000002009600039000000400080043f00000000063504360000000008930019000000000028004b00002b8e0000213d000000000494034f00000ea6073001980000001f0830018f000000000276001900002b7c0000613d000000000904034f000000000a060019000000009b09043c000000000aba043600000000002a004b00002b780000c13d000000000008004b00002b890000613d000000000474034f0000000307800210000000000802043300000000087801cf000000000878022f000000000404043b0000010007700089000000000474022f00000000047401cf000000000484019f00000000004204350000000002360019000000000002043500000160021000390000000000520435000000000001042d0000000001000019000036a10001043000000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a1000104300000086c02000039000000000302041a000000000013004b00002b9e0000a13d000000000020043f00000003011000c900000e530110009a000000000001042d00000e8c01000041000000000010043f0000003201000039000000040010043f00000e8601000041000036a10001043000000dac02200197000000000020043f000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f000000010020019000002bb20000613d000000000101043b000000000001042d0000000001000019000036a100010430000f000000000002000900000002001d000000650e00003900000000020e041a000000020020008c00002d600000613d00080000000c001d000000020200003900000000002e041b0000086b0c000039000000000f0c041a00000e2600f0019800002d710000c13d000000c00ef0027000000da90ee0019700000da900e0009c00002d5a0000613d00000e170ff00197000000c002e0021000000e5a0220009a00000e16022001970000000002f2019f00000000002c041b000000400200043d000f00000002001d00000eab0020009c00002d4c0000813d0000000f0c000029000001a002c00039000000400020043f00000da902b00197000001600bc0003900000000002b043500000da902a00197000001400ac00039000c0000000a001d00000000002a043500000da9029001970000012009c00039000d00000009001d00000000002904350000010002c00039000600000002001d0000000000e2043500000dac02800197000000e008c00039000a00000008001d0000000000280435000000c002c00039000400000002001d0000000000720435000000a002c00039000500000002001d00000000006204350000008002c00039000b00000002001d000000000052043500000dac024001970000006004c00039000300000004001d000000000024043500000dac023001970000004003c00039000e00000003001d000000000023043500000dac0110019700000000021c0436000000090100002900000dac01100197000200000002001d000000000012043500000db500d0009c00002d4c0000213d0000001f01d0003900000ea6011001970000003f0110003900000ea602100197000000400100043d0000000002210019000000000012004b0000000003000039000000010300403900000db50020009c00002d4c0000213d000000010030019000002d4c0000c13d000000400020043f0000000002d10436000000080600002900000000046d0019000000000040007c00002d520000213d00000ea604d001980000001f05d0018f0000000206600367000000000342001900002c1b0000613d000000000706034f0000000008020019000000007907043c0000000008980436000000000038004b00002c170000c13d000000000005004b00002c280000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f000000000043043500080000000b001d0000000002d2001900000000000204350000000f020000290000018003200039000100000003001d0000000000130435000000000102043300000e2c0010009c00002d570000813d0000000d010000290000000001010433000900000001001d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002d4b0000613d000000090200002900000da902200197000000000101043b000700000001001d000900000021005300002d540000413d00000e490100004100000000001004430000000001000412000000040010044300000040010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002d4b0000613d000000000101043b00000da901100197000000090010006b00002d540000213d0000000c010000290000000001010433000900000001001d00000e490100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002d4b0000613d000000000101043b00000da9011001970000000703000029000000000031001a00002d5a0000413d000000090200002900000da9022001970000000001310019000000000012004b000000080100002900002d740000213d000000000101043300000da90210019800002c870000613d00000e4e0020009c00002c7f0000813d00000da901300197000000000212001900000da90020009c00002d5a0000213d000800000002001d0000000a010000290000000001010433000000000001004b00002c880000c13d000000400100043d00000e5b0200004100002d790000013d000800000000001d0000000e010000290000000001010433000900000001001d00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002d4b0000613d0000000002000416000000000101043b00000dac011001970000000903000029000000000013004b00002cd40000c13d000000000002004b00002cd60000613d0000000b010000290000000001010433000000000012004b00002d770000c13d00000e110100004100000000001004430000000400300443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002d4b0000613d0000000904000029000000000101043b000000000001004b00002d520000613d000000400e00043d00000e4f0100004100000000001e04350000000001000414000000040040008c00002cd00000613d00000da900e0009c00000da90200004100000000020e4019000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e50011001c700008009020000390000000003000416000000000500001900090000000e001d369f36900000040f000000090e000029000000600310027000010da90030019d0003000000010355000000010020019000002d7f0000613d00000db500e0009c00002d4c0000213d0000004000e0043f00002cf20000013d000000000002004b00002d770000c13d0000000e01000029000000000101043300000dac0010009c00002d570000213d0000000b020000290000000003020433000000400200043d000000200420003900000e5105000041000000000054043500000064042000390000000000340435000000000300041000000dac0330019700000044042000390000000000340435000000000300041100000dac03300197000000240420003900000000003404350000006403000039000000000032043500000e350020009c00002d4c0000213d000000a003200039000000400030043f369f354d0000040f000000400e00043d0000000f010000290000000007010433000000060100002900000000060104330000000401000029000000000501043300000001010000290000000001010433000000030200002900000000020204330000000b030000290000000003030433000000050400002900000000040404330000000d0800002900000000080804330000000c090000290000000009090433000000020a000029000000000a0a04330000000a0b000029000000000b0b04330000000e0c000029000000000c0c04330000000000ce0435000001200ce00039000001400d0000390000000000dc0435000001000ce000390000000000bc0435000000e00be000390000000000ab0435000000c00ae00039000000080b0000290000000000ba043500000da909900197000000a00ae0003900000000009a043500000da9088001970000008009e0003900000000008904350000006008e0003900000000004804350000004004e0003900000000003404350000002003e0003900000000002304350000014002e00039000000003101043400000000001204350000016002e00039000000000001004b00002d2f0000613d000000000400001900000000082400190000000009430019000000000909043300000000009804350000002004400039000000000014004b00002d280000413d0000001f0310003900000ea60330019700000000012100190000000000010435000001600130003900000da90010009c00000da901008041000000600110021000000da900e0009c00000da90e0080410000004002e00210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000800d02000039000000040300003900000e5204000041369f36900000040f000000010020019000002d520000613d00000001010000390000006502000039000000000012041b000000000001042d000000000001042f00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a1000104300000000001000019000036a100010430000000400100043d00000e5e0200004100002d790000013d000000400100043d00000e2d0200004100002d790000013d00000e8c01000041000000000010043f0000001101000039000000040010043f00000e8601000041000036a100010430000000400100043d000000440210003900000e8f03000041000000000032043500000024021000390000001f03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000e6a011001c7000036a100010430000000400100043d00000e4a0200004100002d790000013d000000400100043d00000e5d0200004100002d790000013d000000400100043d00000e5c02000041000000000021043500000da90010009c00000da901008041000000400110021000000db7011001c7000036a10001043000000da9033001970000001f0530018f00000dab06300198000000400200043d000000000462001900002d8b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d870000c13d000000000005004b00002d980000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000da90020009c00000da9020080410000004002200210000000000112019f000036a100010430000000400400043d00000054054000390000000000350435000000600310021000000020014000390000000000310435000000340340003900000000002304350000005402000039000000000024043500000eae0040009c00002dc00000813d0000008002400039000000400020043f00000da90010009c00000da9010080410000004001100210000000000204043300000da90020009c00000da9020080410000006002200210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000002dc60000613d000000000101043b000000000001042d00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a1000104300000000001000019000036a10001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b00002dd70000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b00002dd00000413d000000000312001900000000000304350000001f0220003900000ea6022001970000000001120019000000000001042d000000000001004b00002de00000613d000000000001042d000000400100043d000000640210003900000e20030000410000000000320435000000440210003900000e2103000041000000000032043500000024021000390000002b03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000db0011001c7000036a10001043000000da90110019700000da90010009c00002df90000613d0000000101100039000000000001042d00000e8c01000041000000000010043f0000001101000039000000040010043f00000e8601000041000036a1000104300003000000000002000000400500043d00000020035000390000004002000039000100000003001d000000000023043500000060025000390000000043010434000000000032043500000000020404330000008003500039000000000023043500000040021000390000000002020433000000a003500039000000000023043500000060021000390000000002020433000000c003500039000000000023043500000080021000390000000002020433000000e0035000390000000000230435000000a002100039000000000202043300000100035000390000000000230435000000c002100039000000000202043300000120035000390000000000230435000000e00210003900000000020204330000014003500039000000000023043500000100021000390000000002020433000001600350003900000000002304350000012002100039000000000202043300000da902200197000001800350003900000000002304350000014002100039000000000202043300000da902200197000001a003500039000000000023043500000160011000390000000001010433000001c00250003900000180030000390000000000320435000001e00250003900000000160104340000000000620435000300000005001d0000020002500039000000000006004b00002e450000613d000000000300001900000000042300190000000005310019000000000505043300000000005404350000002003300039000000000063004b00002e3e0000413d0000000001260019000000000001043500000e30010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039000200000006001d369f36950000040f000000010020019000002e7c0000613d000000000101043b00000003040000290000004002400039000000000012043500000002010000290000001f0110003900000ea601100197000001e00310003900000000003404350000021f0110003900000ea6021001970000000001420019000000000021004b0000000002000039000000010200403900000db50010009c00002e7d0000213d000000010020019000002e7d0000c13d000000400010043f000000010100002900000da90010009c00000da9010080410000004001100210000000000204043300000da90020009c00000da9020080410000006002200210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f000000010020019000002e830000613d000000000101043b000000000001042d000000000001042f00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a1000104300000000001000019000036a1000104300000006501000039000000000201041a000000020020008c00002e8c0000613d0000000202000039000000000021041b000000000001042d000000400100043d000000440210003900000e8f03000041000000000032043500000024021000390000001f03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000e6a011001c7000036a100010430000b00000000000200000e650960019700000e630060019800000e64060000410000000006006019000000000a96019f00000e3d09a00197000000010600008a00000e3d0090009c000000000600c0190000000109600210000000ff06a00270000000000996019f000000ff0000008b00000000090a601900000000069a013f000000000696004900000eaf0060009c00002fac0000813d000a00000007001d000900000003001d00080000000a001d000400000002001d000500000001001d000600000008001d000700000005001d000b00000004001d00000eb00040009c00002faf0000813d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f000000010020019000002fa30000613d0000000a0200002900030da90020019b000000000101043b000000030110006c000a00000001001d00002fa40000413d00000e490100004100000000001004430000000001000412000000040010044300000040010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002fa30000613d000000000101043b00000da9011001970000000a0010006b00002fb20000213d0000086b01000039000000000201041a000000c00320027000000da90330019700000da90030009c00002fa40000613d00000e1702200197000200000003001d000000c00330021000000e5a0330009a00000e1603300197000000000223019f000000000021041b00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f000000010020019000002fa30000613d000000090200002900000dac04200197000000000101043b00000dac03100197000000000034004b000a00000004001d00002f2d0000c13d0000000001000416000000000001004b00002f2d0000613d0000000b0010006c00002fbb0000c13d00000e11010000410000000000100443000900000003001d0000000400300443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f000000010020019000002fa30000613d000000000101043b000000000001004b00002faa0000613d000000400200043d00000e4f01000041000000000012043500000000010004140000000904000029000000040040008c0000000b030000290000000a0500002900002f520000613d00000da90020009c000100000002001d00000da902008041000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f000000000003004b00002f470000613d00000e50011001c70000800902000039000000000500001900002f490000013d000000400200043d000000200120003900000e5103000041000000000031043500000064012000390000000b030000290000000000310435000000000100041000000dac0110019700000044032000390000000000130435000000000100041100000dac01100197000000240320003900000000001304350000006401000039000000000012043500000eb10020009c00002fb50000813d000000a001200039000000400010043f0000000001040019369f354d0000040f0000000a050000290000000b0300002900002f550000013d00000db7011001c70000000002040019369f36900000040f0003000000010355000000600410027000010da90040019d00000001002001900000000b030000290000000a05000029000000010200002900002fc30000613d00000db50020009c00002fb50000213d000000400020043f0000000206000029000000080100002900000eb20110009900000000023100a9000000000003004b00002f5e0000613d0000000b032000fa000000000031004b00002fa40000c13d000000400100043d000001200310003900000140040000390000000000430435000000040300002900000dac03300197000000e0041000390000000000340435000000a00310003900000da904000041000000000043043500000080031000390000000304000029000000000043043500000eb20220012a0000006003100039000000000023043500000040021000390000000b030000290000000000320435000000000251043600000100031000390000000000030435000000c0031000390000000000030435000000000002043500000140031000390000000602000029000000004202043400000000002304350000016003100039000000050500002900000dac07500197000000000002004b00002f890000613d000000000500001900000000093500190000000008540019000000000808043300000000008904350000002005500039000000000025004b00002f820000413d0000001f0420003900000ea60440019700000000023200190000000000020435000001600240003900000da90020009c00000da902008041000000600220021000000da90010009c00000da9010080410000004001100210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000800d02000039000000040300003900000e52040000410000000705000029369f36900000040f000000010020019000002faa0000613d000000000001042d000000000001042f00000e8c01000041000000000010043f0000001101000039000000040010043f00000e8601000041000036a1000104300000000001000019000036a100010430000000400100043d00000eb40200004100002fbd0000013d000000400100043d00000eb30200004100002fbd0000013d000000400100043d00000e5e0200004100002fbd0000013d00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a100010430000000400100043d00000e5c02000041000000000021043500000da90010009c00000da901008041000000400110021000000db7011001c7000036a10001043000000da9034001970000001f0530018f00000dab06300198000000400200043d000000000462001900002fcf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002fcb0000c13d000000000005004b00002fdc0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000da90020009c00000da9020080410000004002200210000000000112019f000036a1000104300003000000000002000300000001001d00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f00000001002001900000304e0000613d000000000101043b00000dac02100197000000030100002900000dac01100197000300000002001d000000000021004b0000304d0000c13d00000e8701000041000000000010044300000000010004100000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800a02000039369f36950000040f00000001002001900000304e0000613d000000000101043b000000000001004b0000304d0000613d00000e8701000041000000000010044300000000010004100000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800a02000039369f36950000040f00000001002001900000304e0000613d000000000101043b000200000001001d00000e1101000041000000000010044300000003010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f00000001002001900000304e0000613d000000000101043b000000000001004b0000304f0000613d000000400400043d00000e4f01000041000000000014043500000000010004140000000302000029000000040020008c0000304a0000613d00000da90040009c000100000004001d00000da9020000410000000002044019000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f0000000203000029000000000003004b000030410000613d00000e50011001c7000080090200003900000003040000290000000005000019000030430000013d00000db7011001c70000000302000029369f36900000040f0003000000010355000000600310027000010da90030019d00000001002001900000000104000029000030570000613d00000eac0040009c000030510000813d000000400040043f000000000001042d000000000001042f0000000001000019000036a10001043000000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a10001043000000da9033001970000001f0530018f00000dab06300198000000400200043d0000000004620019000030630000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000305f0000c13d000000000005004b000030700000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000da90020009c00000da9020080410000004002200210000000000112019f000036a1000104300014000000000002000f00000002001d001400000001001d0000000021010434001200000002001d001100000001001d0000012001100039001000000001001d0000000001010433001300000001001d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f0000000100200190000032ff0000613d000000000101043b000000130200002900000da902200197000000000012004b000033090000413d00000012010000290000000001010433001300000001001d000000000010043f0000087201000039000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f0000000100200190000032fd0000613d000000000101043b000000000101041a001200000001001d0000001301000029000000000010043f0000087201000039000000200010043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f0000001203000029000000010030008c00000000030000390000000103006039001200000003001d0000000100200190000032fd0000613d00000872030000390000001302000029000000000101043b000000000101041a000000020010008c0000330c0000613d000000000020043f000000200030043f000000000100041400000da90010009c00000da901008041000000c00110021000000e3e011001c70000801002000039369f36950000040f0000000100200190000032fd0000613d000000000101043b0000000202000039000000000021041b000000110200002900000020012000390000000001010433000800000001001d0000000001020433000a00000001001d00000040012000390000000001010433000b00000001001d00000100012000390000000001010433000600000001001d000000e0012000390000000001010433000500000001001d0000001401000029000000a0011000390000000001010433000c00000001001d000000c0012000390000000001010433000d00000001001d000000a0012000390000000001010433000e00000001001d0000008001200039000400000001001d0000000001010433001300000001001d00000060012000390000000001010433000900000001001d00000140012000390000000001010433000700000001001d00000010010000290000000001010433001000000001001d000001600120003900000000010104330000000012010434000000000002004b000031060000613d00000da90020009c00000da902008041000000600220021000000da90010009c00000da9010080410000004001100210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f0000000100200190000032fd0000613d000000000901043b000031070000013d000000000900001900000014010000290000006002100039001100000002001d00000000080204330000008001100039000300000001001d00000000010104330000000012010434000000000002004b0000312b0000613d000100000008001d000200000009001d00000da90020009c00000da902008041000000600220021000000da90010009c00000da9010080410000004001100210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f0000000100200190000032fd0000613d000000000101043b00000002090000290000000108000029000000400200043d00000eae0020009c0000312f0000413d000033000000013d0000000001000019000000400200043d00000eae0020009c000033000000813d000000070300002900000da905300197000000100300002900000da90630019700000014030000290000004003300039001000000003001d00000000070304330000008003200039000000400030043f00000060032000390000001204000029000000000043043500000040042000390000000000740435000000200720003900000000001704350000000000820435000000400100043d0000014008100039000000000098043500000120081000390000000809000029000000000098043500000100081000390000000a090000290000000000980435000000e0081000390000000b090000290000000000980435000000c0081000390000000000580435000000a005100039000000000065043500000080051000390000000c06000029000000000065043500000060051000390000000d06000029000000000065043500000040051000390000000e060000290000000000650435000000200510003900000013060000290000000000650435000000090500002900000000005104350000000002020433000001600510003900000000002504350000000002070433000001800510003900000000002504350000000002040433000001a00410003900000000002404350000000002030433000000030020008c000033140000813d000001c003100039000000000023043500000da90010009c00000da9010080410000004001100210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e83011001c70000800d02000039000000040300003900000e8404000041000000050500002900000006060000290000000f07000029369f36900000040f0000000100200190000032fd0000613d00000004010000290000000001010433001300000001001d00000e2c0010009c000033060000813d00000011010000290000000001010433001400000001001d00000dac0010009c000033060000213d00000010010000290000000001010433001200000001001d00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f0000000100200190000032ff0000613d000000000301043b000000400200043d000000200120003900000e51040000410000000000410435000000000100041100000dac041001970000002401200039001100000004001d00000000004104350000006401200039000000440420003900000dac03300197000000130030006b0000006403000039000031e90000c13d000000000500041000000dac05500197000000000054043500000012040000290000000000410435000000000032043500000e350020009c000033000000213d000000a001200039000000400010043f0000001301000029369f354d0000040f00000e1101000041000000000010044300000014010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f0000000100200190000032ff0000613d000000000101043b00000e490200004100000000002004430000000002000412000000040020044300000020020000390000002400200443000000000001004b0000325b0000613d000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f0000000100200190000032ff0000613d000000000101043b000000400200043d000000200320003900000e3f0400004100000000004304350000004403200039000000120400002900000000004304350000002403200039000000140400002900000000004304350000004403000039000000000032043500000e2f0020009c000033000000213d0000008003200039000000400030043f00000dac01100197000031f30000013d0000001405000029000000000054043500000012040000290000000000410435000000000032043500000e350020009c000033000000213d000000a001200039000000400010043f0000001301000029369f354d0000040f00000003010000290000000001010433000f00000001001d0000000021010434001000000002001d000000000001004b00000014020000290000325a0000613d00000e110100004100000000001004430000000400200443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f0000000100200190000032ff0000613d000000000101043b000000000001004b00000014020000290000325a0000613d00000e110100004100000000001004430000000400200443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f0000000100200190000032ff0000613d000000000101043b000000000001004b000032fd0000613d000000400700043d00000064017000390000008002000039000000000021043500000044017000390000001102000029000000000021043500000024017000390000001202000029000000000021043500000e8a01000041000000000017043500000004017000390000001302000029000000000021043500000084027000390000000f0100002900000000010104330000000000120435000000a402700039000000000001004b00000010060000290000323a0000613d000000000300001900000000042300190000000005360019000000000505043300000000005404350000002003300039000000000013004b000032330000413d0000000002210019000000000002043500000000040004140000001402000029000000040020008c000032570000613d0000001f0110003900000ea601100197000000a40110003900000da90010009c00000da901008041000000600110021000000da90070009c00000da90300004100000000030740190000004003300210000000000131019f00000da90040009c00000da904008041000000c003400210000000000113019f001400000007001d369f36900000040f0000001407000029000000600310027000010da90030019d000300000001035500000001002001900000331a0000613d00000db50070009c000033000000213d000000400070043f000000000001042d000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f0000000100200190000032ff0000613d000000000101043b00000e1102000041000000000020044300000dac01100197001000000001001d0000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f0000000100200190000032ff0000613d000000000101043b000000000001004b000032fd0000613d000000400400043d00000e8501000041000000000014043500000004014000390000001202000029000000000021043500000000010004140000001002000029000000040020008c000032910000613d00000da90040009c00000da9030000410000000003044019000000400330021000000da90010009c00000da901008041000000c001100210000000000131019f00000e86011001c7001000000004001d369f36900000040f0000001004000029000000600310027000010da90030019d00030000000103550000000100200190000033380000613d00000db50040009c0000000002000410000033000000213d000000400040043f00000e870100004100000000001004430000000400200443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800a02000039369f36950000040f0000000100200190000032ff0000613d000000000101043b0000001203000029000000000031004b000033270000413d00000000010004140000001404000029000000040040008c000032ae0000c13d00000001020000390000000101000031000000000001004b000032bf0000c13d000032e70000013d00000da90010009c00000da901008041000000c001100210000000000003004b000032b70000613d00000e1a011001c700008009020000390000000005000019000032b80000013d0000000002040019369f36900000040f0003000000010355000000600110027000010da90010019d00000da901100197000000000001004b000032e70000613d00000db50010009c000033000000213d0000001f0410003900000ea6044001970000003f0440003900000ea605400197000000400400043d0000000005540019000000000045004b0000000006000039000000010600403900000db50050009c000033000000213d0000000100600190000033000000c13d000000400050043f000000000614043600000ea6031001980000001f0410018f00000000013600190000000305000367000032da0000613d000000000705034f000000007807043c0000000006860436000000000016004b000032d60000c13d000000000004004b000032e70000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003104350000000100200190000031f40000c13d000000400100043d000000640210003900000e88030000410000000000320435000000440210003900000e8903000041000000000032043500000024021000390000003a03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000db0011001c7000036a1000104300000000001000019000036a100010430000000000001042f00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a100010430000000400100043d00000e2d020000410000330e0000013d000000400100043d00000e8e020000410000330e0000013d000000400100043d00000e8d02000041000000000021043500000da90010009c00000da901008041000000400110021000000db7011001c7000036a10001043000000e8c01000041000000000010043f0000002101000039000000040010043f00000e8601000041000036a10001043000000da9033001970000001f0530018f00000dab06300198000000400200043d0000000004620019000033440000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000033220000c13d000033440000013d000000400100043d000000440210003900000e8b03000041000000000032043500000024021000390000001d03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000e6a011001c7000036a10001043000000da9033001970000001f0530018f00000dab06300198000000400200043d0000000004620019000033440000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000033400000c13d000000000005004b000033510000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000da90020009c00000da9020080410000004002200210000000000112019f000036a100010430000000600210003900000eb5030000410000000000320435000000400210003900000eb603000041000000000032043500000020021000390000002e030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d00090000000000020000000032010434000600000003001d00000e2c0020009c000034900000813d000900000001001d0000012001100039000500000001001d0000000001010433000800000001001d00000e24010000410000000000100443000000000100041400000da90010009c00000da901008041000000c00110021000000e25011001c70000800b02000039369f36950000040f00000001002001900000348c0000613d000000080200002900000da902200197000000000101043b000700000001001d00080000002100530000348d0000413d00000e490100004100000000001004430000000001000412000000040010044300000040010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f00000001002001900000348c0000613d000000000101043b00000da901100197000000080010006b0000348d0000213d00000009010000290000014001100039000400000001001d0000000001010433000800000001001d00000e490100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f00000001002001900000348c0000613d000000000101043b00000da9011001970000000705000029000000000051001a0000000903000029000034a60000413d000000080200002900000da9022001970000000001510019000000000012004b000034950000213d0000016001300039000000000101043300000da902100198000000e004300039000300000004001d000033c40000613d00000e4e0020009c000033bd0000813d00000da901500197000000000212001900000da90020009c000034a60000213d000200000002001d0000000001040433000000000001004b000033c50000c13d000000400100043d00000e5b02000041000034a00000013d000200000000001d0000004001300039000800000001001d0000000001010433000700000001001d00000e490100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e4d011001c70000800502000039369f36950000040f00000001002001900000348c0000613d0000000004000416000000000101043b00000dac011001970000000703000029000000000013004b000034160000c13d000000000004004b0000000902000029000034190000613d0000008001200039000100000001001d0000000001010433000000000014004b0000349e0000c13d00000e110100004100000000001004430000000400300443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f00000001002001900000348c0000613d0000000704000029000000000101043b000000000001004b000034930000613d000000400e00043d00000e4f0100004100000000001e04350000000001000414000000040040008c000034100000613d00000da900e0009c00000da90200004100000000020e4019000000400220021000000da90010009c00000da901008041000000c001100210000000000121019f00000e50011001c700008009020000390000000003000416000000000500001900070000000e001d369f36900000040f000000070e000029000000600310027000010da90030019d00030000000103550000000100200190000034ac0000613d00000db500e0009c00000009070000290000000103000029000034980000213d0000004000e0043f000034380000013d000000000004004b00000009020000290000349e0000c13d0000000801000029000000000101043300000dac0010009c000034900000213d00000080062000390000000003060433000000400200043d000000200420003900000e5105000041000000000054043500000064042000390000000000340435000000000300041000000dac0330019700000044042000390000000000340435000000000300041100000dac03300197000000240420003900000000003404350000006403000039000000000032043500000eb10020009c000034980000813d000000a003200039000000400030043f000100000006001d369f354d0000040f00000001030000290000000907000029000000400e00043d00000100017000390000000006010433000000c001700039000000000501043300000180017000390000000001010433000000600270003900000000020204330000000003030433000000a00470003900000000040404330000000508000029000000000808043300000004090000290000000009090433000000060a000029000000000a0a04330000000007070433000000030b000029000000000b0b0433000000080c000029000000000c0c04330000000000ce0435000001200ce00039000001400d0000390000000000dc0435000001000ce000390000000000bc0435000000e00be000390000000000ab0435000000c00ae00039000000020b0000290000000000ba043500000da909900197000000a00ae0003900000000009a043500000da9088001970000008009e0003900000000008904350000006008e0003900000000004804350000004004e0003900000000003404350000002003e0003900000000002304350000014002e00039000000003101043400000000001204350000016002e00039000000000001004b000034730000613d000000000400001900000000082400190000000009430019000000000909043300000000009804350000002004400039000000000014004b0000346c0000413d0000001f0310003900000ea60330019700000000012100190000000000010435000001600130003900000da90010009c00000da901008041000000600110021000000da900e0009c00000da90e0080410000004002e00210000000000121019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000800d02000039000000040300003900000e5204000041369f36900000040f0000000100200190000034930000613d000000000001042d000000000001042f000000400100043d00000e5e02000041000034a00000013d000000400100043d00000e2d02000041000034a00000013d0000000001000019000036a100010430000000400100043d00000e5d02000041000034a00000013d00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a100010430000000400100043d00000e5c02000041000000000021043500000da90010009c00000da901008041000000400110021000000db7011001c7000036a10001043000000e8c01000041000000000010043f0000001101000039000000040010043f00000e8601000041000036a10001043000000da9033001970000001f0530018f00000dab06300198000000400200043d0000000004620019000034b80000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000034b40000c13d000000000005004b000034c50000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000da90020009c00000da9020080410000004002200210000000000112019f000036a100010430000000000100041a0000ff0000100190000034cf0000613d000000000001042d000000400100043d000000640210003900000e20030000410000000000320435000000440210003900000e2103000041000000000032043500000024021000390000002b03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000db0011001c7000036a100010430000000000100041a0000ff0000100190000034ea0000613d00000001010000390000006502000039000000000012041b000000000001042d000000400100043d000000640210003900000e20030000410000000000320435000000440210003900000e2103000041000000000032043500000024021000390000002b03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000db0011001c7000036a10001043000000dac05100198000035110000613d0000086901000039000000000201041a00000e1502200197000000000252019f000000000021041b000000000100041400000da90010009c00000da901008041000000c00110021000000e1a011001c70000800d02000039000000020300003900000e1b04000041369f36900000040f0000000100200190000035190000613d000000000001042d000000400100043d00000e1f02000041000000000021043500000da90010009c00000da901008041000000400110021000000db7011001c7000036a1000104300000000001000019000036a10001043000000dac051001980000352e0000613d0000086a01000039000000000201041a00000e1502200197000000000252019f000000000021041b000000000100041400000da90010009c00000da901008041000000c00110021000000e1a011001c70000800d02000039000000020300003900000e1c04000041369f36900000040f0000000100200190000035360000613d000000000001042d000000400100043d00000e1e02000041000000000021043500000da90010009c00000da901008041000000400110021000000db7011001c7000036a1000104300000000001000019000036a10001043000000dac0510019700000c5b01000039000000000201041a00000e1503200197000000000353019f000000000031041b000000000100041400000dac0620019700000da90010009c00000da901008041000000c00110021000000e1a011001c70000800d02000039000000030300003900000e1d04000041369f36900000040f00000001002001900000354b0000613d000000000001042d0000000001000019000036a1000104300004000000000002000000400400043d00000ea90040009c000036100000813d00000dac051001970000004001400039000000400010043f000000200140003900000eb70300004100000000003104350000002001000039000000000014043500000000230204340000000001000414000000040050008c000035880000c13d0000000101000032000035c30000613d00000db50010009c000036100000213d0000001f0310003900000ea6033001970000003f0330003900000ea603300197000000400a00043d00000000033a00190000000000a3004b0000000004000039000000010400403900000db50030009c000036100000213d0000000100400190000036100000c13d000000400030043f00000000051a043600000ea6021001980000001f0310018f000000000125001900000003040003670000357a0000613d000000000604034f000000006706043c0000000005750436000000000015004b000035760000c13d000000000003004b000035c40000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000035c40000013d000200000004001d00000da90030009c00000da903008041000000600330021000000da90020009c00000da9020080410000004002200210000000000223019f00000da90010009c00000da901008041000000c001100210000000000112019f000100000005001d0000000002050019369f36900000040f0003000000010355000000600310027000010da90030019d00000da904300198000035db0000613d0000001f0340003900000daa033001970000003f0330003900000eb803300197000000400a00043d00000000033a00190000000000a3004b0000000005000039000000010500403900000db50030009c000036100000213d0000000100500190000036100000c13d000000400030043f0000001f0540018f00000000034a043600000dab064001980000000004630019000035b50000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000048004b000035b10000c13d000000000005004b000035dd0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000035dd0000013d000000600a0000390000000002000415000000040220008a000000050220021000000000010a0433000000000001004b000035e50000c13d00020000000a001d00000e1101000041000000000010044300000004010000390000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f0000000100200190000036420000613d0000000002000415000000040220008a000035f80000013d000000600a000039000000800300003900000000010a043300000001002001900000362c0000613d0000000002000415000000030220008a0000000502200210000000000001004b000035e80000613d000000050220027000000000020a001f000036020000013d00020000000a001d00000e1101000041000000000010044300000001010000290000000400100443000000000100041400000da90010009c00000da901008041000000c00110021000000e12011001c70000800202000039369f36950000040f0000000100200190000036420000613d0000000002000415000000030220008a0000000502200210000000000101043b000000000001004b000000020a000029000036430000613d00000000010a0433000000050220027000000000020a001f000000000001004b0000360f0000613d00000e280010009c000036160000213d0000001f0010008c000036160000a13d0000002001a000390000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000036160000c13d000000000001004b000036180000613d000000000001042d00000e8c01000041000000000010043f0000004101000039000000040010043f00000e8601000041000036a1000104300000000001000019000036a100010430000000400100043d000000640210003900000eb9030000410000000000320435000000440210003900000eba03000041000000000032043500000024021000390000002a03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000db0011001c7000036a100010430000000000001004b000036540000c13d000000400300043d000100000003001d00000daf01000041000000000013043500000004013000390000002002000039000000000021043500000024023000390000000201000029369f2ad60000040f0000000102000029000000000121004900000da90010009c00000da90100804100000da90020009c00000da90200804100000060011002100000004002200210000000000121019f000036a100010430000000000001042f000000400100043d000000440210003900000e7903000041000000000032043500000024021000390000001d03000039000000000032043500000daf02000041000000000021043500000004021000390000002003000039000000000032043500000da90010009c00000da901008041000000400110021000000e6a011001c7000036a10001043000000da90030009c00000da903008041000000400230021000000da90010009c00000da9010080410000006001100210000000000121019f000036a100010430000000000001042f00000da90010009c00000da901008041000000400110021000000da90020009c00000da9020080410000006002200210000000000112019f000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000e1a011001c70000801002000039369f36950000040f0000000100200190000036700000613d000000000101043b000000000001042d0000000001000019000036a10001043000000000050100190000000000200443000000050030008c000036800000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b000036780000413d00000da90030009c00000da9030080410000006001300210000000000200041400000da90020009c00000da902008041000000c002200210000000000112019f00000ebb011001c70000000002050019369f36950000040f00000001002001900000368f0000613d000000000101043b000000000001042d000000000001042f00003693002104210000000102000039000000000001042d0000000002000019000000000001042d00003698002104230000000102000039000000000001042d0000000002000019000000000001042d0000369d002104250000000102000039000000000001042d0000000002000019000000000001042d0000369f00000432000036a00001042e000036a1000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff616c697a696e6700000000000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320696e69746908c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000000000000000000000002000000000000000000000000000000000000200000000000000000000000007f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024984690484000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf000000000000000000000000000000000000000000000000ffffffffffffffff5110d79100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000002000000000000000000000000000002800000010000000000000000000000000000000000000000000000000000000000000000000000000082e2c43e00000000000000000000000000000000000000000000000000000000bb3e04b400000000000000000000000000000000000000000000000000000000de7eba7700000000000000000000000000000000000000000000000000000000ee2a53f700000000000000000000000000000000000000000000000000000000fb6bf74b00000000000000000000000000000000000000000000000000000000fb6bf74c00000000000000000000000000000000000000000000000000000000fc8a584f00000000000000000000000000000000000000000000000000000000ee2a53f800000000000000000000000000000000000000000000000000000000f79f29ed00000000000000000000000000000000000000000000000000000000e322921000000000000000000000000000000000000000000000000000000000e322921100000000000000000000000000000000000000000000000000000000ea86bd4600000000000000000000000000000000000000000000000000000000de7eba7800000000000000000000000000000000000000000000000000000000deff4b2400000000000000000000000000000000000000000000000000000000ceb4c98600000000000000000000000000000000000000000000000000000000dda5211200000000000000000000000000000000000000000000000000000000dda5211300000000000000000000000000000000000000000000000000000000ddd224f100000000000000000000000000000000000000000000000000000000ceb4c98700000000000000000000000000000000000000000000000000000000d7e1583a00000000000000000000000000000000000000000000000000000000bb3e04b500000000000000000000000000000000000000000000000000000000c35c83fc00000000000000000000000000000000000000000000000000000000cd44141f000000000000000000000000000000000000000000000000000000009a8a059100000000000000000000000000000000000000000000000000000000ad5425c500000000000000000000000000000000000000000000000000000000b370b7f400000000000000000000000000000000000000000000000000000000b370b7f500000000000000000000000000000000000000000000000000000000babb6aac00000000000000000000000000000000000000000000000000000000ad5425c600000000000000000000000000000000000000000000000000000000adb5a6a600000000000000000000000000000000000000000000000000000000a18a096d00000000000000000000000000000000000000000000000000000000a18a096e00000000000000000000000000000000000000000000000000000000ac9650d8000000000000000000000000000000000000000000000000000000009a8a059200000000000000000000000000000000000000000000000000000000a1244c67000000000000000000000000000000000000000000000000000000009748cf7b00000000000000000000000000000000000000000000000000000000979f2bc100000000000000000000000000000000000000000000000000000000979f2bc20000000000000000000000000000000000000000000000000000000099cc2968000000000000000000000000000000000000000000000000000000009748cf7c0000000000000000000000000000000000000000000000000000000097943aa90000000000000000000000000000000000000000000000000000000082e2c43f000000000000000000000000000000000000000000000000000000008a7860ce000000000000000000000000000000000000000000000000000000008b15788e000000000000000000000000000000000000000000000000000000004f1ef28500000000000000000000000000000000000000000000000000000000670fa8ab00000000000000000000000000000000000000000000000000000000775c0d02000000000000000000000000000000000000000000000000000000007b939231000000000000000000000000000000000000000000000000000000007b939232000000000000000000000000000000000000000000000000000000007ef413e100000000000000000000000000000000000000000000000000000000775c0d03000000000000000000000000000000000000000000000000000000007aef642c000000000000000000000000000000000000000000000000000000006e400982000000000000000000000000000000000000000000000000000000006e40098300000000000000000000000000000000000000000000000000000000738b62e500000000000000000000000000000000000000000000000000000000670fa8ac000000000000000000000000000000000000000000000000000000006bbbcd2e00000000000000000000000000000000000000000000000000000000541f4f130000000000000000000000000000000000000000000000000000000057f6dcb70000000000000000000000000000000000000000000000000000000057f6dcb8000000000000000000000000000000000000000000000000000000006068d6cb00000000000000000000000000000000000000000000000000000000541f4f1400000000000000000000000000000000000000000000000000000000577f51f8000000000000000000000000000000000000000000000000000000004f1ef286000000000000000000000000000000000000000000000000000000005285e0580000000000000000000000000000000000000000000000000000000052d1902d0000000000000000000000000000000000000000000000000000000029cb924c000000000000000000000000000000000000000000000000000000003a90dc8400000000000000000000000000000000000000000000000000000000490e49ee00000000000000000000000000000000000000000000000000000000490e49ef00000000000000000000000000000000000000000000000000000000493a4f84000000000000000000000000000000000000000000000000000000003a90dc8500000000000000000000000000000000000000000000000000000000437b9116000000000000000000000000000000000000000000000000000000002e63e599000000000000000000000000000000000000000000000000000000002e63e59a000000000000000000000000000000000000000000000000000000003659cfe60000000000000000000000000000000000000000000000000000000029cb924d000000000000000000000000000000000000000000000000000000002e3781150000000000000000000000000000000000000000000000000000000015348e43000000000000000000000000000000000000000000000000000000001b3d5558000000000000000000000000000000000000000000000000000000001b3d5559000000000000000000000000000000000000000000000000000000001fab657c0000000000000000000000000000000000000000000000000000000015348e440000000000000000000000000000000000000000000000000000000017fcb39b00000000000000000000000000000000000000000000000000000000079bd2c7000000000000000000000000000000000000000000000000000000001186ec330000000000000000000000000000000000000000000000000000000011eac855ffffffffffffffffffffffffeeeeffffffffffffffffffffffffffffffffeeef1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000647920696e697469616c697a6564000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c726561ffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffff000000000000000000000000000000000000000000000000ffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff4143524f53532d56320000000000000000000000000000000000000000000000312e302e300000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000a9e8c42c9e7fca7f62755189a16b2f5314d43d8fb24e91ba54e6d65f9314e849a73e8909f8616742d7fe701153d82666f7b7cd480552e23ebb05d358c22fd04eab9987862d7dab8c2bf2f09eb3ad7b6c1961c86fe3e9e7d3ef50dc98995d72d4b606125600000000000000000000000000000000000000000000000000000000ba97b39d000000000000000000000000000000000000000000000000000000006e697469616c697a696e67000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206900000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000000ff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000008000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000fffffffffffffdff000000ff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c097ce7bc90715b34b9f10000000000000000000000000000000010000000000000000000000000000000000000000f3d81dae000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f9a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b0200000000000000000000000000000000000000000000a000000000000000008d1994e2bbbd77564cdca06dd819e7ee2a5efa06c80dcb59a4a7b6e39edc538f000000000000000000000000000000000000000000000000ffffffffffffff1fc2f8787176b8ac6bf7215b4adcc1e069bf4ab82d9ab1df05a57a91d425935b6e000000000000000000000000000000000000000000000000ffffffffffffff5f190100000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000420000000000000000000000007fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a000000000000000000000000000000000000000800000000000000000000000001626ba7e0000000000000000000000000000000000000000000000000000000045e04bc8f121ba11466985789ca2822a91109f31bb8ac85504a37b7eaf873c267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000040000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000006c172ea51018fb2eb2118f3f8a507c4df71eb519b8c0052834dc3c920182fef4d950afdc00000000000000000000000000000000000000000000000000000000ffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000010000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000200000008000000000000000002d5b62420992e5a4afce0e77742636ca2608ef58289fd2e1baa5161ef6e7e41e000000000000000000000000000000000000000000000000fffffffffffffe7f000000000000000000000000000000000000000000000000ffffffffffffff3f000000000000000000000000000000000000000000000000fffffffffffffdbf310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e5a65d188000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000054000000a00000000000000000000000000000000000000000000000000000000000000000fffffffffffffe5f02000002000000000000000000000000000000440000000000000000000000000000000000000000000000000000000000000000000000000000000001e13381d0e30db000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000400000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000032ed1a409ef04c7b0227189c3a103dc5ac10e775a15b785dcc510201f7c25ad38e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b38e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b27c1af0646963afc3343245b103731965735a893347bfa0d58a5dc77a77ae691c1e191e8e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdfdeff4b2400000000000000000000000000000000000000000000000000000000b8fe37a700000000000000000000000000000000000000000000000000000000ffffffffffffffff000000000000000000000000000000000000000000000000495d907f000000000000000000000000000000000000000000000000000000006452a35d00000000000000000000000000000000000000000000000000000000582e388900000000000000000000000000000000000000000000000000000000f722177f00000000000000000000000000000000000000000000000000000000ffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000010000000000000000000000000000000000000000000000000000000000e88463c2f254e2b070013a2dc7ee1e099f9bc00534cbdf03af551dc26ae49219938a1821000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000007fffffffffffffff6c6564207468726f7567682064656c656761746563616c6c0000000000000000555550535570677261646561626c653a206d757374206e6f742062652063616c360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc4f4e4c595f434f554e544552504152545f47415445574159000000000000000000000000000000000000000000000000000000640000000000000000000000004910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914352d1902d000000000000000000000000000000000000000000000000000000006961626c6555554944000000000000000000000000000000000000000000000045524331393637557067726164653a20756e737570706f727465642070726f78bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b000000000000000000000000000000000000000000000000ffffffffffffff9f206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c0000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000064000000800000000000000000c86ba04c55bc5eb2f2876b91c438849a296dbec7b08751c3074d92e04f0a77af0000000000000000000000000000000000000000000000000000000001e133806163746976652070726f7879000000000000000000000000000000000000000046756e6374696f6e206d7573742062652063616c6c6564207468726f75676820416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006f74206120636f6e747261637400000000000000000000000000000000000000455243313936373a206e657720696d706c656d656e746174696f6e206973206e64656c656761746563616c6c00000000000000000000000000000000000000007b21f8aa0000000000000000000000000000000000000000000000000000000009deb9ec00000000000000000000000000000000000000000000000000000000012f9e440000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000001400000000000000000000000003cee3e290f36226751cd0b3321b213890fe9c768e922f267fa6111836ce05c32c3a9b9d00000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000001e000000000000000000000000044b559f101f8fbcc8a0ea43fa91a05a729a5ea6e14a7c75aa7503746901372082e1a7d4d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f396563697069656e74206d61792068617665207265766572746564000000000000416464726573733a20756e61626c6520746f2073656e642076616c75652c20723a5be8cb00000000000000000000000000000000000000000000000000000000416464726573733a20696e73756666696369656e742062616c616e63650000004e487b71000000000000000000000000000000000000000000000000000000008f260c6000000000000000000000000000000000000000000000000000000000d642b7d9000000000000000000000000000000000000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c00000000000000000000000000000000000000000000000000fffffffffffffebf7a47c9a200000000000000000000000000000000000000000000000000000000b05e92fa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff8e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b1954476d900000000000000000000000000000000000000000000000000000000cd298b380000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000005bb5506200000000000000000000000000000000000000000000000000000000d9caed1200000000000000000000000000000000000000000000000000000000dd62ed3e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000095ea7b300000000000000000000000000000000000000000000000000000000cb75c11c00000000000000000000000000000000000000000000000000000000a56ec632000000000000000000000000000000000000000000000000000000008e0250ee0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e40000000000000000000000006fd3504e0000000000000000000000000000000000000000000000000000000051cff8d9000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000024000000000000000000000000fa7fa7cf6d7dde5f9be65a67e6a1a747e7aa864dcd2d793353c722d80fbbb357f4ad92585b1bc117fbdd644990adf0827bc4c95baeae8a23322af807b6d0020effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff000000000000000000000000000000000000000000000000ffffffffffffffc0000000000000000000000000000000000000000000000000ffffffffffffff40000000000000000000000000000000000000000000000000fffffffffffffe600000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000fffffffffffffe80000000000000000000000000000000000000000000000000ffffffffffffff8000000000000000000000000000000000000000000000000006f05b59d3b200000000000000000000000000000000000000c097ce7bc90715b34b9f1000000001000000000000000000000000000000000000000000000000ffffffffffffff600000000000000000000000000000000000000000000000000de0b6b3a7640000c45b6b5200000000000000000000000000000000000000000000000000000000a13c425c000000000000000000000000000000000000000000000000000000006f6e206973206e6f74205555505300000000000000000000000000000000000045524331393637557067726164653a206e657720696d706c656d656e746174695361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656400000000000000000000000000000000000000000000000000000003ffffffe06f742073756363656564000000000000000000000000000000000000000000005361666545524332303a204552433230206f7065726174696f6e20646964206e02000002000000000000000000000000000000000000000000000000000000006fc0d1431d6f2ea100cd46addd6881c633d8d0288816254206cf41ba8d46d687",
+ "bytecode": "0x000200000000000200300000000000020001000000010355000000600310027000000c660030019d00000c66083001970000000100200190000000a60000c13d0000008002000039000000400020043f000000040080008c000001300000413d000000000201043b000000e00220027000000c770020009c000001340000a13d00000c780020009c000001680000213d00000c910020009c000001a30000a13d00000c920020009c000002e20000a13d00000c930020009c000009310000a13d00000c940020009c00000afb0000613d00000c950020009c00000b2c0000613d00000c960020009c00001e880000c13d000001840080008c00001e880000413d000000e402100370000000000202043b000d00000002001d000000c402100370000000000202043b000e00000002001d000000a402100370000000000202043b000f00000002001d0000008402100370000000000202043b001000000002001d0000006402100370000000000202043b001100000002001d0000004402100370000000000202043b001200000002001d0000002402100370000000000202043b001300000002001d0000000402100370000000000202043b000c00000002001d0000010402100370000000000202043b000b00000002001d00000c660020009c00001e880000213d0000012402100370000000000202043b000a00000002001d00000c660020009c00001e880000213d0000014402100370000000000202043b000900000002001d00000c660020009c00001e880000213d0000016402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000403200039000000000131034f000000000101043b000800000001001d00000c730010009c00001e880000213d0000002402200039000700000002001d0000000801200029000000000081004b00001e880000213d0000000001000415000600000001001d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d000000c00110027000000c6601100197000500000001001d319321a70000040f0000086b03000039000000000203041a00000cde02200197000000c00110021000000cdf01100197000000000112019f000000000013041b31931f1d0000040f0000000003010019000400000001001d00000160011000390000000902000029000000000021043500000140013000390000000a02000029000000000021043500000120013000390000000b020000290000000000210435000001000130003900000005020000290000000000210435000000e0013000390000000d020000290000000000210435000000c0013000390000000e020000290000000000210435000000a0013000390000000f0200002900000000002104350000008001300039000000100200002900000000002104350000006001300039000000110200002900000000002104350000004001300039000000120200002900000000002104350000002001300039000000130200002900000000002104350000000c01000029000000000013043500000000030000310000000701000029000000080200002931931f290000040f0000000403000029000001800230003900000000001204350000000001030019319327c50000040f00000001010000390000006502000039000000000012041b00000000010004150000000602000029000016b30000013d0000020003000039000000400030043f0000000002000416000000000002004b00001e880000c13d0000001f0280003900000c67022001970000020002200039000000400020043f0000001f0480018f00000c68058001980000020002500039000000b80000613d000000000601034f000000006706043c0000000003730436000000000023004b000000b40000c13d000000000004004b000000c50000613d000000000151034f0000000303400210000000000402043300000000043401cf000000000434022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f0000000000120435000000e00080008c00001e880000413d000002000100043d00000c690010009c00001e880000213d000002200600043d00000c690060009c00001e880000213d000002400200043d001300000002001d00000c690020009c00001e880000213d000002800200043d001200000002001d00000c690020009c00001e880000213d000002a00200043d00000c660020009c00001e880000213d000002c00300043d00000c660030009c00001e880000213d00000c6901100197000002600500043d0000000004000410000000800040043f000000c00000043f000000a00000043f000000e00010043f000001000020043f000001200030043f000000000100041a0000ff0000100190000010a90000c13d001000000005001d000000ff0210018f000000ff0020008c001100000006001d000001010000613d000000ff011001bf000000000010041b000000ff01000039000000400200043d000000000012043500000c660020009c00000c66020080410000004001200210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c6e011001c70000800d02000039000000010300003900000c6f04000041319331840000040f0000001106000029000000010020019000001e880000613d000001600060043f0000001201000029000001800010043f000001400000043f0000000402000039000000400100043d000000000421043600000c7003000041000000000034043500000c710010009c00000efc0000813d000000120200002900000c69022001970000004003100039000000400030043f00000c660040009c00000c66040080410000004003400210000000000101043300000c660010009c00000c66010080410000006001100210000000000113019f000000000300041400000c660030009c00000c6603008041000000c003300210000000000113019f001200000002001d319331890000040f000000600310027000000c6605300198000011d90000c13d00000060030000390000008004000039000000110100002900000c69051001970000000100200190000011920000613d0000000001030433000000200010008c000011920000c13d000000000104043300000c69001001980000000001000039000000010100c039000011930000013d000000000008004b00001e880000c13d0000000001000019000031940001042e00000ca90020009c000001890000a13d00000caa0020009c000001ba0000a13d00000cab0020009c000003920000a13d00000cac0020009c0000093c0000a13d00000cad0020009c00000b650000613d00000cae0020009c00000b700000613d00000caf0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b000000010010008c00001e880000213d0000086902000039000000000202041a00000cd90220009a00000c69022001970000000003000411000000000023004b00000f9a0000c13d0000006502000039000000000302041a000000020030008c00000f900000613d0000000203000039000000000032041b0000086b02000039000000000302041a00000d0503300197000000e804100210000000000343019f000000000032041b000000800010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cf2011001c70000800d02000039000000010300003900000d0604000041000007240000013d00000c790020009c000001c90000a13d00000c7a0020009c0000039f0000a13d00000c7b0020009c000009460000a13d00000c7c0020009c00000b7b0000613d00000c7d0020009c00000ae40000613d00000c7e0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b001300000001001d00000c690010009c00001e880000213d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d319322580000040f000000130100002931932a400000040f0000118d0000013d00000cc20020009c000001d60000213d00000cce0020009c000004cb0000213d00000cd40020009c0000099a0000213d00000cd70020009c00000b930000613d00000cd80020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b00000c690010009c00001e880000213d000000000010043f0000087401000039000000200010043f00000040020000390000000001000019319331510000040f000010200000013d00000c9e0020009c000003ac0000213d00000ca40020009c000004f90000213d00000ca70020009c00000b9e0000613d00000ca80020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000000001000412001900000001001d001801200000003d000080050100003900000044030000390000000004000415000000190440008a000000050440021000000cf602000041319331660000040f000000000001004b00000e1e0000013d00000cb70020009c000004990000213d00000cbd0020009c000005470000213d00000cc00020009c00000c0d0000613d00000cc10020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000d2001000041000000800010043f00000ce001000041000031940001042e00000c860020009c000004be0000213d00000c8c0020009c000005ef0000213d00000c8f0020009c00000ae40000613d00000c900020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000086a01000039000010200000013d00000cc30020009c000004d20000213d00000cc90020009c000009a90000213d00000ccc0020009c00000c4b0000613d00000ccd0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d000000000328004900000ced0030009c00001e880000213d000000640030008c00001e880000413d0000002404100370000000000404043b001300000004001d00000c660040009c00001e880000213d0000004404100370000000000404043b00000c730040009c00001e880000213d0000002305400039000000000085004b00001e880000813d0000000405400039000000000551034f000000000505043b001000000005001d00000c730050009c00001e880000213d000000240440003900000010050000290000000505500210000e00000004001d001200000005001d000f00000045001d0000000f0080006b00001e880000213d0000006504000039000000000404041a000000020040008c00000f900000613d00000002050000390000006504000039000000000054041b001100040020003d0000001101100360000000000101043b000001830230008a00000cec0310019700000cec04200197000000000543013f000000000043004b000000000300001900000cec03004041000000000021004b000000000200001900000cec0200804100000cec0050009c000000000302c019000000000003004b00001e880000c13d00000011011000290000000002080019319320230000040f000d00000001001d0000008001100039000000000101043300000d310010009c000018f50000813d319324740000040f0000000d01000029319321b20000040f000000400200043d000c00000002001d00000d210020009c00000efc0000213d000000010200036700000011030000290000004003300039000000000332034f000000000403043b0000000d0800002900000020038000390000000003030433000001600580003900000000050504330000000c07000029000000c006700039000000400060043f0000008006700039000000000056043500000060057000390000000000350435000000400370003900000000004304350000002004700039000b00000004001d00000000001404350000000000870435000000a001700039000000000001043500000012010000290000003f0110003900000cea01100197000000400400043d0000000001140019001200000004001d000000000041004b0000000004000039000000010400403900000c730010009c00000efc0000213d000000010040019000000efc0000c13d000000400010043f000000120100002900000010050000290000000001510436001100000001001d0000000f01000029000000000010007c00001e880000213d000000100000006b0000000e050000290000000f06000029000002670000613d0000001201000029000000000452034f000000000404043b000000200110003900000000004104350000002005500039000000000065004b000002600000413d000000400100043d001000000001001d00000d330010009c00000efc0000213d0000000001030433000e00000001001d0000000c01000029000000000101043300000010030000290000006002300039000000400020043f0000000001130436000f00000001001d00000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000100200002900000040032000390000000e0200002900000000002304350000000f0200002900000000001204350000086c01000039000000000201041a000000130020006c00001a070000a13d000000000010043f000000130100002900000003011000c900000cf80110009a000000000101041a000e00000001001d000000400100043d00000020021000390000002004000039000000000042043500000010040000290000000004040433000000400510003900000060060000390000000000650435000000a005100039000000007604043400000000006504350000000005070433000000c006100039000000000056043500000040054000390000000005050433000000e006100039000000000056043500000060054000390000000005050433000001000610003900000000005604350000008005400039000000000505043300000120061000390000000000560435000000a005400039000000000505043300000140061000390000000000560435000000c005400039000000000505043300000160061000390000000000560435000000e00540003900000000050504330000018006100039000000000056043500000100054000390000000005050433000001a00610003900000000005604350000012005400039000000000505043300000c6605500197000001c00610003900000000005604350000014005400039000000000505043300000c6605500197000001e00610003900000000005604350000016004400039000000000404043300000200051000390000018006000039000000000065043500000220061000390000000075040434000000000056043500000d58095001970000001f0850018f0000024006100039000000000067004b000017d20000813d000000000009004b000002de0000613d000000000b870019000000000a860019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c000002d80000c13d000000000008004b000017e80000613d000000000a060019000017de0000013d00000c990020009c000006fb0000213d00000c9c0020009c00000dfc0000613d00000c9d0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000e40080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d001300040020003d000000130380006a00000ced0030009c00001e880000213d000001800030008c00001e880000413d0000008403100370000000000303043b001200000003001d0000006403100370000000000303043b001100000003001d0000004403100370000000000303043b000f00000003001d0000002403100370000000000303043b001000000003001d000000a403100370000000000303043b00000c730030009c00001e880000213d0000002304300039000000000084004b00001e880000813d0000000404300039000000000441034f000000000404043b000e00000004001d00000c730040009c00001e880000213d0000002404300039000d00000004001d0000000e03400029000000000083004b00001e880000213d000000c403100370000000000303043b00000c730030009c00001e880000213d0000002304300039000000000084004b00001e880000813d0000000404300039000000000441034f000000000404043b000c00000004001d00000c730040009c00001e880000213d0000002404300039000b00000004001d0000000c03400029000000000083004b00001e880000213d0000000003000415000a00000003001d0000006503000039000000000303041a000000020030008c000007660000613d00000002030000390000006504000039000000000034041b0000086b03000039000000000303041a00000ce100300198000011170000c13d000901440020003d0000000901100360000000000101043b000800000001001d00000c660010009c00001e880000213d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c6601100197000000080010006b000016f70000813d00000000020000310000001301000029319320230000040f319321b20000040f000700000001001d31931f110000040f000800000001001d00000000020000310000001301000029319320230000040f0000000804000029000000600240003900000012030000290000000000320435000000400240003900000011030000290000000000320435000000200240003900000007030000290000000000320435000000000014043500000000030000310000000d010000290000000e0200002931931f290000040f0000000804000029000000a00240003900000010030000290000000000320435000000800240003900000000001204350000000901000029000001400210008a0000000101000367000000000321034f000000000303043b001300000003001d00000c690030009c000018f50000213d0000010003200039000000000331034f000000e002200039000000000121034f000000000101043b001000000001001d000000000103043b000900000001001d00000000030000310000000d010000290000000e0200002931931f290000040f000e00000001001d00000000030000310000000b010000290000000c0200002931931f290000040f0000000007010019000000130100002900000009020000290000001003000029000000110400002900000012050000290000000e06000029319326320000040f00000008010000290000000f02000029319325050000040f00000001010000390000006502000039000000000012041b00000000010004150000000a02000029000016b30000013d00000cb20020009c000007250000213d00000cb50020009c00000e070000613d00000cb60020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000086b01000039000000000101041a00000cdd0010019800000e1e0000013d00000c810020009c0000074d0000213d00000c840020009c00000e180000613d00000c850020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000ce201000041000000800010043f00000ce001000041000031940001042e00000c9f0020009c000007770000213d00000ca20020009c00000e230000613d00000ca30020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000402100370000000000202043b001300000002001d0000002402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d001100040020003d0000001103100360000000000303043b001200000003001d00000c730030009c00001e880000213d0000002402200039000f00000002001d001000120020002d000000100080006b00001e880000213d0000004402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d000d00040020003d0000000d01100360000000000101043b000e00000001001d00000c730010009c00001e880000213d0000000e012000290000002401100039000000000081004b00001e880000213d00000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b0000004002000039000000a00020043f0000001204000029000000e00040043f00000d58034001980000001f0440018f000001000230003900000011050000290000002005500039001100000005001d0000000105500367000003fb0000613d0000010006000039000000000705034f000000007807043c0000000006860436000000000026004b000003f70000c13d000000000004004b000004080000613d000000000335034f0000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000120300002900000100023000390000000000020435000000c00010043f0000001f0130003900000ce4021001970000006001200039000000800010043f00000cfb0020009c00000efc0000213d0000009f0220003900000ce4022001970000008002200039000000400020043f00000c660010009c00000c66010080410000006001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000cfc011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000130010006c000016b70000c13d0000001201000029000000200010008c00001e880000413d00000011010000290000000101100367000000000101043b00000c730010009c00001e880000213d0000000f011000290000001002000029319320230000040f00000000020004150000000e03000029000000200030008c00001e880000413d000000400300043d00000cfe0030009c00000efc0000213d0000002004300039000000400040043f0000000d0400002900000020044000390000000104400367000000000404043b00000000004304350000000004000415000000000242004900000000020000020000000004030433000000400200043d001600200020003d001700000002001d00000cff050000410000002003200039000000000053043500000060060000390000002405200039001300000006001d000000000065043500000084052000390000000006010433000000000065043500000020051000390000000005050433000000a406200039000000000056043500000040051000390000000005050433000000c406200039000000000056043500000060051000390000000005050433000000e40620003900000000005604350000008005100039000000000505043300000104062000390000000000560435000000a005100039000000000505043300000124062000390000000000560435000000c005100039000000000505043300000144062000390000000000560435000000e00510003900000000050504330000016406200039000000000056043500000100051000390000000005050433000001840620003900000000005604350000012005100039000000000505043300000c6605500197000001a40620003900000000005604350000014005100039000000000505043300000c6605500197000001c4062000390000000000560435000001600110003900000000010104330000018005000039000001e4062000390000000000560435000002040520003900000000710104340000000000150435000000000500041100000c690550019700000d58091001970000001f0810018f0000022406200039000000000067004b0000175e0000813d000000000009004b000004950000613d000000000b870019000000000a860019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c0000048f0000c13d000000000008004b000017740000613d000000000a0600190000176a0000013d00000cb80020009c000008180000213d00000cbb0020009c00000e330000613d00000cbc0020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000cf6010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000400300043d00000c660030009c00000c660200004100000000020340190000004002200210000000000101043b00000c69011001970000000004000410000000000014004b000010b30000c13d00000d1a01000041000000000013043500000ce3012001c7000031940001042e00000c870020009c0000091f0000213d00000c8a0020009c00000e380000613d00000c8b0020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000c6601000041000000800010043f00000ce001000041000031940001042e00000ccf0020009c00000a9a0000213d00000cd20020009c00000e490000613d00000cd30020009c000009400000613d00001e880000013d00000cc40020009c00000ad90000213d00000cc70020009c00000e540000613d00000cc80020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b001300000001001d00000c690010009c00001e880000213d00000cf6010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c69011001970000000002000410000000000012004b0000111b0000c13d000000400100043d000000640210003900000d29030000410000123a0000013d00000ca50020009c00000e900000613d00000ca60020009c00001e880000c13d000001840080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000002402100370000000000202043b001200000002001d00000c690020009c00001e880000213d0000004402100370000000000202043b001100000002001d00000c690020009c00001e880000213d0000006402100370000000000202043b001000000002001d00000c690020009c00001e880000213d000000c402100370000000000202043b000f00000002001d000000a402100370000000000202043b000e00000002001d0000008402100370000000000202043b000c00000002001d000000e402100370000000000202043b000d00000002001d00000c690020009c00001e880000213d0000010402100370000000000202043b000b00000002001d00000c660020009c00001e880000213d0000012402100370000000000202043b000a00000002001d00000c660020009c00001e880000213d0000014402100370000000000202043b000900000002001d00000c660020009c00001e880000213d0000016401100370000000000101043b00000c730010009c00001e880000213d0000000401100039000000000208001931931fa30000040f000000000c010019000000000d02001900000013010000290000001202000029000000110300002900000010040000290000000c050000290000000e060000290000000f070000290000000d080000290000000b090000290000000a0a000029000000090b000029319320d10000040f0000000001000019000031940001042e00000cbe0020009c00000ee20000613d00000cbf0020009c00001e880000c13d000000440080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000002402100370000000000402043b00000c730040009c00001e880000213d0000002302400039000000000082004b00001e880000813d0000000403400039000000000231034f000000000202043b00000c730020009c00000efc0000213d0000001f0520003900000ce40550019700000ce50050009c00000efc0000213d00000024044000390000003f0550003900000ce4055001970000008005500039000000400050043f000000800020043f0000000004420019000000000084004b00001e880000213d0000002003300039000000000331034f00000d58042001980000001f0520018f000000a001400039000005770000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b000005730000c13d000000000005004b000005840000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a001200039000000000001043500000cf6010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c69011001970000000002000410000000000012004b000004f50000613d00000d1a02000041000000000202041a00000c6902200197000000000012004b000012370000c13d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b000012830000c13d0000000001000415001200000001001d00000d1b01000041000000000101041a000000ff00100190000016bb0000c13d000000400200043d001100000002001d00000d1c01000041000000000012043500000c660020009c00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c75011001c70000001302000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000110b0000290000001105700029000005cb0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000005c70000c13d000000000006004b000005d80000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f00000000001504350000000100200190000015690000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000c730010009c00000efc0000213d000000010020019000000efc0000c13d000000400010043f000000200030008c00001e880000413d00000000020b043300000d1a0020009c000016d30000c13d00000080020000390000000103000039000000130100002931932fc60000040f000016d00000013d00000c8d0020009c00000f020000613d00000c8e0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000c40080008c00001e880000413d0000006402100370000000000202043b001100000002001d0000004402100370000000000202043b001000000002001d0000002402100370000000000202043b001200000002001d0000000402100370000000000202043b001300000002001d0000008402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000403200039000000000431034f000000000404043b000f00000004001d00000c730040009c00001e880000213d0000000f022000290000002402200039000000000082004b00001e880000213d000000a402100370000000000402043b00000c730040009c00001e880000213d0000002302400039000000000082004b00001e880000813d0000000402400039000000000521034f000000000505043b000e00000005001d00000c730050009c00001e880000213d0000000e044000290000002404400039000000000084004b00001e880000213d0000006504000039000000000504041a000000020050008c00000f900000613d0000000205000039000000000054041b000000130400002900000c690040009c000018f50000213d0000000f040000290000001f0440003900000ce404400197000d00000004001d00000ce50040009c00000efc0000213d0000000d040000290000003f0440003900000ce4044001970000008004400039000000400040043f0000000f05000029000000800050043f00000d5806500198000c001f00500193000700200030003d0000000705100360000b00000006001d000000a003600039000006490000613d000000a006000039000000000705034f000000007807043c0000000006860436000000000036004b000006450000c13d0000000c0000006b000006570000613d0000000b055003600000000c060000290000000306600210000000000703043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005304350000000f03000029000000a00330003900000000000304350000000e030000290000001f0330003900000ce403300197000800000003001d0000003f0330003900000ce603300197000000400500043d0000000003350019000a00000005001d000000000053004b0000000005000039000000010500403900000c730030009c00000efc0000213d000000010050019000000efc0000c13d000000400030043f0000000e050000290000000a03000029000000000353043600000d58045001980009001f00500193000500200020003d0000000502100360000600000004001d00000000014300190000067b0000613d000000000402034f0000000005030019000000004604043c0000000005650436000000000015004b000006770000c13d000000090000006b000006890000613d000000060220036000000009040000290000000304400210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002104350000000e01300029000000000001043500000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000301043b000000130100002900000012020000290000001004000029000000110500002900000080060000390000000a07000029319326320000040f000000400100043d00000080021000390000000f03000029000000000032043500000040021000390000008003000039000000000032043500000020021000390000001103000029000000000032043500000010020000290000000000210435000000a0031000390000000b04300029000000010200036700000007052003600000000b0000006b000006b60000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b000006b20000c13d0000000c0000006b000006c40000613d0000000b055003600000000c060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000f0430002900000000000404350000000d033000290000000004130049000000600510003900000000004504350000000e04000029000000000343043600000005042003600000000602300029000000060000006b000006d60000613d000000000504034f0000000006030019000000005705043c0000000006760436000000000026004b000006d20000c13d000000090000006b000006e40000613d000000060440036000000009050000290000000305500210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004204350000000e0230002900000000000204350000000802100069000000000232001900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000ce8011001c70000800d02000039000000030300003900000ce90400004100000012050000290000001306000029000011160000013d00000c9a0020009c00000f150000613d00000c9b0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b000000010010008c00001e880000213d0000086902000039000000000202041a00000cd90220009a00000c69022001970000000003000411000000000023004b00000f9a0000c13d0000006502000039000000000302041a000000020030008c00000f900000613d0000000203000039000000000032041b0000086b02000039000000000302041a00000cf103300197000000e004100210000000000343019f000000000032041b000000800010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cf2011001c70000800d02000039000000010300003900000cf304000041000011160000013d00000cb30020009c00000f5c0000613d00000cb40020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c660020009c00001e880000213d0000002402100370000000000202043b001200000002001d00000c690020009c00001e880000213d0000004401100370000000000101043b001100000001001d00000c690010009c00001e880000213d00000000020004150000001f0220008a0000000502200210000000000300041a000fff0000300194000012000000c13d00000000020004150000001e0220008a0000000502200210000000ff00300190000012000000c13d00000d590130019700000001011001bf00000d5a0110019700000100011001bf000012250000013d00000c820020009c00000f690000613d00000c830020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000401100370000000000101043b00000c730010009c00001e880000213d00000004011000390000000002080019319320230000040f00000001030003670000004402300370000000000402043b0000002402300370000000000502043b0000006502000039000000000302041a000000020030008c000010c30000c13d000000400100043d000000440210003900000d5603000041000000000032043500000024021000390000001f03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c7000031950001043000000ca00020009c00000f7e0000613d00000ca10020009c00001e880000c13d000001a40080008c00001e880000413d0000010402100370000000000202043b000000e403100370000000000303043b000c00000003001d000000c403100370000000000303043b000d00000003001d000000a403100370000000000303043b000e00000003001d0000008403100370000000000303043b000f00000003001d0000006403100370000000000303043b001000000003001d0000004403100370000000000303043b001100000003001d0000002403100370000000000303043b001200000003001d0000000403100370000000000303043b001300000003001d0000012403100370000000000303043b000b00000003001d00000c660030009c00001e880000213d0000014403100370000000000303043b000a00000003001d00000c660030009c00001e880000213d0000016403100370000000000303043b000900000003001d00000c660030009c00001e880000213d0000018403100370000000000303043b00000c730030009c00001e880000213d0000002304300039000000000084004b00001e880000813d0000000404300039000000000141034f000000000101043b000800000001001d00000c730010009c00001e880000213d0000002403300039000700000003001d0000000801300029000000000081004b00001e880000213d0000000001000415000600000001001d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006503000039000000000013041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d000000400100043d0000005403100039000000000023043500000000020004110000006003200210000000200210003900000000003204350000003403100039000000130400002900000000004304350000005403000039000000000031043500000ceb0010009c00000efc0000213d0000008003100039000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000400300043d00000cf70030009c00000efc0000213d0000000002030019000000000101043b0000000004030019000500000002001d000001a002200039000000400020043f00000160023000390000000903000029000000000032043500000140024000390000000a03000029000000000032043500000120024000390000000b03000029000000000032043500000100024000390000000000120435000000e0014000390000000c020000290000000000210435000000c0014000390000000d020000290000000000210435000000a0014000390000000e02000029000000000021043500000080014000390000000f0200002900000000002104350000006001400039000000100200002900000000002104350000004001400039000000110200002900000000002104350000002001400039000000120200002900000000002104350000001301000029000000000014043500000000030000310000000701000029000000080200002931931f290000040f00000005030000290000009c0000013d00000cb90020009c00000fa40000613d00000cba0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000c40080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000004402100370000000000202043b001100000002001d0000002402100370000000000202043b001200000002001d0000006402100370000000000202043b001000000002001d00000c690020009c00001e880000213d0000008402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000404200039000000000341034f000000000303043b000f00000003001d00000c730030009c00001e880000213d0000000f022000290000002402200039000000000082004b00001e880000213d000000a402100370000000000302043b00000c730030009c00001e880000213d0000002302300039000000000082004b00001e880000813d0000000402300039000000000521034f000000000505043b000e00000005001d00000c730050009c00001e880000213d0000000e033000290000002403300039000000000083004b00001e880000213d0000000f030000290000001f0330003900000ce403300197000d00000003001d00000ce50030009c00000efc0000213d0000000d030000290000003f0330003900000ce4033001970000008003300039000000400030043f0000000f05000029000000800050043f00000d5806500198000c001f00500193000700200040003d0000000705100360000b00000006001d000000a0046000390000086d0000613d000000a006000039000000000705034f000000007807043c0000000006860436000000000046004b000008690000c13d0000000c0000006b0000087b0000613d0000000b055003600000000c060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000f04000029000000a00440003900000000000404350000000e040000290000001f0440003900000ce404400197000800000004001d0000003f0440003900000ce604400197000000400500043d0000000004450019000a00000005001d000000000054004b0000000005000039000000010500403900000c730040009c00000efc0000213d000000010050019000000efc0000c13d000000400040043f0000000e050000290000000a04000029000000000454043600000d58035001980009001f00500193000500200020003d0000000502100360000600000003001d00000000013400190000089f0000613d000000000302034f0000000005040019000000003603043c0000000005650436000000000015004b0000089b0000c13d000000090000006b000008ad0000613d000000060220036000000009030000290000000303300210000000000501043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002104350000000e01400029000000000001043500000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000301043b000000800600003900000013010000290000001202000029000000110400002900000010050000290000000a07000029319326320000040f000000400100043d00000080021000390000000f03000029000000000032043500000040021000390000008003000039000000000032043500000020021000390000001003000029000000000032043500000011020000290000000000210435000000a0031000390000000b04300029000000010200036700000007052003600000000b0000006b000008da0000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b000008d60000c13d0000000c0000006b000008e80000613d0000000b055003600000000c060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000f0430002900000000000404350000000d033000290000000004130049000000600510003900000000004504350000000e04000029000000000343043600000005042003600000000602300029000000060000006b000008fa0000613d000000000504034f0000000006030019000000005705043c0000000006760436000000000026004b000008f60000c13d000000090000006b000009080000613d000000060440036000000009050000290000000305500210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004204350000000e0230002900000000000204350000000802100069000000000232001900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000800d02000039000000030300003900000ce904000041000000120500002900000013060000290000127f0000013d00000c880020009c000010060000613d00000c890020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b00000c730010009c00001e880000213d00000004011000390000000002080019319320230000040f319321b20000040f00000af40000013d00000c970020009c0000100b0000613d00000c980020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000086b01000039000000000101041a000000c00110027000000e140000013d00000cb00020009c000010150000613d00000cb10020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d000000800000043f00000ce001000041000031940001042e00000c7f0020009c0000101c0000613d00000c800020009c00001e880000c13d000001640080008c00001e880000413d000000e402100370000000000202043b000c00000002001d000000c402100370000000000202043b000d00000002001d000000a402100370000000000202043b000e00000002001d0000008402100370000000000202043b000f00000002001d0000006402100370000000000202043b001000000002001d0000004402100370000000000202043b001100000002001d0000002402100370000000000202043b001200000002001d0000000402100370000000000202043b000b00000002001d0000010402100370000000000202043b001300000002001d00000c660020009c00001e880000213d0000012402100370000000000202043b000a00000002001d00000c660020009c00001e880000213d0000014402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000403200039000000000131034f000000000101043b000900000001001d00000c730010009c00001e880000213d0000002402200039000800000002001d0000000901200029000000000081004b00001e880000213d0000000001000415000700000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c6602100197000600000002001d0000001301200029001300000001001d00000c660010009c000014fc0000a13d00000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d01000041000031950001043000000cd50020009c000010220000613d00000cd60020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000000001000412002d00000001001d002c00e00000003d0000800501000039000000440300003900000000040004150000002d0440008a000010a20000013d00000cca0020009c000010800000613d00000ccb0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000440080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d0000000404200039000000000948004900000ced0090009c00001e880000213d000001800090008c00001e880000413d000000000241034f0000002403100370000000000303043b001300000003001d000000000202043b00000c690020009c00001e880000213d0000002005400039000000000351034f000000000303043b00000c690030009c00001e880000213d0000002006500039000000000561034f000000000505043b00000c690050009c00001e880000213d0000002007600039000000000671034f000000000606043b00000c690060009c00001e880000213d000000200a7000390000000007a1034f000000000707043b00000c690070009c00001e880000213d000000200ba00039000000000cb1034f000000400ba00039000000000bb1034f000000600da00039000000000dd1034f000000800ea00039000000000fe1034f000000000a0d043b00120000000a001d000000000a0b043b00110000000a001d000000000a0c043b00100000000a001d000000000c0f043b00000c6600c0009c00001e880000213d000000200fe00039000000000ef1034f000000000e0e043b00000c6600e0009c00001e880000213d000000200ff00039000000000af1034f000000000a0a043b000f0000000a001d00000c6600a0009c00001e880000213d000000200af00039000000000aa1034f000000000f0a043b0000001f0990008a00000cec0af0019700000cec0b900197000e000000ba01430000000000ba004b000000000a00001900000cec0a004041000d0000000f001d00000000009f004b000000000900001900000cec090080410000000e0b00002900000cec00b0009c000000000a09c01900000000000a004b00001e880000c13d0000000d09400029000000000491034f000000000404043b000e00000004001d00000c730040009c00001e880000213d0000000e0a80006a000000200f90003900000cec04a0019700000cec09f00197000000000b49013f000000000049004b000000000900001900000cec09004041000d0000000f001d0000000000af004b000000000a00001900000cec0a00204100000cec00b0009c00000000090ac019000000000009004b00001e880000c13d0000020009000039000000400090043f000000800020043f000000a00030043f000000c00050043f000000e00060043f000001000070043f0000001002000029000001200020043f0000001102000029000001400020043f0000001202000029000001600020043f0000018000c0043f000001a000e0043f0000000f02000029000001c00020043f0000000e020000290000001f0220003900000ce40220019700000d2e0020009c00000efc0000213d0000003f0220003900000ce4022001970000020002200039000000400020043f0000000e02000029000002000020043f0000000d02200029000000000082004b00001e880000213d0000000d021003600000000e0400002900000d58034001980000001f0540018f000002200130003900000a470000613d0000022006000039000000000702034f000000007407043c0000000006460436000000000016004b00000a430000c13d000000000005004b00000a540000613d000000000232034f0000000303500210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f00000000002104350000000e0100002900000220011000390000000000010435000001e00090043f0000000001000415001200000001001d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000ce100100198000011170000c13d000001c00100043d001100000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000110200002900000c6602200197000000000101043b00000c6601100197000000000012004b000018ee0000813d0000008001000039319321b20000040f001100000001001d000001400100043d001000000001001d000000a00100043d000f00000001001d000001e00100043d000e00000001001d31931f110000040f000000a0021000390000001303000029000000000032043500000080021000390000000e03000029000000000032043500000060021000390000000f03000029000000000032043500000040021000390000001003000029000000000032043500000020021000390000001103000029000000000032043500000080020000390000000000210435000000000200041100000c6902200197319325050000040f00000001010000390000006502000039000000000012041b000016d00000013d00000cd00020009c0000108d0000613d00000cd10020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000440080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000002401100370000000000101043b001200000001001d00000c690010009c00001e880000213d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d0000006501000039000000000201041a000000020020008c00000f900000613d0000000202000039000000000021041b000000120000006b0000128a0000c13d0000001301000029000000000010043f0000087401000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000201041a00000d0c022001970000001206000029000000000262019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000030300003900000d55040000410000001305000029000011160000013d00000cc50020009c000010980000613d00000cc60020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000d2201000041000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d000000000108001931931f610000040f001300000002001d00000c6901100197000000000010043f0000087301000039000000200010043f00000040020000390000000001000019319331510000040f000000130200002931931eef0000040f000000000101041a000000400200043d000000000012043500000c660020009c00000c6602008041000000400120021000000ce3011001c7000031940001042e0000000002000416000000000002004b00001e880000c13d000000440080008c00001e880000413d0000002402100370000000000202043b0000000401100370000000000101043b00000c690010009c000018f50000213d001200000002001d001300000001001d000000000010043f0000087301000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000200041100000c6902200197001100000002001d000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000101041a001000000001001d000000000001004b0000124b0000c13d00000cf001000041000000000010043f00000c750100004100003195000104300000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000403200039000000000131034f000000000101043b001100000001001d00000c730010009c00001e880000213d0000002403200039000000110100002900000005011002100000000002310019000000000082004b00001e880000213d001000000003001d0000003f0210003900000cea0220019700000ceb0020009c00000efc0000213d0000008002200039000000400020043f0000001102000029000000800020043f000000000002004b00000b590000613d00000060040000390000000002000019000000a00320003900000000004304350000002002200039000000000012004b00000b510000413d000000110000006b0000001007000029000013c50000c13d000000400100043d00000020020000390000000003210436000000800200043d0000000000230435000000400310003900000005042002100000000006430019000000000002004b000012de0000c13d000000000216004900000c430000013d0000000001000416000000000001004b00001e880000c13d0000000001000412001d00000001001d001c00c00000003d0000800501000039000000440300003900000000040004150000001d0440008a00000e110000013d0000000001000416000000000001004b00001e880000c13d0000000001000412001b00000001001d001a00400000003d0000800501000039000000440300003900000000040004150000001b0440008a00000e110000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b0000086c02000039000000000202041a000000000021004b00001e880000813d319320b70000040f000000000201041a0000000101100039000000000101041a000000400300043d00000020043000390000000000140435000000000023043500000c660030009c00000c6603008041000000400130021000000cda011001c7000031940001042e0000000001000416000000000001004b00001e880000c13d0000000001000412002f00000001001d002e00a00000003d0000800501000039000000440300003900000000040004150000002f0440008a00000e110000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000404200039000000000341034f000000000503043b00000c730050009c00001e880000213d00000024032000390000000002350019000000000082004b00001e880000213d0000086906000039000000000606041a00000cd90660009a00000c69066001970000000007000411000000000067004b00000f9a0000c13d0000000006000415001300000006001d0000006507000039000000000607041a000000020060008c000007660000613d0000000206000039000000000067041b000000400050008c00001e880000413d0000002004400039000000000541034f000000000505043b001200000005001d00000c690050009c00001e880000213d0000002004400039000000000441034f000000000404043b00000c730040009c00001e880000213d00000000043400190000001f03400039000000000023004b00001e880000813d000000000341034f000000000303043b00000c730030009c00000efc0000213d0000001f0530003900000ce4055001970000003f0550003900000ce605500197000000400600043d0000000005560019001100000006001d000000000065004b0000000006000039000000010600403900000c730050009c00000efc0000213d000000010060019000000efc0000c13d0000002004400039000000400050043f00000011050000290000000005350436001000000005001d0000000005430019000000000025004b00001e880000213d000000000241034f00000d58043001980000001f0530018f000000100140002900000bf80000613d000000000602034f0000001007000029000000006806043c0000000007870436000000000017004b00000bf40000c13d000000000005004b00000c050000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f000000000021043500000010013000290000000000010435000000120000006b000017010000c13d00000d0401000041000000000010043f00000c750100004100003195000104300000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000402100370000000000202043b001100000002001d00000c730020009c00001e880000213d00000011020000290000002302200039000000000082004b00001e880000813d00000011020000290000000402200039000000000121034f000000000101043b001000000001001d00000c730010009c00001e880000213d0000001101000029000000240a100039000000100100002900000005011002100000000002a10019000000000082004b00001e880000213d0000003f0210003900000cea0320019700000ceb0030009c00000efc0000213d0000008002300039000000400020043f0000001004000029000000800040043f000000000004004b000012c00000c13d000000400100043d0000000002000415001300000002001d00000020020000390000000002210436000000800300043d000000000032043500000040041000390000000502300210000000000a240019000000000003004b0000137e0000c13d00000000020004150000001302200069000000000200000200000000021a004900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000031940001042e000000640080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c660020009c00001e880000213d0000002402100370000000000202043b00000c730020009c00001e880000213d000000000328004900000ced0030009c00001e880000213d000000c40030008c00001e880000413d0000014003000039000000400030043f0000000403200039000000000331034f000000000303043b000000800030043f0000002403200039000000000331034f000000000303043b000000a00030043f0000004403200039000000000431034f000000000404043b00000c730040009c00001e880000213d000000000624001900000000040004150000002305600039000000000085004b00001e880000813d0000000405600039000000000551034f000000000705043b00000c730070009c00000efc0000213d00000005097002100000003f0590003900000cea0a500197000000400500043d000000000aa5001900000000005a004b000000000b000039000000010b00403900000c7300a0009c00000efc0000213d0000000100b0019000000efc0000c13d0000004000a0043f000000000075043500000024066000390000000009960019000000000089004b00001e880000213d000000000007004b00000c900000613d0000000007050019000000000a61034f000000000a0a043b00000020077000390000000000a704350000002006600039000000000096004b00000c890000413d000000000600041500000000046400490000000004000002000000c00050043f0000002003300039000000000431034f000000000404043b00000c660040009c00001e880000213d000000e00040043f0000002003300039000000000431034f000000000404043b00000c690040009c00001e880000213d000001000040043f0000002003300039000000000331034f000000000303043b00000c730030009c00001e880000213d00000000042300190000002302400039000000000082004b000000000300001900000cec0300804100000cec02200197000000000002004b000000000500001900000cec0500404100000cec0020009c000000000503c0190000000002000415000000000005004b00001e880000c13d0000000403400039000000000331034f000000000503043b00000c730050009c00000efc0000213d00000005065002100000003f0360003900000cea07300197000000400300043d0000000007730019000000000037004b0000000009000039000000010900403900000c730070009c00000efc0000213d000000010090019000000efc0000c13d000000400070043f000000000053043500000024044000390000000006640019000000000086004b00001e880000213d000000000005004b00000cd60000613d0000000005030019000000000741034f000000000707043b00000c690070009c00001e880000213d000000200550003900000000007504350000002004400039000000000064004b00000ccd0000413d000000000400041500000000024200490000000002000002000001200030043f0000004402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b000000000400001900000cec0400804100000cec03300197000000000003004b000000000500001900000cec0500404100000cec0030009c000000000504c019000000000005004b00001e880000c13d0000000403200039000000000331034f000000000303043b00000c730030009c00000efc0000213d00000005043002100000003f0540003900000cea05500197000000400600043d0000000005560019001100000006001d000000000065004b0000000006000039000000010600403900000c730050009c00000efc0000213d000000010060019000000efc0000c13d0000002402200039000000400050043f00000011050000290000000005350436001000000005001d0000000004240019000000000084004b00001e880000213d000000000003004b00000d0e0000613d0000001103000029000000000521034f000000000505043b000000200330003900000000005304350000002002200039000000000042004b00000d070000413d0000000001000415000600000001001d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006502000039000000000012041b000001000100043d00000c6901100197319324740000040f000000a00100043d001200000001001d00000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000120010006b000018f90000c13d0000086c01000039000000000101041a000000130010006c00001a070000a13d0000086c01000039000000000010043f000000130100002900000003011000c9000e00000001001d00000cf90110009a000000000101041a000f00000001001d000000400100043d0000002002100039000000200300003900000000003204350000004003100039000000800400043d00000000004304350000006003100039000000a00400043d00000000004304350000008003100039000000c005000039000000c00400043d00000000005304350000010003100039000000000504043300000000005304350000012003100039000000000005004b00000d510000613d00000000060000190000002004400039000000000704043300000000037304360000000106600039000000000056004b00000d4b0000413d000000e00400043d00000c6604400197000000a0051000390000000000450435000001000400043d00000c6904400197000000c00510003900000000004504350000000004130049000000400540008a000000e006100039000001200400043d000000000056043500000000050404330000000003530436000000000005004b00000d6a0000613d00000000060000190000002004400039000000000704043300000c690770019700000000037304360000000106600039000000000056004b00000d630000413d0000000003130049000000200430008a00000000004104350000001f0330003900000d58043001970000000003140019000000000043004b0000000004000039000000010400403900000c730030009c00000efc0000213d000000010040019000000efc0000c13d000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b00000011020000290000000002020433000000000002004b00000dac0000613d001200000000001d0000001202000029000000050220021000000010022000290000000002020433000000000021004b00000d9a0000813d000000000010043f000000200020043f000000000100041400000d9d0000013d000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000001203000029001200010030003d00000011020000290000000002020433000000120020006b00000d900000413d0000000f0010006c000018ea0000c13d0000086c01000039000000000101041a000000130010006c00001a070000a13d000000e00100043d001000000001001d000000080110027000000d3801100197001200000001001d000000000010043f0000000e0100002900000d390110009a001100000001001d000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d0000001002000029000000ff0220018f000000010220020f000000000101043b000000000101041a001000000002001d000f00000001001d0000000000210170000019110000c13d0000001201000029000000000010043f0000001101000029000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d0000000f0300002900000010023001af000000000101043b000000000021041b000001200200043d000000c00300043d0000000001000415000300000001001d001000000003001d0000000013030434000900000001001d000c00000002001d0000000021020434000800000002001d000a00000003001d000000000031004b000019150000c13d000000800100043d000400000001001d000000a00100043d000200000001001d000000e00100043d000100000001001d000001000100043d000d0c690010019b0000000a0000006b000500000000001d000019190000c13d000000040000006b00001a0d0000c13d0000000001000411001200000001001d00001e3c0000013d0000000001000416000000000001004b00001e880000c13d0000000001000412001500000001001d001401000000003d000080050100003900000044030000390000000004000415000000150440008a000010a20000013d0000000001000416000000000001004b00001e880000c13d0000000001000412002300000001001d002200800000003d000080050100003900000044030000390000000004000415000000230440008a000000050440021000000cf602000041319331660000040f00000c6601100197000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d0000086b01000039000000000101041a00000ce1001001980000000001000039000000010100c039000000800010043f00000ce001000041000031940001042e0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000402100370000000000402043b00000c690040009c00001e880000213d0000004402100370000000000302043b0000002401100370000000000201043b0000000001040019319321660000040f00000af40000013d0000000001000416000000000001004b00001e880000c13d0000086901000039000010200000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b000000000010043f0000087201000039000000200010043f00000040020000390000000001000019319331510000040f000000000101041a000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d0000000001000412002b00000001001d002a01600000003d0000800501000039000000440300003900000000040004150000002b0440008a00000f660000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b001300000001001d00000c730010009c00001e880000213d0000001301000029001200040010003d000000120180006a00000ced0010009c00001e880000213d000001800010008c00001e880000413d0000006501000039000000000201041a000000020020008c00000f900000613d0000000202000039000000000021041b0000086b01000039000000000101041a00000ce100100198000011170000c13d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000130200002900000144022000390000000103000367000000000423034f000000000101043b000000000404043b00000c660040009c00001e880000213d00000c6601100197000000000014004b0000154b0000813d00110020002000920000001102300360000000000202043b00000c660020009c00001e880000213d000000000012004b000015c00000813d00000d3501000041000000000010043f00000c75010000410000319500010430000001640080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000002402100370000000000202043b001200000002001d00000c690020009c00001e880000213d0000004402100370000000000202043b001100000002001d00000c690020009c00001e880000213d0000006402100370000000000202043b001000000002001d00000c690020009c00001e880000213d000000c402100370000000000202043b000f00000002001d000000a402100370000000000202043b000e00000002001d0000008402100370000000000202043b000c00000002001d000000e402100370000000000202043b000d00000002001d00000c690020009c00001e880000213d0000010402100370000000000202043b000b00000002001d00000c660020009c00001e880000213d0000012402100370000000000202043b000a00000002001d00000c660020009c00001e880000213d0000014401100370000000000101043b00000c730010009c00001e880000213d0000000401100039000000000208001931931fa30000040f000900000001001d000800000002001d0000800b0100003900000004030000390000000004000415000000300440008a000000050440021000000cdb02000041319331660000040f00000c6601100197000700000001001d0000000b02000029319320c50000040f000000000a01001900000013010000290000001202000029000000110300002900000010040000290000000c050000290000000e060000290000000f070000290000000d0800002900000007090000290000000a0b000029000000090c000029000000080d000029319320d10000040f0000000001000019000031940001042e0000000002000416000000000002004b00001e880000c13d000000440080008c00001e880000413d0000002402100370000000000702043b0000000401100370000000000601043b0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d0000006501000039000000000201041a000000020020008c00000f900000613d0000000202000039000000000021041b0000086c02000039000000000102041a00000c730010009c000011790000a13d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000000001000416000000000001004b00001e880000c13d319320060000040f0000002002000039000000400300043d001300000003001d000000000223043631931f710000040f0000001302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f000031940001042e0000000001000416000000000001004b00001e880000c13d000000000108001931931fbd0000040f001300000001001d001000000002001d001100000003001d000000000100041a0000000801100270000000ff0110018f319321900000040f0000001301000029000000c00110021000000cdf011001970000086b02000039000000000302041a00000cde03300197000000000113019f000000000012041b000000400100043d001300000001001d000000400200003931931eff0000040f00000cf40100004100000013020000290000002003200039000f00000003001d000000000013043500000009010000390000000000120435000000400100043d001200000001001d000000400200003931931eff0000040f00000cf50100004100000012020000290000002003200039000e00000003001d000000000013043500000005010000390000000000120435000000000100041a0000000801100270000000ff0110018f000d00000001001d319321900000040f0000000d01000029319321900000040f000000130100002900000000020104330000000f01000029319331510000040f00000012020000290000000002020433001300000001001d0000000e01000029319331510000040f0000047f020000390000001303000029000000000032041b0000048002000039000000000012041b319329f40000040f31932a0c0000040f000000100100002931932a270000040f000000110100002931932a400000040f0000000001000019000031940001042e0000000001000416000000000001004b00001e880000c13d0000000001000412002100000001001d002000200000003d000080050100003900000044030000390000000004000415000000210440008a000000050440021000000cf602000041000010890000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b001300000001001d00000c690010009c00001e880000213d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d319322580000040f000000130100002931932a270000040f0000118d0000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000501043b0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d0000006501000039000000000201041a000000020020008c000011020000c13d00000c6c01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f00000d5601000041000000c40010043f00000d5101000041000031950001043000000c6c01000041000000800010043f0000002001000039000000840010043f0000001801000039000000a40010043f00000d2501000041000000c40010043f00000d51010000410000319500010430000001240080008c00001e880000413d0000000402100370000000000902043b00000c690090009c00001e880000213d0000002402100370000000000202043b00000c690020009c00001e880000213d0000004403100370000000000303043b00000c690030009c00001e880000213d000000a404100370000000000604043b00000d140060019800000d1504000041000000000400601900000d1605600197000000000754019f0000008404100370000000000504043b0000006404100370000000000404043b000000000076004b00001e880000c13d000000c407100370000000000707043b00000c660070009c00001e880000213d000000e40a100370000000000c0a043b00000c7300c0009c00001e880000213d000000230ac0003900000000008a004b00001e880000813d000000040bc00039000000000ab1034f000000000a0a043b00000c7300a0009c00000efc0000213d0000001f0da0003900000ce40dd0019700000ce500d0009c00000efc0000213d000000240cc000390000003f0dd0003900000ce40dd00197000000800dd000390000004000d0043f0000008000a0043f000000000cca001900000000008c004b00001e880000213d0000002008b00039000000000881034f00000d580ba001980000001f0ca0018f000000a001b0003900000fe80000613d000000a00d000039000000000e08034f00000000ef0e043c000000000dfd043600000000001d004b00000fe40000c13d00000000000c004b00000ff50000613d0000000008b8034f000000030bc00210000000000c010433000000000cbc01cf000000000cbc022f000000000808043b000001000bb000890000000008b8022f0000000008b801cf0000000008c8019f0000000000810435000000a001a0003900000000000104350000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006508000039000000000018041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d00000080080000390000000001090019319322700000040f0000118d0000013d0000000001000416000000000001004b00001e880000c13d00000c5b01000039000010200000013d0000000001000416000000000001004b00001e880000c13d0000800b0100003900000004030000390000000004000415000000300440008a000000050440021000000ce702000041000010890000013d0000000001000416000000000001004b00001e880000c13d00000d0701000041000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d00000c5a01000039000000000101041a000010a50000013d000001040080008c00001e880000413d0000000402100370000000000202043b00000c690020009c00001e880000213d0000002403100370000000000303043b00000c690030009c00001e880000213d0000008404100370000000000604043b00000d140060019800000d1504000041000000000400601900000d1605600197000000000754019f0000006404100370000000000504043b0000004404100370000000000404043b000000000076004b00001e880000c13d000000a407100370000000000707043b00000c660070009c00001e880000213d000000c409100370000000000b09043b00000c7300b0009c00001e880000213d0000002309b00039000000000089004b00001e880000813d000000040ab000390000000009a1034f000000000909043b00000c730090009c00000efc0000213d0000001f0c90003900000ce40cc0019700000ce500c0009c00000efc0000213d000000240bb000390000003f0cc0003900000ce40cc00197000000800cc000390000004000c0043f000000800090043f000000000bb9001900000000008b004b00001e880000213d0000002008a00039000000000881034f00000d580a9001980000001f0b90018f000000a001a00039000010620000613d000000a00c000039000000000d08034f00000000de0d043c000000000cec043600000000001c004b0000105e0000c13d00000000000b004b0000106f0000613d0000000008a8034f000000030ab00210000000000b010433000000000bab01cf000000000bab022f000000000808043b000001000aa000890000000008a8022f0000000008a801cf0000000008b8019f0000000000810435000000a00190003900000000000104350000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006508000039000000000018041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d00000000010004110000008008000039319322700000040f0000118d0000013d0000000001000416000000000001004b00001e880000c13d0000800b0100003900000004030000390000000004000415000000300440008a000000050440021000000cdb02000041319331660000040f000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d0000000001000412002900000001001d002800600000003d000080050100003900000044030000390000000004000415000000290440008a000010a20000013d0000000001000416000000000001004b00001e880000c13d0000000001000412002500000001001d002401400000003d000080050100003900000044030000390000000004000415000000250440008a000000050440021000000cf602000041319331660000040f00000c6901100197000000800010043f00000ce001000041000031940001042e000000400100043d000000640210003900000c6a030000410000000000320435000000440210003900000c6b03000041000000000032043500000024021000390000002703000039000012400000013d000000640130003900000d18040000410000000000410435000000440130003900000d1904000041000000000041043500000024013000390000003804000039000000000041043500000c6c01000041000000000013043500000004013000390000002003000039000000000031043500000c6d012001c700003195000104300000000203000039000000000032041b0000086b02000039000000000202041a00000ce100200198000011170000c13d001000000005001d001100000004001d001300000001001d00000140011000390000000001010433001200000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000120200002900000c6602200197000000000101043b00000c6601100197000000000012004b000012d20000813d0000001301000029319321b20000040f0000001303000029000000c0023000390000000002020433001200000002001d00000020023000390000000002020433000e00000002001d00000160023000390000000002020433000d00000002001d000f00000001001d31931f110000040f000000a0021000390000001003000029000000000032043500000080021000390000000d03000029000000000032043500000060021000390000000e03000029000000000032043500000040021000390000001203000029000000000032043500000020021000390000000f030000290000000000320435000000130200002900000000002104350000001102000029319325050000040f0000118d0000013d0000000202000039000000000021041b0000086c01000039000000000201041a000000000052004b00001a070000a13d000000000010043f00000003015000c900000cf80210009a000000000002041b00000cf90110009a000000000001041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000cfa040000410000118a0000013d00000d2f01000041000000000010043f00000c7501000041000031950001043000000d1a02000041000000000202041a00000c6902200197000000000012004b000012370000c13d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b000012830000c13d000000400100043d001200000001001d00000cfe0010009c00000efc0000213d00000012020000290000002001200039000000400010043f00000000000204350000000001000415001100000001001d00000d1b01000041000000000101041a000000ff001001900000154f0000c13d000000400200043d001000000002001d00000d1c01000041000000000012043500000c660020009c00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c75011001c70000001302000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000100b0000290000001005700029000011550000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000011510000c13d000000000006004b000011620000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f00000000001504350000000100200190000015690000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000c730010009c00000efc0000213d000000010020019000000efc0000c13d000000400010043f000000200030008c00001e880000413d00000000020b043300000d1a0020009c000016d30000c13d00000013010000290000001202000029000000000300001931932fc60000040f000016b10000013d0000000103100039000000000032041b000000000020043f00000003021000c900000cf90320009a000000000063041b00000cf80220009a000000000072041b000000000200041400000c660510019700000c660020009c00000c6602008041000000c00120021000000ce8011001c70000800d02000039000000040300003900000d1f04000041319331840000040f000000010020019000001e880000613d00000001010000390000006502000039000000000012041b0000000001000019000031940001042e0000000001000019000000010110018f000001a00010043f000000000005004b0000001305000029000011a50000613d00000c690050019800000000020000390000000102006039000000120000006b0000000003000039000000010300c039000000000223013f0000000100200190000011a50000613d00000c7401000041000000000010043f00000c75010000410000319500010430000001c00050043f0000001006000029000001e00060043f000000800200043d00000140000004430000016000200443000000a00300043d00000020020000390000018000200443000001a0003004430000004003000039000000c00400043d000001c000300443000001e0004004430000006003000039000000e00400043d000002000030044300000220004004430000008003000039000001000400043d00000240003004430000026000400443000000a003000039000001200400043d0000028000300443000002a000400443000000c003000039000001400400043d000002c000300443000002e000400443000000e003000039000001600400043d000003000030044300000320004004430000010003000039000001800400043d0000034000300443000003600040044300000120030000390000038000300443000003a0001004430000014001000039000003c000100443000003e00050044300000160010000390000040000100443000004200060044300000100002004430000000c01000039000001200010044300000c7601000041000031940001042e0000001f0350003900000c67033001970000003f0330003900000c7204300197000000400300043d0000000004430019000000000034004b0000000006000039000000010600403900000c730040009c00000efc0000213d000000010060019000000efc0000c13d000000400040043f0000001f0650018f000000000453043600000c68075001980000000005740019000011f20000613d000000000801034f0000000009040019000000008a08043c0000000009a90436000000000059004b000011ee0000c13d000000000006004b000001240000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f0000000000150435000001240000013d000e00000003001d001000000002001d00000d0801000041000000000010044300000000010004100000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b0000131b0000c13d0000000e01000029000000ff0110018f000000010010008c00000010010000290000000501100270000000000100003f000000010100603f00000000010004150000131e0000c13d000000000200041500000000012100490000000001000002000000000200041a00000d590120019700000001011001bf0000000f0000006b0000ffff0200608a000000000121616f00000100011061bf000000000010041b00000c5a02000039000000000302041a00000d0c033001970000800a033001bf000000000032041b0000ff0000100190000013280000c13d000000400100043d000000640210003900000d12030000410000000000320435000000440210003900000d1303000041000000000032043500000024021000390000002b03000039000012400000013d000000400100043d000000640210003900000d23030000410000000000320435000000440210003900000d2403000041000000000032043500000024021000390000002c03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c700003195000104300000001301000029000000000010043f0000087301000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000001102000029000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000001041b000000120200002900000c690020009c0000001301000029000018f50000213d000000100300002931932a590000040f000000400100043d0000001002000029000000000021043500000c660010009c00000c66010080410000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c6e011001c70000800d02000039000000040300003900000cef04000041000000130500002900000012060000290000000007000411319331840000040f000000010020019000001e880000613d000001320000013d000000400100043d000000440210003900000d25030000410000000000320435000000240210003900000018030000390000076c0000013d00000d5201000041000000800010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000d53011001c70000001202000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000012a20000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000129e0000c13d000000000006004b000012af0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000014510000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c00001e880000413d000000800100043d00000c690010009c00001e880000213d000000130010006c00000abc0000613d00000d5401000041000000000010043f00000c7501000041000031950001043000000d210030009c00000efc0000213d000000600500003900000000030000190000004004200039000000400040043f000000200420003900000000005404350000000000020435000000a00430003900000000002404350000002003300039000000000013004b0000146f0000813d000000400200043d00000d0d0020009c000012c40000a13d00000efc0000013d00000013010000290000004001100039000000000101043300000c690010009c000018f50000213d0000000002000411000000000021004b000010e00000613d00000d3001000041000000000010043f00000c750100004100003195000104300000000005000019000000800f000039000012f30000013d0000000309900210000000000a0b0433000000000a9a01cf000000000a9a022f00000000080804330000010009900089000000000898022f00000000089801cf0000000008a8019f00000000008b04350000001f0870003900000d58088001970000000007670019000000000007043500000000066800190000000105500039000000000025004b00000b630000813d0000000007160049000000400770008a0000000003730436000000200ff0003900000000070f04330000000087070434000000000676043600000d580a7001970000001f0970018f000000000068004b0000130e0000813d00000000000a004b0000130a0000613d000000000c980019000000000b960019000000200bb0008a000000200cc0008a000000000dab0019000000000eac0019000000000e0e04330000000000ed0435000000200aa0008c000013040000c13d000000000009004b000012eb0000613d000000000b060019000012e10000013d000000000ba6001900000000000a004b000013170000613d000000000c080019000000000d06001900000000ce0c0434000000000ded04360000000000bd004b000013130000c13d000000000009004b000012eb0000613d0000000008a80019000012e10000013d00000010010000290000000501100270000000000100003f000000400100043d000000640210003900000d0a030000410000000000320435000000440210003900000d0b03000041000000000032043500000024021000390000002e03000039000012400000013d0000001301000029000000c0011002100000086b02000039000000000302041a00000cde03300197000000000113019f000000000012041b000000400100043d00000d0d0010009c00000efc0000213d0000004002100039000000400020043f0000000902000039000000000221043600000cf4030000410000000000320435000000400300043d001300000003001d00000d0d0030009c00000efc0000213d00000013040000290000004003400039000000400030043f0000000503000039000000000434043600000cf503000041001000000004001d000000000034043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000100200002900000c660020009c00000c660200804100000040022002100000001303000029000000000303043300000c660030009c00000c66030080410000006003300210000000000223019f000000000101043b001300000001001d000000000100041400000c660010009c00000c6601008041000000c001100210000000000121019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000047f020000390000001303000029000000000032041b0000048002000039000000000012041b000000000100041a0000ff00001001900000122d0000613d00000001020000390000006501000039000000000021041b000000120000006b000016e00000c13d00000d1101000041000000000010043f00000c7501000041000031950001043000000080050000390000000008000019000013940000013d000000000bdb00190000000306c00210000000000a0e0433000000000a6a01cf000000000a6a022f000000000b0b04330000010006600089000000000b6b022f00000000066b01cf0000000006a6019f00000000006e04350000001f0690003900000d580660019700000000092900190000000000090435000000000a2600190000000108800039000000000038004b00000c3f0000813d00000000021a0049000000400220008a0000000004240436000000200550003900000000020504330000000092020434000000000002004b0000000002000039000000010200c03900000000022a04360000000009090433000000400600003900000000006204350000004002a0003900000000b9090434000000000092043500000d580d9001970000001f0c90018f0000006002a0003900000000002b004b000013b90000813d00000000000d004b000013b50000613d000000000acb0019000000000ec20019000000200ee0008a000000200fa0008a000000000ade00190000000006df0019000000000606043300000000006a0435000000200dd0008c000013af0000c13d00000000000c004b0000138c0000613d000000000e020019000013820000013d000000000ed2001900000000000d004b000013c20000613d000000000f0b0019000000000a02001900000000f60f0434000000000a6a04360000000000ea004b000013be0000c13d00000000000c004b000013810000c13d0000138c0000013d0000000009000019000000050a9002100000000001a700190000000101100367000000000101043b000000000200003100000000037200490000001f0330008a00000cec0430019700000cec05100197000000000645013f000000000045004b000000000400001900000cec04004041000000000031004b000000000300001900000cec0300804100000cec0060009c000000000403c019000000000004004b00001e880000c13d00000000037100190000000101300367000000000101043b00000c730010009c00001e880000213d0000000004120049000000200230003900000cec0340019700000cec05200197000000000635013f000000000035004b000000000300001900000cec03004041000000000042004b000000000400001900000cec0400204100000cec0060009c000000000304c019000000000003004b00001e880000c13d00000d58041001980000000105200367000000400200043d0000000003420019000013f90000613d000000000605034f0000000007020019000000006806043c0000000007870436000000000037004b000013f50000c13d00130000000a001d001200000009001d0000001f06100190000014080000613d000000000445034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000003120019000000000003043500000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000000020004103193318e0000040f000000600310027000000c66043001980000006003000039000000130a000029000014410000613d0000001f0340003900000c67033001970000003f0330003900000c7205300197000000400300043d0000000005530019000000000035004b0000000006000039000000010600403900000c730050009c00000efc0000213d000000010060019000000efc0000c13d000000400050043f000000000743043600000c68064001980000000005670019000014340000613d000000000801034f000000008908043c0000000007970436000000000057004b000014300000c13d0000001f04400190000014410000613d000000000161034f0000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f0000000000150435000000010020019000000010070000290000001209000029000015790000613d000000800100043d000000000091004b00001a070000a13d000000a001a000390000000000310435000000800100043d000000000091004b00001a070000a13d0000000109900039000000110090006c000013c60000413d00000b590000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014580000c13d000000000005004b000014690000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c660020009c00000c66020080410000004002200210000000000112019f00003195000104300000000009000019000f0000000a001d000014790000013d000000010120018f00000000011b0436000000000031043500000012090000290000000109900039000000100090006c00000c330000813d000000800100043d000000000091004b00001a070000a13d00000005019002100000000003a100190000000102000367000000000332034f000000000403043b0000000003000031000000110530006a000000430550008a00000cec0650019700000cec07400197000000000867013f000000000067004b000000000600001900000cec06004041000000000054004b000000000500001900000cec0500804100000cec0080009c000000000605c019000000000006004b00001e880000c13d000000a001100039000000000b0104330000000004a40019000000000142034f000000000101043b00000c730010009c00001e880000213d0000000005130049000000200340003900000cec0450019700000cec06300197000000000746013f000000000046004b000000000400001900000cec04004041000000000053004b000000000500001900000cec0500204100000cec0070009c000000000405c019000000000004004b00001e880000c13d000000000432034f00000d5805100198000000400200043d0000000003520019000014b20000613d000000000604034f0000000007020019000000006806043c0000000007870436000000000037004b000014ae0000c13d00130000000b001d001200000009001d0000001f06100190000014c10000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000003120019000000000003043500000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000000020004103193318e0000040f000000600310027000000c660430019800000060030000390000000f0a000029000000130b000029000014720000613d0000001f0340003900000c67033001970000003f0330003900000c7205300197000000400300043d0000000005530019000000000035004b0000000006000039000000010600403900000c730050009c00000efc0000213d000000010060019000000efc0000c13d000000400050043f000000000743043600000c68064001980000000005670019000014ee0000613d000000000801034f000000008908043c0000000007970436000000000057004b000014ea0000c13d0000001f04400190000014720000613d000000000161034f0000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f0000000000150435000014720000013d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d000000c00110027000000c6601100197000500000001001d319321a70000040f0000086b03000039000000000203041a00000cde02200197000000c00110021000000cdf01100197000000000112019f000000000013041b31931f1d0000040f0000000003010019000400000001001d00000160011000390000000a020000290000000000210435000001400130003900000013020000290000000000210435000001200130003900000006020000290000000000210435000001000130003900000005020000290000000000210435000000e0013000390000000c020000290000000000210435000000c0013000390000000d020000290000000000210435000000a0013000390000000e02000029000000000021043500000080013000390000000f0200002900000000002104350000006001300039000000100200002900000000002104350000004001300039000000110200002900000000002104350000002001300039000000120200002900000000002104350000000b01000029000000000013043500000000030000310000000801000029000000090200002931931f290000040f0000000403000029000001800230003900000000001204350000000001030019319327c50000040f00000001010000390000006502000039000000000012041b00000000010004150000000702000029000016b30000013d00000d5701000041000000000010043f00000c7501000041000031950001043000000d2a01000041000000000010043f00000c7501000041000031950001043000000d0801000041000000000010044300000013010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b000016ac0000c13d000000400100043d000000640210003900000d27030000410000000000320435000000440210003900000d2803000041000000000032043500000024021000390000002d03000039000012400000013d000000400200043d001300000002001d00000c6c0100004100000000001204350000000401200039319326250000040f0000001302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f00003195000104300000000001030433000000440010008c00001e880000413d00000004013000390000000002010433000000000100041500000ced0020009c00001e880000213d000000200020008c00001e880000413d0000002403300039000000000403043300000c730040009c00001e880000213d000000000623001900000000023400190000001f03200039000000000063004b000000000400001900000cec0400804100000cec0330019700000cec05600197000000000753013f000000000053004b000000000300001900000cec0300404100000cec0070009c000000000304c019000000000003004b00001e880000c13d000000004302043400000c730030009c00000efc0000213d0000001f0230003900000ce4022001970000003f0220003900000ce605200197000000400200043d0000000005520019000000000025004b0000000007000039000000010700403900000c730050009c00000efc0000213d000000010070019000000efc0000c13d000000400050043f00000000053204360000000007340019000000000067004b00001e880000213d00000d58073001970000001f0630018f000000000054004b000018c80000813d000000000007004b000015bc0000613d00000000096400190000000008650019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000015b60000c13d000000000006004b000018de0000613d0000000008050019000018d40000013d00000000020000310000001201000029319320230000040f319321b20000040f001000000001001d000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000101041a000000000001004b000016dc0000c13d0000001001000029000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000000102000039000000000021041b0000001108000029000000600280008a0000000101000367000000000221034f000000200380008a000000000331034f000000c00480008a000000000441034f000000a00580008a000000000551034f000000800680008a000000000661034f000000000781034f000000400880008a000000000881034f000000000303043b001000000003001d000000000308043b000f00000003001d000000000202043b000b00000002001d000000000206043b000c00000002001d000000000205043b000d00000002001d000000000204043b000e00000002001d000000000207043b000a00000002001d00000c660020009c00001e880000213d00000011020000290000002002200039000000000321034f000000000303043b001100000003001d00000c660030009c00001e880000213d0000002003200039000000000331034f000000000403043b0000000003000031000000130530006a000000230550008a00000cec0650019700000cec07400197000000000867013f000000000067004b000000000600001900000cec06004041000000000054004b000000000500001900000cec0500804100000cec0080009c000000000605c019000001000520008a000000000551034f000001400720008a000000000771034f000001200220008a000000000221034f000000000202043b000800000002001d000000000207043b000900000002001d000000000205043b001300000002001d000000000006004b00001e880000c13d0000001204400029000000000241034f000000000202043b00000c730020009c00001e880000213d0000000005230049000000200640003900000cec0450019700000cec07600197000000000847013f000000000047004b000000000400001900000cec04004041000000000056004b000000000500001900000cec0500204100000cec0080009c000000000405c019000000000004004b00001e880000c13d0000001f0420003900000ce4044001970000003f0440003900000ce605400197000000400400043d0000000005540019000000000045004b0000000007000039000000010700403900000c730050009c00000efc0000213d000000010070019000000efc0000c13d000000400050043f00000000052404360000000007620019000000000037004b00001e880000213d000000000361034f00000d58062001980000001f0720018f00000000016500190000165b0000613d000000000803034f0000000009050019000000008a08043c0000000009a90436000000000019004b000016570000c13d000000000007004b000016680000613d000000000363034f0000000306700210000000000701043300000000076701cf000000000767022f000000000303043b0000010006600089000000000363022f00000000036301cf000000000373019f0000000000310435000000000125001900000000000104350000000001040433000000000001004b0000000002000019000016800000613d00000c660050009c00000c6605008041000000400250021000000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000201043b000000400100043d00000120031000390000000000230435000001000210003900000008030000290000000000320435000000e00210003900000009030000290000000000320435000000c00210003900000013030000290000000000320435000000a0021000390000001103000029000000000032043500000080021000390000000a03000029000000000032043500000060021000390000000b03000029000000000032043500000040021000390000000c03000029000000000032043500000020021000390000000d0300002900000000003204350000000e02000029000000000021043500000c660010009c00000c66010080410000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d2c011001c70000800d02000039000000030300003900000d2d040000410000000f050000290000001006000029000011160000013d00000d1a01000041000000000201041a00000d0c0220019700000013022001af000000000021041b00000000010004150000001102000029000000000112004900000000010000020000000001000019000031940001042e00000cfd01000041000000000010043f00000c7501000041000031950001043000000d0801000041000000000010044300000013010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b0000155f0000613d00000d1a01000041000000000201041a00000d0c0220019700000013022001af000000000021041b00000000010004150000001202000029000016b30000013d000000640210003900000d1d030000410000000000320435000000440210003900000d1e03000041000000000032043500000024021000390000002903000039000012400000013d00000d2b01000041000000000010043f00000c750100004100003195000104300000086901000039000000000201041a00000d0c022001970000001205000029000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d0e04000041319331840000040f000000010020019000001e880000613d000000110000006b000017090000c13d00000d1001000041000000000010043f00000c750100004100003195000104300000000901000029000001000110008a0000000101100367000000000101043b00000c690010009c000018f50000213d0000000002000411000000000021004b000003490000613d000012da0000013d00000011010000290000000001010433000000030010008c0000172e0000213d00000d0301000041000000000010043f00000c750100004100003195000104300000086a01000039000000000201041a00000d0c022001970000001105000029000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d0f04000041319331840000040f000000010020019000001e880000613d0000000f0000006b000001320000c13d000000000200041a00000d5b01200197000000000010041b000000400100043d0000000103000039000000000031043500000c660010009c00000c66010080410000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c6e011001c70000800d0200003900000c6f040000410000091e0000013d000000100200002900000c660020009c00000c6602008041000000400220021000000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f0000001202000029319331840000040f000000600310027000000c6603300198000017a60000c13d000f00600000003d0000000100200190000017ce0000613d000000400100043d0000002002000039000000000321043600000011020000290000000002020433000000000023043500000d58052001970000001f0420018f0000004003100039000000100030006b0000188d0000813d000000000005004b0000175a0000613d00000010074000290000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c000017540000c13d000000000004004b000018a40000613d0000000006030019000018990000013d000000000a960019000000000009004b000017670000613d000000000b070019000000000c06001900000000bd0b0434000000000cdc04360000000000ac004b000017630000c13d000000000008004b000017740000613d0000000007970019000000030880021000000000090a043300000000098901cf000000000989022f00000000070704330000010008800089000000000787022f00000000078701cf000000000797019f00000000007a04350000000006610019000000000006043500000064062000390000000000560435000000440520003900000000004504350000001f0110003900000d580110019700000204041000390000000000420435000002430110003900000d58011001970000000001120019000000000021004b0000000004000039000000010400403900000c730010009c00000efc0000213d000000010040019000000efc0000c13d000000400010043f00000c660030009c00000c66030080410000004001300210000000000202043300000c660020009c00000c66020080410000006002200210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000000020004103193318e0000040f000000600310027000000c6603300198000018650000c13d0000000100200190000001320000c13d000000400200043d001200000002001d00000d000100004100000000001204350000000401200039000000130200002931931fd10000040f0000001202000029000015700000013d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019000f00000005001d000000000054004b0000000005000039000000010500403900000c730040009c00000efc0000213d000000010050019000000efc0000c13d000000400040043f0000001f0430018f0000000f05000029000000000635043600000c68053001980000000003560019000017c00000613d000000000701034f000000007807043c0000000006860436000000000036004b000017bc0000c13d000000000004004b000017410000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000017410000013d00000d0101000041000000000010043f00000c75010000410000319500010430000000000a960019000000000009004b000017db0000613d000000000b070019000000000c06001900000000bd0b0434000000000cdc04360000000000ac004b000017d70000c13d000000000008004b000017e80000613d0000000007970019000000030880021000000000090a043300000000098901cf000000000989022f00000000070704330000010008800089000000000787022f00000000078701cf000000000797019f00000000007a0435000000000665001900000000000604350000000f060000290000000006060433000000600710003900000000006704350000000003030433000000800610003900000000003604350000001f0350003900000d5803300197000002200530003900000000005104350000025f0330003900000d58043001970000000003140019000000000043004b0000000004000039000000010400403900000c730030009c00000efc0000213d000000010040019000000efc0000c13d000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b00000012020000290000000002020433000000000002004b000018340000613d0000000003000019001300000003001d000000050230021000000011022000290000000002020433000000000021004b000018220000813d000000000010043f000000200020043f0000000001000414000018250000013d000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000001303000029000000010330003900000012020000290000000002020433000000000023004b000018180000413d0000000e0010006c000018ea0000c13d0000000001000415001100000001001d0000000c010000290000000001010433001200000001001d00000120011000390000000001010433001300000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000130200002900000c6602200197000000000012004b00000e8c0000413d0000000b010000290000000001010433001300000001001d000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000101041a000000020010008c000018fd0000c13d00000d3401000041000000000010043f00000c750100004100003195000104300000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019001300000005001d000000000054004b0000000005000039000000010500403900000c730040009c00000efc0000213d000000010050019000000efc0000c13d000000400040043f0000001f0430018f0000001305000029000000000635043600000c680530019800000000035600190000187f0000613d000000000701034f000000007807043c0000000006860436000000000036004b0000187b0000c13d000000000004004b0000179b0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000179b0000013d0000000006530019000000000005004b000018960000613d0000001007000029000000000803001900000000790704340000000008980436000000000068004b000018920000c13d000000000004004b000018a40000613d001000100050002d0000000304400210000000000506043300000000054501cf000000000545022f000000100700002900000000070704330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000001f0420003900000d580440019700000000023200190000000000020435000000400240003900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000ce8011001c70000800d02000039000000020300003900000d02040000410000001205000029319331840000040f000000010020019000001e880000613d00000001010000390000006502000039000000000012041b000000000100041500000013011000690000000001000002000000400100043d001300000001001d0000000f0200002931931fd10000040f00000f0b0000013d0000000008750019000000000007004b000018d10000613d0000000009040019000000000a050019000000009b090434000000000aba043600000000008a004b000018cd0000c13d000000000006004b000018de0000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f00000000004804350000000003350019000000000003043500000000030004150000000001310049000000000100000200000c6c01000041000000400300043d001300000003001d0000000000130435000000040130003931931fd10000040f0000156f0000013d00000d3701000041000000000010043f00000c75010000410000319500010430000000c00100043d00000c690010009c000018f50000213d0000000002000411000000000021004b00000a780000613d000012da0000013d00000d3201000041000000000010043f00000c7501000041000031950001043000000d3601000041000000000010043f00000c750100004100003195000104300000001301000029319320130000040f0000000204000039000000000041041b0000000c010000290000001202000029000000000300001931932b1e0000040f00000001030000390000000c01000029000000120200002931932be20000040f00000000010004150000001101100069000000000100000200000065010000390000000102000039000000000021041b0000000001000019000031940001042e00000d3a01000041000000000010043f00000c7501000041000031950001043000000d3b01000041000000000010043f00000c75010000410000319500010430000000400300043d001200000003001d00000d3c010000410000000000130435000000000100041000000c69011001970000000402300039000000000012043500000c660030009c00000c660100004100000000010340190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d3d011001c70000000d02000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000120b00002900000012057000290000193d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000019390000c13d000000000006004b0000194a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001a890000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000c730010009c00000efc0000213d000000010020019000000efc0000c13d000000400010043f000000200030008c00001e880000413d00000000010b0433000700000001001d000500000000001d001200000000001d001100000000001d000019640000013d00000012020000290000000102200039001200000002001d0000000a0020006c00000df70000813d00000010010000290000000001010433000000120010006c00001a070000a13d000000120100002900000005021002100000000901200029000f00000001001d0000000001010433000000000001004b0000195f0000613d000000110010002a000009940000413d0000001104100029001100000004001d000000070040006c00001a950000213d0000000c030000290000000003030433000000120030006c00001a070000a13d0000000802200029000b00000002001d00000000030204330000000002000415000e00000002001d000000400200043d00000044042000390000000000140435000000200120003900000d3e04000041000000000041043500000c6903300197000000240420003900000000003404350000004403000039000000000032043500000ceb0020009c00000efc0000213d0000008003200039000000400030043f00000c660010009c00000c66010080410000004001100210000000000202043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000d02000029319331840000040f000000600310027000000c6603300197000000200030008c000000200500003900000000050340190000002004500190000019a90000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000019a50000c13d0000001f05500190000019b60000613d000000000141034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000019c10000613d000000000003004b000019f30000613d000000000100043d00000000020004150000000e022000690000000002000002000000010010008c0000195f0000613d000019c40000013d00000000010004150000000e01100069000000000100000200000010010000290000000001010433000000120010006c00001a070000a13d0000000f010000290000000001010433000f00000001001d0000000d01000029000000000010043f0000087301000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d0000000c020000290000000002020433000000120020006c00001a070000a13d000000000101043b0000000b02000029000000000202043300000c6902200197000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000201041a0000000f0020002a000009940000413d0000000f02200029000000000021041b000500010000003d0000195f0000013d00000d080100004100000000001004430000000d010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000000020004150000000e022000690000000002000002000000000001004b0000195f0000c13d000019c40000013d00000d3f01000041000000000010043f0000003201000039000000040010043f00000d3d0100004100003195000104300000000001000415000b00000001001d00000cf6010000410000000000100443000000000100041200000004001004430000006001000039001200000001001d0000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c69011001970000000d0010006b00001a990000c13d00000d080100004100000000001004430000000d010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b00001e880000613d000000400300043d00000d4c01000041000000000013043500000004013000390000000402000029000000000021043500000c660030009c001200000003001d00000c660100004100000000010340190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d3d011001c70000000d02000029319331840000040f000000010020019000001af70000613d000000120100002900000c730010009c00000efc0000213d0000001201000029000000400010043f0000086a01000039000000000101041a001200000001001d00000c5a01000039000000000101041a00000d0802000041000000000020044300000c6901100197001100000001001d0000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b00001e880000613d000000120100002900000c6901100197000000400300043d00000d4d0200004100000000002304350000000402300039000000000012043500000c660030009c001200000003001d00000c660100004100000000010340190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d4e011001c70000800902000039000000040300002900000011040000290000000005000019319331840000040f000000010020019000001dc70000c13d00000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900001ed30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001a840000c13d00001ed30000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a900000c13d0000145c0000013d00000d4001000041000000000010043f00000c7501000041000031950001043000000cf601000041000000000010044300000000010004120000000400100443000000e0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000cf60200004100000000002004430000000002000412000000040020044300000c69011001970000000d0010006b00001b040000c13d00000100010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c690010019800001b670000c13d00000cf60100004100000000001004430000000001000412000000040010044300000140010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000201043b0000000001000415000e00000001001d000000400400043d000000440140003900000004030000290000000000310435000000200140003900000d450300004100000000003104350000004403000039000000000034043500000c69032001970000002402400039001100000003001d0000000000320435001000000004001d00000ceb0040009c00000efc0000213d00000010030000290000008002300039000000400020043f00000c660010009c00000c66010080410000004001100210000000000203043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000d02000029319331840000040f000000600310027000000c660430019800001d300000c13d000000800300003900001d580000013d00000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900001ed30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001aff0000c13d00001ed30000013d000000400100043d001100000001001d00000160010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d00000011040000290000002002400039000000000101043b000000000012043500000060014000390000000d030000290000000000310435000000400140003900000d410300004100000000003104350000006001000039000000000014043500000ceb0040009c00000efc0000213d00000011030000290000008001300039000000400010043f00000c660020009c00000c66020080410000004001200210000000000203043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000201043b0000086a01000039000000000101041a000000400300043d00000060043000390000000d05000029000000000054043500000c6901100197000000400430003900000000001404350000002001300039000000040400002900000000004104350000006004000039000000000043043500000ceb0030009c00000efc0000213d0000008005300039000000400050043f00000d4204000041001200000005001d0000000000450435000000a4043000390000004005000039000000000054043500000084043000390000000000240435000000c4043000390000000002030433000000000024043500000d58052001970000001f0420018f000000e403300039000000000031004b00001dce0000813d000000000005004b00001b630000613d00000000074100190000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c00001b5d0000c13d000000000004004b00001de40000613d000000000603001900001dda0000013d0000086a01000039000000000101041a000f00000001001d0000000001000415000a00000001001d00000cf601000041000000000010044300000000010004120000000400100443000000e0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b001200000001001d00000cf60100004100000000001004430000000001000412000000040010044300000100010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b0000000002000415000e00000002001d00000d4302000041000000400400043d000c00000004001d0000000000240435000000000200041000000c69022001970000000403400039000000000023043500000c69021001970000002401400039001100000002001d000000000021043500000c660040009c00000c660100004100000000010440190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f000000120200002900000c690220019700000d44011001c7001000000002001d319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0b0000290000000c0570002900001bb90000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00001bb50000c13d000000000006004b00001bc60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001e8a0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b0000000001000039000000010100403900000c730020009c00000efc0000213d000000010010019000000efc0000c13d000000400020043f000000200030008c00001e880000413d00000000010b0433000000040010002a000009940000413d0000000401100029000000200320003900000d45040000410000000000430435000000440320003900000000001304350000002401200039000000110300002900000000003104350000004401000039000000000012043500000ceb0020009c00000efc0000213d0000008001200039000000400010043f0000001201000029319330970000040f00000000010004150000000e01100069000000000100000200000d4601000041000000400200043d000e00000002001d000000000012043500000c660020009c00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c75011001c70000001102000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000e0b0000290000000e0570002900001c0c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00001c080000c13d000000000006004b00001c190000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001e960000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039001200000002001d00000c730020009c00000efc0000213d000000010010019000000efc0000c13d0000001201000029000000400010043f000000200030008c00001e880000413d00000000020b043300000c690020009c00001e880000213d00000d47010000410000001204000029000000000014043500000004014000390000001003000029000000000031043500000c660040009c00000c660100004100000000010440190000004001100210000000000300041400000c660030009c00000c6603008041000000c003300210000000000113019f00000d3d011001c7319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000120570002900001c4d0000613d000000000801034f0000001209000029000000008a08043c0000000009a90436000000000059004b00001c490000c13d000000000006004b00001c5a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001ea20000613d0000001f01400039000000600110018f000000120110002900000c730010009c00000efc0000213d000000400010043f000000200030008c00001e880000413d00000012010000290000000001010433000900000001001d00000cf60100004100000000001004430000000001000412000000040010044300000120010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d0000000f02000029000c0c690020019b000000000101043b000800000001001d000f00040000002d0000000f02000029000000090020006c00000009010000290000000001024019000e00000001001d000000080000006b00001cce0000613d00000d0801000041000000000010044300000011010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b00001e880000613d000000400200043d00000d4801000041001200000002001d000000000012043500000cf601000041000000000010044300000000010004120000000400100443000000c0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b0000001204000029000000c402400039000007d003000039000000000032043500000064024000390000001003000029000000000032043500000044024000390000000c03000029000000000032043500000004024000390000000e03000029000000000032043500000c660110019700000024024000390000000000120435000000a40140003900000000000104350000008401400039000000000001043500000c660040009c00000c660100004100000000010440190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d49011001c70000001102000029319331840000040f000000010020019000001eae0000613d000000120100002900000c730010009c00000efc0000213d0000001201000029000000400010043f00001d290000013d000000400200043d00000d4a01000041001200000002001d000000000012043500000cf601000041000000000010044300000000010004120000000400100443000000c0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000120400002900000064024000390000001003000029000000000032043500000044024000390000000c03000029000000000032043500000004024000390000000e03000029000000000032043500000c66011001970000002402400039000000000012043500000c660040009c00000c660100004100000000010440190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c6d011001c70000001102000029319331840000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000002006400190000000120560002900001d090000613d000000000701034f0000001208000029000000007907043c0000000008980436000000000058004b00001d050000c13d0000001f0740019000001d160000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000010020019000001ebb0000613d0000001f01400039000000600210018f0000001201200029000000000021004b0000000002000039000000010200403900000c730010009c00000efc0000213d000000010020019000000efc0000c13d000000400010043f000000200030008c00001e880000413d0000001201000029000000000101043300000c730010009c00001e880000213d0000000e02000029000f000f0020007300001c7b0000c13d00000000010004150000000a01100069000000000100000200001e1e0000013d0000001f0340003900000c67033001970000003f0330003900000c7203300197000000400500043d0000000003350019001200000005001d000000000053004b0000000005000039000000010500403900000c730030009c00000efc0000213d000000010050019000000efc0000c13d000000400030043f0000001f0540018f0000001203000029000000000343043600000c6806400198000000000463001900001d4b0000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000048004b00001d470000c13d000000000005004b00001d580000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000010020019000001d810000613d0000000001000415000000270110008a000f00050010021800000012010000290000000001010433000000000001004b00001d6d0000613d00000ced0010009c00001e880000213d000000200010008c00001e880000413d0000000001030433000000010010008c00001e880000213d0000000002000415000000260220008a000f000500200218000000000001004b00001d810000613d00000d080100004100000000001004430000000d010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b0000000f010000290000000501100270000000000100003f000000010100c03f00001d950000c13d000000400200043d000000200120003900000d45030000410000000000310435000000240120003900000011030000290000000000310435000000440100003900000000001204350000004401200039000000000001043500000ceb0020009c00000efc0000213d0000008001200039000000400010043f0000000d01000029319330970000040f0000000d010000290000001002000029319330970000040f00000000010004150000000e0110006900000000010000020000086a01000039000000000101041a001200000001001d00000d0801000041000000000010044300000011010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b00001e880000613d000000120100002900000c6901100197000000400400043d00000044024000390000000403000029000000000032043500000024024000390000000d03000029000000000032043500000d4b0200004100000000002404350000000402400039000000000012043500000c660040009c001200000004001d00000c660100004100000000010440190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d26011001c70000001102000029319331840000040f000000010020019000001ec70000613d000000120100002900000c730010009c00000efc0000213d0000001201000029000000400010043f00001e1e0000013d000000000001042f0000000006530019000000000005004b00001dd70000613d0000000007010019000000000803001900000000790704340000000008980436000000000068004b00001dd30000c13d000000000004004b00001de40000613d00000000015100190000000304400210000000000506043300000000054501cf000000000545022f00000000010104330000010004400089000000000141022f00000000014101cf000000000151019f00000000001604350000001f0120003900000d580110019700000000023200190000000000020435000000640110003900000c660010009c00000c66010080410000006001100210000000120200002900000c660020009c00000c66020080410000004002200210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000d2202000041319331840000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000120570002900001e070000613d000000000801034f0000001209000029000000008a08043c0000000009a90436000000000059004b00001e030000c13d000000000006004b00001e140000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001ee30000613d0000001f01400039000000600110018f000000120110002900000c730010009c00000efc0000213d000000400010043f000000200030008c00001e880000413d000000010100002900000c660610019700000000010004150000000b0110006900000000010000020000000001000411001200000001001d00000c6901100197000000400200043d000000200320003900000000001304350000000401000029000000000012043500000c660020009c00000c66020080410000004001200210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000cee011001c70000800d02000039000000040300003900000d4f0400004100000002050000290000000d07000029319331840000040f000000010020019000001e880000613d000000000100041500000003011000690000000001000002000000400100043d0000002004100039000001200200043d000000a00500043d000000e00300043d000001000600043d000000c00700043d000000800800043d000000c00900003900000000009404350000000000810435000000c00410003900000000080704330000000000840435000000e00410003900000c6906600197000000000008004b00001e580000613d00000000090000190000002007700039000000000a0704330000000004a404360000000109900039000000000089004b00001e520000413d00000c66073001970000000003140049000000600810003900000000003804350000004003100039000000000063043500000000060204330000000003640436000000000006004b00001e6a0000613d00000000040000190000002002200039000000000802043300000c690880019700000000038304360000000104400039000000000064004b00001e630000413d000000120200002900000c6902200197000000a0041000390000000000240435000000050000006b0000000002000039000000010200c03900000080041000390000000000240435000000000213004900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000800d02000039000000040300003900000d50040000410000001306000029319331840000040f0000000100200190000000a00000c13d000000000100001900003195000104300000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e910000c13d0000145c0000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e9d0000c13d0000145c0000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ea90000c13d0000145c0000013d00000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900001ed30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001eb60000c13d00001ed30000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ec20000c13d0000145c0000013d00000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900001ed30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001ecf0000c13d00000c6606600197000000000004004b00001ee10000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000060016002100000146a0000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001eea0000c13d0000145c0000013d00000c6902200197000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001efd0000613d000000000101043b000000000001042d000000000100001900003195000104300000001f0220003900000d58022001970000000001120019000000000021004b0000000002000039000000010200403900000c730010009c00001f0b0000213d000000010020019000001f0b0000c13d000000400010043f000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000400100043d00000ce50010009c00001f170000813d000000c002100039000000400020043f000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000400100043d00000d5c0010009c00001f230000813d000001a002100039000000400020043f000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000d5d0020009c00001f590000813d00000000040100190000001f0120003900000ce4011001970000003f0110003900000ce605100197000000400100043d0000000005510019000000000015004b0000000006000039000000010600403900000c730050009c00001f590000213d000000010060019000001f590000c13d000000400050043f00000000052104360000000006420019000000000036004b00001f5f0000213d00000d58062001980000001f0720018f0000000104400367000000000365001900001f490000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b00001f450000c13d000000000007004b00001f560000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000000001000019000031950001043000000ced0010009c00001f6f0000213d000000430010008c00001f6f0000a13d00000001020003670000000401200370000000000101043b00000c690010009c00001f6f0000213d0000002402200370000000000202043b00000c690020009c00001f6f0000213d000000000001042d000000000100001900003195000104300000000043010434000000000132043600000d58063001970000001f0530018f000000000014004b00001f870000813d000000000006004b00001f830000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00001f7d0000c13d000000000005004b00001f9d0000613d000000000701001900001f930000013d0000000007610019000000000006004b00001f900000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b00001f8c0000c13d000000000005004b00001f9d0000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000431001900000000000404350000001f0330003900000d58023001970000000001210019000000000001042d0000001f03100039000000000023004b000000000400001900000cec0400404100000cec0520019700000cec03300197000000000653013f000000000053004b000000000300001900000cec0300204100000cec0060009c000000000304c019000000000003004b00001fbb0000613d0000000103100367000000000303043b00000c730030009c00001fbb0000213d00000020011000390000000004310019000000000024004b00001fbb0000213d0000000002030019000000000001042d0000000001000019000031950001043000000ced0010009c00001fcf0000213d000000630010008c00001fcf0000a13d00000001030003670000000401300370000000000101043b00000c660010009c00001fcf0000213d0000002402300370000000000202043b00000c690020009c00001fcf0000213d0000004403300370000000000303043b00000c690030009c00001fcf0000213d000000000001042d00000000010000190000319500010430000000200300003900000000033104360000000042020434000000000023043500000d58062001970000001f0520018f0000004001100039000000000014004b00001fea0000813d000000000006004b00001fe60000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00001fe00000c13d000000000005004b000020000000613d000000000701001900001ff60000013d0000000007610019000000000006004b00001ff30000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b00001fef0000c13d000000000005004b000020000000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000412001900000000000404350000001f0220003900000d58022001970000000001120019000000000001042d000000400100043d00000d5e0010009c0000200d0000813d0000002002100039000000400020043f0000000000010435000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f0000000100200190000020210000613d000000000101043b000000000001042d000000000100001900003195000104300000000003010019000000000112004900000ced0010009c000020af0000213d0000017f0010008c000020af0000a13d000000400100043d00000d5f0010009c000020b10000813d0000018004100039000000400040043f0000000104000367000000000534034f000000000505043b00000000055104360000002006300039000000000664034f000000000606043b00000000006504350000004005300039000000000554034f000000000505043b000000400610003900000000005604350000006005300039000000000554034f000000000505043b000000600610003900000000005604350000008005300039000000000554034f000000000505043b00000080061000390000000000560435000000a005300039000000000554034f000000000505043b000000a0061000390000000000560435000000c005300039000000000554034f000000000505043b000000c0061000390000000000560435000000e005300039000000000554034f000000000505043b000000e00610003900000000005604350000010005300039000000000554034f0000010006100039000000000505043b00000000005604350000012005300039000000000654034f000000000606043b00000c660060009c000020af0000213d000001200710003900000000006704350000002005500039000000000654034f000000000606043b00000c660060009c000020af0000213d000001400710003900000000006704350000002005500039000000000554034f000000000505043b00000c730050009c000020af0000213d00000000063500190000001f03600039000000000023004b000000000500001900000cec0500804100000cec0330019700000cec07200197000000000873013f000000000073004b000000000300001900000cec0300404100000cec0080009c000000000305c019000000000003004b000020af0000c13d000000000364034f000000000303043b00000c730030009c000020b10000213d0000001f0530003900000ce4055001970000003f0550003900000ce607500197000000400500043d0000000007750019000000000057004b0000000008000039000000010800403900000c730070009c000020b10000213d0000000100800190000020b10000c13d0000002008600039000000400070043f00000000063504360000000007830019000000000027004b000020af0000213d000000000484034f00000d58073001980000001f0830018f00000000027600190000209d0000613d000000000904034f000000000a060019000000009b09043c000000000aba043600000000002a004b000020990000c13d000000000008004b000020aa0000613d000000000474034f0000000307800210000000000802043300000000087801cf000000000878022f000000000404043b0000010007700089000000000474022f00000000047401cf000000000484019f00000000004204350000000002360019000000000002043500000160021000390000000000520435000000000001042d0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000086c02000039000000000302041a000000000013004b000020bf0000a13d000000000020043f00000003011000c900000cf80110009a000000000001042d00000d3f01000041000000000010043f0000003201000039000000040010043f00000d3d01000041000031950001043000000c660110019700000c6602200197000000000112001900000d600010009c000020cb0000813d000000000001042d00000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d0100004100003195000104300002000000000002000000650e000039000000000f0e041a0000000200f0008c000021490000613d000200000001001d00010000000c001d000000020100003900000000001e041b0000086b01000039000000000e01041a00000cdd00e001980000215a0000c13d000000c00fe0027000000c660ff0019700000c6600f0009c0000215e0000613d00000d610ee00197000000c00cf0021000000d620cc0009a00000cdf0cc00197000000000cec019f0000000000c1041b000000400100043d00000d5c0010009c000021430000813d000001a00c1000390000004000c0043f00000c660bb00197000001600c1000390000000000bc043500000c660aa00197000001400b1000390000000000ab043500000c6609900197000001200a10003900000000009a043500000100091000390000000000f9043500000c6908800197000000e0091000390000000000890435000000c0081000390000000000780435000000a00710003900000000006704350000008006100039000000000056043500000c69044001970000006005100039000000000045043500000c69033001970000004004100039000000000034043500000c690220019700000020031000390000000000230435000000020200002900000c6902200197000000000021043500000c7300d0009c000021430000213d0000001f02d0003900000ce4022001970000003f0220003900000ce603200197000000400200043d0000000003320019000000000023004b0000000004000039000000010400403900000c730030009c000021430000213d0000000100400190000021430000c13d000000400030043f0000000003d20436000000010700002900000000057d0019000000000050007c000021640000213d00000d5805d001980000001f06d0018f000000010770036700000000045300190000212d0000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b000021290000c13d000000000006004b0000213a0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000003d30019000000000003043500000180031000390000000000230435319327c50000040f00000001010000390000006502000039000000000012041b000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000400100043d000000440210003900000d5603000041000000000032043500000024021000390000001f03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c7000031950001043000000d5701000041000000000010043f00000c7501000041000031950001043000000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d01000041000031950001043000000000010000190000319500010430000000400400043d00000054054000390000000000350435000000600310021000000020014000390000000000310435000000340340003900000000002304350000005402000039000000000024043500000d630040009c000021880000813d0000008002400039000000400020043f00000c660010009c00000c66010080410000004001100210000000000204043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f00000001002001900000218e0000613d000000000101043b000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000000010000190000319500010430000000000001004b000021930000613d000000000001042d000000400100043d000000640210003900000d12030000410000000000320435000000440210003900000d1303000041000000000032043500000024021000390000002b03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c660110019700000c660010009c000021ac0000613d0000000101100039000000000001042d00000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d0100004100003195000104300003000000000002000000400500043d00000020035000390000004002000039000100000003001d000000000023043500000060025000390000000043010434000000000032043500000000020404330000008003500039000000000023043500000040021000390000000002020433000000a003500039000000000023043500000060021000390000000002020433000000c003500039000000000023043500000080021000390000000002020433000000e0035000390000000000230435000000a002100039000000000202043300000100035000390000000000230435000000c002100039000000000202043300000120035000390000000000230435000000e00210003900000000020204330000014003500039000000000023043500000100021000390000000002020433000001600350003900000000002304350000012002100039000000000202043300000c6602200197000001800350003900000000002304350000014002100039000000000202043300000c6602200197000001a003500039000000000023043500000160011000390000000001010433000001c00250003900000180030000390000000000320435000001e0035000390000000029010434000000000093043500000d58049001970000001f0390018f000300000005001d0000020001500039000000000012004b000022020000813d000000000004004b000021fe0000613d00000000063200190000000005310019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c000021f80000c13d000000000003004b000022180000613d00000000050100190000220e0000013d0000000005410019000000000004004b0000220b0000613d0000000006020019000000000701001900000000680604340000000007870436000000000057004b000022070000c13d000000000003004b000022180000613d00000000024200190000000303300210000000000405043300000000043401cf000000000434022f00000000020204330000010003300089000000000232022f00000000023201cf000000000242019f00000000002504350000000001190019000000000001043500000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039000200000009001d319331890000040f00000001002001900000224f0000613d000000000101043b00000003030000290000004002300039000000000012043500000002010000290000001f0110003900000d5801100197000001e00210003900000000002304350000021f0110003900000d58021001970000000001320019000000000021004b0000000002000039000000010200403900000c730010009c000022500000213d0000000100200190000022500000c13d000000400010043f000000010100002900000c660010009c00000c66010080410000004001100210000000000203043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f0000000100200190000022560000613d000000000101043b000000000001042d000000000001042f00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000000100001900003195000104300000006501000039000000000201041a000000020020008c0000225f0000613d0000000202000039000000000021041b000000000001042d000000400100043d000000440210003900000d5603000041000000000032043500000024021000390000001f03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c70000319500010430000c00000000000200000d160960019700070d140060019c00000d15060000410000000006006019000000000696019f000800000006001d000000000960c08900000d640090009c000024040000813d000b00000007001d000a00000003001d000300000002001d000400000001001d000500000008001d000600000005001d000c00000004001d00000d650040009c000024080000813d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f0000000100200190000023fb0000613d0000000b0200002900020c660020019b000000000101043b000000020110006c000b00000001001d000023f50000413d00000cf60100004100000000001004430000000001000412000000040010044300000080010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000023fb0000613d000000000101043b00000c66011001970000000b0010006b0000240c0000213d0000086b01000039000000000201041a000000c00320027000000c6603300197000b00000003001d00000c660030009c000023f50000613d00000cde022001970000000b03000029000000c00330021000000d620330009a00000cdf03300197000000000223019f000000000021041b00000cf6010000410000000000100443000000000100041200000004001004430000006001000039000900000001001d0000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000023fb0000613d0000000a02000029000a0c690020019b000000000101043b00000c69031001970000000a0030006b000022fb0000c13d0000000001000416000000000001004b000022fb0000613d0000000c0010006c0000243f0000c13d00000d08010000410000000000100443000900000003001d0000000400300443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000023fb0000613d000000000101043b000000000001004b0000000c03000029000023fc0000613d000000400200043d00000d6701000041000000000012043500000c660020009c000100000002001d00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d68011001c7000080090200003900000009040000290000000005000019319331840000040f0000000100200190000024430000613d000000010100002900000c730010009c000023fe0000213d000000400010043f0000000c050000290000237c0000013d000000400100043d00000064021000390000000c030000290000000000320435000000000200041000000c690220019700000044031000390000000000230435000000200210003900000d69030000410000000000320435000000000300041100000c6903300197000000240410003900000000003404350000006403000039000000000031043500000d6a0010009c000023fe0000813d000000a005100039000000400050043f00000d0d0050009c000023fe0000213d000000e003100039000000400030043f00000020030000390000000000350435000000c00310003900000d6b04000041000000000043043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000a02000029000100000005001d319331840000040f000000600310027000000c66033001980000008009000039000023550000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019000900000005001d000000000054004b0000000005000039000000010500403900000c730040009c000023fe0000213d0000000100500190000023fe0000c13d000000400040043f0000001f0430018f0000000905000029000000000935043600000c68053001980000000003590019000023480000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b000023440000c13d000000000004004b000023550000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000090100002900000000010104330000000100200190000024100000613d000000000001004b0000000c05000029000023730000c13d000100000009001d00000d080100004100000000001004430000000a010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000023fb0000613d000000000101043b000000000001004b000024630000613d00000009010000290000000001010433000000000001004b0000000c0500002900000001090000290000237c0000613d00000ced0010009c000023fc0000213d0000001f0010008c000023fc0000a13d0000000001090433000000010010008c000023fc0000213d000000000001004b000024230000613d0000000001000415000000070000006b000023840000613d000000080200002900000ced0020009c000023840000213d000000080000006b000023f50000c13d000000080200002900000d6e0320009900000000025300a9000000000005004b0000238c0000613d00000000045200d9000000000043004b000023f50000c13d000000000300041500000000013100490000000001000002000000400100043d000001200310003900000140040000390000000000430435000000030300002900000c6903300197000000e0041000390000000000340435000000a00310003900000c6604000041000000000043043500000080031000390000000204000029000000000043043500000d6e0220012a00000060031000390000000000230435000000400210003900000000005204350000000a02000029000000000221043600000100031000390000000000030435000000c003100039000000000003043500000000000204350000014003100039000000050200002900000000520204340000000000230435000000040300002900000c690730019700000d58082001970000001f0620018f0000016004100039000000000045004b000023c40000813d000000000008004b000023c00000613d000000000a6500190000000009640019000000200990008a000000200aa0008a000000000b890019000000000c8a0019000000000c0c04330000000000cb0435000000200880008c000023ba0000c13d000000000006004b000023da0000613d0000000009040019000023d00000013d0000000009840019000000000008004b000023cd0000613d000000000a050019000000000b04001900000000ac0a0434000000000bcb043600000000009b004b000023c90000c13d000000000006004b000023da0000613d00000000058500190000000306600210000000000809043300000000086801cf000000000868022f00000000050504330000010006600089000000000565022f00000000056501cf000000000585019f00000000005904350000001f0520003900000d580350019700000000024200190000000000020435000001600230003900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000ce8011001c70000800d02000039000000040300003900000d6f0400004100000006050000290000000b06000029319331840000040f0000000100200190000023fc0000613d000000000001042d00000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d010000410000319500010430000000000001042f0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000d7301000041000000000010043f00000c7501000041000031950001043000000d7201000041000000000010043f00000c7501000041000031950001043000000d7101000041000000000010043f00000c75010000410000319500010430000000000001004b000024370000c13d000000400200043d000c00000002001d00000c6c0100004100000000001204350000000401200039000000010200002931931fd10000040f0000000c02000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f0000319500010430000000400100043d000000640210003900000d6c030000410000000000320435000000440210003900000d6d03000041000000000032043500000024021000390000002a03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c660090009c00000c6609008041000000400290021000000c660010009c00000c66010080410000006001100210000000000121019f000031950001043000000d6601000041000000000010043f00000c7501000041000031950001043000000060061002700000001f0460018f00000c6805600198000000400200043d00000000035200190000244f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b0000244b0000c13d00000c6606600197000000000004004b0000245d0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c700003195000104300003000000000002000300000001001d00000cf60100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000024fc0000613d000000000101043b00000c6902100197000000030100002900000c6901100197000300000002001d000000000021004b000024d60000c13d00000d7401000041000000000010044300000000010004100000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800a02000039319331890000040f0000000100200190000024fc0000613d000000000101043b000000000001004b000024d60000613d00000d7401000041000000000010044300000000010004100000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800a02000039319331890000040f0000000100200190000024fc0000613d000000000101043b000200000001001d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000024fc0000613d000000000101043b000000000001004b000024fd0000613d000000400200043d00000d6701000041000000000012043500000c660020009c000100000002001d00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f0000000203000029000000000003004b000024d70000613d00000d68011001c7000080090200003900000003040000290000000005000019319331840000040f0000000100200190000024dc0000613d000000010100002900000d5d0010009c000024ff0000813d000000400010043f000000000001042d00000c75011001c70000000302000029319331840000040f0000000100200190000024d20000c13d00000060061002700000001f0460018f00000c6805600198000000400200043d0000000003520019000024e80000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000024e40000c13d00000c6606600197000000000004004b000024f60000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000000000001042f0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300012000000000002000d00000002001d001200000001001d0000000021010434000f00000002001d001000000001001d0000012001100039000e00000001001d0000000001010433001100000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f0000000100200190000026160000613d000000000101043b000000110200002900000c6602200197000000000012004b000026170000413d0000000f010000290000000001010433001100000001001d000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f0000000100200190000026140000613d000000000101043b000000000101041a000f00000001001d0000001101000029000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f0000000f03000029000000010030008c00000000030000390000000103006039000f00000003001d0000000100200190000026140000613d00000872030000390000001102000029000000000101043b000000000101041a000000020010008c0000261b0000613d000000000020043f000000200030043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f0000000100200190000026140000613d000000000101043b0000000202000039000000000021041b000000100200002900000020012000390000000001010433000600000001001d0000000001020433000800000001001d00000040012000390000000001010433000900000001001d00000100012000390000000001010433000400000001001d000000e0012000390000000001010433000300000001001d0000001201000029000000a0011000390000000001010433000a00000001001d000000c0012000390000000001010433000b00000001001d000000a0012000390000000001010433000c00000001001d00000080012000390000000001010433001100000001001d00000060012000390000000001010433000700000001001d00000140012000390000000001010433000500000001001d0000000e010000290000000001010433000e00000001001d000001600120003900000000010104330000000012010434000000000002004b000025940000613d00000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f0000000100200190000026140000613d000000000901043b000025950000013d0000000009000019000000120200002900000060012000390000000008010433000000800120003900000000010104330000000012010434000000000002004b0000260a0000613d000100000008001d000200000009001d00000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f0000000100200190000026140000613d000000000101043b00000002090000290000000108000029000000400200043d00000d630020009c0000260e0000813d000000050300002900000c66053001970000000e0300002900000c66063001970000001203000029000000400330003900000000070304330000008003200039000000400030043f00000060032000390000000f04000029000000000043043500000040042000390000000000740435000000200720003900000000001704350000000000820435000000400100043d00000140081000390000000000980435000001200810003900000006090000290000000000980435000001000810003900000008090000290000000000980435000000e00810003900000009090000290000000000980435000000c0081000390000000000580435000000a005100039000000000065043500000080051000390000000a06000029000000000065043500000060051000390000000b06000029000000000065043500000040051000390000000c060000290000000000650435000000200510003900000011060000290000000000650435000000070500002900000000005104350000000002020433000001600510003900000000002504350000000002070433000001800510003900000000002504350000000002040433000001a00410003900000000002404350000000002030433000000020020008c0000261f0000213d000001c003100039000000000023043500000c660010009c00000c66010080410000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d75011001c70000800d02000039000000040300003900000d7604000041000000030500002900000004060000290000000d07000029319331840000040f0000000100200190000026140000613d00000012010000290000001002000029000000000300001931932be20000040f000000000001042d0000000001000019000000400200043d00000d630020009c000025b60000413d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000000010000190000319500010430000000000001042f00000d3501000041000000000010043f00000c7501000041000031950001043000000d3401000041000000000010043f00000c7501000041000031950001043000000d3f01000041000000000010043f0000002101000039000000040010043f00000d3d010000410000319500010430000000600210003900000d77030000410000000000320435000000400210003900000d7803000041000000000032043500000020021000390000002e030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0006000000000002000500000007001d000100000005001d000200000004001d000600000003001d000300000002001d000400000001001d000000200160003900000c660010009c00000c66010080410000004001100210000000000206043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f00000001002001900000279b0000613d000000000201043b000000400100043d000000c0031000390000000000230435000000a00210003900000001030000290000000000320435000000800210003900000002030000290000000000320435000000600210003900000006030000290000000000320435000000400210003900000003030000290000000000320435000000200210003900000d07030000410000000000320435000000c003000039000000000031043500000d790010009c0000279d0000813d000000e003100039000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000000006050000290000279b0000613d000000000101043b000300000001001d0000047f01000039000000000201041a0000048001000039000000000301041a000000400100043d000000800410003900000000005404350000006004100039000000000034043500000040031000390000000000230435000000200210003900000d7a0300004100000000003204350000008003000039000600000003001d000000000031043500000d7b0010009c0000279d0000213d000000a003100039000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f00000001002001900000279b0000613d000000000101043b000000400200043d00000022032000390000000304000029000000000043043500000d7c0300004100000000003204350000000203200039000000000013043500000c660020009c00000c66020080410000004001200210000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000d7d011001c70000801002000039319331890000040f00000001002001900000279b0000613d000000000601043b000000050400002900000000c1040434000000410010008c000026c40000c13d00000040014000390000000001010433000000000200041500000d7e0010009c000027550000413d000000000100041500000000011200490000000001000002000000400100043d000000440210003900000040030000390000000000320435000000200210003900000d800300004100000000003204350000002403100039000000000063043500000064031000390000000004040433000000000043043500000d58074001970000001f0640018f000000840510003900000000005c004b000026e50000813d000000000007004b000026e10000613d00000000096c00190000000008650019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000026db0000c13d000000000006004b000026fb0000613d0000000008050019000026f10000013d0000000008750019000000000007004b000026ee0000613d00000000090c0019000000000a050019000000009b090434000000000aba043600000000008a004b000026ea0000c13d000000000006004b000026fb0000613d000000000c7c00190000000306600210000000000708043300000000076701cf000000000767022f00000000090c04330000010006600089000000000969022f00000000066901cf000000000676019f0000000000680435000000000554001900000000000504350000001f0440003900000d580440019700000064054000390000000000510435000000a30440003900000d58044001970000000003140019000000000043004b0000000004000039000000010400403900000c730030009c0000279d0000213d00000001004001900000279d0000c13d000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000402000029319331890000040f000000600310027000000c6604300198000027460000613d0000001f0340003900000c67033001970000003f0330003900000c7205300197000000400300043d0000000005530019000000000035004b0000000006000039000000010600403900000c730050009c0000279d0000213d00000001006001900000279d0000c13d000000400050043f0000001f0540018f000000000a43043600000c680640019800000000046a0019000027370000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000027330000c13d00060000000a001d000000000005004b000027470000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000027470000013d00000060030000390000000100200190000027a30000613d0000000001030433000000200010008c000027a30000413d00000ced0010009c0000279b0000213d000000200010008c0000279b0000413d0000000601000029000000000101043300000d800010009c000027a30000c13d000000000001042d000100000002001d0000006002400039000000000202043300030000000c001d00000000030c0433000000400400043d0000006005400039000000000015043500000040014000390000000000310435000000f80120027000000020024000390000000000120435000200000006001d0000000000640435000000000000043f00000c660040009c00000c66040080410000004001400210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d7f011001c70000000102000039319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0540018f00000020044001900000277e0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000277a0000c13d000000000005004b0000278b0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000000100200190000000030c000029000027a70000613d000000000100043d00000000020004150000000102200069000000000200000200000c6900100198000000000100601900000005040000290000000206000029000026c40000613d000000040110014f00000c6900100198000027540000613d000026c40000013d0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000d8101000041000000000010043f00000c750100004100003195000104300000001f0530018f00000c6806300198000000400200043d0000000004620019000027b20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027ae0000c13d000000000005004b000027bf0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000c0000000000020000000032010434000700000003001d00000d310020009c000029820000813d000c00000001001d0000012001100039000600000001001d0000000001010433000b00000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f0000000100200190000029750000613d0000000b0200002900000c6602200197000000000101043b000a00000001001d000b0000002100530000297e0000413d00000cf6010000410000000000100443000000000100041200000004001004430000008001000039000800000001001d0000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000029750000613d000000000101043b00000c66011001970000000b0010006b0000297e0000213d0000000c010000290000014001100039000500000001001d0000000001010433000b00000001001d00000cf601000041000000000010044300000000010004120000000400100443000000a0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000029750000613d000000000101043b00000c66011001970000000a05000029000000000051001a0000000c03000029000029bd0000413d0000000b0200002900000c66022001970000000001510019000000000012004b000029860000213d0000016001300039000000000101043300000c6602100198000000e004300039000400000004001d000028270000613d00000d820020009c0000281f0000813d00000c6601500197000000000212001900000c660020009c000029bd0000213d000300000002001d0000000001040433000000000001004b000028280000c13d00000d8301000041000000000010043f00000c75010000410000319500010430000300000000001d0000004001300039000a00000001001d0000000001010433000900000001001d00000cf6010000410000000000100443000000000100041200000004001004430000006001000039000b00000001001d0000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000029750000613d0000000002000416000000000101043b00000c69011001970000000903000029000000000013004b000028740000c13d000000000002004b0000000c01000029000028770000613d0000008001100039000200000001001d0000000001010433000000000012004b0000298a0000c13d00000d080100004100000000001004430000000400300443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000029750000613d0000000904000029000000000101043b000000000001004b000029760000613d000000400200043d00000d6701000041000000000012043500000c660020009c000b00000002001d00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d68011001c7000080090200003900000000030004160000000005000019319331840000040f0000000100200190000029c30000613d0000000b0f00002900000c7300f0009c0000000c0c000029000029780000213d0000004000f0043f000028fe0000013d000000000002004b0000000c010000290000298a0000c13d0000000a02000029000000000202043300000c690020009c000029820000213d0000008001100039000200000001001d0000000004010433000000400100043d00000064031000390000000000430435000000000300041000000c690430019700000044031000390000000000430435000000200510003900000d69030000410000000000350435000000000300041100000c6903300197000000240410003900000000003404350000006403000039000000000031043500000d6a0010009c000029780000813d000000a006100039000000400060043f00000d0d0060009c000029780000213d000000e003100039000000400030043f00000020030000390000000000360435000000c00310003900000d6b04000041000000000043043500000c660050009c00000c66050080410000004003500210000000000101043300000c660010009c00000c66010080410000006001100210000000000131019f000000000300041400000c660030009c00000c6603008041000000c003300210000000000131019f000900000002001d000100000006001d319331840000040f000000090a000029000000600310027000000c6603300198000028d80000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019000b00000005001d000000000054004b0000000005000039000000010500403900000c730040009c000029780000213d0000000100500190000029780000c13d000000400040043f0000001f0430018f0000000b05000029000000000935043600000c68053001980000000003590019000028ca0000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b000028c60000c13d000800000009001d000000000004004b000028d80000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000b01000029000000000101043300000001002001900000298e0000613d000000000001004b0000000c0c000029000028f30000c13d00000d080100004100000000001004430000000400a00443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000029750000613d000000000101043b000000000001004b000029e30000613d0000000b010000290000000001010433000000000001004b0000000c0c000029000029730000613d00000ced0010009c000029760000213d0000001f0010008c000029760000a13d00000008010000290000000001010433000000010010008c000029760000213d000000400f00043d000000000001004b000029a10000613d0000010001c000390000000006010433000000c001c0003900000000050104330000018001c0003900000000010104330000000a0200002900000000020204330000006003c00039000000000303043300000002040000290000000004040433000000a007c000390000000008070433000000060700002900000000090704330000000507000029000000000a0704330000000707000029000000000b07043300000000070c0433000000040c000029000000000c0c0433000001200df00039000001400e0000390000000000ed0435000001000df000390000000000cd0435000000e00cf000390000000000bc0435000000c00bf00039000000030c0000290000000000cb043500000c660aa00197000000a00bf000390000000000ab043500000c6609900197000000800af0003900000000009a04350000006009f0003900000000008904350000004008f0003900000000004804350000002004f00039000000000034043500000000002f04350000014002f000390000000041010434000000000012043500000d58091001970000001f0810018f0000016003f00039000000000034004b000029440000813d000000000009004b000029400000613d000000000b840019000000000a830019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c0000293a0000c13d000000000008004b0000295a0000613d000000000a030019000029500000013d000000000a930019000000000009004b0000294d0000613d000000000b040019000000000c03001900000000bd0b0434000000000cdc04360000000000ac004b000029490000c13d000000000008004b0000295a0000613d0000000004940019000000030880021000000000090a043300000000098901cf000000000989022f00000000040404330000010008800089000000000484022f00000000048401cf000000000494019f00000000004a04350000001f0410003900000d580240019700000000013100190000000000010435000001600120003900000c660010009c00000c6601008041000000600110021000000c6600f0009c00000c660f0080410000004002f00210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000ce8011001c70000800d02000039000000040300003900000d6f04000041319331840000040f0000000100200190000029760000613d000000000001042d000000400f00043d000028fe0000013d000000000001042f0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000d7101000041000000000010043f00000c7501000041000031950001043000000d3201000041000000000010043f00000c7501000041000031950001043000000d8401000041000000000010043f00000c7501000041000031950001043000000d6601000041000000000010043f00000c75010000410000319500010430000000000001004b000029b40000c13d000000400200043d000c00000002001d00000c6c0100004100000000001204350000000401200039000000010200002931931fd10000040f0000000c02000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f00003195000104300000006401f0003900000d6c0200004100000000002104350000004401f0003900000d6d0200004100000000002104350000002401f000390000002a02000039000000000021043500000c6c0100004100000000001f04350000000401f000390000002002000039000000000021043500000c6600f0009c00000c660f0080410000004001f0021000000c6d011001c70000319500010430000000080200002900000c660020009c00000c6602008041000000400220021000000c660010009c00000c66010080410000006001100210000000000121019f000031950001043000000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d01000041000031950001043000000060061002700000001f0460018f00000c6805600198000000400200043d0000000003520019000029cf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000029cb0000c13d00000c6606600197000000000004004b000029dd0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c70000319500010430000000000100041a0000ff0000100190000029f80000613d000000000001042d000000400100043d000000640210003900000d12030000410000000000320435000000440210003900000d1303000041000000000032043500000024021000390000002b03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c70000319500010430000000000100041a0000ff000010019000002a130000613d00000001010000390000006502000039000000000012041b000000000001042d000000400100043d000000640210003900000d12030000410000000000320435000000440210003900000d1303000041000000000032043500000024021000390000002b03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c690510019800002a3a0000613d0000086901000039000000000201041a00000d0c02200197000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d0e04000041319331840000040f000000010020019000002a3e0000613d000000000001042d00000d1101000041000000000010043f00000c750100004100003195000104300000000001000019000031950001043000000c690510019800002a530000613d0000086a01000039000000000201041a00000d0c02200197000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d0f04000041319331840000040f000000010020019000002a570000613d000000000001042d00000d1001000041000000000010043f00000c75010000410000319500010430000000000100001900003195000104300003000000000002000000400400043d00000044054000390000000000350435000000200340003900000d3e05000041000000000053043500000c6902200197000000240540003900000000002504350000004402000039000000000024043500000d630040009c00002ad50000813d0000008005400039000000400050043f00000d0d0050009c00002ad50000213d00000c6902100197000000c001400039000000400010043f0000002001000039000200000005001d0000000000150435000000a00140003900000d6b05000041000000000051043500000c660030009c00000c66030080410000004001300210000000000304043300000c660030009c00000c66030080410000006003300210000000000113019f000000000300041400000c660030009c00000c6603008041000000c003300210000000000131019f000300000002001d319331840000040f000000600310027000000c660330019800002aad0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400a00043d00000000044a00190000000000a4004b0000000005000039000000010500403900000c730040009c00002ad50000213d000000010050019000002ad50000c13d000000400040043f0000001f0430018f00000000093a043600000c6805300198000000000359001900002a9f0000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b00002a9b0000c13d000000000004004b00002aaf0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500002aaf0000013d000000600a000039000000800900003900000000010a0433000000010020019000002add0000613d000000000001004b00002acb0000c13d00020000000a001d000100000009001d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002b0c0000613d000000000101043b000000000001004b000000020100002900002b0d0000613d0000000001010433000000000001004b000000010900002900002ad40000613d00000ced0010009c00002adb0000213d0000001f0010008c00002adb0000a13d0000000001090433000000010010008c00002adb0000213d000000000001004b00002af00000613d000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000000010000190000319500010430000000000001004b00002b040000c13d000000400200043d000300000002001d00000c6c0100004100000000001204350000000401200039000000020200002931931fd10000040f0000000302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f0000319500010430000000400100043d000000640210003900000d6c030000410000000000320435000000440210003900000d6d03000041000000000032043500000024021000390000002a03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c660090009c00000c6609008041000000400290021000000c660010009c00000c66010080410000006001100210000000000121019f0000319500010430000000000001042f000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c700003195000104300011000000000002001000000004001d000500000003001d00000000040100190000000013020434000f00000003001d0000000001010433000800000001001d00000040012000390000000001010433000a00000001001d00000100012000390000000001010433000400000001001d000000e0012000390000000001010433000300000001001d000000a0014000390000000001010433000b00000001001d000000c0012000390000000001010433000c00000001001d000000a0012000390000000001010433000d00000001001d00000080012000390000000001010433000e00000001001d00000060012000390000000001010433000900000001001d00000140012000390000000001010433000700000001001d00000120012000390000000001010433000600000001001d000001600120003900000000010104330000000012010434000000000002004b001100000004001d00002b5e0000613d00000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000002bda0000613d000000000901043b000000110400002900002b5f0000013d000000000900001900000060014000390000000005010433000000800140003900000000010104330000000012010434000000000002004b00002bd00000613d000100000005001d000200000009001d00000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000002bda0000613d000000000201043b000000110400002900000002090000290000000105000029000000400100043d00000d630010009c00002bd40000813d000000400340003900000000040304330000008003100039000000400030043f00000040031000390000000000430435000000000451043600000000002404350000001002000029000000030020008c00002bdc0000813d000000070500002900000c6606500197000000060500002900000c660750019700000060051000390000000000250435000000400200043d0000014008200039000000000098043500000120082000390000000809000029000000000098043500000100082000390000000f090000290000000000980435000000e0082000390000000a090000290000000000980435000000c0082000390000000000680435000000a006200039000000000076043500000080062000390000000b07000029000000000076043500000060062000390000000c07000029000000000076043500000040062000390000000d07000029000000000076043500000020062000390000000e070000290000000000760435000000090600002900000000006204350000000001010433000001600620003900000000001604350000000001040433000001800420003900000000001404350000000001030433000001a00320003900000000001304350000000001050433000000020010008c00002bdc0000213d000001c003200039000000000013043500000c660020009c00000c66020080410000004001200210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d75011001c70000800d02000039000000040300003900000d7604000041000000030500002900000004060000290000000507000029319331840000040f000000010020019000002bda0000613d000000000001042d0000000002000019000000400100043d00000d630010009c00002b800000413d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000000001000019000031950001043000000d3f01000041000000000010043f0000002101000039000000040010043f00000d3d0100004100003195000104300008000000000002000400000003001d00000080022000390000000002020433000700000002001d00000d310020009c00002f570000813d00000060021000390000000002020433000800000002001d00000c690020009c00002f570000213d000500000001001d00000040011000390000000001010433000600000001001d00000cf60100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000002f4e0000613d000000000101043b00000c6901100197000000070010006b00002c5f0000c13d000000040000006b00002d5d0000c13d000000400100043d000000640210003900000006030000290000000000320435000000000200041000000c690220019700000044031000390000000000230435000000200210003900000d69030000410000000000320435000000000300041100000c6903300197000000240410003900000000003404350000006403000039000000000031043500000d7b0010009c00002f4f0000213d000000a004100039000000400040043f00000d0d0040009c00002f4f0000213d000000e003100039000000400030043f0000002003000039000400000004001d0000000000340435000000c00310003900000d6b04000041000000000043043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000702000029319331840000040f000000600310027000000c660330019800002d360000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400a00043d00000000044a00190000000000a4004b0000000005000039000000010500403900000c730040009c00002f4f0000213d000000010050019000002f4f0000c13d000000400040043f0000001f0430018f00000000093a043600000c6805300198000000000359001900002c510000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b00002c4d0000c13d000000000004004b00002d380000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500002d380000013d000000400100043d000000440310003900000024041000390000002002100039000000040000006b00002cda0000613d00000d3e05000041000000000052043500000008050000290000000000540435000000060400002900000000004304350000004403000039000000000031043500000d630010009c00002f4f0000813d0000008004100039000000400040043f00000d0d0040009c00002f4f0000213d000000c003100039000000400030043f0000002003000039000400000004001d0000000000340435000000a00310003900000d6b04000041000000000043043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000702000029319331840000040f000000600310027000000c660330019800002d2d0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d00000000044500190000000009050019000000000054004b0000000005000039000000010500403900000c730040009c00002f4f0000213d000000010050019000002f4f0000c13d000000400040043f0000001f0430018f000000000a39043600000c680530019800000000035a001900002ca70000613d000000000601034f00000000070a0019000000006806043c0000000007870436000000000037004b00002ca30000c13d000000000004004b00002cb40000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000005030000290000000001090433000000010020019000002d330000613d000000000001004b00002cd20000c13d00030000000a001d000400000009001d00000d0801000041000000000010044300000007010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b00002f7b0000613d00000004010000290000000001010433000000000001004b0000000503000029000000030a00002900002ecb0000613d00000ced0010009c00002f550000213d0000001f0010008c00002f550000a13d00000000010a0433000000010010008c00002e820000a13d00002f550000013d00000d69050000410000000000520435000000000500041100000c69055001970000000000540435000000080400002900000000004304350000006403100039000000060400002900000000004304350000006403000039000000000031043500000d7b0010009c00002f4f0000213d000000a004100039000000400040043f00000d0d0040009c00002f4f0000213d000000e003100039000000400030043f0000002003000039000400000004001d0000000000340435000000c00310003900000d6b04000041000000000043043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000702000029319331840000040f000000600310027000000c660330019800002e5b0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400a00043d00000000044a00190000000000a4004b0000000005000039000000010500403900000c730040009c00002f4f0000213d000000010050019000002f4f0000c13d000000400040043f0000001f0430018f00000000093a043600000c6805300198000000000359001900002d1f0000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b00002d1b0000c13d000000000004004b00002e5d0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500002e5d0000013d000000800a000039000000050300002900000060090000390000000001090433000000010020019000002cb80000c13d000000000001004b00002f6a0000613d00002f7f0000013d000000600a000039000000800900003900000000010a0433000000010020019000002f680000613d000000000001004b00002d540000c13d00040000000a001d000300000009001d00000d0801000041000000000010044300000007010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b000000040100002900002f7b0000613d0000000001010433000000000001004b000000030900002900002d5d0000613d00000ced0010009c00002f550000213d000000200010008c00002f550000413d0000000001090433000000010010008c00002f550000213d000000000001004b00002e840000613d0000000001000415000400000001001d00000d0801000041000000000010044300000008010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b00000cf60200004100000000002004430000000002000412000000040020044300000060020000390000002400200443000000000001004b00002dfa0000613d000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000002f4e0000613d000000000301043b000000400100043d000000440210003900000006040000290000000000420435000000200610003900000d3e0400004100000000004604350000002404100039000000080500002900000000005404350000004404000039000000000041043500000ceb0010009c00002f4f0000213d0000008004100039000000400040043f00000d0d0040009c00002f4f0000213d00000c6902300197000000c003100039000000400030043f0000002003000039000200000004001d0000000000340435000000a00310003900000d6b04000041000000000043043500000c660060009c00000c66060080410000004003600210000000000101043300000c660010009c00000c66010080410000006001100210000000000131019f000000000300041400000c660030009c00000c6603008041000000c003300210000000000131019f000300000002001d319331840000040f000000600310027000000c660330019800002e4c0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400900043d0000000004490019000000000094004b0000000005000039000000010500403900000c730040009c00002f4f0000213d000000010050019000002f4f0000c13d000000400040043f0000001f0430018f000000000a39043600000c680530019800000000035a001900002dc50000613d000000000601034f00000000070a0019000000006806043c0000000007870436000000000037004b00002dc10000c13d000000000004004b00002dd20000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000005030000290000000001090433000000010020019000002e520000613d000000000001004b00002df00000c13d00010000000a001d000200000009001d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b000000020100002900002f7b0000613d0000000001010433000000000001004b0000000503000029000000010a00002900002ec80000613d00000ced0010009c00002f550000213d000000200010008c00002f550000413d00000000010a0433000000010010008c00002f550000213d000000000001004b00002ec80000c13d00002e840000013d000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000002f4e0000613d000000000101043b00000d0802000041000000000020044300000c6901100197000300000001001d0000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b00002f550000613d000000400300043d00000d4c01000041000000000013043500000004013000390000000602000029000000000021043500000c660030009c000200000003001d00000c660100004100000000010340190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d3d011001c70000000302000029319331840000040f000000010020019000002f8b0000613d000000020100002900000c730010009c00002f4f0000213d000000400010043f0000000001000415000300000001001d00000d7401000041000000000010044300000000010004100000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800a02000039319331890000040f000000010020019000002f4e0000613d000000000101043b0000000603000029000000000031004b00002fab0000413d000000000100041400000c660010009c00000c6601008041000000c001100210000000000003004b00002e980000613d00000ce8011001c700008009020000390000000804000029000000000500001900002e990000013d000000800a000039000000050300002900000060090000390000000001090433000000010020019000002dd60000c13d000000000001004b00002f7f0000c13d000000400200043d000800000002001d00000c6c0100004100000000001204350000000401200039000000020200002900002f700000013d000000600a0000390000008009000039000000050300002900000000010a0433000000010020019000002f680000613d000000000001004b00002e7b0000c13d00040000000a001d000300000009001d00000d0801000041000000000010044300000007010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b000000040100002900002f7b0000613d0000000001010433000000000001004b0000000503000029000000030900002900002ecb0000613d00000ced0010009c00002f550000213d000000200010008c00002f550000413d0000000001090433000000010010008c00002f550000213d000000000001004b00002ecb0000c13d000000400100043d000000640210003900000d6c030000410000000000320435000000440210003900000d6d03000041000000000032043500000024021000390000002a03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c700003195000104300000000802000029319331840000040f000000600310027000000c660330019800002ec20000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019000000000054004b0000000006000039000000010600403900000c730040009c00002f4f0000213d000000010060019000002f4f0000c13d000000400040043f0000001f0430018f000000000635043600000c6805300198000000000356001900002eb50000613d000000000701034f000000007807043c0000000006860436000000000036004b00002eb10000c13d000000000004004b00002ec20000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000010020019000002fbc0000613d000000000100041500000003011000690000000001000002000000050300002900000000010004150000000401100069000000000100000200000080013000390000000001010433000400000001001d0000000021010434000500000002001d000000000001004b00002f4d0000613d00000d0801000041000000000010044300000008010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b00002f4d0000613d00000d0801000041000000000010044300000008010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b000000050a00002900002f550000613d000000400b00043d0000006401b0003900000080020000390000000000210435000000000100041100000c69011001970000004402b0003900000000001204350000002401b000390000000602000029000000000021043500000d870100004100000000001b04350000000401b00039000000070200002900000000002104350000008402b0003900000004010000290000000001010433000000000012043500000d58051001970000001f0410018f000000a403b0003900000000003a004b00002f1c0000813d000000000005004b00002f180000613d00000000074a00190000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c00002f120000c13d000000000004004b00002f320000613d000000000603001900002f280000013d0000000006530019000000000005004b00002f250000613d00000000070a0019000000000803001900000000790704340000000008980436000000000068004b00002f210000c13d000000000004004b00002f320000613d000000000a5a00190000000304400210000000000506043300000000054501cf000000000545022f00000000070a04330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000001f0410003900000d580240019700000000013100190000000000010435000000a40120003900000c660010009c00000c6601008041000000600110021000000c6600b0009c00000c660200004100000000020b40190000004002200210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f000000080200002900080000000b001d319331840000040f000000010020019000002f5b0000613d000000080100002900000c730010009c00002f4f0000213d000000400010043f000000000001042d000000000001042f00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000000001000019000031950001043000000d3201000041000000000010043f00000c7501000041000031950001043000000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900002f970000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00002f630000c13d00002f970000013d000000000001004b00002f830000c13d000000400200043d000800000002001d00000c6c0100004100000000001204350000000401200039000000040200002931931fd10000040f0000000802000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f0000319500010430000000400100043d000000440210003900000d700300004100002fae0000013d00000c6600a0009c00000c660a0080410000004002a0021000002f860000013d00000c660090009c00000c6609008041000000400290021000000c660010009c00000c66010080410000006001100210000000000121019f000031950001043000000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900002f970000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00002f930000c13d00000c6606600197000000000004004b00002fa50000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000000400100043d000000440210003900000d8803000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c70000319500010430000000400100043d000000640210003900000d85030000410000000000320435000000440210003900000d8603000041000000000032043500000024021000390000003a0300003900002e8d0000013d0003000000000002000100000003001d000200000002001d00000d08020000410000000000200443000300000001001d0000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f00000001002001900000304e0000613d000000000101043b000000000001004b0000304f0000613d000000030100002900000c690510019700000d1a01000041000000000201041a00000d0c02200197000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d8904000041319331840000040f0000000100200190000030630000613d0000000205000029000000001205043400000001002001b00000304d0000613d000000400400043d00000d8a0040009c000030650000813d0000006002400039000000400020043f000000400240003900000d8b030000410000000000320435000000200240003900000d8c0300004100000000003204350000002702000039000100000004001d000000000024043500000c660010009c00000c66010080410000004001100210000000000205043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000003020000293193318e0000040f000000600310027000000c6605300198000030360000613d0000001f0350003900000c67033001970000003f0330003900000c7204300197000000400300043d0000000004430019000000000034004b0000000006000039000000010600403900000c730040009c000030650000213d0000000100600190000030650000c13d000000400040043f0000001f0650018f000000000453043600000c68075001980000000005740019000030280000613d000000000801034f0000000009040019000000008a08043c0000000009a90436000000000059004b000030240000c13d000000000006004b000030380000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f0000000000150435000030380000013d00000060030000390000008004000039000000000103043300000001002001900000306b0000613d000000000001004b0000304d0000c13d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f00000001002001900000304e0000613d000000000101043b000000000001004b000030860000613d000000000001042d000000000001042f000000400100043d000000640210003900000d27030000410000000000320435000000440210003900000d2803000041000000000032043500000024021000390000002d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c700003195000104300000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000000001004b0000307e0000c13d000000400200043d000300000002001d00000c6c0100004100000000001204350000000401200039000000010200002931931fd10000040f0000000302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f000031950001043000000c660040009c00000c6604008041000000400240021000000c660010009c00000c66010080410000006001100210000000000121019f0000319500010430000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c700003195000104300003000000000002000000400400043d00000c710040009c000031090000813d00000c69051001970000004001400039000000400010043f000000200140003900000d6b0300004100000000003104350000002001000039000200000004001d0000000000140435000000200120003900000c660010009c00000c66010080410000004001100210000000000202043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f000300000005001d0000000002050019319331840000040f000000600310027000000c6603300198000030df0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400a00043d00000000044a00190000000000a4004b0000000005000039000000010500403900000c730040009c000031090000213d0000000100500190000031090000c13d000000400040043f0000001f0430018f00000000093a043600000c68053001980000000003590019000030d10000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b000030cd0000c13d000000000004004b000030e10000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000030e10000013d000000600a000039000000800900003900000000010a043300000001002001900000310f0000613d000000000001004b000030fd0000c13d00020000000a001d000100000009001d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f00000001002001900000313e0000613d000000000101043b000000000001004b00000002010000290000313f0000613d0000000001010433000000000001004b0000000109000029000031060000613d00000ced0010009c000031070000213d0000001f0010008c000031070000a13d0000000001090433000000010010008c000031070000213d000000000001004b000031220000613d000000000001042d0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000000001004b000031360000c13d000000400200043d000300000002001d00000c6c0100004100000000001204350000000401200039000000020200002931931fd10000040f0000000302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f0000319500010430000000400100043d000000640210003900000d6c030000410000000000320435000000440210003900000d6d03000041000000000032043500000024021000390000002a03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c660090009c00000c6609008041000000400290021000000c660010009c00000c66010080410000006001100210000000000121019f0000319500010430000000000001042f000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c70000319500010430000000000001042f00000c660010009c00000c6601008041000000400110021000000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f0000000100200190000031640000613d000000000101043b000000000001042d0000000001000019000031950001043000000000050100190000000000200443000000050030008c000031740000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b0000316c0000413d00000c660030009c00000c66030080410000006001300210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d8d011001c70000000002050019319331890000040f0000000100200190000031830000613d000000000101043b000000000001042d000000000001042f00003187002104210000000102000039000000000001042d0000000002000019000000000001042d0000318c002104230000000102000039000000000001042d0000000002000019000000000001042d00003191002104250000000102000039000000000001042d0000000002000019000000000001042d0000319300000432000031940001042e00003195000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff616c697a696e6700000000000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320696e69746908c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000000000000000000000002000000000000000000000000000000000000200000000000000000000000007f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024984690484000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc000000000000000000000000000000000000000000000000000000003ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff5110d7910000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000200000000000000000000000000000340000001000000000000000000000000000000000000000000000000000000000000000000000000007659f9df00000000000000000000000000000000000000000000000000000000adb5a6a500000000000000000000000000000000000000000000000000000000dda5211200000000000000000000000000000000000000000000000000000000e322921000000000000000000000000000000000000000000000000000000000ee2a53f700000000000000000000000000000000000000000000000000000000ee2a53f800000000000000000000000000000000000000000000000000000000f79f29ed00000000000000000000000000000000000000000000000000000000fc8a584f00000000000000000000000000000000000000000000000000000000e322921100000000000000000000000000000000000000000000000000000000ea86bd4600000000000000000000000000000000000000000000000000000000de7eba7700000000000000000000000000000000000000000000000000000000de7eba7800000000000000000000000000000000000000000000000000000000deff4b2400000000000000000000000000000000000000000000000000000000dda5211300000000000000000000000000000000000000000000000000000000ddd224f100000000000000000000000000000000000000000000000000000000c35c83fb00000000000000000000000000000000000000000000000000000000d513cb6500000000000000000000000000000000000000000000000000000000d513cb6600000000000000000000000000000000000000000000000000000000d7e1583a00000000000000000000000000000000000000000000000000000000c35c83fc00000000000000000000000000000000000000000000000000000000ceb4c98700000000000000000000000000000000000000000000000000000000b4c0d7aa00000000000000000000000000000000000000000000000000000000b4c0d7ab00000000000000000000000000000000000000000000000000000000babb6aac00000000000000000000000000000000000000000000000000000000adb5a6a600000000000000000000000000000000000000000000000000000000b370b7f5000000000000000000000000000000000000000000000000000000009748cf7b000000000000000000000000000000000000000000000000000000009a8a059100000000000000000000000000000000000000000000000000000000a18a096d00000000000000000000000000000000000000000000000000000000a18a096e00000000000000000000000000000000000000000000000000000000ac9650d800000000000000000000000000000000000000000000000000000000ad5425c6000000000000000000000000000000000000000000000000000000009a8a059200000000000000000000000000000000000000000000000000000000a1244c6700000000000000000000000000000000000000000000000000000000979f2bc100000000000000000000000000000000000000000000000000000000979f2bc20000000000000000000000000000000000000000000000000000000099cc2968000000000000000000000000000000000000000000000000000000009748cf7c0000000000000000000000000000000000000000000000000000000097943aa9000000000000000000000000000000000000000000000000000000007ef413e0000000000000000000000000000000000000000000000000000000008a7860cd000000000000000000000000000000000000000000000000000000008a7860ce000000000000000000000000000000000000000000000000000000008b15788e000000000000000000000000000000000000000000000000000000007ef413e10000000000000000000000000000000000000000000000000000000082e2c43f000000000000000000000000000000000000000000000000000000007aef642b000000000000000000000000000000000000000000000000000000007aef642c000000000000000000000000000000000000000000000000000000007b939232000000000000000000000000000000000000000000000000000000007659f9e000000000000000000000000000000000000000000000000000000000775c0d0300000000000000000000000000000000000000000000000000000000437b91150000000000000000000000000000000000000000000000000000000057f6dcb700000000000000000000000000000000000000000000000000000000670fa8ab000000000000000000000000000000000000000000000000000000006e400982000000000000000000000000000000000000000000000000000000006e400983000000000000000000000000000000000000000000000000000000006fd5c10e00000000000000000000000000000000000000000000000000000000738b62e500000000000000000000000000000000000000000000000000000000670fa8ac000000000000000000000000000000000000000000000000000000006bbbcd2e0000000000000000000000000000000000000000000000000000000061a04d2f0000000000000000000000000000000000000000000000000000000061a04d3000000000000000000000000000000000000000000000000000000000647c576c0000000000000000000000000000000000000000000000000000000057f6dcb8000000000000000000000000000000000000000000000000000000006068d6cb000000000000000000000000000000000000000000000000000000005285e05700000000000000000000000000000000000000000000000000000000541f4f1300000000000000000000000000000000000000000000000000000000541f4f1400000000000000000000000000000000000000000000000000000000577f51f8000000000000000000000000000000000000000000000000000000005285e0580000000000000000000000000000000000000000000000000000000052d1902d00000000000000000000000000000000000000000000000000000000493a4f8300000000000000000000000000000000000000000000000000000000493a4f84000000000000000000000000000000000000000000000000000000004f1ef28600000000000000000000000000000000000000000000000000000000437b911600000000000000000000000000000000000000000000000000000000490e49ef000000000000000000000000000000000000000000000000000000001b3d5558000000000000000000000000000000000000000000000000000000002e63e599000000000000000000000000000000000000000000000000000000003a90dc84000000000000000000000000000000000000000000000000000000003a90dc85000000000000000000000000000000000000000000000000000000003f00627b000000000000000000000000000000000000000000000000000000002e63e59a000000000000000000000000000000000000000000000000000000003659cfe60000000000000000000000000000000000000000000000000000000029cb924c0000000000000000000000000000000000000000000000000000000029cb924d000000000000000000000000000000000000000000000000000000002e378115000000000000000000000000000000000000000000000000000000001b3d5559000000000000000000000000000000000000000000000000000000001fab657c0000000000000000000000000000000000000000000000000000000012622e5a0000000000000000000000000000000000000000000000000000000017fcb39a0000000000000000000000000000000000000000000000000000000017fcb39b0000000000000000000000000000000000000000000000000000000019c1648c0000000000000000000000000000000000000000000000000000000012622e5b0000000000000000000000000000000000000000000000000000000015348e44000000000000000000000000000000000000000000000000000000001186ec32000000000000000000000000000000000000000000000000000000001186ec330000000000000000000000000000000000000000000000000000000011eac85500000000000000000000000000000000000000000000000000000000079bd2c7000000000000000000000000000000000000000000000000000000000cb84d9affffffffffffffffffffffffeeeeffffffffffffffffffffffffffffffffeeef0000000000000000000000000000000000000040000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000ffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000800000000000000000000000ff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c097ce7bc90715b34b9f10000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000001ffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff40000000000000000000000000000000000000000000000003ffffffffffffffe09a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b020000000000000000000000000000000000000000000000000000000000000045e04bc8f121ba11466985789ca2822a91109f31bb8ac85504a37b7eaf873c2600000000000000000000000000000000000000000000003fffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7f80000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000400000000000000000000000006c172ea51018fb2eb2118f3f8a507c4df71eb519b8c0052834dc3c920182fef4d950afdc00000000000000000000000000000000000000000000000000000000ffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000200000008000000000000000002d5b62420992e5a4afce0e77742636ca2608ef58289fd2e1baa5161ef6e7e41e4143524f53532d56320000000000000000000000000000000000000000000000312e302e30000000000000000000000000000000000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e000000000000000000000000000000000000000000000000fffffffffffffe5f8e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b38e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b27c1af0646963afc3343245b103731965735a893347bfa0d58a5dc77a77ae691c000000000000000000000000000000000000000000000000fffffffffffffee00200000000000000000000000000000000000000000000a000000000000000001e191e8e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdfdeff4b2400000000000000000000000000000000000000000000000000000000b8fe37a70000000000000000000000000000000000000000000000000000000091d7e1520000000000000000000000000000000000000000000000000000000041a941b8313293eca483f41d8faa2498e005e6d7700e2e93f41d3cb7e70a897d7f5e6be5000000000000000000000000000000000000000000000000000000009d276a4200000000000000000000000000000000000000000000000000000000ffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe88463c2f254e2b070013a2dc7ee1e099f9bc00534cbdf03af551dc26ae492198d1994e2bbbd77564cdca06dd819e7ee2a5efa06c80dcb59a4a7b6e39edc538f1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000647920696e697469616c697a6564000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c726561ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbfa9e8c42c9e7fca7f62755189a16b2f5314d43d8fb24e91ba54e6d65f9314e849a73e8909f8616742d7fe701153d82666f7b7cd480552e23ebb05d358c22fd04eb606125600000000000000000000000000000000000000000000000000000000ba97b39d000000000000000000000000000000000000000000000000000000006e697469616c697a696e67000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420690000000000000000000000000000000000000000000000008000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000007fffffffffffffff02000002000000000000000000000000000000440000000000000000000000006c6564207468726f7567682064656c656761746563616c6c0000000000000000555550535570677261646561626c653a206d757374206e6f742062652063616c360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914352d1902d000000000000000000000000000000000000000000000000000000006961626c6555554944000000000000000000000000000000000000000000000045524331393637557067726164653a20756e737570706f727465642070726f78c86ba04c55bc5eb2f2876b91c438849a296dbec7b08751c3074d92e04f0a77af0000000000000000000000000000000000000000000000000000000001e13380000000000000000000000000000000000000000000000000ffffffffffffff3f00000000000000000000000000000000000000000000000000000000000100036163746976652070726f7879000000000000000000000000000000000000000046756e6374696f6e206d7573742062652063616c6c6564207468726f756768204f4e4c595f434f554e544552504152545f47415445574159000000000000000000000000000000000000000000000000000000640000000000000000000000006f74206120636f6e747261637400000000000000000000000000000000000000455243313936373a206e657720696d706c656d656e746174696f6e206973206e64656c656761746563616c6c000000000000000000000000000000000000000009deb9ec00000000000000000000000000000000000000000000000000000000012f9e440000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000001400000000000000000000000003cee3e290f36226751cd0b3321b213890fe9c768e922f267fa6111836ce05c32000000000000000000000000000000000000000000000000fffffffffffffdc07b21f8aa00000000000000000000000000000000000000000000000000000000c3a9b9d0000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000f3d81dae00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff9f8f260c6000000000000000000000000000000000000000000000000000000000d642b7d9000000000000000000000000000000000000000000000000000000007a47c9a200000000000000000000000000000000000000000000000000000000b05e92fa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff8e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b1954476d900000000000000000000000000000000000000000000000000000000cd298b380000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000005bb550620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100044a2e35ba00000000000000000000000000000000000000000000000000000000dd62ed3e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000095ea7b300000000000000000000000000000000000000000000000000000000cb75c11c00000000000000000000000000000000000000000000000000000000a56ec632000000000000000000000000000000000000000000000000000000008e0250ee0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e40000000000000000000000006fd3504e00000000000000000000000000000000000000000000000000000000d9caed12000000000000000000000000000000000000000000000000000000002e1a7d4d0000000000000000000000000000000000000000000000000000000051cff8d9000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000024000000000000000000000000fa7fa7cf6d7dde5f9be65a67e6a1a747e7aa864dcd2d793353c722d80fbbb357f4ad92585b1bc117fbdd644990adf0827bc4c95baeae8a23322af807b6d0020e0000000000000000000000000000000000000064000000800000000000000000fc0c546a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000800000000000000000a63e8c6b00000000000000000000000000000000000000000000000000000000323983f5343e25b2c1396361b1b791be31484841fdfb95b8615cd02d910b1e085265656e7472616e637947756172643a207265656e7472616e742063616c6c005a65d18800000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0001ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff000000000000000000000000000000000000000000000000fffffffffffffe600000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000ffffffffffffffe0000000000000000000000000000000000000000000000000fffffffffffffe800000000000000000000000000000000000000000000000000000000100000000ffff00ff00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff8000000000000000000000000000000000000000000000000006f05b59d3b200000000000000000000000000000000000000c097ce7bc90715b34b9f10000000016452a35d00000000000000000000000000000000000000000000000000000000d0e30db000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000400000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff605361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65646f742073756363656564000000000000000000000000000000000000000000005361666545524332303a204552433230206f7065726174696f6e20646964206e0000000000000000000000000000000000000000000000000de0b6b3a764000032ed1a409ef04c7b0227189c3a103dc5ac10e775a15b785dcc510201f7c25ad3416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000f722177f00000000000000000000000000000000000000000000000000000000c45b6b5200000000000000000000000000000000000000000000000000000000a13c425c000000000000000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000000000000000000000000000000000001e000000000000000000000000044b559f101f8fbcc8a0ea43fa91a05a729a5ea6e14a7c75aa7503746901372086f6e206973206e6f74205555505300000000000000000000000000000000000045524331393637557067726164653a206e657720696d706c656d656e74617469000000000000000000000000000000000000000000000000ffffffffffffff20c2f8787176b8ac6bf7215b4adcc1e069bf4ab82d9ab1df05a57a91d425935b6e000000000000000000000000000000000000000000000000ffffffffffffff5f190100000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000420000000000000000000000007fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a100000000000000000000000000000000000000800000000000000000000000001626ba7e00000000000000000000000000000000000000000000000000000000938a1821000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e13381495d907f00000000000000000000000000000000000000000000000000000000582e3889000000000000000000000000000000000000000000000000000000006563697069656e74206d61792068617665207265766572746564000000000000416464726573733a20756e61626c6520746f2073656e642076616c75652c20723a5be8cb00000000000000000000000000000000000000000000000000000000416464726573733a20696e73756666696369656e742062616c616e6365000000bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b000000000000000000000000000000000000000000000000ffffffffffffffa0206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c0200000200000000000000000000000000000000000000000000000000000000000000000000000000a2646970667358221220de9290a30581c0f54590b09a5ce207769f2b8377cd4c87ac45aac29f6fbf472b64736f6c6378247a6b736f6c633a312e352e31353b736f6c633a302e382e33303b6c6c766d3a312e302e320055",
+ "deployedBytecode": "0x000200000000000200300000000000020001000000010355000000600310027000000c660030019d00000c66083001970000000100200190000000a60000c13d0000008002000039000000400020043f000000040080008c000001300000413d000000000201043b000000e00220027000000c770020009c000001340000a13d00000c780020009c000001680000213d00000c910020009c000001a30000a13d00000c920020009c000002e20000a13d00000c930020009c000009310000a13d00000c940020009c00000afb0000613d00000c950020009c00000b2c0000613d00000c960020009c00001e880000c13d000001840080008c00001e880000413d000000e402100370000000000202043b000d00000002001d000000c402100370000000000202043b000e00000002001d000000a402100370000000000202043b000f00000002001d0000008402100370000000000202043b001000000002001d0000006402100370000000000202043b001100000002001d0000004402100370000000000202043b001200000002001d0000002402100370000000000202043b001300000002001d0000000402100370000000000202043b000c00000002001d0000010402100370000000000202043b000b00000002001d00000c660020009c00001e880000213d0000012402100370000000000202043b000a00000002001d00000c660020009c00001e880000213d0000014402100370000000000202043b000900000002001d00000c660020009c00001e880000213d0000016402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000403200039000000000131034f000000000101043b000800000001001d00000c730010009c00001e880000213d0000002402200039000700000002001d0000000801200029000000000081004b00001e880000213d0000000001000415000600000001001d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d000000c00110027000000c6601100197000500000001001d319321a70000040f0000086b03000039000000000203041a00000cde02200197000000c00110021000000cdf01100197000000000112019f000000000013041b31931f1d0000040f0000000003010019000400000001001d00000160011000390000000902000029000000000021043500000140013000390000000a02000029000000000021043500000120013000390000000b020000290000000000210435000001000130003900000005020000290000000000210435000000e0013000390000000d020000290000000000210435000000c0013000390000000e020000290000000000210435000000a0013000390000000f0200002900000000002104350000008001300039000000100200002900000000002104350000006001300039000000110200002900000000002104350000004001300039000000120200002900000000002104350000002001300039000000130200002900000000002104350000000c01000029000000000013043500000000030000310000000701000029000000080200002931931f290000040f0000000403000029000001800230003900000000001204350000000001030019319327c50000040f00000001010000390000006502000039000000000012041b00000000010004150000000602000029000016b30000013d0000020003000039000000400030043f0000000002000416000000000002004b00001e880000c13d0000001f0280003900000c67022001970000020002200039000000400020043f0000001f0480018f00000c68058001980000020002500039000000b80000613d000000000601034f000000006706043c0000000003730436000000000023004b000000b40000c13d000000000004004b000000c50000613d000000000151034f0000000303400210000000000402043300000000043401cf000000000434022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f0000000000120435000000e00080008c00001e880000413d000002000100043d00000c690010009c00001e880000213d000002200600043d00000c690060009c00001e880000213d000002400200043d001300000002001d00000c690020009c00001e880000213d000002800200043d001200000002001d00000c690020009c00001e880000213d000002a00200043d00000c660020009c00001e880000213d000002c00300043d00000c660030009c00001e880000213d00000c6901100197000002600500043d0000000004000410000000800040043f000000c00000043f000000a00000043f000000e00010043f000001000020043f000001200030043f000000000100041a0000ff0000100190000010a90000c13d001000000005001d000000ff0210018f000000ff0020008c001100000006001d000001010000613d000000ff011001bf000000000010041b000000ff01000039000000400200043d000000000012043500000c660020009c00000c66020080410000004001200210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c6e011001c70000800d02000039000000010300003900000c6f04000041319331840000040f0000001106000029000000010020019000001e880000613d000001600060043f0000001201000029000001800010043f000001400000043f0000000402000039000000400100043d000000000421043600000c7003000041000000000034043500000c710010009c00000efc0000813d000000120200002900000c69022001970000004003100039000000400030043f00000c660040009c00000c66040080410000004003400210000000000101043300000c660010009c00000c66010080410000006001100210000000000113019f000000000300041400000c660030009c00000c6603008041000000c003300210000000000113019f001200000002001d319331890000040f000000600310027000000c6605300198000011d90000c13d00000060030000390000008004000039000000110100002900000c69051001970000000100200190000011920000613d0000000001030433000000200010008c000011920000c13d000000000104043300000c69001001980000000001000039000000010100c039000011930000013d000000000008004b00001e880000c13d0000000001000019000031940001042e00000ca90020009c000001890000a13d00000caa0020009c000001ba0000a13d00000cab0020009c000003920000a13d00000cac0020009c0000093c0000a13d00000cad0020009c00000b650000613d00000cae0020009c00000b700000613d00000caf0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b000000010010008c00001e880000213d0000086902000039000000000202041a00000cd90220009a00000c69022001970000000003000411000000000023004b00000f9a0000c13d0000006502000039000000000302041a000000020030008c00000f900000613d0000000203000039000000000032041b0000086b02000039000000000302041a00000d0503300197000000e804100210000000000343019f000000000032041b000000800010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cf2011001c70000800d02000039000000010300003900000d0604000041000007240000013d00000c790020009c000001c90000a13d00000c7a0020009c0000039f0000a13d00000c7b0020009c000009460000a13d00000c7c0020009c00000b7b0000613d00000c7d0020009c00000ae40000613d00000c7e0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b001300000001001d00000c690010009c00001e880000213d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d319322580000040f000000130100002931932a400000040f0000118d0000013d00000cc20020009c000001d60000213d00000cce0020009c000004cb0000213d00000cd40020009c0000099a0000213d00000cd70020009c00000b930000613d00000cd80020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b00000c690010009c00001e880000213d000000000010043f0000087401000039000000200010043f00000040020000390000000001000019319331510000040f000010200000013d00000c9e0020009c000003ac0000213d00000ca40020009c000004f90000213d00000ca70020009c00000b9e0000613d00000ca80020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000000001000412001900000001001d001801200000003d000080050100003900000044030000390000000004000415000000190440008a000000050440021000000cf602000041319331660000040f000000000001004b00000e1e0000013d00000cb70020009c000004990000213d00000cbd0020009c000005470000213d00000cc00020009c00000c0d0000613d00000cc10020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000d2001000041000000800010043f00000ce001000041000031940001042e00000c860020009c000004be0000213d00000c8c0020009c000005ef0000213d00000c8f0020009c00000ae40000613d00000c900020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000086a01000039000010200000013d00000cc30020009c000004d20000213d00000cc90020009c000009a90000213d00000ccc0020009c00000c4b0000613d00000ccd0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d000000000328004900000ced0030009c00001e880000213d000000640030008c00001e880000413d0000002404100370000000000404043b001300000004001d00000c660040009c00001e880000213d0000004404100370000000000404043b00000c730040009c00001e880000213d0000002305400039000000000085004b00001e880000813d0000000405400039000000000551034f000000000505043b001000000005001d00000c730050009c00001e880000213d000000240440003900000010050000290000000505500210000e00000004001d001200000005001d000f00000045001d0000000f0080006b00001e880000213d0000006504000039000000000404041a000000020040008c00000f900000613d00000002050000390000006504000039000000000054041b001100040020003d0000001101100360000000000101043b000001830230008a00000cec0310019700000cec04200197000000000543013f000000000043004b000000000300001900000cec03004041000000000021004b000000000200001900000cec0200804100000cec0050009c000000000302c019000000000003004b00001e880000c13d00000011011000290000000002080019319320230000040f000d00000001001d0000008001100039000000000101043300000d310010009c000018f50000813d319324740000040f0000000d01000029319321b20000040f000000400200043d000c00000002001d00000d210020009c00000efc0000213d000000010200036700000011030000290000004003300039000000000332034f000000000403043b0000000d0800002900000020038000390000000003030433000001600580003900000000050504330000000c07000029000000c006700039000000400060043f0000008006700039000000000056043500000060057000390000000000350435000000400370003900000000004304350000002004700039000b00000004001d00000000001404350000000000870435000000a001700039000000000001043500000012010000290000003f0110003900000cea01100197000000400400043d0000000001140019001200000004001d000000000041004b0000000004000039000000010400403900000c730010009c00000efc0000213d000000010040019000000efc0000c13d000000400010043f000000120100002900000010050000290000000001510436001100000001001d0000000f01000029000000000010007c00001e880000213d000000100000006b0000000e050000290000000f06000029000002670000613d0000001201000029000000000452034f000000000404043b000000200110003900000000004104350000002005500039000000000065004b000002600000413d000000400100043d001000000001001d00000d330010009c00000efc0000213d0000000001030433000e00000001001d0000000c01000029000000000101043300000010030000290000006002300039000000400020043f0000000001130436000f00000001001d00000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000100200002900000040032000390000000e0200002900000000002304350000000f0200002900000000001204350000086c01000039000000000201041a000000130020006c00001a070000a13d000000000010043f000000130100002900000003011000c900000cf80110009a000000000101041a000e00000001001d000000400100043d00000020021000390000002004000039000000000042043500000010040000290000000004040433000000400510003900000060060000390000000000650435000000a005100039000000007604043400000000006504350000000005070433000000c006100039000000000056043500000040054000390000000005050433000000e006100039000000000056043500000060054000390000000005050433000001000610003900000000005604350000008005400039000000000505043300000120061000390000000000560435000000a005400039000000000505043300000140061000390000000000560435000000c005400039000000000505043300000160061000390000000000560435000000e00540003900000000050504330000018006100039000000000056043500000100054000390000000005050433000001a00610003900000000005604350000012005400039000000000505043300000c6605500197000001c00610003900000000005604350000014005400039000000000505043300000c6605500197000001e00610003900000000005604350000016004400039000000000404043300000200051000390000018006000039000000000065043500000220061000390000000075040434000000000056043500000d58095001970000001f0850018f0000024006100039000000000067004b000017d20000813d000000000009004b000002de0000613d000000000b870019000000000a860019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c000002d80000c13d000000000008004b000017e80000613d000000000a060019000017de0000013d00000c990020009c000006fb0000213d00000c9c0020009c00000dfc0000613d00000c9d0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000e40080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d001300040020003d000000130380006a00000ced0030009c00001e880000213d000001800030008c00001e880000413d0000008403100370000000000303043b001200000003001d0000006403100370000000000303043b001100000003001d0000004403100370000000000303043b000f00000003001d0000002403100370000000000303043b001000000003001d000000a403100370000000000303043b00000c730030009c00001e880000213d0000002304300039000000000084004b00001e880000813d0000000404300039000000000441034f000000000404043b000e00000004001d00000c730040009c00001e880000213d0000002404300039000d00000004001d0000000e03400029000000000083004b00001e880000213d000000c403100370000000000303043b00000c730030009c00001e880000213d0000002304300039000000000084004b00001e880000813d0000000404300039000000000441034f000000000404043b000c00000004001d00000c730040009c00001e880000213d0000002404300039000b00000004001d0000000c03400029000000000083004b00001e880000213d0000000003000415000a00000003001d0000006503000039000000000303041a000000020030008c000007660000613d00000002030000390000006504000039000000000034041b0000086b03000039000000000303041a00000ce100300198000011170000c13d000901440020003d0000000901100360000000000101043b000800000001001d00000c660010009c00001e880000213d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c6601100197000000080010006b000016f70000813d00000000020000310000001301000029319320230000040f319321b20000040f000700000001001d31931f110000040f000800000001001d00000000020000310000001301000029319320230000040f0000000804000029000000600240003900000012030000290000000000320435000000400240003900000011030000290000000000320435000000200240003900000007030000290000000000320435000000000014043500000000030000310000000d010000290000000e0200002931931f290000040f0000000804000029000000a00240003900000010030000290000000000320435000000800240003900000000001204350000000901000029000001400210008a0000000101000367000000000321034f000000000303043b001300000003001d00000c690030009c000018f50000213d0000010003200039000000000331034f000000e002200039000000000121034f000000000101043b001000000001001d000000000103043b000900000001001d00000000030000310000000d010000290000000e0200002931931f290000040f000e00000001001d00000000030000310000000b010000290000000c0200002931931f290000040f0000000007010019000000130100002900000009020000290000001003000029000000110400002900000012050000290000000e06000029319326320000040f00000008010000290000000f02000029319325050000040f00000001010000390000006502000039000000000012041b00000000010004150000000a02000029000016b30000013d00000cb20020009c000007250000213d00000cb50020009c00000e070000613d00000cb60020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000086b01000039000000000101041a00000cdd0010019800000e1e0000013d00000c810020009c0000074d0000213d00000c840020009c00000e180000613d00000c850020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000ce201000041000000800010043f00000ce001000041000031940001042e00000c9f0020009c000007770000213d00000ca20020009c00000e230000613d00000ca30020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000402100370000000000202043b001300000002001d0000002402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d001100040020003d0000001103100360000000000303043b001200000003001d00000c730030009c00001e880000213d0000002402200039000f00000002001d001000120020002d000000100080006b00001e880000213d0000004402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d000d00040020003d0000000d01100360000000000101043b000e00000001001d00000c730010009c00001e880000213d0000000e012000290000002401100039000000000081004b00001e880000213d00000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b0000004002000039000000a00020043f0000001204000029000000e00040043f00000d58034001980000001f0440018f000001000230003900000011050000290000002005500039001100000005001d0000000105500367000003fb0000613d0000010006000039000000000705034f000000007807043c0000000006860436000000000026004b000003f70000c13d000000000004004b000004080000613d000000000335034f0000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000120300002900000100023000390000000000020435000000c00010043f0000001f0130003900000ce4021001970000006001200039000000800010043f00000cfb0020009c00000efc0000213d0000009f0220003900000ce4022001970000008002200039000000400020043f00000c660010009c00000c66010080410000006001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000cfc011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000130010006c000016b70000c13d0000001201000029000000200010008c00001e880000413d00000011010000290000000101100367000000000101043b00000c730010009c00001e880000213d0000000f011000290000001002000029319320230000040f00000000020004150000000e03000029000000200030008c00001e880000413d000000400300043d00000cfe0030009c00000efc0000213d0000002004300039000000400040043f0000000d0400002900000020044000390000000104400367000000000404043b00000000004304350000000004000415000000000242004900000000020000020000000004030433000000400200043d001600200020003d001700000002001d00000cff050000410000002003200039000000000053043500000060060000390000002405200039001300000006001d000000000065043500000084052000390000000006010433000000000065043500000020051000390000000005050433000000a406200039000000000056043500000040051000390000000005050433000000c406200039000000000056043500000060051000390000000005050433000000e40620003900000000005604350000008005100039000000000505043300000104062000390000000000560435000000a005100039000000000505043300000124062000390000000000560435000000c005100039000000000505043300000144062000390000000000560435000000e00510003900000000050504330000016406200039000000000056043500000100051000390000000005050433000001840620003900000000005604350000012005100039000000000505043300000c6605500197000001a40620003900000000005604350000014005100039000000000505043300000c6605500197000001c4062000390000000000560435000001600110003900000000010104330000018005000039000001e4062000390000000000560435000002040520003900000000710104340000000000150435000000000500041100000c690550019700000d58091001970000001f0810018f0000022406200039000000000067004b0000175e0000813d000000000009004b000004950000613d000000000b870019000000000a860019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c0000048f0000c13d000000000008004b000017740000613d000000000a0600190000176a0000013d00000cb80020009c000008180000213d00000cbb0020009c00000e330000613d00000cbc0020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000cf6010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000400300043d00000c660030009c00000c660200004100000000020340190000004002200210000000000101043b00000c69011001970000000004000410000000000014004b000010b30000c13d00000d1a01000041000000000013043500000ce3012001c7000031940001042e00000c870020009c0000091f0000213d00000c8a0020009c00000e380000613d00000c8b0020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000c6601000041000000800010043f00000ce001000041000031940001042e00000ccf0020009c00000a9a0000213d00000cd20020009c00000e490000613d00000cd30020009c000009400000613d00001e880000013d00000cc40020009c00000ad90000213d00000cc70020009c00000e540000613d00000cc80020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b001300000001001d00000c690010009c00001e880000213d00000cf6010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c69011001970000000002000410000000000012004b0000111b0000c13d000000400100043d000000640210003900000d29030000410000123a0000013d00000ca50020009c00000e900000613d00000ca60020009c00001e880000c13d000001840080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000002402100370000000000202043b001200000002001d00000c690020009c00001e880000213d0000004402100370000000000202043b001100000002001d00000c690020009c00001e880000213d0000006402100370000000000202043b001000000002001d00000c690020009c00001e880000213d000000c402100370000000000202043b000f00000002001d000000a402100370000000000202043b000e00000002001d0000008402100370000000000202043b000c00000002001d000000e402100370000000000202043b000d00000002001d00000c690020009c00001e880000213d0000010402100370000000000202043b000b00000002001d00000c660020009c00001e880000213d0000012402100370000000000202043b000a00000002001d00000c660020009c00001e880000213d0000014402100370000000000202043b000900000002001d00000c660020009c00001e880000213d0000016401100370000000000101043b00000c730010009c00001e880000213d0000000401100039000000000208001931931fa30000040f000000000c010019000000000d02001900000013010000290000001202000029000000110300002900000010040000290000000c050000290000000e060000290000000f070000290000000d080000290000000b090000290000000a0a000029000000090b000029319320d10000040f0000000001000019000031940001042e00000cbe0020009c00000ee20000613d00000cbf0020009c00001e880000c13d000000440080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000002402100370000000000402043b00000c730040009c00001e880000213d0000002302400039000000000082004b00001e880000813d0000000403400039000000000231034f000000000202043b00000c730020009c00000efc0000213d0000001f0520003900000ce40550019700000ce50050009c00000efc0000213d00000024044000390000003f0550003900000ce4055001970000008005500039000000400050043f000000800020043f0000000004420019000000000084004b00001e880000213d0000002003300039000000000331034f00000d58042001980000001f0520018f000000a001400039000005770000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b000005730000c13d000000000005004b000005840000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a001200039000000000001043500000cf6010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c69011001970000000002000410000000000012004b000004f50000613d00000d1a02000041000000000202041a00000c6902200197000000000012004b000012370000c13d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b000012830000c13d0000000001000415001200000001001d00000d1b01000041000000000101041a000000ff00100190000016bb0000c13d000000400200043d001100000002001d00000d1c01000041000000000012043500000c660020009c00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c75011001c70000001302000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000110b0000290000001105700029000005cb0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000005c70000c13d000000000006004b000005d80000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f00000000001504350000000100200190000015690000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000c730010009c00000efc0000213d000000010020019000000efc0000c13d000000400010043f000000200030008c00001e880000413d00000000020b043300000d1a0020009c000016d30000c13d00000080020000390000000103000039000000130100002931932fc60000040f000016d00000013d00000c8d0020009c00000f020000613d00000c8e0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000c40080008c00001e880000413d0000006402100370000000000202043b001100000002001d0000004402100370000000000202043b001000000002001d0000002402100370000000000202043b001200000002001d0000000402100370000000000202043b001300000002001d0000008402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000403200039000000000431034f000000000404043b000f00000004001d00000c730040009c00001e880000213d0000000f022000290000002402200039000000000082004b00001e880000213d000000a402100370000000000402043b00000c730040009c00001e880000213d0000002302400039000000000082004b00001e880000813d0000000402400039000000000521034f000000000505043b000e00000005001d00000c730050009c00001e880000213d0000000e044000290000002404400039000000000084004b00001e880000213d0000006504000039000000000504041a000000020050008c00000f900000613d0000000205000039000000000054041b000000130400002900000c690040009c000018f50000213d0000000f040000290000001f0440003900000ce404400197000d00000004001d00000ce50040009c00000efc0000213d0000000d040000290000003f0440003900000ce4044001970000008004400039000000400040043f0000000f05000029000000800050043f00000d5806500198000c001f00500193000700200030003d0000000705100360000b00000006001d000000a003600039000006490000613d000000a006000039000000000705034f000000007807043c0000000006860436000000000036004b000006450000c13d0000000c0000006b000006570000613d0000000b055003600000000c060000290000000306600210000000000703043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005304350000000f03000029000000a00330003900000000000304350000000e030000290000001f0330003900000ce403300197000800000003001d0000003f0330003900000ce603300197000000400500043d0000000003350019000a00000005001d000000000053004b0000000005000039000000010500403900000c730030009c00000efc0000213d000000010050019000000efc0000c13d000000400030043f0000000e050000290000000a03000029000000000353043600000d58045001980009001f00500193000500200020003d0000000502100360000600000004001d00000000014300190000067b0000613d000000000402034f0000000005030019000000004604043c0000000005650436000000000015004b000006770000c13d000000090000006b000006890000613d000000060220036000000009040000290000000304400210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002104350000000e01300029000000000001043500000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000301043b000000130100002900000012020000290000001004000029000000110500002900000080060000390000000a07000029319326320000040f000000400100043d00000080021000390000000f03000029000000000032043500000040021000390000008003000039000000000032043500000020021000390000001103000029000000000032043500000010020000290000000000210435000000a0031000390000000b04300029000000010200036700000007052003600000000b0000006b000006b60000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b000006b20000c13d0000000c0000006b000006c40000613d0000000b055003600000000c060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000f0430002900000000000404350000000d033000290000000004130049000000600510003900000000004504350000000e04000029000000000343043600000005042003600000000602300029000000060000006b000006d60000613d000000000504034f0000000006030019000000005705043c0000000006760436000000000026004b000006d20000c13d000000090000006b000006e40000613d000000060440036000000009050000290000000305500210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004204350000000e0230002900000000000204350000000802100069000000000232001900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000ce8011001c70000800d02000039000000030300003900000ce90400004100000012050000290000001306000029000011160000013d00000c9a0020009c00000f150000613d00000c9b0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b000000010010008c00001e880000213d0000086902000039000000000202041a00000cd90220009a00000c69022001970000000003000411000000000023004b00000f9a0000c13d0000006502000039000000000302041a000000020030008c00000f900000613d0000000203000039000000000032041b0000086b02000039000000000302041a00000cf103300197000000e004100210000000000343019f000000000032041b000000800010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cf2011001c70000800d02000039000000010300003900000cf304000041000011160000013d00000cb30020009c00000f5c0000613d00000cb40020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c660020009c00001e880000213d0000002402100370000000000202043b001200000002001d00000c690020009c00001e880000213d0000004401100370000000000101043b001100000001001d00000c690010009c00001e880000213d00000000020004150000001f0220008a0000000502200210000000000300041a000fff0000300194000012000000c13d00000000020004150000001e0220008a0000000502200210000000ff00300190000012000000c13d00000d590130019700000001011001bf00000d5a0110019700000100011001bf000012250000013d00000c820020009c00000f690000613d00000c830020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000401100370000000000101043b00000c730010009c00001e880000213d00000004011000390000000002080019319320230000040f00000001030003670000004402300370000000000402043b0000002402300370000000000502043b0000006502000039000000000302041a000000020030008c000010c30000c13d000000400100043d000000440210003900000d5603000041000000000032043500000024021000390000001f03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c7000031950001043000000ca00020009c00000f7e0000613d00000ca10020009c00001e880000c13d000001a40080008c00001e880000413d0000010402100370000000000202043b000000e403100370000000000303043b000c00000003001d000000c403100370000000000303043b000d00000003001d000000a403100370000000000303043b000e00000003001d0000008403100370000000000303043b000f00000003001d0000006403100370000000000303043b001000000003001d0000004403100370000000000303043b001100000003001d0000002403100370000000000303043b001200000003001d0000000403100370000000000303043b001300000003001d0000012403100370000000000303043b000b00000003001d00000c660030009c00001e880000213d0000014403100370000000000303043b000a00000003001d00000c660030009c00001e880000213d0000016403100370000000000303043b000900000003001d00000c660030009c00001e880000213d0000018403100370000000000303043b00000c730030009c00001e880000213d0000002304300039000000000084004b00001e880000813d0000000404300039000000000141034f000000000101043b000800000001001d00000c730010009c00001e880000213d0000002403300039000700000003001d0000000801300029000000000081004b00001e880000213d0000000001000415000600000001001d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006503000039000000000013041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d000000400100043d0000005403100039000000000023043500000000020004110000006003200210000000200210003900000000003204350000003403100039000000130400002900000000004304350000005403000039000000000031043500000ceb0010009c00000efc0000213d0000008003100039000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000400300043d00000cf70030009c00000efc0000213d0000000002030019000000000101043b0000000004030019000500000002001d000001a002200039000000400020043f00000160023000390000000903000029000000000032043500000140024000390000000a03000029000000000032043500000120024000390000000b03000029000000000032043500000100024000390000000000120435000000e0014000390000000c020000290000000000210435000000c0014000390000000d020000290000000000210435000000a0014000390000000e02000029000000000021043500000080014000390000000f0200002900000000002104350000006001400039000000100200002900000000002104350000004001400039000000110200002900000000002104350000002001400039000000120200002900000000002104350000001301000029000000000014043500000000030000310000000701000029000000080200002931931f290000040f00000005030000290000009c0000013d00000cb90020009c00000fa40000613d00000cba0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000c40080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000004402100370000000000202043b001100000002001d0000002402100370000000000202043b001200000002001d0000006402100370000000000202043b001000000002001d00000c690020009c00001e880000213d0000008402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000404200039000000000341034f000000000303043b000f00000003001d00000c730030009c00001e880000213d0000000f022000290000002402200039000000000082004b00001e880000213d000000a402100370000000000302043b00000c730030009c00001e880000213d0000002302300039000000000082004b00001e880000813d0000000402300039000000000521034f000000000505043b000e00000005001d00000c730050009c00001e880000213d0000000e033000290000002403300039000000000083004b00001e880000213d0000000f030000290000001f0330003900000ce403300197000d00000003001d00000ce50030009c00000efc0000213d0000000d030000290000003f0330003900000ce4033001970000008003300039000000400030043f0000000f05000029000000800050043f00000d5806500198000c001f00500193000700200040003d0000000705100360000b00000006001d000000a0046000390000086d0000613d000000a006000039000000000705034f000000007807043c0000000006860436000000000046004b000008690000c13d0000000c0000006b0000087b0000613d0000000b055003600000000c060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000f04000029000000a00440003900000000000404350000000e040000290000001f0440003900000ce404400197000800000004001d0000003f0440003900000ce604400197000000400500043d0000000004450019000a00000005001d000000000054004b0000000005000039000000010500403900000c730040009c00000efc0000213d000000010050019000000efc0000c13d000000400040043f0000000e050000290000000a04000029000000000454043600000d58035001980009001f00500193000500200020003d0000000502100360000600000003001d00000000013400190000089f0000613d000000000302034f0000000005040019000000003603043c0000000005650436000000000015004b0000089b0000c13d000000090000006b000008ad0000613d000000060220036000000009030000290000000303300210000000000501043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002104350000000e01400029000000000001043500000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000301043b000000800600003900000013010000290000001202000029000000110400002900000010050000290000000a07000029319326320000040f000000400100043d00000080021000390000000f03000029000000000032043500000040021000390000008003000039000000000032043500000020021000390000001003000029000000000032043500000011020000290000000000210435000000a0031000390000000b04300029000000010200036700000007052003600000000b0000006b000008da0000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b000008d60000c13d0000000c0000006b000008e80000613d0000000b055003600000000c060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000f0430002900000000000404350000000d033000290000000004130049000000600510003900000000004504350000000e04000029000000000343043600000005042003600000000602300029000000060000006b000008fa0000613d000000000504034f0000000006030019000000005705043c0000000006760436000000000026004b000008f60000c13d000000090000006b000009080000613d000000060440036000000009050000290000000305500210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004204350000000e0230002900000000000204350000000802100069000000000232001900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000800d02000039000000030300003900000ce904000041000000120500002900000013060000290000127f0000013d00000c880020009c000010060000613d00000c890020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b00000c730010009c00001e880000213d00000004011000390000000002080019319320230000040f319321b20000040f00000af40000013d00000c970020009c0000100b0000613d00000c980020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000086b01000039000000000101041a000000c00110027000000e140000013d00000cb00020009c000010150000613d00000cb10020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d000000800000043f00000ce001000041000031940001042e00000c7f0020009c0000101c0000613d00000c800020009c00001e880000c13d000001640080008c00001e880000413d000000e402100370000000000202043b000c00000002001d000000c402100370000000000202043b000d00000002001d000000a402100370000000000202043b000e00000002001d0000008402100370000000000202043b000f00000002001d0000006402100370000000000202043b001000000002001d0000004402100370000000000202043b001100000002001d0000002402100370000000000202043b001200000002001d0000000402100370000000000202043b000b00000002001d0000010402100370000000000202043b001300000002001d00000c660020009c00001e880000213d0000012402100370000000000202043b000a00000002001d00000c660020009c00001e880000213d0000014402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000403200039000000000131034f000000000101043b000900000001001d00000c730010009c00001e880000213d0000002402200039000800000002001d0000000901200029000000000081004b00001e880000213d0000000001000415000700000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c6602100197000600000002001d0000001301200029001300000001001d00000c660010009c000014fc0000a13d00000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d01000041000031950001043000000cd50020009c000010220000613d00000cd60020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000000001000412002d00000001001d002c00e00000003d0000800501000039000000440300003900000000040004150000002d0440008a000010a20000013d00000cca0020009c000010800000613d00000ccb0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000440080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d0000000404200039000000000948004900000ced0090009c00001e880000213d000001800090008c00001e880000413d000000000241034f0000002403100370000000000303043b001300000003001d000000000202043b00000c690020009c00001e880000213d0000002005400039000000000351034f000000000303043b00000c690030009c00001e880000213d0000002006500039000000000561034f000000000505043b00000c690050009c00001e880000213d0000002007600039000000000671034f000000000606043b00000c690060009c00001e880000213d000000200a7000390000000007a1034f000000000707043b00000c690070009c00001e880000213d000000200ba00039000000000cb1034f000000400ba00039000000000bb1034f000000600da00039000000000dd1034f000000800ea00039000000000fe1034f000000000a0d043b00120000000a001d000000000a0b043b00110000000a001d000000000a0c043b00100000000a001d000000000c0f043b00000c6600c0009c00001e880000213d000000200fe00039000000000ef1034f000000000e0e043b00000c6600e0009c00001e880000213d000000200ff00039000000000af1034f000000000a0a043b000f0000000a001d00000c6600a0009c00001e880000213d000000200af00039000000000aa1034f000000000f0a043b0000001f0990008a00000cec0af0019700000cec0b900197000e000000ba01430000000000ba004b000000000a00001900000cec0a004041000d0000000f001d00000000009f004b000000000900001900000cec090080410000000e0b00002900000cec00b0009c000000000a09c01900000000000a004b00001e880000c13d0000000d09400029000000000491034f000000000404043b000e00000004001d00000c730040009c00001e880000213d0000000e0a80006a000000200f90003900000cec04a0019700000cec09f00197000000000b49013f000000000049004b000000000900001900000cec09004041000d0000000f001d0000000000af004b000000000a00001900000cec0a00204100000cec00b0009c00000000090ac019000000000009004b00001e880000c13d0000020009000039000000400090043f000000800020043f000000a00030043f000000c00050043f000000e00060043f000001000070043f0000001002000029000001200020043f0000001102000029000001400020043f0000001202000029000001600020043f0000018000c0043f000001a000e0043f0000000f02000029000001c00020043f0000000e020000290000001f0220003900000ce40220019700000d2e0020009c00000efc0000213d0000003f0220003900000ce4022001970000020002200039000000400020043f0000000e02000029000002000020043f0000000d02200029000000000082004b00001e880000213d0000000d021003600000000e0400002900000d58034001980000001f0540018f000002200130003900000a470000613d0000022006000039000000000702034f000000007407043c0000000006460436000000000016004b00000a430000c13d000000000005004b00000a540000613d000000000232034f0000000303500210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f00000000002104350000000e0100002900000220011000390000000000010435000001e00090043f0000000001000415001200000001001d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000ce100100198000011170000c13d000001c00100043d001100000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000110200002900000c6602200197000000000101043b00000c6601100197000000000012004b000018ee0000813d0000008001000039319321b20000040f001100000001001d000001400100043d001000000001001d000000a00100043d000f00000001001d000001e00100043d000e00000001001d31931f110000040f000000a0021000390000001303000029000000000032043500000080021000390000000e03000029000000000032043500000060021000390000000f03000029000000000032043500000040021000390000001003000029000000000032043500000020021000390000001103000029000000000032043500000080020000390000000000210435000000000200041100000c6902200197319325050000040f00000001010000390000006502000039000000000012041b000016d00000013d00000cd00020009c0000108d0000613d00000cd10020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000440080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000002401100370000000000101043b001200000001001d00000c690010009c00001e880000213d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d0000006501000039000000000201041a000000020020008c00000f900000613d0000000202000039000000000021041b000000120000006b0000128a0000c13d0000001301000029000000000010043f0000087401000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000201041a00000d0c022001970000001206000029000000000262019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000030300003900000d55040000410000001305000029000011160000013d00000cc50020009c000010980000613d00000cc60020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000d2201000041000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d000000000108001931931f610000040f001300000002001d00000c6901100197000000000010043f0000087301000039000000200010043f00000040020000390000000001000019319331510000040f000000130200002931931eef0000040f000000000101041a000000400200043d000000000012043500000c660020009c00000c6602008041000000400120021000000ce3011001c7000031940001042e0000000002000416000000000002004b00001e880000c13d000000440080008c00001e880000413d0000002402100370000000000202043b0000000401100370000000000101043b00000c690010009c000018f50000213d001200000002001d001300000001001d000000000010043f0000087301000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000200041100000c6902200197001100000002001d000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000101041a001000000001001d000000000001004b0000124b0000c13d00000cf001000041000000000010043f00000c750100004100003195000104300000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000403200039000000000131034f000000000101043b001100000001001d00000c730010009c00001e880000213d0000002403200039000000110100002900000005011002100000000002310019000000000082004b00001e880000213d001000000003001d0000003f0210003900000cea0220019700000ceb0020009c00000efc0000213d0000008002200039000000400020043f0000001102000029000000800020043f000000000002004b00000b590000613d00000060040000390000000002000019000000a00320003900000000004304350000002002200039000000000012004b00000b510000413d000000110000006b0000001007000029000013c50000c13d000000400100043d00000020020000390000000003210436000000800200043d0000000000230435000000400310003900000005042002100000000006430019000000000002004b000012de0000c13d000000000216004900000c430000013d0000000001000416000000000001004b00001e880000c13d0000000001000412001d00000001001d001c00c00000003d0000800501000039000000440300003900000000040004150000001d0440008a00000e110000013d0000000001000416000000000001004b00001e880000c13d0000000001000412001b00000001001d001a00400000003d0000800501000039000000440300003900000000040004150000001b0440008a00000e110000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b0000086c02000039000000000202041a000000000021004b00001e880000813d319320b70000040f000000000201041a0000000101100039000000000101041a000000400300043d00000020043000390000000000140435000000000023043500000c660030009c00000c6603008041000000400130021000000cda011001c7000031940001042e0000000001000416000000000001004b00001e880000c13d0000000001000412002f00000001001d002e00a00000003d0000800501000039000000440300003900000000040004150000002f0440008a00000e110000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000404200039000000000341034f000000000503043b00000c730050009c00001e880000213d00000024032000390000000002350019000000000082004b00001e880000213d0000086906000039000000000606041a00000cd90660009a00000c69066001970000000007000411000000000067004b00000f9a0000c13d0000000006000415001300000006001d0000006507000039000000000607041a000000020060008c000007660000613d0000000206000039000000000067041b000000400050008c00001e880000413d0000002004400039000000000541034f000000000505043b001200000005001d00000c690050009c00001e880000213d0000002004400039000000000441034f000000000404043b00000c730040009c00001e880000213d00000000043400190000001f03400039000000000023004b00001e880000813d000000000341034f000000000303043b00000c730030009c00000efc0000213d0000001f0530003900000ce4055001970000003f0550003900000ce605500197000000400600043d0000000005560019001100000006001d000000000065004b0000000006000039000000010600403900000c730050009c00000efc0000213d000000010060019000000efc0000c13d0000002004400039000000400050043f00000011050000290000000005350436001000000005001d0000000005430019000000000025004b00001e880000213d000000000241034f00000d58043001980000001f0530018f000000100140002900000bf80000613d000000000602034f0000001007000029000000006806043c0000000007870436000000000017004b00000bf40000c13d000000000005004b00000c050000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f000000000021043500000010013000290000000000010435000000120000006b000017010000c13d00000d0401000041000000000010043f00000c750100004100003195000104300000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000402100370000000000202043b001100000002001d00000c730020009c00001e880000213d00000011020000290000002302200039000000000082004b00001e880000813d00000011020000290000000402200039000000000121034f000000000101043b001000000001001d00000c730010009c00001e880000213d0000001101000029000000240a100039000000100100002900000005011002100000000002a10019000000000082004b00001e880000213d0000003f0210003900000cea0320019700000ceb0030009c00000efc0000213d0000008002300039000000400020043f0000001004000029000000800040043f000000000004004b000012c00000c13d000000400100043d0000000002000415001300000002001d00000020020000390000000002210436000000800300043d000000000032043500000040041000390000000502300210000000000a240019000000000003004b0000137e0000c13d00000000020004150000001302200069000000000200000200000000021a004900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000031940001042e000000640080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c660020009c00001e880000213d0000002402100370000000000202043b00000c730020009c00001e880000213d000000000328004900000ced0030009c00001e880000213d000000c40030008c00001e880000413d0000014003000039000000400030043f0000000403200039000000000331034f000000000303043b000000800030043f0000002403200039000000000331034f000000000303043b000000a00030043f0000004403200039000000000431034f000000000404043b00000c730040009c00001e880000213d000000000624001900000000040004150000002305600039000000000085004b00001e880000813d0000000405600039000000000551034f000000000705043b00000c730070009c00000efc0000213d00000005097002100000003f0590003900000cea0a500197000000400500043d000000000aa5001900000000005a004b000000000b000039000000010b00403900000c7300a0009c00000efc0000213d0000000100b0019000000efc0000c13d0000004000a0043f000000000075043500000024066000390000000009960019000000000089004b00001e880000213d000000000007004b00000c900000613d0000000007050019000000000a61034f000000000a0a043b00000020077000390000000000a704350000002006600039000000000096004b00000c890000413d000000000600041500000000046400490000000004000002000000c00050043f0000002003300039000000000431034f000000000404043b00000c660040009c00001e880000213d000000e00040043f0000002003300039000000000431034f000000000404043b00000c690040009c00001e880000213d000001000040043f0000002003300039000000000331034f000000000303043b00000c730030009c00001e880000213d00000000042300190000002302400039000000000082004b000000000300001900000cec0300804100000cec02200197000000000002004b000000000500001900000cec0500404100000cec0020009c000000000503c0190000000002000415000000000005004b00001e880000c13d0000000403400039000000000331034f000000000503043b00000c730050009c00000efc0000213d00000005065002100000003f0360003900000cea07300197000000400300043d0000000007730019000000000037004b0000000009000039000000010900403900000c730070009c00000efc0000213d000000010090019000000efc0000c13d000000400070043f000000000053043500000024044000390000000006640019000000000086004b00001e880000213d000000000005004b00000cd60000613d0000000005030019000000000741034f000000000707043b00000c690070009c00001e880000213d000000200550003900000000007504350000002004400039000000000064004b00000ccd0000413d000000000400041500000000024200490000000002000002000001200030043f0000004402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b000000000400001900000cec0400804100000cec03300197000000000003004b000000000500001900000cec0500404100000cec0030009c000000000504c019000000000005004b00001e880000c13d0000000403200039000000000331034f000000000303043b00000c730030009c00000efc0000213d00000005043002100000003f0540003900000cea05500197000000400600043d0000000005560019001100000006001d000000000065004b0000000006000039000000010600403900000c730050009c00000efc0000213d000000010060019000000efc0000c13d0000002402200039000000400050043f00000011050000290000000005350436001000000005001d0000000004240019000000000084004b00001e880000213d000000000003004b00000d0e0000613d0000001103000029000000000521034f000000000505043b000000200330003900000000005304350000002002200039000000000042004b00000d070000413d0000000001000415000600000001001d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006502000039000000000012041b000001000100043d00000c6901100197319324740000040f000000a00100043d001200000001001d00000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000120010006b000018f90000c13d0000086c01000039000000000101041a000000130010006c00001a070000a13d0000086c01000039000000000010043f000000130100002900000003011000c9000e00000001001d00000cf90110009a000000000101041a000f00000001001d000000400100043d0000002002100039000000200300003900000000003204350000004003100039000000800400043d00000000004304350000006003100039000000a00400043d00000000004304350000008003100039000000c005000039000000c00400043d00000000005304350000010003100039000000000504043300000000005304350000012003100039000000000005004b00000d510000613d00000000060000190000002004400039000000000704043300000000037304360000000106600039000000000056004b00000d4b0000413d000000e00400043d00000c6604400197000000a0051000390000000000450435000001000400043d00000c6904400197000000c00510003900000000004504350000000004130049000000400540008a000000e006100039000001200400043d000000000056043500000000050404330000000003530436000000000005004b00000d6a0000613d00000000060000190000002004400039000000000704043300000c690770019700000000037304360000000106600039000000000056004b00000d630000413d0000000003130049000000200430008a00000000004104350000001f0330003900000d58043001970000000003140019000000000043004b0000000004000039000000010400403900000c730030009c00000efc0000213d000000010040019000000efc0000c13d000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b00000011020000290000000002020433000000000002004b00000dac0000613d001200000000001d0000001202000029000000050220021000000010022000290000000002020433000000000021004b00000d9a0000813d000000000010043f000000200020043f000000000100041400000d9d0000013d000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000001203000029001200010030003d00000011020000290000000002020433000000120020006b00000d900000413d0000000f0010006c000018ea0000c13d0000086c01000039000000000101041a000000130010006c00001a070000a13d000000e00100043d001000000001001d000000080110027000000d3801100197001200000001001d000000000010043f0000000e0100002900000d390110009a001100000001001d000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d0000001002000029000000ff0220018f000000010220020f000000000101043b000000000101041a001000000002001d000f00000001001d0000000000210170000019110000c13d0000001201000029000000000010043f0000001101000029000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d0000000f0300002900000010023001af000000000101043b000000000021041b000001200200043d000000c00300043d0000000001000415000300000001001d001000000003001d0000000013030434000900000001001d000c00000002001d0000000021020434000800000002001d000a00000003001d000000000031004b000019150000c13d000000800100043d000400000001001d000000a00100043d000200000001001d000000e00100043d000100000001001d000001000100043d000d0c690010019b0000000a0000006b000500000000001d000019190000c13d000000040000006b00001a0d0000c13d0000000001000411001200000001001d00001e3c0000013d0000000001000416000000000001004b00001e880000c13d0000000001000412001500000001001d001401000000003d000080050100003900000044030000390000000004000415000000150440008a000010a20000013d0000000001000416000000000001004b00001e880000c13d0000000001000412002300000001001d002200800000003d000080050100003900000044030000390000000004000415000000230440008a000000050440021000000cf602000041319331660000040f00000c6601100197000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d0000086b01000039000000000101041a00000ce1001001980000000001000039000000010100c039000000800010043f00000ce001000041000031940001042e0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000402100370000000000402043b00000c690040009c00001e880000213d0000004402100370000000000302043b0000002401100370000000000201043b0000000001040019319321660000040f00000af40000013d0000000001000416000000000001004b00001e880000c13d0000086901000039000010200000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b000000000010043f0000087201000039000000200010043f00000040020000390000000001000019319331510000040f000000000101041a000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d0000000001000412002b00000001001d002a01600000003d0000800501000039000000440300003900000000040004150000002b0440008a00000f660000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b001300000001001d00000c730010009c00001e880000213d0000001301000029001200040010003d000000120180006a00000ced0010009c00001e880000213d000001800010008c00001e880000413d0000006501000039000000000201041a000000020020008c00000f900000613d0000000202000039000000000021041b0000086b01000039000000000101041a00000ce100100198000011170000c13d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000130200002900000144022000390000000103000367000000000423034f000000000101043b000000000404043b00000c660040009c00001e880000213d00000c6601100197000000000014004b0000154b0000813d00110020002000920000001102300360000000000202043b00000c660020009c00001e880000213d000000000012004b000015c00000813d00000d3501000041000000000010043f00000c75010000410000319500010430000001640080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000002402100370000000000202043b001200000002001d00000c690020009c00001e880000213d0000004402100370000000000202043b001100000002001d00000c690020009c00001e880000213d0000006402100370000000000202043b001000000002001d00000c690020009c00001e880000213d000000c402100370000000000202043b000f00000002001d000000a402100370000000000202043b000e00000002001d0000008402100370000000000202043b000c00000002001d000000e402100370000000000202043b000d00000002001d00000c690020009c00001e880000213d0000010402100370000000000202043b000b00000002001d00000c660020009c00001e880000213d0000012402100370000000000202043b000a00000002001d00000c660020009c00001e880000213d0000014401100370000000000101043b00000c730010009c00001e880000213d0000000401100039000000000208001931931fa30000040f000900000001001d000800000002001d0000800b0100003900000004030000390000000004000415000000300440008a000000050440021000000cdb02000041319331660000040f00000c6601100197000700000001001d0000000b02000029319320c50000040f000000000a01001900000013010000290000001202000029000000110300002900000010040000290000000c050000290000000e060000290000000f070000290000000d0800002900000007090000290000000a0b000029000000090c000029000000080d000029319320d10000040f0000000001000019000031940001042e0000000002000416000000000002004b00001e880000c13d000000440080008c00001e880000413d0000002402100370000000000702043b0000000401100370000000000601043b0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d0000006501000039000000000201041a000000020020008c00000f900000613d0000000202000039000000000021041b0000086c02000039000000000102041a00000c730010009c000011790000a13d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000000001000416000000000001004b00001e880000c13d319320060000040f0000002002000039000000400300043d001300000003001d000000000223043631931f710000040f0000001302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f000031940001042e0000000001000416000000000001004b00001e880000c13d000000000108001931931fbd0000040f001300000001001d001000000002001d001100000003001d000000000100041a0000000801100270000000ff0110018f319321900000040f0000001301000029000000c00110021000000cdf011001970000086b02000039000000000302041a00000cde03300197000000000113019f000000000012041b000000400100043d001300000001001d000000400200003931931eff0000040f00000cf40100004100000013020000290000002003200039000f00000003001d000000000013043500000009010000390000000000120435000000400100043d001200000001001d000000400200003931931eff0000040f00000cf50100004100000012020000290000002003200039000e00000003001d000000000013043500000005010000390000000000120435000000000100041a0000000801100270000000ff0110018f000d00000001001d319321900000040f0000000d01000029319321900000040f000000130100002900000000020104330000000f01000029319331510000040f00000012020000290000000002020433001300000001001d0000000e01000029319331510000040f0000047f020000390000001303000029000000000032041b0000048002000039000000000012041b319329f40000040f31932a0c0000040f000000100100002931932a270000040f000000110100002931932a400000040f0000000001000019000031940001042e0000000001000416000000000001004b00001e880000c13d0000000001000412002100000001001d002000200000003d000080050100003900000044030000390000000004000415000000210440008a000000050440021000000cf602000041000010890000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b001300000001001d00000c690010009c00001e880000213d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d319322580000040f000000130100002931932a270000040f0000118d0000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000501043b0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d0000006501000039000000000201041a000000020020008c000011020000c13d00000c6c01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f00000d5601000041000000c40010043f00000d5101000041000031950001043000000c6c01000041000000800010043f0000002001000039000000840010043f0000001801000039000000a40010043f00000d2501000041000000c40010043f00000d51010000410000319500010430000001240080008c00001e880000413d0000000402100370000000000902043b00000c690090009c00001e880000213d0000002402100370000000000202043b00000c690020009c00001e880000213d0000004403100370000000000303043b00000c690030009c00001e880000213d000000a404100370000000000604043b00000d140060019800000d1504000041000000000400601900000d1605600197000000000754019f0000008404100370000000000504043b0000006404100370000000000404043b000000000076004b00001e880000c13d000000c407100370000000000707043b00000c660070009c00001e880000213d000000e40a100370000000000c0a043b00000c7300c0009c00001e880000213d000000230ac0003900000000008a004b00001e880000813d000000040bc00039000000000ab1034f000000000a0a043b00000c7300a0009c00000efc0000213d0000001f0da0003900000ce40dd0019700000ce500d0009c00000efc0000213d000000240cc000390000003f0dd0003900000ce40dd00197000000800dd000390000004000d0043f0000008000a0043f000000000cca001900000000008c004b00001e880000213d0000002008b00039000000000881034f00000d580ba001980000001f0ca0018f000000a001b0003900000fe80000613d000000a00d000039000000000e08034f00000000ef0e043c000000000dfd043600000000001d004b00000fe40000c13d00000000000c004b00000ff50000613d0000000008b8034f000000030bc00210000000000c010433000000000cbc01cf000000000cbc022f000000000808043b000001000bb000890000000008b8022f0000000008b801cf0000000008c8019f0000000000810435000000a001a0003900000000000104350000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006508000039000000000018041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d00000080080000390000000001090019319322700000040f0000118d0000013d0000000001000416000000000001004b00001e880000c13d00000c5b01000039000010200000013d0000000001000416000000000001004b00001e880000c13d0000800b0100003900000004030000390000000004000415000000300440008a000000050440021000000ce702000041000010890000013d0000000001000416000000000001004b00001e880000c13d00000d0701000041000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d00000c5a01000039000000000101041a000010a50000013d000001040080008c00001e880000413d0000000402100370000000000202043b00000c690020009c00001e880000213d0000002403100370000000000303043b00000c690030009c00001e880000213d0000008404100370000000000604043b00000d140060019800000d1504000041000000000400601900000d1605600197000000000754019f0000006404100370000000000504043b0000004404100370000000000404043b000000000076004b00001e880000c13d000000a407100370000000000707043b00000c660070009c00001e880000213d000000c409100370000000000b09043b00000c7300b0009c00001e880000213d0000002309b00039000000000089004b00001e880000813d000000040ab000390000000009a1034f000000000909043b00000c730090009c00000efc0000213d0000001f0c90003900000ce40cc0019700000ce500c0009c00000efc0000213d000000240bb000390000003f0cc0003900000ce40cc00197000000800cc000390000004000c0043f000000800090043f000000000bb9001900000000008b004b00001e880000213d0000002008a00039000000000881034f00000d580a9001980000001f0b90018f000000a001a00039000010620000613d000000a00c000039000000000d08034f00000000de0d043c000000000cec043600000000001c004b0000105e0000c13d00000000000b004b0000106f0000613d0000000008a8034f000000030ab00210000000000b010433000000000bab01cf000000000bab022f000000000808043b000001000aa000890000000008a8022f0000000008a801cf0000000008b8019f0000000000810435000000a00190003900000000000104350000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006508000039000000000018041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d00000000010004110000008008000039319322700000040f0000118d0000013d0000000001000416000000000001004b00001e880000c13d0000800b0100003900000004030000390000000004000415000000300440008a000000050440021000000cdb02000041319331660000040f000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d0000000001000412002900000001001d002800600000003d000080050100003900000044030000390000000004000415000000290440008a000010a20000013d0000000001000416000000000001004b00001e880000c13d0000000001000412002500000001001d002401400000003d000080050100003900000044030000390000000004000415000000250440008a000000050440021000000cf602000041319331660000040f00000c6901100197000000800010043f00000ce001000041000031940001042e000000400100043d000000640210003900000c6a030000410000000000320435000000440210003900000c6b03000041000000000032043500000024021000390000002703000039000012400000013d000000640130003900000d18040000410000000000410435000000440130003900000d1904000041000000000041043500000024013000390000003804000039000000000041043500000c6c01000041000000000013043500000004013000390000002003000039000000000031043500000c6d012001c700003195000104300000000203000039000000000032041b0000086b02000039000000000202041a00000ce100200198000011170000c13d001000000005001d001100000004001d001300000001001d00000140011000390000000001010433001200000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000120200002900000c6602200197000000000101043b00000c6601100197000000000012004b000012d20000813d0000001301000029319321b20000040f0000001303000029000000c0023000390000000002020433001200000002001d00000020023000390000000002020433000e00000002001d00000160023000390000000002020433000d00000002001d000f00000001001d31931f110000040f000000a0021000390000001003000029000000000032043500000080021000390000000d03000029000000000032043500000060021000390000000e03000029000000000032043500000040021000390000001203000029000000000032043500000020021000390000000f030000290000000000320435000000130200002900000000002104350000001102000029319325050000040f0000118d0000013d0000000202000039000000000021041b0000086c01000039000000000201041a000000000052004b00001a070000a13d000000000010043f00000003015000c900000cf80210009a000000000002041b00000cf90110009a000000000001041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000cfa040000410000118a0000013d00000d2f01000041000000000010043f00000c7501000041000031950001043000000d1a02000041000000000202041a00000c6902200197000000000012004b000012370000c13d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b000012830000c13d000000400100043d001200000001001d00000cfe0010009c00000efc0000213d00000012020000290000002001200039000000400010043f00000000000204350000000001000415001100000001001d00000d1b01000041000000000101041a000000ff001001900000154f0000c13d000000400200043d001000000002001d00000d1c01000041000000000012043500000c660020009c00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c75011001c70000001302000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000100b0000290000001005700029000011550000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000011510000c13d000000000006004b000011620000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f00000000001504350000000100200190000015690000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000c730010009c00000efc0000213d000000010020019000000efc0000c13d000000400010043f000000200030008c00001e880000413d00000000020b043300000d1a0020009c000016d30000c13d00000013010000290000001202000029000000000300001931932fc60000040f000016b10000013d0000000103100039000000000032041b000000000020043f00000003021000c900000cf90320009a000000000063041b00000cf80220009a000000000072041b000000000200041400000c660510019700000c660020009c00000c6602008041000000c00120021000000ce8011001c70000800d02000039000000040300003900000d1f04000041319331840000040f000000010020019000001e880000613d00000001010000390000006502000039000000000012041b0000000001000019000031940001042e0000000001000019000000010110018f000001a00010043f000000000005004b0000001305000029000011a50000613d00000c690050019800000000020000390000000102006039000000120000006b0000000003000039000000010300c039000000000223013f0000000100200190000011a50000613d00000c7401000041000000000010043f00000c75010000410000319500010430000001c00050043f0000001006000029000001e00060043f000000800200043d00000140000004430000016000200443000000a00300043d00000020020000390000018000200443000001a0003004430000004003000039000000c00400043d000001c000300443000001e0004004430000006003000039000000e00400043d000002000030044300000220004004430000008003000039000001000400043d00000240003004430000026000400443000000a003000039000001200400043d0000028000300443000002a000400443000000c003000039000001400400043d000002c000300443000002e000400443000000e003000039000001600400043d000003000030044300000320004004430000010003000039000001800400043d0000034000300443000003600040044300000120030000390000038000300443000003a0001004430000014001000039000003c000100443000003e00050044300000160010000390000040000100443000004200060044300000100002004430000000c01000039000001200010044300000c7601000041000031940001042e0000001f0350003900000c67033001970000003f0330003900000c7204300197000000400300043d0000000004430019000000000034004b0000000006000039000000010600403900000c730040009c00000efc0000213d000000010060019000000efc0000c13d000000400040043f0000001f0650018f000000000453043600000c68075001980000000005740019000011f20000613d000000000801034f0000000009040019000000008a08043c0000000009a90436000000000059004b000011ee0000c13d000000000006004b000001240000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f0000000000150435000001240000013d000e00000003001d001000000002001d00000d0801000041000000000010044300000000010004100000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b0000131b0000c13d0000000e01000029000000ff0110018f000000010010008c00000010010000290000000501100270000000000100003f000000010100603f00000000010004150000131e0000c13d000000000200041500000000012100490000000001000002000000000200041a00000d590120019700000001011001bf0000000f0000006b0000ffff0200608a000000000121616f00000100011061bf000000000010041b00000c5a02000039000000000302041a00000d0c033001970000800a033001bf000000000032041b0000ff0000100190000013280000c13d000000400100043d000000640210003900000d12030000410000000000320435000000440210003900000d1303000041000000000032043500000024021000390000002b03000039000012400000013d000000400100043d000000640210003900000d23030000410000000000320435000000440210003900000d2403000041000000000032043500000024021000390000002c03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c700003195000104300000001301000029000000000010043f0000087301000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000001102000029000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000001041b000000120200002900000c690020009c0000001301000029000018f50000213d000000100300002931932a590000040f000000400100043d0000001002000029000000000021043500000c660010009c00000c66010080410000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c6e011001c70000800d02000039000000040300003900000cef04000041000000130500002900000012060000290000000007000411319331840000040f000000010020019000001e880000613d000001320000013d000000400100043d000000440210003900000d25030000410000000000320435000000240210003900000018030000390000076c0000013d00000d5201000041000000800010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000d53011001c70000001202000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000012a20000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000129e0000c13d000000000006004b000012af0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000014510000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c00001e880000413d000000800100043d00000c690010009c00001e880000213d000000130010006c00000abc0000613d00000d5401000041000000000010043f00000c7501000041000031950001043000000d210030009c00000efc0000213d000000600500003900000000030000190000004004200039000000400040043f000000200420003900000000005404350000000000020435000000a00430003900000000002404350000002003300039000000000013004b0000146f0000813d000000400200043d00000d0d0020009c000012c40000a13d00000efc0000013d00000013010000290000004001100039000000000101043300000c690010009c000018f50000213d0000000002000411000000000021004b000010e00000613d00000d3001000041000000000010043f00000c750100004100003195000104300000000005000019000000800f000039000012f30000013d0000000309900210000000000a0b0433000000000a9a01cf000000000a9a022f00000000080804330000010009900089000000000898022f00000000089801cf0000000008a8019f00000000008b04350000001f0870003900000d58088001970000000007670019000000000007043500000000066800190000000105500039000000000025004b00000b630000813d0000000007160049000000400770008a0000000003730436000000200ff0003900000000070f04330000000087070434000000000676043600000d580a7001970000001f0970018f000000000068004b0000130e0000813d00000000000a004b0000130a0000613d000000000c980019000000000b960019000000200bb0008a000000200cc0008a000000000dab0019000000000eac0019000000000e0e04330000000000ed0435000000200aa0008c000013040000c13d000000000009004b000012eb0000613d000000000b060019000012e10000013d000000000ba6001900000000000a004b000013170000613d000000000c080019000000000d06001900000000ce0c0434000000000ded04360000000000bd004b000013130000c13d000000000009004b000012eb0000613d0000000008a80019000012e10000013d00000010010000290000000501100270000000000100003f000000400100043d000000640210003900000d0a030000410000000000320435000000440210003900000d0b03000041000000000032043500000024021000390000002e03000039000012400000013d0000001301000029000000c0011002100000086b02000039000000000302041a00000cde03300197000000000113019f000000000012041b000000400100043d00000d0d0010009c00000efc0000213d0000004002100039000000400020043f0000000902000039000000000221043600000cf4030000410000000000320435000000400300043d001300000003001d00000d0d0030009c00000efc0000213d00000013040000290000004003400039000000400030043f0000000503000039000000000434043600000cf503000041001000000004001d000000000034043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000100200002900000c660020009c00000c660200804100000040022002100000001303000029000000000303043300000c660030009c00000c66030080410000006003300210000000000223019f000000000101043b001300000001001d000000000100041400000c660010009c00000c6601008041000000c001100210000000000121019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000047f020000390000001303000029000000000032041b0000048002000039000000000012041b000000000100041a0000ff00001001900000122d0000613d00000001020000390000006501000039000000000021041b000000120000006b000016e00000c13d00000d1101000041000000000010043f00000c7501000041000031950001043000000080050000390000000008000019000013940000013d000000000bdb00190000000306c00210000000000a0e0433000000000a6a01cf000000000a6a022f000000000b0b04330000010006600089000000000b6b022f00000000066b01cf0000000006a6019f00000000006e04350000001f0690003900000d580660019700000000092900190000000000090435000000000a2600190000000108800039000000000038004b00000c3f0000813d00000000021a0049000000400220008a0000000004240436000000200550003900000000020504330000000092020434000000000002004b0000000002000039000000010200c03900000000022a04360000000009090433000000400600003900000000006204350000004002a0003900000000b9090434000000000092043500000d580d9001970000001f0c90018f0000006002a0003900000000002b004b000013b90000813d00000000000d004b000013b50000613d000000000acb0019000000000ec20019000000200ee0008a000000200fa0008a000000000ade00190000000006df0019000000000606043300000000006a0435000000200dd0008c000013af0000c13d00000000000c004b0000138c0000613d000000000e020019000013820000013d000000000ed2001900000000000d004b000013c20000613d000000000f0b0019000000000a02001900000000f60f0434000000000a6a04360000000000ea004b000013be0000c13d00000000000c004b000013810000c13d0000138c0000013d0000000009000019000000050a9002100000000001a700190000000101100367000000000101043b000000000200003100000000037200490000001f0330008a00000cec0430019700000cec05100197000000000645013f000000000045004b000000000400001900000cec04004041000000000031004b000000000300001900000cec0300804100000cec0060009c000000000403c019000000000004004b00001e880000c13d00000000037100190000000101300367000000000101043b00000c730010009c00001e880000213d0000000004120049000000200230003900000cec0340019700000cec05200197000000000635013f000000000035004b000000000300001900000cec03004041000000000042004b000000000400001900000cec0400204100000cec0060009c000000000304c019000000000003004b00001e880000c13d00000d58041001980000000105200367000000400200043d0000000003420019000013f90000613d000000000605034f0000000007020019000000006806043c0000000007870436000000000037004b000013f50000c13d00130000000a001d001200000009001d0000001f06100190000014080000613d000000000445034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000003120019000000000003043500000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000000020004103193318e0000040f000000600310027000000c66043001980000006003000039000000130a000029000014410000613d0000001f0340003900000c67033001970000003f0330003900000c7205300197000000400300043d0000000005530019000000000035004b0000000006000039000000010600403900000c730050009c00000efc0000213d000000010060019000000efc0000c13d000000400050043f000000000743043600000c68064001980000000005670019000014340000613d000000000801034f000000008908043c0000000007970436000000000057004b000014300000c13d0000001f04400190000014410000613d000000000161034f0000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f0000000000150435000000010020019000000010070000290000001209000029000015790000613d000000800100043d000000000091004b00001a070000a13d000000a001a000390000000000310435000000800100043d000000000091004b00001a070000a13d0000000109900039000000110090006c000013c60000413d00000b590000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014580000c13d000000000005004b000014690000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c660020009c00000c66020080410000004002200210000000000112019f00003195000104300000000009000019000f0000000a001d000014790000013d000000010120018f00000000011b0436000000000031043500000012090000290000000109900039000000100090006c00000c330000813d000000800100043d000000000091004b00001a070000a13d00000005019002100000000003a100190000000102000367000000000332034f000000000403043b0000000003000031000000110530006a000000430550008a00000cec0650019700000cec07400197000000000867013f000000000067004b000000000600001900000cec06004041000000000054004b000000000500001900000cec0500804100000cec0080009c000000000605c019000000000006004b00001e880000c13d000000a001100039000000000b0104330000000004a40019000000000142034f000000000101043b00000c730010009c00001e880000213d0000000005130049000000200340003900000cec0450019700000cec06300197000000000746013f000000000046004b000000000400001900000cec04004041000000000053004b000000000500001900000cec0500204100000cec0070009c000000000405c019000000000004004b00001e880000c13d000000000432034f00000d5805100198000000400200043d0000000003520019000014b20000613d000000000604034f0000000007020019000000006806043c0000000007870436000000000037004b000014ae0000c13d00130000000b001d001200000009001d0000001f06100190000014c10000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000003120019000000000003043500000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000000020004103193318e0000040f000000600310027000000c660430019800000060030000390000000f0a000029000000130b000029000014720000613d0000001f0340003900000c67033001970000003f0330003900000c7205300197000000400300043d0000000005530019000000000035004b0000000006000039000000010600403900000c730050009c00000efc0000213d000000010060019000000efc0000c13d000000400050043f000000000743043600000c68064001980000000005670019000014ee0000613d000000000801034f000000008908043c0000000007970436000000000057004b000014ea0000c13d0000001f04400190000014720000613d000000000161034f0000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f0000000000150435000014720000013d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d000000c00110027000000c6601100197000500000001001d319321a70000040f0000086b03000039000000000203041a00000cde02200197000000c00110021000000cdf01100197000000000112019f000000000013041b31931f1d0000040f0000000003010019000400000001001d00000160011000390000000a020000290000000000210435000001400130003900000013020000290000000000210435000001200130003900000006020000290000000000210435000001000130003900000005020000290000000000210435000000e0013000390000000c020000290000000000210435000000c0013000390000000d020000290000000000210435000000a0013000390000000e02000029000000000021043500000080013000390000000f0200002900000000002104350000006001300039000000100200002900000000002104350000004001300039000000110200002900000000002104350000002001300039000000120200002900000000002104350000000b01000029000000000013043500000000030000310000000801000029000000090200002931931f290000040f0000000403000029000001800230003900000000001204350000000001030019319327c50000040f00000001010000390000006502000039000000000012041b00000000010004150000000702000029000016b30000013d00000d5701000041000000000010043f00000c7501000041000031950001043000000d2a01000041000000000010043f00000c7501000041000031950001043000000d0801000041000000000010044300000013010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b000016ac0000c13d000000400100043d000000640210003900000d27030000410000000000320435000000440210003900000d2803000041000000000032043500000024021000390000002d03000039000012400000013d000000400200043d001300000002001d00000c6c0100004100000000001204350000000401200039319326250000040f0000001302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f00003195000104300000000001030433000000440010008c00001e880000413d00000004013000390000000002010433000000000100041500000ced0020009c00001e880000213d000000200020008c00001e880000413d0000002403300039000000000403043300000c730040009c00001e880000213d000000000623001900000000023400190000001f03200039000000000063004b000000000400001900000cec0400804100000cec0330019700000cec05600197000000000753013f000000000053004b000000000300001900000cec0300404100000cec0070009c000000000304c019000000000003004b00001e880000c13d000000004302043400000c730030009c00000efc0000213d0000001f0230003900000ce4022001970000003f0220003900000ce605200197000000400200043d0000000005520019000000000025004b0000000007000039000000010700403900000c730050009c00000efc0000213d000000010070019000000efc0000c13d000000400050043f00000000053204360000000007340019000000000067004b00001e880000213d00000d58073001970000001f0630018f000000000054004b000018c80000813d000000000007004b000015bc0000613d00000000096400190000000008650019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000015b60000c13d000000000006004b000018de0000613d0000000008050019000018d40000013d00000000020000310000001201000029319320230000040f319321b20000040f001000000001001d000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000101041a000000000001004b000016dc0000c13d0000001001000029000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000000102000039000000000021041b0000001108000029000000600280008a0000000101000367000000000221034f000000200380008a000000000331034f000000c00480008a000000000441034f000000a00580008a000000000551034f000000800680008a000000000661034f000000000781034f000000400880008a000000000881034f000000000303043b001000000003001d000000000308043b000f00000003001d000000000202043b000b00000002001d000000000206043b000c00000002001d000000000205043b000d00000002001d000000000204043b000e00000002001d000000000207043b000a00000002001d00000c660020009c00001e880000213d00000011020000290000002002200039000000000321034f000000000303043b001100000003001d00000c660030009c00001e880000213d0000002003200039000000000331034f000000000403043b0000000003000031000000130530006a000000230550008a00000cec0650019700000cec07400197000000000867013f000000000067004b000000000600001900000cec06004041000000000054004b000000000500001900000cec0500804100000cec0080009c000000000605c019000001000520008a000000000551034f000001400720008a000000000771034f000001200220008a000000000221034f000000000202043b000800000002001d000000000207043b000900000002001d000000000205043b001300000002001d000000000006004b00001e880000c13d0000001204400029000000000241034f000000000202043b00000c730020009c00001e880000213d0000000005230049000000200640003900000cec0450019700000cec07600197000000000847013f000000000047004b000000000400001900000cec04004041000000000056004b000000000500001900000cec0500204100000cec0080009c000000000405c019000000000004004b00001e880000c13d0000001f0420003900000ce4044001970000003f0440003900000ce605400197000000400400043d0000000005540019000000000045004b0000000007000039000000010700403900000c730050009c00000efc0000213d000000010070019000000efc0000c13d000000400050043f00000000052404360000000007620019000000000037004b00001e880000213d000000000361034f00000d58062001980000001f0720018f00000000016500190000165b0000613d000000000803034f0000000009050019000000008a08043c0000000009a90436000000000019004b000016570000c13d000000000007004b000016680000613d000000000363034f0000000306700210000000000701043300000000076701cf000000000767022f000000000303043b0000010006600089000000000363022f00000000036301cf000000000373019f0000000000310435000000000125001900000000000104350000000001040433000000000001004b0000000002000019000016800000613d00000c660050009c00000c6605008041000000400250021000000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000201043b000000400100043d00000120031000390000000000230435000001000210003900000008030000290000000000320435000000e00210003900000009030000290000000000320435000000c00210003900000013030000290000000000320435000000a0021000390000001103000029000000000032043500000080021000390000000a03000029000000000032043500000060021000390000000b03000029000000000032043500000040021000390000000c03000029000000000032043500000020021000390000000d0300002900000000003204350000000e02000029000000000021043500000c660010009c00000c66010080410000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d2c011001c70000800d02000039000000030300003900000d2d040000410000000f050000290000001006000029000011160000013d00000d1a01000041000000000201041a00000d0c0220019700000013022001af000000000021041b00000000010004150000001102000029000000000112004900000000010000020000000001000019000031940001042e00000cfd01000041000000000010043f00000c7501000041000031950001043000000d0801000041000000000010044300000013010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b0000155f0000613d00000d1a01000041000000000201041a00000d0c0220019700000013022001af000000000021041b00000000010004150000001202000029000016b30000013d000000640210003900000d1d030000410000000000320435000000440210003900000d1e03000041000000000032043500000024021000390000002903000039000012400000013d00000d2b01000041000000000010043f00000c750100004100003195000104300000086901000039000000000201041a00000d0c022001970000001205000029000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d0e04000041319331840000040f000000010020019000001e880000613d000000110000006b000017090000c13d00000d1001000041000000000010043f00000c750100004100003195000104300000000901000029000001000110008a0000000101100367000000000101043b00000c690010009c000018f50000213d0000000002000411000000000021004b000003490000613d000012da0000013d00000011010000290000000001010433000000030010008c0000172e0000213d00000d0301000041000000000010043f00000c750100004100003195000104300000086a01000039000000000201041a00000d0c022001970000001105000029000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d0f04000041319331840000040f000000010020019000001e880000613d0000000f0000006b000001320000c13d000000000200041a00000d5b01200197000000000010041b000000400100043d0000000103000039000000000031043500000c660010009c00000c66010080410000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c6e011001c70000800d0200003900000c6f040000410000091e0000013d000000100200002900000c660020009c00000c6602008041000000400220021000000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f0000001202000029319331840000040f000000600310027000000c6603300198000017a60000c13d000f00600000003d0000000100200190000017ce0000613d000000400100043d0000002002000039000000000321043600000011020000290000000002020433000000000023043500000d58052001970000001f0420018f0000004003100039000000100030006b0000188d0000813d000000000005004b0000175a0000613d00000010074000290000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c000017540000c13d000000000004004b000018a40000613d0000000006030019000018990000013d000000000a960019000000000009004b000017670000613d000000000b070019000000000c06001900000000bd0b0434000000000cdc04360000000000ac004b000017630000c13d000000000008004b000017740000613d0000000007970019000000030880021000000000090a043300000000098901cf000000000989022f00000000070704330000010008800089000000000787022f00000000078701cf000000000797019f00000000007a04350000000006610019000000000006043500000064062000390000000000560435000000440520003900000000004504350000001f0110003900000d580110019700000204041000390000000000420435000002430110003900000d58011001970000000001120019000000000021004b0000000004000039000000010400403900000c730010009c00000efc0000213d000000010040019000000efc0000c13d000000400010043f00000c660030009c00000c66030080410000004001300210000000000202043300000c660020009c00000c66020080410000006002200210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000000020004103193318e0000040f000000600310027000000c6603300198000018650000c13d0000000100200190000001320000c13d000000400200043d001200000002001d00000d000100004100000000001204350000000401200039000000130200002931931fd10000040f0000001202000029000015700000013d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019000f00000005001d000000000054004b0000000005000039000000010500403900000c730040009c00000efc0000213d000000010050019000000efc0000c13d000000400040043f0000001f0430018f0000000f05000029000000000635043600000c68053001980000000003560019000017c00000613d000000000701034f000000007807043c0000000006860436000000000036004b000017bc0000c13d000000000004004b000017410000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000017410000013d00000d0101000041000000000010043f00000c75010000410000319500010430000000000a960019000000000009004b000017db0000613d000000000b070019000000000c06001900000000bd0b0434000000000cdc04360000000000ac004b000017d70000c13d000000000008004b000017e80000613d0000000007970019000000030880021000000000090a043300000000098901cf000000000989022f00000000070704330000010008800089000000000787022f00000000078701cf000000000797019f00000000007a0435000000000665001900000000000604350000000f060000290000000006060433000000600710003900000000006704350000000003030433000000800610003900000000003604350000001f0350003900000d5803300197000002200530003900000000005104350000025f0330003900000d58043001970000000003140019000000000043004b0000000004000039000000010400403900000c730030009c00000efc0000213d000000010040019000000efc0000c13d000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b00000012020000290000000002020433000000000002004b000018340000613d0000000003000019001300000003001d000000050230021000000011022000290000000002020433000000000021004b000018220000813d000000000010043f000000200020043f0000000001000414000018250000013d000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000001303000029000000010330003900000012020000290000000002020433000000000023004b000018180000413d0000000e0010006c000018ea0000c13d0000000001000415001100000001001d0000000c010000290000000001010433001200000001001d00000120011000390000000001010433001300000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000130200002900000c6602200197000000000012004b00000e8c0000413d0000000b010000290000000001010433001300000001001d000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000101041a000000020010008c000018fd0000c13d00000d3401000041000000000010043f00000c750100004100003195000104300000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019001300000005001d000000000054004b0000000005000039000000010500403900000c730040009c00000efc0000213d000000010050019000000efc0000c13d000000400040043f0000001f0430018f0000001305000029000000000635043600000c680530019800000000035600190000187f0000613d000000000701034f000000007807043c0000000006860436000000000036004b0000187b0000c13d000000000004004b0000179b0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000179b0000013d0000000006530019000000000005004b000018960000613d0000001007000029000000000803001900000000790704340000000008980436000000000068004b000018920000c13d000000000004004b000018a40000613d001000100050002d0000000304400210000000000506043300000000054501cf000000000545022f000000100700002900000000070704330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000001f0420003900000d580440019700000000023200190000000000020435000000400240003900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000ce8011001c70000800d02000039000000020300003900000d02040000410000001205000029319331840000040f000000010020019000001e880000613d00000001010000390000006502000039000000000012041b000000000100041500000013011000690000000001000002000000400100043d001300000001001d0000000f0200002931931fd10000040f00000f0b0000013d0000000008750019000000000007004b000018d10000613d0000000009040019000000000a050019000000009b090434000000000aba043600000000008a004b000018cd0000c13d000000000006004b000018de0000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f00000000004804350000000003350019000000000003043500000000030004150000000001310049000000000100000200000c6c01000041000000400300043d001300000003001d0000000000130435000000040130003931931fd10000040f0000156f0000013d00000d3701000041000000000010043f00000c75010000410000319500010430000000c00100043d00000c690010009c000018f50000213d0000000002000411000000000021004b00000a780000613d000012da0000013d00000d3201000041000000000010043f00000c7501000041000031950001043000000d3601000041000000000010043f00000c750100004100003195000104300000001301000029319320130000040f0000000204000039000000000041041b0000000c010000290000001202000029000000000300001931932b1e0000040f00000001030000390000000c01000029000000120200002931932be20000040f00000000010004150000001101100069000000000100000200000065010000390000000102000039000000000021041b0000000001000019000031940001042e00000d3a01000041000000000010043f00000c7501000041000031950001043000000d3b01000041000000000010043f00000c75010000410000319500010430000000400300043d001200000003001d00000d3c010000410000000000130435000000000100041000000c69011001970000000402300039000000000012043500000c660030009c00000c660100004100000000010340190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d3d011001c70000000d02000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000120b00002900000012057000290000193d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000019390000c13d000000000006004b0000194a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001a890000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000c730010009c00000efc0000213d000000010020019000000efc0000c13d000000400010043f000000200030008c00001e880000413d00000000010b0433000700000001001d000500000000001d001200000000001d001100000000001d000019640000013d00000012020000290000000102200039001200000002001d0000000a0020006c00000df70000813d00000010010000290000000001010433000000120010006c00001a070000a13d000000120100002900000005021002100000000901200029000f00000001001d0000000001010433000000000001004b0000195f0000613d000000110010002a000009940000413d0000001104100029001100000004001d000000070040006c00001a950000213d0000000c030000290000000003030433000000120030006c00001a070000a13d0000000802200029000b00000002001d00000000030204330000000002000415000e00000002001d000000400200043d00000044042000390000000000140435000000200120003900000d3e04000041000000000041043500000c6903300197000000240420003900000000003404350000004403000039000000000032043500000ceb0020009c00000efc0000213d0000008003200039000000400030043f00000c660010009c00000c66010080410000004001100210000000000202043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000d02000029319331840000040f000000600310027000000c6603300197000000200030008c000000200500003900000000050340190000002004500190000019a90000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000019a50000c13d0000001f05500190000019b60000613d000000000141034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000019c10000613d000000000003004b000019f30000613d000000000100043d00000000020004150000000e022000690000000002000002000000010010008c0000195f0000613d000019c40000013d00000000010004150000000e01100069000000000100000200000010010000290000000001010433000000120010006c00001a070000a13d0000000f010000290000000001010433000f00000001001d0000000d01000029000000000010043f0000087301000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d0000000c020000290000000002020433000000120020006c00001a070000a13d000000000101043b0000000b02000029000000000202043300000c6902200197000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000201041a0000000f0020002a000009940000413d0000000f02200029000000000021041b000500010000003d0000195f0000013d00000d080100004100000000001004430000000d010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000000020004150000000e022000690000000002000002000000000001004b0000195f0000c13d000019c40000013d00000d3f01000041000000000010043f0000003201000039000000040010043f00000d3d0100004100003195000104300000000001000415000b00000001001d00000cf6010000410000000000100443000000000100041200000004001004430000006001000039001200000001001d0000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c69011001970000000d0010006b00001a990000c13d00000d080100004100000000001004430000000d010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b00001e880000613d000000400300043d00000d4c01000041000000000013043500000004013000390000000402000029000000000021043500000c660030009c001200000003001d00000c660100004100000000010340190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d3d011001c70000000d02000029319331840000040f000000010020019000001af70000613d000000120100002900000c730010009c00000efc0000213d0000001201000029000000400010043f0000086a01000039000000000101041a001200000001001d00000c5a01000039000000000101041a00000d0802000041000000000020044300000c6901100197001100000001001d0000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b00001e880000613d000000120100002900000c6901100197000000400300043d00000d4d0200004100000000002304350000000402300039000000000012043500000c660030009c001200000003001d00000c660100004100000000010340190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d4e011001c70000800902000039000000040300002900000011040000290000000005000019319331840000040f000000010020019000001dc70000c13d00000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900001ed30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001a840000c13d00001ed30000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a900000c13d0000145c0000013d00000d4001000041000000000010043f00000c7501000041000031950001043000000cf601000041000000000010044300000000010004120000000400100443000000e0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000cf60200004100000000002004430000000002000412000000040020044300000c69011001970000000d0010006b00001b040000c13d00000100010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c690010019800001b670000c13d00000cf60100004100000000001004430000000001000412000000040010044300000140010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000201043b0000000001000415000e00000001001d000000400400043d000000440140003900000004030000290000000000310435000000200140003900000d450300004100000000003104350000004403000039000000000034043500000c69032001970000002402400039001100000003001d0000000000320435001000000004001d00000ceb0040009c00000efc0000213d00000010030000290000008002300039000000400020043f00000c660010009c00000c66010080410000004001100210000000000203043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000d02000029319331840000040f000000600310027000000c660430019800001d300000c13d000000800300003900001d580000013d00000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900001ed30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001aff0000c13d00001ed30000013d000000400100043d001100000001001d00000160010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d00000011040000290000002002400039000000000101043b000000000012043500000060014000390000000d030000290000000000310435000000400140003900000d410300004100000000003104350000006001000039000000000014043500000ceb0040009c00000efc0000213d00000011030000290000008001300039000000400010043f00000c660020009c00000c66020080410000004001200210000000000203043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000201043b0000086a01000039000000000101041a000000400300043d00000060043000390000000d05000029000000000054043500000c6901100197000000400430003900000000001404350000002001300039000000040400002900000000004104350000006004000039000000000043043500000ceb0030009c00000efc0000213d0000008005300039000000400050043f00000d4204000041001200000005001d0000000000450435000000a4043000390000004005000039000000000054043500000084043000390000000000240435000000c4043000390000000002030433000000000024043500000d58052001970000001f0420018f000000e403300039000000000031004b00001dce0000813d000000000005004b00001b630000613d00000000074100190000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c00001b5d0000c13d000000000004004b00001de40000613d000000000603001900001dda0000013d0000086a01000039000000000101041a000f00000001001d0000000001000415000a00000001001d00000cf601000041000000000010044300000000010004120000000400100443000000e0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b001200000001001d00000cf60100004100000000001004430000000001000412000000040010044300000100010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b0000000002000415000e00000002001d00000d4302000041000000400400043d000c00000004001d0000000000240435000000000200041000000c69022001970000000403400039000000000023043500000c69021001970000002401400039001100000002001d000000000021043500000c660040009c00000c660100004100000000010440190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f000000120200002900000c690220019700000d44011001c7001000000002001d319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0b0000290000000c0570002900001bb90000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00001bb50000c13d000000000006004b00001bc60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001e8a0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b0000000001000039000000010100403900000c730020009c00000efc0000213d000000010010019000000efc0000c13d000000400020043f000000200030008c00001e880000413d00000000010b0433000000040010002a000009940000413d0000000401100029000000200320003900000d45040000410000000000430435000000440320003900000000001304350000002401200039000000110300002900000000003104350000004401000039000000000012043500000ceb0020009c00000efc0000213d0000008001200039000000400010043f0000001201000029319330970000040f00000000010004150000000e01100069000000000100000200000d4601000041000000400200043d000e00000002001d000000000012043500000c660020009c00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c75011001c70000001102000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000e0b0000290000000e0570002900001c0c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00001c080000c13d000000000006004b00001c190000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001e960000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039001200000002001d00000c730020009c00000efc0000213d000000010010019000000efc0000c13d0000001201000029000000400010043f000000200030008c00001e880000413d00000000020b043300000c690020009c00001e880000213d00000d47010000410000001204000029000000000014043500000004014000390000001003000029000000000031043500000c660040009c00000c660100004100000000010440190000004001100210000000000300041400000c660030009c00000c6603008041000000c003300210000000000113019f00000d3d011001c7319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000120570002900001c4d0000613d000000000801034f0000001209000029000000008a08043c0000000009a90436000000000059004b00001c490000c13d000000000006004b00001c5a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001ea20000613d0000001f01400039000000600110018f000000120110002900000c730010009c00000efc0000213d000000400010043f000000200030008c00001e880000413d00000012010000290000000001010433000900000001001d00000cf60100004100000000001004430000000001000412000000040010044300000120010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d0000000f02000029000c0c690020019b000000000101043b000800000001001d000f00040000002d0000000f02000029000000090020006c00000009010000290000000001024019000e00000001001d000000080000006b00001cce0000613d00000d0801000041000000000010044300000011010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b00001e880000613d000000400200043d00000d4801000041001200000002001d000000000012043500000cf601000041000000000010044300000000010004120000000400100443000000c0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b0000001204000029000000c402400039000007d003000039000000000032043500000064024000390000001003000029000000000032043500000044024000390000000c03000029000000000032043500000004024000390000000e03000029000000000032043500000c660110019700000024024000390000000000120435000000a40140003900000000000104350000008401400039000000000001043500000c660040009c00000c660100004100000000010440190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d49011001c70000001102000029319331840000040f000000010020019000001eae0000613d000000120100002900000c730010009c00000efc0000213d0000001201000029000000400010043f00001d290000013d000000400200043d00000d4a01000041001200000002001d000000000012043500000cf601000041000000000010044300000000010004120000000400100443000000c0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000120400002900000064024000390000001003000029000000000032043500000044024000390000000c03000029000000000032043500000004024000390000000e03000029000000000032043500000c66011001970000002402400039000000000012043500000c660040009c00000c660100004100000000010440190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c6d011001c70000001102000029319331840000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000002006400190000000120560002900001d090000613d000000000701034f0000001208000029000000007907043c0000000008980436000000000058004b00001d050000c13d0000001f0740019000001d160000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000010020019000001ebb0000613d0000001f01400039000000600210018f0000001201200029000000000021004b0000000002000039000000010200403900000c730010009c00000efc0000213d000000010020019000000efc0000c13d000000400010043f000000200030008c00001e880000413d0000001201000029000000000101043300000c730010009c00001e880000213d0000000e02000029000f000f0020007300001c7b0000c13d00000000010004150000000a01100069000000000100000200001e1e0000013d0000001f0340003900000c67033001970000003f0330003900000c7203300197000000400500043d0000000003350019001200000005001d000000000053004b0000000005000039000000010500403900000c730030009c00000efc0000213d000000010050019000000efc0000c13d000000400030043f0000001f0540018f0000001203000029000000000343043600000c6806400198000000000463001900001d4b0000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000048004b00001d470000c13d000000000005004b00001d580000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000010020019000001d810000613d0000000001000415000000270110008a000f00050010021800000012010000290000000001010433000000000001004b00001d6d0000613d00000ced0010009c00001e880000213d000000200010008c00001e880000413d0000000001030433000000010010008c00001e880000213d0000000002000415000000260220008a000f000500200218000000000001004b00001d810000613d00000d080100004100000000001004430000000d010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b0000000f010000290000000501100270000000000100003f000000010100c03f00001d950000c13d000000400200043d000000200120003900000d45030000410000000000310435000000240120003900000011030000290000000000310435000000440100003900000000001204350000004401200039000000000001043500000ceb0020009c00000efc0000213d0000008001200039000000400010043f0000000d01000029319330970000040f0000000d010000290000001002000029319330970000040f00000000010004150000000e0110006900000000010000020000086a01000039000000000101041a001200000001001d00000d0801000041000000000010044300000011010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b00001e880000613d000000120100002900000c6901100197000000400400043d00000044024000390000000403000029000000000032043500000024024000390000000d03000029000000000032043500000d4b0200004100000000002404350000000402400039000000000012043500000c660040009c001200000004001d00000c660100004100000000010440190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d26011001c70000001102000029319331840000040f000000010020019000001ec70000613d000000120100002900000c730010009c00000efc0000213d0000001201000029000000400010043f00001e1e0000013d000000000001042f0000000006530019000000000005004b00001dd70000613d0000000007010019000000000803001900000000790704340000000008980436000000000068004b00001dd30000c13d000000000004004b00001de40000613d00000000015100190000000304400210000000000506043300000000054501cf000000000545022f00000000010104330000010004400089000000000141022f00000000014101cf000000000151019f00000000001604350000001f0120003900000d580110019700000000023200190000000000020435000000640110003900000c660010009c00000c66010080410000006001100210000000120200002900000c660020009c00000c66020080410000004002200210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000d2202000041319331840000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000120570002900001e070000613d000000000801034f0000001209000029000000008a08043c0000000009a90436000000000059004b00001e030000c13d000000000006004b00001e140000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001ee30000613d0000001f01400039000000600110018f000000120110002900000c730010009c00000efc0000213d000000400010043f000000200030008c00001e880000413d000000010100002900000c660610019700000000010004150000000b0110006900000000010000020000000001000411001200000001001d00000c6901100197000000400200043d000000200320003900000000001304350000000401000029000000000012043500000c660020009c00000c66020080410000004001200210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000cee011001c70000800d02000039000000040300003900000d4f0400004100000002050000290000000d07000029319331840000040f000000010020019000001e880000613d000000000100041500000003011000690000000001000002000000400100043d0000002004100039000001200200043d000000a00500043d000000e00300043d000001000600043d000000c00700043d000000800800043d000000c00900003900000000009404350000000000810435000000c00410003900000000080704330000000000840435000000e00410003900000c6906600197000000000008004b00001e580000613d00000000090000190000002007700039000000000a0704330000000004a404360000000109900039000000000089004b00001e520000413d00000c66073001970000000003140049000000600810003900000000003804350000004003100039000000000063043500000000060204330000000003640436000000000006004b00001e6a0000613d00000000040000190000002002200039000000000802043300000c690880019700000000038304360000000104400039000000000064004b00001e630000413d000000120200002900000c6902200197000000a0041000390000000000240435000000050000006b0000000002000039000000010200c03900000080041000390000000000240435000000000213004900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000800d02000039000000040300003900000d50040000410000001306000029319331840000040f0000000100200190000000a00000c13d000000000100001900003195000104300000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e910000c13d0000145c0000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e9d0000c13d0000145c0000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ea90000c13d0000145c0000013d00000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900001ed30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001eb60000c13d00001ed30000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ec20000c13d0000145c0000013d00000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900001ed30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001ecf0000c13d00000c6606600197000000000004004b00001ee10000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000060016002100000146a0000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001eea0000c13d0000145c0000013d00000c6902200197000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001efd0000613d000000000101043b000000000001042d000000000100001900003195000104300000001f0220003900000d58022001970000000001120019000000000021004b0000000002000039000000010200403900000c730010009c00001f0b0000213d000000010020019000001f0b0000c13d000000400010043f000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000400100043d00000ce50010009c00001f170000813d000000c002100039000000400020043f000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000400100043d00000d5c0010009c00001f230000813d000001a002100039000000400020043f000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000d5d0020009c00001f590000813d00000000040100190000001f0120003900000ce4011001970000003f0110003900000ce605100197000000400100043d0000000005510019000000000015004b0000000006000039000000010600403900000c730050009c00001f590000213d000000010060019000001f590000c13d000000400050043f00000000052104360000000006420019000000000036004b00001f5f0000213d00000d58062001980000001f0720018f0000000104400367000000000365001900001f490000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b00001f450000c13d000000000007004b00001f560000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000000001000019000031950001043000000ced0010009c00001f6f0000213d000000430010008c00001f6f0000a13d00000001020003670000000401200370000000000101043b00000c690010009c00001f6f0000213d0000002402200370000000000202043b00000c690020009c00001f6f0000213d000000000001042d000000000100001900003195000104300000000043010434000000000132043600000d58063001970000001f0530018f000000000014004b00001f870000813d000000000006004b00001f830000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00001f7d0000c13d000000000005004b00001f9d0000613d000000000701001900001f930000013d0000000007610019000000000006004b00001f900000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b00001f8c0000c13d000000000005004b00001f9d0000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000431001900000000000404350000001f0330003900000d58023001970000000001210019000000000001042d0000001f03100039000000000023004b000000000400001900000cec0400404100000cec0520019700000cec03300197000000000653013f000000000053004b000000000300001900000cec0300204100000cec0060009c000000000304c019000000000003004b00001fbb0000613d0000000103100367000000000303043b00000c730030009c00001fbb0000213d00000020011000390000000004310019000000000024004b00001fbb0000213d0000000002030019000000000001042d0000000001000019000031950001043000000ced0010009c00001fcf0000213d000000630010008c00001fcf0000a13d00000001030003670000000401300370000000000101043b00000c660010009c00001fcf0000213d0000002402300370000000000202043b00000c690020009c00001fcf0000213d0000004403300370000000000303043b00000c690030009c00001fcf0000213d000000000001042d00000000010000190000319500010430000000200300003900000000033104360000000042020434000000000023043500000d58062001970000001f0520018f0000004001100039000000000014004b00001fea0000813d000000000006004b00001fe60000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00001fe00000c13d000000000005004b000020000000613d000000000701001900001ff60000013d0000000007610019000000000006004b00001ff30000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b00001fef0000c13d000000000005004b000020000000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000412001900000000000404350000001f0220003900000d58022001970000000001120019000000000001042d000000400100043d00000d5e0010009c0000200d0000813d0000002002100039000000400020043f0000000000010435000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f0000000100200190000020210000613d000000000101043b000000000001042d000000000100001900003195000104300000000003010019000000000112004900000ced0010009c000020af0000213d0000017f0010008c000020af0000a13d000000400100043d00000d5f0010009c000020b10000813d0000018004100039000000400040043f0000000104000367000000000534034f000000000505043b00000000055104360000002006300039000000000664034f000000000606043b00000000006504350000004005300039000000000554034f000000000505043b000000400610003900000000005604350000006005300039000000000554034f000000000505043b000000600610003900000000005604350000008005300039000000000554034f000000000505043b00000080061000390000000000560435000000a005300039000000000554034f000000000505043b000000a0061000390000000000560435000000c005300039000000000554034f000000000505043b000000c0061000390000000000560435000000e005300039000000000554034f000000000505043b000000e00610003900000000005604350000010005300039000000000554034f0000010006100039000000000505043b00000000005604350000012005300039000000000654034f000000000606043b00000c660060009c000020af0000213d000001200710003900000000006704350000002005500039000000000654034f000000000606043b00000c660060009c000020af0000213d000001400710003900000000006704350000002005500039000000000554034f000000000505043b00000c730050009c000020af0000213d00000000063500190000001f03600039000000000023004b000000000500001900000cec0500804100000cec0330019700000cec07200197000000000873013f000000000073004b000000000300001900000cec0300404100000cec0080009c000000000305c019000000000003004b000020af0000c13d000000000364034f000000000303043b00000c730030009c000020b10000213d0000001f0530003900000ce4055001970000003f0550003900000ce607500197000000400500043d0000000007750019000000000057004b0000000008000039000000010800403900000c730070009c000020b10000213d0000000100800190000020b10000c13d0000002008600039000000400070043f00000000063504360000000007830019000000000027004b000020af0000213d000000000484034f00000d58073001980000001f0830018f00000000027600190000209d0000613d000000000904034f000000000a060019000000009b09043c000000000aba043600000000002a004b000020990000c13d000000000008004b000020aa0000613d000000000474034f0000000307800210000000000802043300000000087801cf000000000878022f000000000404043b0000010007700089000000000474022f00000000047401cf000000000484019f00000000004204350000000002360019000000000002043500000160021000390000000000520435000000000001042d0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000086c02000039000000000302041a000000000013004b000020bf0000a13d000000000020043f00000003011000c900000cf80110009a000000000001042d00000d3f01000041000000000010043f0000003201000039000000040010043f00000d3d01000041000031950001043000000c660110019700000c6602200197000000000112001900000d600010009c000020cb0000813d000000000001042d00000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d0100004100003195000104300002000000000002000000650e000039000000000f0e041a0000000200f0008c000021490000613d000200000001001d00010000000c001d000000020100003900000000001e041b0000086b01000039000000000e01041a00000cdd00e001980000215a0000c13d000000c00fe0027000000c660ff0019700000c6600f0009c0000215e0000613d00000d610ee00197000000c00cf0021000000d620cc0009a00000cdf0cc00197000000000cec019f0000000000c1041b000000400100043d00000d5c0010009c000021430000813d000001a00c1000390000004000c0043f00000c660bb00197000001600c1000390000000000bc043500000c660aa00197000001400b1000390000000000ab043500000c6609900197000001200a10003900000000009a043500000100091000390000000000f9043500000c6908800197000000e0091000390000000000890435000000c0081000390000000000780435000000a00710003900000000006704350000008006100039000000000056043500000c69044001970000006005100039000000000045043500000c69033001970000004004100039000000000034043500000c690220019700000020031000390000000000230435000000020200002900000c6902200197000000000021043500000c7300d0009c000021430000213d0000001f02d0003900000ce4022001970000003f0220003900000ce603200197000000400200043d0000000003320019000000000023004b0000000004000039000000010400403900000c730030009c000021430000213d0000000100400190000021430000c13d000000400030043f0000000003d20436000000010700002900000000057d0019000000000050007c000021640000213d00000d5805d001980000001f06d0018f000000010770036700000000045300190000212d0000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b000021290000c13d000000000006004b0000213a0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000003d30019000000000003043500000180031000390000000000230435319327c50000040f00000001010000390000006502000039000000000012041b000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000400100043d000000440210003900000d5603000041000000000032043500000024021000390000001f03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c7000031950001043000000d5701000041000000000010043f00000c7501000041000031950001043000000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d01000041000031950001043000000000010000190000319500010430000000400400043d00000054054000390000000000350435000000600310021000000020014000390000000000310435000000340340003900000000002304350000005402000039000000000024043500000d630040009c000021880000813d0000008002400039000000400020043f00000c660010009c00000c66010080410000004001100210000000000204043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f00000001002001900000218e0000613d000000000101043b000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000000010000190000319500010430000000000001004b000021930000613d000000000001042d000000400100043d000000640210003900000d12030000410000000000320435000000440210003900000d1303000041000000000032043500000024021000390000002b03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c660110019700000c660010009c000021ac0000613d0000000101100039000000000001042d00000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d0100004100003195000104300003000000000002000000400500043d00000020035000390000004002000039000100000003001d000000000023043500000060025000390000000043010434000000000032043500000000020404330000008003500039000000000023043500000040021000390000000002020433000000a003500039000000000023043500000060021000390000000002020433000000c003500039000000000023043500000080021000390000000002020433000000e0035000390000000000230435000000a002100039000000000202043300000100035000390000000000230435000000c002100039000000000202043300000120035000390000000000230435000000e00210003900000000020204330000014003500039000000000023043500000100021000390000000002020433000001600350003900000000002304350000012002100039000000000202043300000c6602200197000001800350003900000000002304350000014002100039000000000202043300000c6602200197000001a003500039000000000023043500000160011000390000000001010433000001c00250003900000180030000390000000000320435000001e0035000390000000029010434000000000093043500000d58049001970000001f0390018f000300000005001d0000020001500039000000000012004b000022020000813d000000000004004b000021fe0000613d00000000063200190000000005310019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c000021f80000c13d000000000003004b000022180000613d00000000050100190000220e0000013d0000000005410019000000000004004b0000220b0000613d0000000006020019000000000701001900000000680604340000000007870436000000000057004b000022070000c13d000000000003004b000022180000613d00000000024200190000000303300210000000000405043300000000043401cf000000000434022f00000000020204330000010003300089000000000232022f00000000023201cf000000000242019f00000000002504350000000001190019000000000001043500000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039000200000009001d319331890000040f00000001002001900000224f0000613d000000000101043b00000003030000290000004002300039000000000012043500000002010000290000001f0110003900000d5801100197000001e00210003900000000002304350000021f0110003900000d58021001970000000001320019000000000021004b0000000002000039000000010200403900000c730010009c000022500000213d0000000100200190000022500000c13d000000400010043f000000010100002900000c660010009c00000c66010080410000004001100210000000000203043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f0000000100200190000022560000613d000000000101043b000000000001042d000000000001042f00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000000100001900003195000104300000006501000039000000000201041a000000020020008c0000225f0000613d0000000202000039000000000021041b000000000001042d000000400100043d000000440210003900000d5603000041000000000032043500000024021000390000001f03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c70000319500010430000c00000000000200000d160960019700070d140060019c00000d15060000410000000006006019000000000696019f000800000006001d000000000960c08900000d640090009c000024040000813d000b00000007001d000a00000003001d000300000002001d000400000001001d000500000008001d000600000005001d000c00000004001d00000d650040009c000024080000813d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f0000000100200190000023fb0000613d0000000b0200002900020c660020019b000000000101043b000000020110006c000b00000001001d000023f50000413d00000cf60100004100000000001004430000000001000412000000040010044300000080010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000023fb0000613d000000000101043b00000c66011001970000000b0010006b0000240c0000213d0000086b01000039000000000201041a000000c00320027000000c6603300197000b00000003001d00000c660030009c000023f50000613d00000cde022001970000000b03000029000000c00330021000000d620330009a00000cdf03300197000000000223019f000000000021041b00000cf6010000410000000000100443000000000100041200000004001004430000006001000039000900000001001d0000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000023fb0000613d0000000a02000029000a0c690020019b000000000101043b00000c69031001970000000a0030006b000022fb0000c13d0000000001000416000000000001004b000022fb0000613d0000000c0010006c0000243f0000c13d00000d08010000410000000000100443000900000003001d0000000400300443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000023fb0000613d000000000101043b000000000001004b0000000c03000029000023fc0000613d000000400200043d00000d6701000041000000000012043500000c660020009c000100000002001d00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d68011001c7000080090200003900000009040000290000000005000019319331840000040f0000000100200190000024430000613d000000010100002900000c730010009c000023fe0000213d000000400010043f0000000c050000290000237c0000013d000000400100043d00000064021000390000000c030000290000000000320435000000000200041000000c690220019700000044031000390000000000230435000000200210003900000d69030000410000000000320435000000000300041100000c6903300197000000240410003900000000003404350000006403000039000000000031043500000d6a0010009c000023fe0000813d000000a005100039000000400050043f00000d0d0050009c000023fe0000213d000000e003100039000000400030043f00000020030000390000000000350435000000c00310003900000d6b04000041000000000043043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000a02000029000100000005001d319331840000040f000000600310027000000c66033001980000008009000039000023550000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019000900000005001d000000000054004b0000000005000039000000010500403900000c730040009c000023fe0000213d0000000100500190000023fe0000c13d000000400040043f0000001f0430018f0000000905000029000000000935043600000c68053001980000000003590019000023480000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b000023440000c13d000000000004004b000023550000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000090100002900000000010104330000000100200190000024100000613d000000000001004b0000000c05000029000023730000c13d000100000009001d00000d080100004100000000001004430000000a010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000023fb0000613d000000000101043b000000000001004b000024630000613d00000009010000290000000001010433000000000001004b0000000c0500002900000001090000290000237c0000613d00000ced0010009c000023fc0000213d0000001f0010008c000023fc0000a13d0000000001090433000000010010008c000023fc0000213d000000000001004b000024230000613d0000000001000415000000070000006b000023840000613d000000080200002900000ced0020009c000023840000213d000000080000006b000023f50000c13d000000080200002900000d6e0320009900000000025300a9000000000005004b0000238c0000613d00000000045200d9000000000043004b000023f50000c13d000000000300041500000000013100490000000001000002000000400100043d000001200310003900000140040000390000000000430435000000030300002900000c6903300197000000e0041000390000000000340435000000a00310003900000c6604000041000000000043043500000080031000390000000204000029000000000043043500000d6e0220012a00000060031000390000000000230435000000400210003900000000005204350000000a02000029000000000221043600000100031000390000000000030435000000c003100039000000000003043500000000000204350000014003100039000000050200002900000000520204340000000000230435000000040300002900000c690730019700000d58082001970000001f0620018f0000016004100039000000000045004b000023c40000813d000000000008004b000023c00000613d000000000a6500190000000009640019000000200990008a000000200aa0008a000000000b890019000000000c8a0019000000000c0c04330000000000cb0435000000200880008c000023ba0000c13d000000000006004b000023da0000613d0000000009040019000023d00000013d0000000009840019000000000008004b000023cd0000613d000000000a050019000000000b04001900000000ac0a0434000000000bcb043600000000009b004b000023c90000c13d000000000006004b000023da0000613d00000000058500190000000306600210000000000809043300000000086801cf000000000868022f00000000050504330000010006600089000000000565022f00000000056501cf000000000585019f00000000005904350000001f0520003900000d580350019700000000024200190000000000020435000001600230003900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000ce8011001c70000800d02000039000000040300003900000d6f0400004100000006050000290000000b06000029319331840000040f0000000100200190000023fc0000613d000000000001042d00000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d010000410000319500010430000000000001042f0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000d7301000041000000000010043f00000c7501000041000031950001043000000d7201000041000000000010043f00000c7501000041000031950001043000000d7101000041000000000010043f00000c75010000410000319500010430000000000001004b000024370000c13d000000400200043d000c00000002001d00000c6c0100004100000000001204350000000401200039000000010200002931931fd10000040f0000000c02000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f0000319500010430000000400100043d000000640210003900000d6c030000410000000000320435000000440210003900000d6d03000041000000000032043500000024021000390000002a03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c660090009c00000c6609008041000000400290021000000c660010009c00000c66010080410000006001100210000000000121019f000031950001043000000d6601000041000000000010043f00000c7501000041000031950001043000000060061002700000001f0460018f00000c6805600198000000400200043d00000000035200190000244f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b0000244b0000c13d00000c6606600197000000000004004b0000245d0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c700003195000104300003000000000002000300000001001d00000cf60100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000024fc0000613d000000000101043b00000c6902100197000000030100002900000c6901100197000300000002001d000000000021004b000024d60000c13d00000d7401000041000000000010044300000000010004100000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800a02000039319331890000040f0000000100200190000024fc0000613d000000000101043b000000000001004b000024d60000613d00000d7401000041000000000010044300000000010004100000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800a02000039319331890000040f0000000100200190000024fc0000613d000000000101043b000200000001001d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000024fc0000613d000000000101043b000000000001004b000024fd0000613d000000400200043d00000d6701000041000000000012043500000c660020009c000100000002001d00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f0000000203000029000000000003004b000024d70000613d00000d68011001c7000080090200003900000003040000290000000005000019319331840000040f0000000100200190000024dc0000613d000000010100002900000d5d0010009c000024ff0000813d000000400010043f000000000001042d00000c75011001c70000000302000029319331840000040f0000000100200190000024d20000c13d00000060061002700000001f0460018f00000c6805600198000000400200043d0000000003520019000024e80000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000024e40000c13d00000c6606600197000000000004004b000024f60000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000000000001042f0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300012000000000002000d00000002001d001200000001001d0000000021010434000f00000002001d001000000001001d0000012001100039000e00000001001d0000000001010433001100000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f0000000100200190000026160000613d000000000101043b000000110200002900000c6602200197000000000012004b000026170000413d0000000f010000290000000001010433001100000001001d000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f0000000100200190000026140000613d000000000101043b000000000101041a000f00000001001d0000001101000029000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f0000000f03000029000000010030008c00000000030000390000000103006039000f00000003001d0000000100200190000026140000613d00000872030000390000001102000029000000000101043b000000000101041a000000020010008c0000261b0000613d000000000020043f000000200030043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f0000000100200190000026140000613d000000000101043b0000000202000039000000000021041b000000100200002900000020012000390000000001010433000600000001001d0000000001020433000800000001001d00000040012000390000000001010433000900000001001d00000100012000390000000001010433000400000001001d000000e0012000390000000001010433000300000001001d0000001201000029000000a0011000390000000001010433000a00000001001d000000c0012000390000000001010433000b00000001001d000000a0012000390000000001010433000c00000001001d00000080012000390000000001010433001100000001001d00000060012000390000000001010433000700000001001d00000140012000390000000001010433000500000001001d0000000e010000290000000001010433000e00000001001d000001600120003900000000010104330000000012010434000000000002004b000025940000613d00000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f0000000100200190000026140000613d000000000901043b000025950000013d0000000009000019000000120200002900000060012000390000000008010433000000800120003900000000010104330000000012010434000000000002004b0000260a0000613d000100000008001d000200000009001d00000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f0000000100200190000026140000613d000000000101043b00000002090000290000000108000029000000400200043d00000d630020009c0000260e0000813d000000050300002900000c66053001970000000e0300002900000c66063001970000001203000029000000400330003900000000070304330000008003200039000000400030043f00000060032000390000000f04000029000000000043043500000040042000390000000000740435000000200720003900000000001704350000000000820435000000400100043d00000140081000390000000000980435000001200810003900000006090000290000000000980435000001000810003900000008090000290000000000980435000000e00810003900000009090000290000000000980435000000c0081000390000000000580435000000a005100039000000000065043500000080051000390000000a06000029000000000065043500000060051000390000000b06000029000000000065043500000040051000390000000c060000290000000000650435000000200510003900000011060000290000000000650435000000070500002900000000005104350000000002020433000001600510003900000000002504350000000002070433000001800510003900000000002504350000000002040433000001a00410003900000000002404350000000002030433000000020020008c0000261f0000213d000001c003100039000000000023043500000c660010009c00000c66010080410000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d75011001c70000800d02000039000000040300003900000d7604000041000000030500002900000004060000290000000d07000029319331840000040f0000000100200190000026140000613d00000012010000290000001002000029000000000300001931932be20000040f000000000001042d0000000001000019000000400200043d00000d630020009c000025b60000413d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000000010000190000319500010430000000000001042f00000d3501000041000000000010043f00000c7501000041000031950001043000000d3401000041000000000010043f00000c7501000041000031950001043000000d3f01000041000000000010043f0000002101000039000000040010043f00000d3d010000410000319500010430000000600210003900000d77030000410000000000320435000000400210003900000d7803000041000000000032043500000020021000390000002e030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0006000000000002000500000007001d000100000005001d000200000004001d000600000003001d000300000002001d000400000001001d000000200160003900000c660010009c00000c66010080410000004001100210000000000206043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f00000001002001900000279b0000613d000000000201043b000000400100043d000000c0031000390000000000230435000000a00210003900000001030000290000000000320435000000800210003900000002030000290000000000320435000000600210003900000006030000290000000000320435000000400210003900000003030000290000000000320435000000200210003900000d07030000410000000000320435000000c003000039000000000031043500000d790010009c0000279d0000813d000000e003100039000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000000006050000290000279b0000613d000000000101043b000300000001001d0000047f01000039000000000201041a0000048001000039000000000301041a000000400100043d000000800410003900000000005404350000006004100039000000000034043500000040031000390000000000230435000000200210003900000d7a0300004100000000003204350000008003000039000600000003001d000000000031043500000d7b0010009c0000279d0000213d000000a003100039000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f00000001002001900000279b0000613d000000000101043b000000400200043d00000022032000390000000304000029000000000043043500000d7c0300004100000000003204350000000203200039000000000013043500000c660020009c00000c66020080410000004001200210000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000d7d011001c70000801002000039319331890000040f00000001002001900000279b0000613d000000000601043b000000050400002900000000c1040434000000410010008c000026c40000c13d00000040014000390000000001010433000000000200041500000d7e0010009c000027550000413d000000000100041500000000011200490000000001000002000000400100043d000000440210003900000040030000390000000000320435000000200210003900000d800300004100000000003204350000002403100039000000000063043500000064031000390000000004040433000000000043043500000d58074001970000001f0640018f000000840510003900000000005c004b000026e50000813d000000000007004b000026e10000613d00000000096c00190000000008650019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000026db0000c13d000000000006004b000026fb0000613d0000000008050019000026f10000013d0000000008750019000000000007004b000026ee0000613d00000000090c0019000000000a050019000000009b090434000000000aba043600000000008a004b000026ea0000c13d000000000006004b000026fb0000613d000000000c7c00190000000306600210000000000708043300000000076701cf000000000767022f00000000090c04330000010006600089000000000969022f00000000066901cf000000000676019f0000000000680435000000000554001900000000000504350000001f0440003900000d580440019700000064054000390000000000510435000000a30440003900000d58044001970000000003140019000000000043004b0000000004000039000000010400403900000c730030009c0000279d0000213d00000001004001900000279d0000c13d000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000402000029319331890000040f000000600310027000000c6604300198000027460000613d0000001f0340003900000c67033001970000003f0330003900000c7205300197000000400300043d0000000005530019000000000035004b0000000006000039000000010600403900000c730050009c0000279d0000213d00000001006001900000279d0000c13d000000400050043f0000001f0540018f000000000a43043600000c680640019800000000046a0019000027370000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000027330000c13d00060000000a001d000000000005004b000027470000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000027470000013d00000060030000390000000100200190000027a30000613d0000000001030433000000200010008c000027a30000413d00000ced0010009c0000279b0000213d000000200010008c0000279b0000413d0000000601000029000000000101043300000d800010009c000027a30000c13d000000000001042d000100000002001d0000006002400039000000000202043300030000000c001d00000000030c0433000000400400043d0000006005400039000000000015043500000040014000390000000000310435000000f80120027000000020024000390000000000120435000200000006001d0000000000640435000000000000043f00000c660040009c00000c66040080410000004001400210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d7f011001c70000000102000039319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0540018f00000020044001900000277e0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000277a0000c13d000000000005004b0000278b0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000000100200190000000030c000029000027a70000613d000000000100043d00000000020004150000000102200069000000000200000200000c6900100198000000000100601900000005040000290000000206000029000026c40000613d000000040110014f00000c6900100198000027540000613d000026c40000013d0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000d8101000041000000000010043f00000c750100004100003195000104300000001f0530018f00000c6806300198000000400200043d0000000004620019000027b20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027ae0000c13d000000000005004b000027bf0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000c0000000000020000000032010434000700000003001d00000d310020009c000029820000813d000c00000001001d0000012001100039000600000001001d0000000001010433000b00000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f0000000100200190000029750000613d0000000b0200002900000c6602200197000000000101043b000a00000001001d000b0000002100530000297e0000413d00000cf6010000410000000000100443000000000100041200000004001004430000008001000039000800000001001d0000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000029750000613d000000000101043b00000c66011001970000000b0010006b0000297e0000213d0000000c010000290000014001100039000500000001001d0000000001010433000b00000001001d00000cf601000041000000000010044300000000010004120000000400100443000000a0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000029750000613d000000000101043b00000c66011001970000000a05000029000000000051001a0000000c03000029000029bd0000413d0000000b0200002900000c66022001970000000001510019000000000012004b000029860000213d0000016001300039000000000101043300000c6602100198000000e004300039000400000004001d000028270000613d00000d820020009c0000281f0000813d00000c6601500197000000000212001900000c660020009c000029bd0000213d000300000002001d0000000001040433000000000001004b000028280000c13d00000d8301000041000000000010043f00000c75010000410000319500010430000300000000001d0000004001300039000a00000001001d0000000001010433000900000001001d00000cf6010000410000000000100443000000000100041200000004001004430000006001000039000b00000001001d0000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000029750000613d0000000002000416000000000101043b00000c69011001970000000903000029000000000013004b000028740000c13d000000000002004b0000000c01000029000028770000613d0000008001100039000200000001001d0000000001010433000000000012004b0000298a0000c13d00000d080100004100000000001004430000000400300443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000029750000613d0000000904000029000000000101043b000000000001004b000029760000613d000000400200043d00000d6701000041000000000012043500000c660020009c000b00000002001d00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d68011001c7000080090200003900000000030004160000000005000019319331840000040f0000000100200190000029c30000613d0000000b0f00002900000c7300f0009c0000000c0c000029000029780000213d0000004000f0043f000028fe0000013d000000000002004b0000000c010000290000298a0000c13d0000000a02000029000000000202043300000c690020009c000029820000213d0000008001100039000200000001001d0000000004010433000000400100043d00000064031000390000000000430435000000000300041000000c690430019700000044031000390000000000430435000000200510003900000d69030000410000000000350435000000000300041100000c6903300197000000240410003900000000003404350000006403000039000000000031043500000d6a0010009c000029780000813d000000a006100039000000400060043f00000d0d0060009c000029780000213d000000e003100039000000400030043f00000020030000390000000000360435000000c00310003900000d6b04000041000000000043043500000c660050009c00000c66050080410000004003500210000000000101043300000c660010009c00000c66010080410000006001100210000000000131019f000000000300041400000c660030009c00000c6603008041000000c003300210000000000131019f000900000002001d000100000006001d319331840000040f000000090a000029000000600310027000000c6603300198000028d80000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019000b00000005001d000000000054004b0000000005000039000000010500403900000c730040009c000029780000213d0000000100500190000029780000c13d000000400040043f0000001f0430018f0000000b05000029000000000935043600000c68053001980000000003590019000028ca0000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b000028c60000c13d000800000009001d000000000004004b000028d80000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000b01000029000000000101043300000001002001900000298e0000613d000000000001004b0000000c0c000029000028f30000c13d00000d080100004100000000001004430000000400a00443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000029750000613d000000000101043b000000000001004b000029e30000613d0000000b010000290000000001010433000000000001004b0000000c0c000029000029730000613d00000ced0010009c000029760000213d0000001f0010008c000029760000a13d00000008010000290000000001010433000000010010008c000029760000213d000000400f00043d000000000001004b000029a10000613d0000010001c000390000000006010433000000c001c0003900000000050104330000018001c0003900000000010104330000000a0200002900000000020204330000006003c00039000000000303043300000002040000290000000004040433000000a007c000390000000008070433000000060700002900000000090704330000000507000029000000000a0704330000000707000029000000000b07043300000000070c0433000000040c000029000000000c0c0433000001200df00039000001400e0000390000000000ed0435000001000df000390000000000cd0435000000e00cf000390000000000bc0435000000c00bf00039000000030c0000290000000000cb043500000c660aa00197000000a00bf000390000000000ab043500000c6609900197000000800af0003900000000009a04350000006009f0003900000000008904350000004008f0003900000000004804350000002004f00039000000000034043500000000002f04350000014002f000390000000041010434000000000012043500000d58091001970000001f0810018f0000016003f00039000000000034004b000029440000813d000000000009004b000029400000613d000000000b840019000000000a830019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c0000293a0000c13d000000000008004b0000295a0000613d000000000a030019000029500000013d000000000a930019000000000009004b0000294d0000613d000000000b040019000000000c03001900000000bd0b0434000000000cdc04360000000000ac004b000029490000c13d000000000008004b0000295a0000613d0000000004940019000000030880021000000000090a043300000000098901cf000000000989022f00000000040404330000010008800089000000000484022f00000000048401cf000000000494019f00000000004a04350000001f0410003900000d580240019700000000013100190000000000010435000001600120003900000c660010009c00000c6601008041000000600110021000000c6600f0009c00000c660f0080410000004002f00210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000ce8011001c70000800d02000039000000040300003900000d6f04000041319331840000040f0000000100200190000029760000613d000000000001042d000000400f00043d000028fe0000013d000000000001042f0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000d7101000041000000000010043f00000c7501000041000031950001043000000d3201000041000000000010043f00000c7501000041000031950001043000000d8401000041000000000010043f00000c7501000041000031950001043000000d6601000041000000000010043f00000c75010000410000319500010430000000000001004b000029b40000c13d000000400200043d000c00000002001d00000c6c0100004100000000001204350000000401200039000000010200002931931fd10000040f0000000c02000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f00003195000104300000006401f0003900000d6c0200004100000000002104350000004401f0003900000d6d0200004100000000002104350000002401f000390000002a02000039000000000021043500000c6c0100004100000000001f04350000000401f000390000002002000039000000000021043500000c6600f0009c00000c660f0080410000004001f0021000000c6d011001c70000319500010430000000080200002900000c660020009c00000c6602008041000000400220021000000c660010009c00000c66010080410000006001100210000000000121019f000031950001043000000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d01000041000031950001043000000060061002700000001f0460018f00000c6805600198000000400200043d0000000003520019000029cf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000029cb0000c13d00000c6606600197000000000004004b000029dd0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c70000319500010430000000000100041a0000ff0000100190000029f80000613d000000000001042d000000400100043d000000640210003900000d12030000410000000000320435000000440210003900000d1303000041000000000032043500000024021000390000002b03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c70000319500010430000000000100041a0000ff000010019000002a130000613d00000001010000390000006502000039000000000012041b000000000001042d000000400100043d000000640210003900000d12030000410000000000320435000000440210003900000d1303000041000000000032043500000024021000390000002b03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c690510019800002a3a0000613d0000086901000039000000000201041a00000d0c02200197000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d0e04000041319331840000040f000000010020019000002a3e0000613d000000000001042d00000d1101000041000000000010043f00000c750100004100003195000104300000000001000019000031950001043000000c690510019800002a530000613d0000086a01000039000000000201041a00000d0c02200197000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d0f04000041319331840000040f000000010020019000002a570000613d000000000001042d00000d1001000041000000000010043f00000c75010000410000319500010430000000000100001900003195000104300003000000000002000000400400043d00000044054000390000000000350435000000200340003900000d3e05000041000000000053043500000c6902200197000000240540003900000000002504350000004402000039000000000024043500000d630040009c00002ad50000813d0000008005400039000000400050043f00000d0d0050009c00002ad50000213d00000c6902100197000000c001400039000000400010043f0000002001000039000200000005001d0000000000150435000000a00140003900000d6b05000041000000000051043500000c660030009c00000c66030080410000004001300210000000000304043300000c660030009c00000c66030080410000006003300210000000000113019f000000000300041400000c660030009c00000c6603008041000000c003300210000000000131019f000300000002001d319331840000040f000000600310027000000c660330019800002aad0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400a00043d00000000044a00190000000000a4004b0000000005000039000000010500403900000c730040009c00002ad50000213d000000010050019000002ad50000c13d000000400040043f0000001f0430018f00000000093a043600000c6805300198000000000359001900002a9f0000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b00002a9b0000c13d000000000004004b00002aaf0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500002aaf0000013d000000600a000039000000800900003900000000010a0433000000010020019000002add0000613d000000000001004b00002acb0000c13d00020000000a001d000100000009001d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002b0c0000613d000000000101043b000000000001004b000000020100002900002b0d0000613d0000000001010433000000000001004b000000010900002900002ad40000613d00000ced0010009c00002adb0000213d0000001f0010008c00002adb0000a13d0000000001090433000000010010008c00002adb0000213d000000000001004b00002af00000613d000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000000010000190000319500010430000000000001004b00002b040000c13d000000400200043d000300000002001d00000c6c0100004100000000001204350000000401200039000000020200002931931fd10000040f0000000302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f0000319500010430000000400100043d000000640210003900000d6c030000410000000000320435000000440210003900000d6d03000041000000000032043500000024021000390000002a03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c660090009c00000c6609008041000000400290021000000c660010009c00000c66010080410000006001100210000000000121019f0000319500010430000000000001042f000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c700003195000104300011000000000002001000000004001d000500000003001d00000000040100190000000013020434000f00000003001d0000000001010433000800000001001d00000040012000390000000001010433000a00000001001d00000100012000390000000001010433000400000001001d000000e0012000390000000001010433000300000001001d000000a0014000390000000001010433000b00000001001d000000c0012000390000000001010433000c00000001001d000000a0012000390000000001010433000d00000001001d00000080012000390000000001010433000e00000001001d00000060012000390000000001010433000900000001001d00000140012000390000000001010433000700000001001d00000120012000390000000001010433000600000001001d000001600120003900000000010104330000000012010434000000000002004b001100000004001d00002b5e0000613d00000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000002bda0000613d000000000901043b000000110400002900002b5f0000013d000000000900001900000060014000390000000005010433000000800140003900000000010104330000000012010434000000000002004b00002bd00000613d000100000005001d000200000009001d00000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000002bda0000613d000000000201043b000000110400002900000002090000290000000105000029000000400100043d00000d630010009c00002bd40000813d000000400340003900000000040304330000008003100039000000400030043f00000040031000390000000000430435000000000451043600000000002404350000001002000029000000030020008c00002bdc0000813d000000070500002900000c6606500197000000060500002900000c660750019700000060051000390000000000250435000000400200043d0000014008200039000000000098043500000120082000390000000809000029000000000098043500000100082000390000000f090000290000000000980435000000e0082000390000000a090000290000000000980435000000c0082000390000000000680435000000a006200039000000000076043500000080062000390000000b07000029000000000076043500000060062000390000000c07000029000000000076043500000040062000390000000d07000029000000000076043500000020062000390000000e070000290000000000760435000000090600002900000000006204350000000001010433000001600620003900000000001604350000000001040433000001800420003900000000001404350000000001030433000001a00320003900000000001304350000000001050433000000020010008c00002bdc0000213d000001c003200039000000000013043500000c660020009c00000c66020080410000004001200210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d75011001c70000800d02000039000000040300003900000d7604000041000000030500002900000004060000290000000507000029319331840000040f000000010020019000002bda0000613d000000000001042d0000000002000019000000400100043d00000d630010009c00002b800000413d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000000001000019000031950001043000000d3f01000041000000000010043f0000002101000039000000040010043f00000d3d0100004100003195000104300008000000000002000400000003001d00000080022000390000000002020433000700000002001d00000d310020009c00002f570000813d00000060021000390000000002020433000800000002001d00000c690020009c00002f570000213d000500000001001d00000040011000390000000001010433000600000001001d00000cf60100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000002f4e0000613d000000000101043b00000c6901100197000000070010006b00002c5f0000c13d000000040000006b00002d5d0000c13d000000400100043d000000640210003900000006030000290000000000320435000000000200041000000c690220019700000044031000390000000000230435000000200210003900000d69030000410000000000320435000000000300041100000c6903300197000000240410003900000000003404350000006403000039000000000031043500000d7b0010009c00002f4f0000213d000000a004100039000000400040043f00000d0d0040009c00002f4f0000213d000000e003100039000000400030043f0000002003000039000400000004001d0000000000340435000000c00310003900000d6b04000041000000000043043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000702000029319331840000040f000000600310027000000c660330019800002d360000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400a00043d00000000044a00190000000000a4004b0000000005000039000000010500403900000c730040009c00002f4f0000213d000000010050019000002f4f0000c13d000000400040043f0000001f0430018f00000000093a043600000c6805300198000000000359001900002c510000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b00002c4d0000c13d000000000004004b00002d380000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500002d380000013d000000400100043d000000440310003900000024041000390000002002100039000000040000006b00002cda0000613d00000d3e05000041000000000052043500000008050000290000000000540435000000060400002900000000004304350000004403000039000000000031043500000d630010009c00002f4f0000813d0000008004100039000000400040043f00000d0d0040009c00002f4f0000213d000000c003100039000000400030043f0000002003000039000400000004001d0000000000340435000000a00310003900000d6b04000041000000000043043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000702000029319331840000040f000000600310027000000c660330019800002d2d0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d00000000044500190000000009050019000000000054004b0000000005000039000000010500403900000c730040009c00002f4f0000213d000000010050019000002f4f0000c13d000000400040043f0000001f0430018f000000000a39043600000c680530019800000000035a001900002ca70000613d000000000601034f00000000070a0019000000006806043c0000000007870436000000000037004b00002ca30000c13d000000000004004b00002cb40000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000005030000290000000001090433000000010020019000002d330000613d000000000001004b00002cd20000c13d00030000000a001d000400000009001d00000d0801000041000000000010044300000007010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b00002f7b0000613d00000004010000290000000001010433000000000001004b0000000503000029000000030a00002900002ecb0000613d00000ced0010009c00002f550000213d0000001f0010008c00002f550000a13d00000000010a0433000000010010008c00002e820000a13d00002f550000013d00000d69050000410000000000520435000000000500041100000c69055001970000000000540435000000080400002900000000004304350000006403100039000000060400002900000000004304350000006403000039000000000031043500000d7b0010009c00002f4f0000213d000000a004100039000000400040043f00000d0d0040009c00002f4f0000213d000000e003100039000000400030043f0000002003000039000400000004001d0000000000340435000000c00310003900000d6b04000041000000000043043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000702000029319331840000040f000000600310027000000c660330019800002e5b0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400a00043d00000000044a00190000000000a4004b0000000005000039000000010500403900000c730040009c00002f4f0000213d000000010050019000002f4f0000c13d000000400040043f0000001f0430018f00000000093a043600000c6805300198000000000359001900002d1f0000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b00002d1b0000c13d000000000004004b00002e5d0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500002e5d0000013d000000800a000039000000050300002900000060090000390000000001090433000000010020019000002cb80000c13d000000000001004b00002f6a0000613d00002f7f0000013d000000600a000039000000800900003900000000010a0433000000010020019000002f680000613d000000000001004b00002d540000c13d00040000000a001d000300000009001d00000d0801000041000000000010044300000007010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b000000040100002900002f7b0000613d0000000001010433000000000001004b000000030900002900002d5d0000613d00000ced0010009c00002f550000213d000000200010008c00002f550000413d0000000001090433000000010010008c00002f550000213d000000000001004b00002e840000613d0000000001000415000400000001001d00000d0801000041000000000010044300000008010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b00000cf60200004100000000002004430000000002000412000000040020044300000060020000390000002400200443000000000001004b00002dfa0000613d000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000002f4e0000613d000000000301043b000000400100043d000000440210003900000006040000290000000000420435000000200610003900000d3e0400004100000000004604350000002404100039000000080500002900000000005404350000004404000039000000000041043500000ceb0010009c00002f4f0000213d0000008004100039000000400040043f00000d0d0040009c00002f4f0000213d00000c6902300197000000c003100039000000400030043f0000002003000039000200000004001d0000000000340435000000a00310003900000d6b04000041000000000043043500000c660060009c00000c66060080410000004003600210000000000101043300000c660010009c00000c66010080410000006001100210000000000131019f000000000300041400000c660030009c00000c6603008041000000c003300210000000000131019f000300000002001d319331840000040f000000600310027000000c660330019800002e4c0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400900043d0000000004490019000000000094004b0000000005000039000000010500403900000c730040009c00002f4f0000213d000000010050019000002f4f0000c13d000000400040043f0000001f0430018f000000000a39043600000c680530019800000000035a001900002dc50000613d000000000601034f00000000070a0019000000006806043c0000000007870436000000000037004b00002dc10000c13d000000000004004b00002dd20000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000005030000290000000001090433000000010020019000002e520000613d000000000001004b00002df00000c13d00010000000a001d000200000009001d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b000000020100002900002f7b0000613d0000000001010433000000000001004b0000000503000029000000010a00002900002ec80000613d00000ced0010009c00002f550000213d000000200010008c00002f550000413d00000000010a0433000000010010008c00002f550000213d000000000001004b00002ec80000c13d00002e840000013d000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000002f4e0000613d000000000101043b00000d0802000041000000000020044300000c6901100197000300000001001d0000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b00002f550000613d000000400300043d00000d4c01000041000000000013043500000004013000390000000602000029000000000021043500000c660030009c000200000003001d00000c660100004100000000010340190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d3d011001c70000000302000029319331840000040f000000010020019000002f8b0000613d000000020100002900000c730010009c00002f4f0000213d000000400010043f0000000001000415000300000001001d00000d7401000041000000000010044300000000010004100000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800a02000039319331890000040f000000010020019000002f4e0000613d000000000101043b0000000603000029000000000031004b00002fab0000413d000000000100041400000c660010009c00000c6601008041000000c001100210000000000003004b00002e980000613d00000ce8011001c700008009020000390000000804000029000000000500001900002e990000013d000000800a000039000000050300002900000060090000390000000001090433000000010020019000002dd60000c13d000000000001004b00002f7f0000c13d000000400200043d000800000002001d00000c6c0100004100000000001204350000000401200039000000020200002900002f700000013d000000600a0000390000008009000039000000050300002900000000010a0433000000010020019000002f680000613d000000000001004b00002e7b0000c13d00040000000a001d000300000009001d00000d0801000041000000000010044300000007010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b000000040100002900002f7b0000613d0000000001010433000000000001004b0000000503000029000000030900002900002ecb0000613d00000ced0010009c00002f550000213d000000200010008c00002f550000413d0000000001090433000000010010008c00002f550000213d000000000001004b00002ecb0000c13d000000400100043d000000640210003900000d6c030000410000000000320435000000440210003900000d6d03000041000000000032043500000024021000390000002a03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c700003195000104300000000802000029319331840000040f000000600310027000000c660330019800002ec20000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019000000000054004b0000000006000039000000010600403900000c730040009c00002f4f0000213d000000010060019000002f4f0000c13d000000400040043f0000001f0430018f000000000635043600000c6805300198000000000356001900002eb50000613d000000000701034f000000007807043c0000000006860436000000000036004b00002eb10000c13d000000000004004b00002ec20000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000010020019000002fbc0000613d000000000100041500000003011000690000000001000002000000050300002900000000010004150000000401100069000000000100000200000080013000390000000001010433000400000001001d0000000021010434000500000002001d000000000001004b00002f4d0000613d00000d0801000041000000000010044300000008010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b00002f4d0000613d00000d0801000041000000000010044300000008010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b000000050a00002900002f550000613d000000400b00043d0000006401b0003900000080020000390000000000210435000000000100041100000c69011001970000004402b0003900000000001204350000002401b000390000000602000029000000000021043500000d870100004100000000001b04350000000401b00039000000070200002900000000002104350000008402b0003900000004010000290000000001010433000000000012043500000d58051001970000001f0410018f000000a403b0003900000000003a004b00002f1c0000813d000000000005004b00002f180000613d00000000074a00190000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c00002f120000c13d000000000004004b00002f320000613d000000000603001900002f280000013d0000000006530019000000000005004b00002f250000613d00000000070a0019000000000803001900000000790704340000000008980436000000000068004b00002f210000c13d000000000004004b00002f320000613d000000000a5a00190000000304400210000000000506043300000000054501cf000000000545022f00000000070a04330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000001f0410003900000d580240019700000000013100190000000000010435000000a40120003900000c660010009c00000c6601008041000000600110021000000c6600b0009c00000c660200004100000000020b40190000004002200210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f000000080200002900080000000b001d319331840000040f000000010020019000002f5b0000613d000000080100002900000c730010009c00002f4f0000213d000000400010043f000000000001042d000000000001042f00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000000001000019000031950001043000000d3201000041000000000010043f00000c7501000041000031950001043000000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900002f970000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00002f630000c13d00002f970000013d000000000001004b00002f830000c13d000000400200043d000800000002001d00000c6c0100004100000000001204350000000401200039000000040200002931931fd10000040f0000000802000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f0000319500010430000000400100043d000000440210003900000d700300004100002fae0000013d00000c6600a0009c00000c660a0080410000004002a0021000002f860000013d00000c660090009c00000c6609008041000000400290021000000c660010009c00000c66010080410000006001100210000000000121019f000031950001043000000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900002f970000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00002f930000c13d00000c6606600197000000000004004b00002fa50000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000000400100043d000000440210003900000d8803000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c70000319500010430000000400100043d000000640210003900000d85030000410000000000320435000000440210003900000d8603000041000000000032043500000024021000390000003a0300003900002e8d0000013d0003000000000002000100000003001d000200000002001d00000d08020000410000000000200443000300000001001d0000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f00000001002001900000304e0000613d000000000101043b000000000001004b0000304f0000613d000000030100002900000c690510019700000d1a01000041000000000201041a00000d0c02200197000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d8904000041319331840000040f0000000100200190000030630000613d0000000205000029000000001205043400000001002001b00000304d0000613d000000400400043d00000d8a0040009c000030650000813d0000006002400039000000400020043f000000400240003900000d8b030000410000000000320435000000200240003900000d8c0300004100000000003204350000002702000039000100000004001d000000000024043500000c660010009c00000c66010080410000004001100210000000000205043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000003020000293193318e0000040f000000600310027000000c6605300198000030360000613d0000001f0350003900000c67033001970000003f0330003900000c7204300197000000400300043d0000000004430019000000000034004b0000000006000039000000010600403900000c730040009c000030650000213d0000000100600190000030650000c13d000000400040043f0000001f0650018f000000000453043600000c68075001980000000005740019000030280000613d000000000801034f0000000009040019000000008a08043c0000000009a90436000000000059004b000030240000c13d000000000006004b000030380000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f0000000000150435000030380000013d00000060030000390000008004000039000000000103043300000001002001900000306b0000613d000000000001004b0000304d0000c13d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f00000001002001900000304e0000613d000000000101043b000000000001004b000030860000613d000000000001042d000000000001042f000000400100043d000000640210003900000d27030000410000000000320435000000440210003900000d2803000041000000000032043500000024021000390000002d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c700003195000104300000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000000001004b0000307e0000c13d000000400200043d000300000002001d00000c6c0100004100000000001204350000000401200039000000010200002931931fd10000040f0000000302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f000031950001043000000c660040009c00000c6604008041000000400240021000000c660010009c00000c66010080410000006001100210000000000121019f0000319500010430000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c700003195000104300003000000000002000000400400043d00000c710040009c000031090000813d00000c69051001970000004001400039000000400010043f000000200140003900000d6b0300004100000000003104350000002001000039000200000004001d0000000000140435000000200120003900000c660010009c00000c66010080410000004001100210000000000202043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f000300000005001d0000000002050019319331840000040f000000600310027000000c6603300198000030df0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400a00043d00000000044a00190000000000a4004b0000000005000039000000010500403900000c730040009c000031090000213d0000000100500190000031090000c13d000000400040043f0000001f0430018f00000000093a043600000c68053001980000000003590019000030d10000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b000030cd0000c13d000000000004004b000030e10000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000030e10000013d000000600a000039000000800900003900000000010a043300000001002001900000310f0000613d000000000001004b000030fd0000c13d00020000000a001d000100000009001d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f00000001002001900000313e0000613d000000000101043b000000000001004b00000002010000290000313f0000613d0000000001010433000000000001004b0000000109000029000031060000613d00000ced0010009c000031070000213d0000001f0010008c000031070000a13d0000000001090433000000010010008c000031070000213d000000000001004b000031220000613d000000000001042d0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000000001004b000031360000c13d000000400200043d000300000002001d00000c6c0100004100000000001204350000000401200039000000020200002931931fd10000040f0000000302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f0000319500010430000000400100043d000000640210003900000d6c030000410000000000320435000000440210003900000d6d03000041000000000032043500000024021000390000002a03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c660090009c00000c6609008041000000400290021000000c660010009c00000c66010080410000006001100210000000000121019f0000319500010430000000000001042f000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c70000319500010430000000000001042f00000c660010009c00000c6601008041000000400110021000000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f0000000100200190000031640000613d000000000101043b000000000001042d0000000001000019000031950001043000000000050100190000000000200443000000050030008c000031740000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b0000316c0000413d00000c660030009c00000c66030080410000006001300210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d8d011001c70000000002050019319331890000040f0000000100200190000031830000613d000000000101043b000000000001042d000000000001042f00003187002104210000000102000039000000000001042d0000000002000019000000000001042d0000318c002104230000000102000039000000000001042d0000000002000019000000000001042d00003191002104250000000102000039000000000001042d0000000002000019000000000001042d0000319300000432000031940001042e00003195000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff616c697a696e6700000000000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320696e69746908c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000000000000000000000002000000000000000000000000000000000000200000000000000000000000007f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024984690484000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc000000000000000000000000000000000000000000000000000000003ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff5110d7910000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000200000000000000000000000000000340000001000000000000000000000000000000000000000000000000000000000000000000000000007659f9df00000000000000000000000000000000000000000000000000000000adb5a6a500000000000000000000000000000000000000000000000000000000dda5211200000000000000000000000000000000000000000000000000000000e322921000000000000000000000000000000000000000000000000000000000ee2a53f700000000000000000000000000000000000000000000000000000000ee2a53f800000000000000000000000000000000000000000000000000000000f79f29ed00000000000000000000000000000000000000000000000000000000fc8a584f00000000000000000000000000000000000000000000000000000000e322921100000000000000000000000000000000000000000000000000000000ea86bd4600000000000000000000000000000000000000000000000000000000de7eba7700000000000000000000000000000000000000000000000000000000de7eba7800000000000000000000000000000000000000000000000000000000deff4b2400000000000000000000000000000000000000000000000000000000dda5211300000000000000000000000000000000000000000000000000000000ddd224f100000000000000000000000000000000000000000000000000000000c35c83fb00000000000000000000000000000000000000000000000000000000d513cb6500000000000000000000000000000000000000000000000000000000d513cb6600000000000000000000000000000000000000000000000000000000d7e1583a00000000000000000000000000000000000000000000000000000000c35c83fc00000000000000000000000000000000000000000000000000000000ceb4c98700000000000000000000000000000000000000000000000000000000b4c0d7aa00000000000000000000000000000000000000000000000000000000b4c0d7ab00000000000000000000000000000000000000000000000000000000babb6aac00000000000000000000000000000000000000000000000000000000adb5a6a600000000000000000000000000000000000000000000000000000000b370b7f5000000000000000000000000000000000000000000000000000000009748cf7b000000000000000000000000000000000000000000000000000000009a8a059100000000000000000000000000000000000000000000000000000000a18a096d00000000000000000000000000000000000000000000000000000000a18a096e00000000000000000000000000000000000000000000000000000000ac9650d800000000000000000000000000000000000000000000000000000000ad5425c6000000000000000000000000000000000000000000000000000000009a8a059200000000000000000000000000000000000000000000000000000000a1244c6700000000000000000000000000000000000000000000000000000000979f2bc100000000000000000000000000000000000000000000000000000000979f2bc20000000000000000000000000000000000000000000000000000000099cc2968000000000000000000000000000000000000000000000000000000009748cf7c0000000000000000000000000000000000000000000000000000000097943aa9000000000000000000000000000000000000000000000000000000007ef413e0000000000000000000000000000000000000000000000000000000008a7860cd000000000000000000000000000000000000000000000000000000008a7860ce000000000000000000000000000000000000000000000000000000008b15788e000000000000000000000000000000000000000000000000000000007ef413e10000000000000000000000000000000000000000000000000000000082e2c43f000000000000000000000000000000000000000000000000000000007aef642b000000000000000000000000000000000000000000000000000000007aef642c000000000000000000000000000000000000000000000000000000007b939232000000000000000000000000000000000000000000000000000000007659f9e000000000000000000000000000000000000000000000000000000000775c0d0300000000000000000000000000000000000000000000000000000000437b91150000000000000000000000000000000000000000000000000000000057f6dcb700000000000000000000000000000000000000000000000000000000670fa8ab000000000000000000000000000000000000000000000000000000006e400982000000000000000000000000000000000000000000000000000000006e400983000000000000000000000000000000000000000000000000000000006fd5c10e00000000000000000000000000000000000000000000000000000000738b62e500000000000000000000000000000000000000000000000000000000670fa8ac000000000000000000000000000000000000000000000000000000006bbbcd2e0000000000000000000000000000000000000000000000000000000061a04d2f0000000000000000000000000000000000000000000000000000000061a04d3000000000000000000000000000000000000000000000000000000000647c576c0000000000000000000000000000000000000000000000000000000057f6dcb8000000000000000000000000000000000000000000000000000000006068d6cb000000000000000000000000000000000000000000000000000000005285e05700000000000000000000000000000000000000000000000000000000541f4f1300000000000000000000000000000000000000000000000000000000541f4f1400000000000000000000000000000000000000000000000000000000577f51f8000000000000000000000000000000000000000000000000000000005285e0580000000000000000000000000000000000000000000000000000000052d1902d00000000000000000000000000000000000000000000000000000000493a4f8300000000000000000000000000000000000000000000000000000000493a4f84000000000000000000000000000000000000000000000000000000004f1ef28600000000000000000000000000000000000000000000000000000000437b911600000000000000000000000000000000000000000000000000000000490e49ef000000000000000000000000000000000000000000000000000000001b3d5558000000000000000000000000000000000000000000000000000000002e63e599000000000000000000000000000000000000000000000000000000003a90dc84000000000000000000000000000000000000000000000000000000003a90dc85000000000000000000000000000000000000000000000000000000003f00627b000000000000000000000000000000000000000000000000000000002e63e59a000000000000000000000000000000000000000000000000000000003659cfe60000000000000000000000000000000000000000000000000000000029cb924c0000000000000000000000000000000000000000000000000000000029cb924d000000000000000000000000000000000000000000000000000000002e378115000000000000000000000000000000000000000000000000000000001b3d5559000000000000000000000000000000000000000000000000000000001fab657c0000000000000000000000000000000000000000000000000000000012622e5a0000000000000000000000000000000000000000000000000000000017fcb39a0000000000000000000000000000000000000000000000000000000017fcb39b0000000000000000000000000000000000000000000000000000000019c1648c0000000000000000000000000000000000000000000000000000000012622e5b0000000000000000000000000000000000000000000000000000000015348e44000000000000000000000000000000000000000000000000000000001186ec32000000000000000000000000000000000000000000000000000000001186ec330000000000000000000000000000000000000000000000000000000011eac85500000000000000000000000000000000000000000000000000000000079bd2c7000000000000000000000000000000000000000000000000000000000cb84d9affffffffffffffffffffffffeeeeffffffffffffffffffffffffffffffffeeef0000000000000000000000000000000000000040000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000ffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000800000000000000000000000ff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c097ce7bc90715b34b9f10000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000001ffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff40000000000000000000000000000000000000000000000003ffffffffffffffe09a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b020000000000000000000000000000000000000000000000000000000000000045e04bc8f121ba11466985789ca2822a91109f31bb8ac85504a37b7eaf873c2600000000000000000000000000000000000000000000003fffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7f80000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000400000000000000000000000006c172ea51018fb2eb2118f3f8a507c4df71eb519b8c0052834dc3c920182fef4d950afdc00000000000000000000000000000000000000000000000000000000ffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000200000008000000000000000002d5b62420992e5a4afce0e77742636ca2608ef58289fd2e1baa5161ef6e7e41e4143524f53532d56320000000000000000000000000000000000000000000000312e302e30000000000000000000000000000000000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e000000000000000000000000000000000000000000000000fffffffffffffe5f8e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b38e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b27c1af0646963afc3343245b103731965735a893347bfa0d58a5dc77a77ae691c000000000000000000000000000000000000000000000000fffffffffffffee00200000000000000000000000000000000000000000000a000000000000000001e191e8e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdfdeff4b2400000000000000000000000000000000000000000000000000000000b8fe37a70000000000000000000000000000000000000000000000000000000091d7e1520000000000000000000000000000000000000000000000000000000041a941b8313293eca483f41d8faa2498e005e6d7700e2e93f41d3cb7e70a897d7f5e6be5000000000000000000000000000000000000000000000000000000009d276a4200000000000000000000000000000000000000000000000000000000ffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe88463c2f254e2b070013a2dc7ee1e099f9bc00534cbdf03af551dc26ae492198d1994e2bbbd77564cdca06dd819e7ee2a5efa06c80dcb59a4a7b6e39edc538f1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000647920696e697469616c697a6564000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c726561ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbfa9e8c42c9e7fca7f62755189a16b2f5314d43d8fb24e91ba54e6d65f9314e849a73e8909f8616742d7fe701153d82666f7b7cd480552e23ebb05d358c22fd04eb606125600000000000000000000000000000000000000000000000000000000ba97b39d000000000000000000000000000000000000000000000000000000006e697469616c697a696e67000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420690000000000000000000000000000000000000000000000008000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000007fffffffffffffff02000002000000000000000000000000000000440000000000000000000000006c6564207468726f7567682064656c656761746563616c6c0000000000000000555550535570677261646561626c653a206d757374206e6f742062652063616c360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914352d1902d000000000000000000000000000000000000000000000000000000006961626c6555554944000000000000000000000000000000000000000000000045524331393637557067726164653a20756e737570706f727465642070726f78c86ba04c55bc5eb2f2876b91c438849a296dbec7b08751c3074d92e04f0a77af0000000000000000000000000000000000000000000000000000000001e13380000000000000000000000000000000000000000000000000ffffffffffffff3f00000000000000000000000000000000000000000000000000000000000100036163746976652070726f7879000000000000000000000000000000000000000046756e6374696f6e206d7573742062652063616c6c6564207468726f756768204f4e4c595f434f554e544552504152545f47415445574159000000000000000000000000000000000000000000000000000000640000000000000000000000006f74206120636f6e747261637400000000000000000000000000000000000000455243313936373a206e657720696d706c656d656e746174696f6e206973206e64656c656761746563616c6c000000000000000000000000000000000000000009deb9ec00000000000000000000000000000000000000000000000000000000012f9e440000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000001400000000000000000000000003cee3e290f36226751cd0b3321b213890fe9c768e922f267fa6111836ce05c32000000000000000000000000000000000000000000000000fffffffffffffdc07b21f8aa00000000000000000000000000000000000000000000000000000000c3a9b9d0000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000f3d81dae00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff9f8f260c6000000000000000000000000000000000000000000000000000000000d642b7d9000000000000000000000000000000000000000000000000000000007a47c9a200000000000000000000000000000000000000000000000000000000b05e92fa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff8e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b1954476d900000000000000000000000000000000000000000000000000000000cd298b380000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000005bb550620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100044a2e35ba00000000000000000000000000000000000000000000000000000000dd62ed3e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000095ea7b300000000000000000000000000000000000000000000000000000000cb75c11c00000000000000000000000000000000000000000000000000000000a56ec632000000000000000000000000000000000000000000000000000000008e0250ee0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e40000000000000000000000006fd3504e00000000000000000000000000000000000000000000000000000000d9caed12000000000000000000000000000000000000000000000000000000002e1a7d4d0000000000000000000000000000000000000000000000000000000051cff8d9000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000024000000000000000000000000fa7fa7cf6d7dde5f9be65a67e6a1a747e7aa864dcd2d793353c722d80fbbb357f4ad92585b1bc117fbdd644990adf0827bc4c95baeae8a23322af807b6d0020e0000000000000000000000000000000000000064000000800000000000000000fc0c546a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000800000000000000000a63e8c6b00000000000000000000000000000000000000000000000000000000323983f5343e25b2c1396361b1b791be31484841fdfb95b8615cd02d910b1e085265656e7472616e637947756172643a207265656e7472616e742063616c6c005a65d18800000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0001ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff000000000000000000000000000000000000000000000000fffffffffffffe600000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000ffffffffffffffe0000000000000000000000000000000000000000000000000fffffffffffffe800000000000000000000000000000000000000000000000000000000100000000ffff00ff00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff8000000000000000000000000000000000000000000000000006f05b59d3b200000000000000000000000000000000000000c097ce7bc90715b34b9f10000000016452a35d00000000000000000000000000000000000000000000000000000000d0e30db000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000400000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff605361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65646f742073756363656564000000000000000000000000000000000000000000005361666545524332303a204552433230206f7065726174696f6e20646964206e0000000000000000000000000000000000000000000000000de0b6b3a764000032ed1a409ef04c7b0227189c3a103dc5ac10e775a15b785dcc510201f7c25ad3416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000f722177f00000000000000000000000000000000000000000000000000000000c45b6b5200000000000000000000000000000000000000000000000000000000a13c425c000000000000000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000000000000000000000000000000000001e000000000000000000000000044b559f101f8fbcc8a0ea43fa91a05a729a5ea6e14a7c75aa7503746901372086f6e206973206e6f74205555505300000000000000000000000000000000000045524331393637557067726164653a206e657720696d706c656d656e74617469000000000000000000000000000000000000000000000000ffffffffffffff20c2f8787176b8ac6bf7215b4adcc1e069bf4ab82d9ab1df05a57a91d425935b6e000000000000000000000000000000000000000000000000ffffffffffffff5f190100000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000420000000000000000000000007fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a100000000000000000000000000000000000000800000000000000000000000001626ba7e00000000000000000000000000000000000000000000000000000000938a1821000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e13381495d907f00000000000000000000000000000000000000000000000000000000582e3889000000000000000000000000000000000000000000000000000000006563697069656e74206d61792068617665207265766572746564000000000000416464726573733a20756e61626c6520746f2073656e642076616c75652c20723a5be8cb00000000000000000000000000000000000000000000000000000000416464726573733a20696e73756666696369656e742062616c616e6365000000bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b000000000000000000000000000000000000000000000000ffffffffffffffa0206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c0200000200000000000000000000000000000000000000000000000000000000000000000000000000a2646970667358221220de9290a30581c0f54590b09a5ce207769f2b8377cd4c87ac45aac29f6fbf472b64736f6c6378247a6b736f6c633a312e352e31353b736f6c633a302e382e33303b6c6c766d3a312e302e320055",
"devdoc": {
"custom:security-contact": "bugs@across.to",
"details": "Resources for compiling and deploying contracts with hardhat: https://era.zksync.io/docs/tools/hardhat/hardhat-zksync-solc.html",
@@ -6853,6 +7312,14 @@
"rootBundleId": "Index of the root bundle that needs to be deleted. Note: this is intentionally a uint256 to ensure that a small input range doesn't limit which indices this method is able to reach."
}
},
+ "executeExternalCall(bytes)": {
+ "params": {
+ "message": "The message containing the target address and calldata to execute."
+ },
+ "returns": {
+ "returnData": "The return data from the executed call."
+ }
+ },
"executeRelayerRefundLeaf(uint32,(uint256,uint256,uint256[],uint32,address,address[]),bytes32[])": {
"params": {
"proof": "Inclusion proof for this leaf in relayer refund root in root bundle.",
@@ -6912,12 +7379,11 @@
"_0": "The deposit ID for the unsafe deposit."
}
},
- "initialize(uint32,address,address,address)": {
+ "initialize(uint32,address,address)": {
"params": {
"_crossDomainAdmin": "Cross domain admin to set. Can be changed by admin.",
"_initialDepositId": "Starting deposit ID. Set to 0 unless this is a re-deployment in order to mitigate relay hash collisions.",
- "_withdrawalRecipient": "Address which receives token withdrawals. Can be changed by admin. For Spoke Pools on L2, this will likely be the hub pool.",
- "_zkErc20Bridge": "Address of L2 ERC20 gateway. Can be reset by admin."
+ "_withdrawalRecipient": "Address which receives token withdrawals. Can be changed by admin. For Spoke Pools on L2, this will likely be the hub pool."
}
},
"pauseDeposits(bool)": {
@@ -6952,14 +7418,15 @@
"newCrossDomainAdmin": "New cross domain admin."
}
},
- "setWithdrawalRecipient(address)": {
+ "setOftMessenger(address,address)": {
"params": {
- "newWithdrawalRecipient": "New withdrawal recipient address."
+ "messenger": "IOFT contract address on the current chain for the specified token. Acts as a 'mailbox'",
+ "token": "token address on the current chain"
}
},
- "setZkBridge(address)": {
+ "setWithdrawalRecipient(address)": {
"params": {
- "_zkErc20Bridge": "New address of L2 ERC20 gateway."
+ "newWithdrawalRecipient": "New withdrawal recipient address."
}
},
"speedUpDeposit(bytes32,uint256,uint256,bytes32,bytes,bytes)": {
@@ -7014,8 +7481,48 @@
"version": 1
},
"userdoc": {
+ "errors": {
+ "OFTFeeUnderpaid()": [
+ {
+ "notice": "Thrown when the native fee sent by the caller is insufficient to cover the OFT transfer."
+ }
+ ],
+ "OftFeeCapExceeded()": [
+ {
+ "notice": "Thrown when OFT fee exceeds the configured cap "
+ }
+ ],
+ "OftIncorrectAmountReceivedLD()": [
+ {
+ "notice": "Thrown when amount received differs from expected amount "
+ }
+ ],
+ "OftIncorrectAmountSentLD()": [
+ {
+ "notice": "Thrown when amount sent differs from expected amount "
+ }
+ ],
+ "OftInsufficientBalanceForFee()": [
+ {
+ "notice": "Thrown when contract has insufficient balance to pay OFT fees "
+ }
+ ],
+ "OftLzFeeNotZero()": [
+ {
+ "notice": "Thrown when LayerZero token fee is not zero (only native fees supported) "
+ }
+ ]
+ },
+ "events": {
+ "AdminExternalCallExecuted(address,bytes)": {
+ "notice": "Emitted when the call to external contract is executed, triggered by an admin action"
+ }
+ },
"kind": "user",
"methods": {
+ "EMPTY_MSG_BYTES()": {
+ "notice": "Empty bytes array used for OFT messaging parameters "
+ },
"__SpokePool_init(uint32,address,address)": {
"notice": "Construct the base SpokePool."
},
@@ -7046,6 +7553,9 @@
"emergencyDeleteRootBundle(uint256)": {
"notice": "This method is intended to only be used in emergencies where a bad root bundle has reached the SpokePool."
},
+ "executeExternalCall(bytes)": {
+ "notice": "Execute an external call to a target contract."
+ },
"executeRelayerRefundLeaf(uint32,(uint256,uint256,uint256[],uint32,address,address[]),bytes32[])": {
"notice": "Executes a relayer refund leaf stored as part of a root bundle. Will send the relayer the amount they sent to the recipient plus a relayer fee."
},
@@ -7067,7 +7577,7 @@
"getUnsafeDepositId(address,bytes32,uint256)": {
"notice": "Returns the deposit ID for an unsafe deposit. This function is used to compute the deposit ID in unsafeDeposit and is provided as a convenience."
},
- "initialize(uint32,address,address,address)": {
+ "initialize(uint32,address,address)": {
"notice": "Initialize the ZkSync SpokePool."
},
"pauseDeposits(bool)": {
@@ -7085,12 +7595,12 @@
"setCrossDomainAdmin(address)": {
"notice": "Change cross domain admin address. Callable by admin only."
},
+ "setOftMessenger(address,address)": {
+ "notice": "Add token -> OFTMessenger relationship. Callable only by admin."
+ },
"setWithdrawalRecipient(address)": {
"notice": "Change L1 withdrawal recipient address. Callable by admin only."
},
- "setZkBridge(address)": {
- "notice": "Change L2 token bridge addresses. Callable only by admin."
- },
"speedUpDeposit(bytes32,uint256,uint256,bytes32,bytes,bytes)": {
"notice": "Depositor can use this function to signal to relayer to use updated output amount, recipient, and/or message. The speed up signature uniquely identifies the speed up based only on depositor, deposit ID and origin chain, so using this function in conjunction with unsafeDeposit is risky due to the chance of repeating a deposit ID."
},
@@ -7107,7 +7617,7 @@
"storageLayout": {
"storage": [
{
- "astId": 779,
+ "astId": 372,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "_initialized",
"offset": 0,
@@ -7115,7 +7625,7 @@
"type": "t_uint8"
},
{
- "astId": 782,
+ "astId": 375,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "_initializing",
"offset": 1,
@@ -7123,7 +7633,7 @@
"type": "t_bool"
},
{
- "astId": 761,
+ "astId": 354,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "__gap",
"offset": 0,
@@ -7131,7 +7641,7 @@
"type": "t_array(t_uint256)50_storage"
},
{
- "astId": 1077,
+ "astId": 670,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "__gap",
"offset": 0,
@@ -7139,7 +7649,7 @@
"type": "t_array(t_uint256)50_storage"
},
{
- "astId": 1093,
+ "astId": 686,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "_status",
"offset": 0,
@@ -7147,7 +7657,7 @@
"type": "t_uint256"
},
{
- "astId": 1162,
+ "astId": 755,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "__gap",
"offset": 0,
@@ -7155,7 +7665,7 @@
"type": "t_array(t_uint256)49_storage"
},
{
- "astId": 38511,
+ "astId": 17487,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "__gap",
"offset": 0,
@@ -7163,7 +7673,7 @@
"type": "t_array(t_uint256)1000_storage"
},
{
- "astId": 38243,
+ "astId": 17219,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "_HASHED_NAME",
"offset": 0,
@@ -7171,7 +7681,7 @@
"type": "t_bytes32"
},
{
- "astId": 38245,
+ "astId": 17221,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "_HASHED_VERSION",
"offset": 0,
@@ -7179,7 +7689,7 @@
"type": "t_bytes32"
},
{
- "astId": 38344,
+ "astId": 17320,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "__gap",
"offset": 0,
@@ -7187,7 +7697,7 @@
"type": "t_array(t_uint256)1000_storage"
},
{
- "astId": 19282,
+ "astId": 8806,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "crossDomainAdmin",
"offset": 0,
@@ -7195,7 +7705,7 @@
"type": "t_address"
},
{
- "astId": 19284,
+ "astId": 8808,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "withdrawalRecipient",
"offset": 0,
@@ -7203,15 +7713,15 @@
"type": "t_address"
},
{
- "astId": 19287,
+ "astId": 8811,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "DEPRECATED_wrappedNativeToken",
"offset": 0,
"slot": "2155",
- "type": "t_contract(WETH9Interface)32980"
+ "type": "t_contract(WETH9Interface)14152"
},
{
- "astId": 19289,
+ "astId": 8813,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "DEPRECATED_depositQuoteTimeBuffer",
"offset": 20,
@@ -7219,7 +7729,7 @@
"type": "t_uint32"
},
{
- "astId": 19291,
+ "astId": 8815,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "numberOfDeposits",
"offset": 24,
@@ -7227,7 +7737,7 @@
"type": "t_uint32"
},
{
- "astId": 19293,
+ "astId": 8817,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "pausedFills",
"offset": 28,
@@ -7235,7 +7745,7 @@
"type": "t_bool"
},
{
- "astId": 19295,
+ "astId": 8819,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "pausedDeposits",
"offset": 29,
@@ -7243,15 +7753,15 @@
"type": "t_bool"
},
{
- "astId": 19299,
+ "astId": 8823,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "rootBundles",
"offset": 0,
"slot": "2156",
- "type": "t_array(t_struct(RootBundle)33858_storage)dyn_storage"
+ "type": "t_array(t_struct(RootBundle)15024_storage)dyn_storage"
},
{
- "astId": 19305,
+ "astId": 8829,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "DEPRECATED_enabledDepositRoutes",
"offset": 0,
@@ -7259,7 +7769,7 @@
"type": "t_mapping(t_address,t_mapping(t_uint256,t_bool))"
},
{
- "astId": 19309,
+ "astId": 8833,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "DEPRECATED_relayFills",
"offset": 0,
@@ -7267,7 +7777,7 @@
"type": "t_mapping(t_bytes32,t_uint256)"
},
{
- "astId": 19313,
+ "astId": 8837,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "DEPRECATED_fillCounter",
"offset": 0,
@@ -7275,7 +7785,7 @@
"type": "t_mapping(t_address,t_uint256)"
},
{
- "astId": 19317,
+ "astId": 8841,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "DEPRECATED_depositCounter",
"offset": 0,
@@ -7283,7 +7793,7 @@
"type": "t_mapping(t_address,t_uint256)"
},
{
- "astId": 19321,
+ "astId": 8845,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "DEPRECATED_refundsRequested",
"offset": 0,
@@ -7291,7 +7801,7 @@
"type": "t_mapping(t_bytes32,t_uint256)"
},
{
- "astId": 19325,
+ "astId": 8849,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "fillStatuses",
"offset": 0,
@@ -7299,7 +7809,7 @@
"type": "t_mapping(t_bytes32,t_uint256)"
},
{
- "astId": 19331,
+ "astId": 8855,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "relayerRefund",
"offset": 0,
@@ -7307,15 +7817,23 @@
"type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
},
{
- "astId": 21815,
+ "astId": 8859,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
- "label": "__gap",
+ "label": "oftMessengers",
"offset": 0,
"slot": "2164",
- "type": "t_array(t_uint256)998_storage"
+ "type": "t_mapping(t_address,t_address)"
},
{
- "astId": 22521,
+ "astId": 11637,
+ "contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
+ "label": "__gap",
+ "offset": 0,
+ "slot": "2165",
+ "type": "t_array(t_uint256)997_storage"
+ },
+ {
+ "astId": 13267,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "l2Eth",
"offset": 0,
@@ -7323,15 +7841,15 @@
"type": "t_address"
},
{
- "astId": 22524,
+ "astId": 13269,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
- "label": "zkErc20Bridge",
+ "label": "DEPRECATED_zkErc20Bridge",
"offset": 0,
"slot": "3163",
- "type": "t_contract(ZkBridgeLike)22504"
+ "type": "t_address"
},
{
- "astId": 22830,
+ "astId": 13625,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "__gap",
"offset": 0,
@@ -7345,8 +7863,8 @@
"label": "address",
"numberOfBytes": "20"
},
- "t_array(t_struct(RootBundle)33858_storage)dyn_storage": {
- "base": "t_struct(RootBundle)33858_storage",
+ "t_array(t_struct(RootBundle)15024_storage)dyn_storage": {
+ "base": "t_struct(RootBundle)15024_storage",
"encoding": "dynamic_array",
"label": "struct SpokePoolInterface.RootBundle[]",
"numberOfBytes": "32"
@@ -7369,11 +7887,11 @@
"label": "uint256[50]",
"numberOfBytes": "1600"
},
- "t_array(t_uint256)998_storage": {
+ "t_array(t_uint256)997_storage": {
"base": "t_uint256",
"encoding": "inplace",
- "label": "uint256[998]",
- "numberOfBytes": "31936"
+ "label": "uint256[997]",
+ "numberOfBytes": "31904"
},
"t_array(t_uint256)999_storage": {
"base": "t_uint256",
@@ -7391,15 +7909,17 @@
"label": "bytes32",
"numberOfBytes": "32"
},
- "t_contract(WETH9Interface)32980": {
+ "t_contract(WETH9Interface)14152": {
"encoding": "inplace",
"label": "contract WETH9Interface",
"numberOfBytes": "20"
},
- "t_contract(ZkBridgeLike)22504": {
- "encoding": "inplace",
- "label": "contract ZkBridgeLike",
- "numberOfBytes": "20"
+ "t_mapping(t_address,t_address)": {
+ "encoding": "mapping",
+ "key": "t_address",
+ "label": "mapping(address => address)",
+ "numberOfBytes": "32",
+ "value": "t_address"
},
"t_mapping(t_address,t_mapping(t_address,t_uint256))": {
"encoding": "mapping",
@@ -7443,12 +7963,12 @@
"numberOfBytes": "32",
"value": "t_uint256"
},
- "t_struct(RootBundle)33858_storage": {
+ "t_struct(RootBundle)15024_storage": {
"encoding": "inplace",
"label": "struct SpokePoolInterface.RootBundle",
"members": [
{
- "astId": 33851,
+ "astId": 15017,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "slowRelayRoot",
"offset": 0,
@@ -7456,7 +7976,7 @@
"type": "t_bytes32"
},
{
- "astId": 33853,
+ "astId": 15019,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "relayerRefundRoot",
"offset": 0,
@@ -7464,7 +7984,7 @@
"type": "t_bytes32"
},
{
- "astId": 33857,
+ "astId": 15023,
"contract": "contracts/Lens_SpokePool.sol:Lens_SpokePool",
"label": "claimedBitmap",
"offset": 0,
diff --git a/deployments/lens/solcInputs/47139abb5837f5482556d72341819801.json b/deployments/lens/solcInputs/47139abb5837f5482556d72341819801.json
new file mode 100644
index 000000000..25ce6ac70
--- /dev/null
+++ b/deployments/lens/solcInputs/47139abb5837f5482556d72341819801.json
@@ -0,0 +1,251 @@
+{
+ "language": "Solidity",
+ "sources": {
+ "@openzeppelin/contracts-upgradeable-v4/interfaces/draft-IERC1822Upgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified\n * proxy whose upgrades are fully controlled by the current implementation.\n */\ninterface IERC1822ProxiableUpgradeable {\n /**\n * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation\n * address.\n *\n * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n * function revert if invoked through a proxy.\n */\n function proxiableUUID() external view returns (bytes32);\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/interfaces/IERC1967Upgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC1967.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.\n *\n * _Available since v4.8.3._\n */\ninterface IERC1967Upgradeable {\n /**\n * @dev Emitted when the implementation is upgraded.\n */\n event Upgraded(address indexed implementation);\n\n /**\n * @dev Emitted when the admin account has changed.\n */\n event AdminChanged(address previousAdmin, address newAdmin);\n\n /**\n * @dev Emitted when the beacon is changed.\n */\n event BeaconUpgraded(address indexed beacon);\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/proxy/beacon/IBeaconUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev This is the interface that {BeaconProxy} expects of its beacon.\n */\ninterface IBeaconUpgradeable {\n /**\n * @dev Must return an address that can be used as a delegate call target.\n *\n * {BeaconProxy} will check that this address is a contract.\n */\n function implementation() external view returns (address);\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/proxy/ERC1967/ERC1967UpgradeUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/ERC1967/ERC1967Upgrade.sol)\n\npragma solidity ^0.8.2;\n\nimport \"../beacon/IBeaconUpgradeable.sol\";\nimport \"../../interfaces/IERC1967Upgradeable.sol\";\nimport \"../../interfaces/draft-IERC1822Upgradeable.sol\";\nimport \"../../utils/AddressUpgradeable.sol\";\nimport \"../../utils/StorageSlotUpgradeable.sol\";\nimport {Initializable} from \"../utils/Initializable.sol\";\n\n/**\n * @dev This abstract contract provides getters and event emitting update functions for\n * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.\n *\n * _Available since v4.1._\n */\nabstract contract ERC1967UpgradeUpgradeable is Initializable, IERC1967Upgradeable {\n // This is the keccak-256 hash of \"eip1967.proxy.rollback\" subtracted by 1\n bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;\n\n /**\n * @dev Storage slot with the address of the current implementation.\n * This is the keccak-256 hash of \"eip1967.proxy.implementation\" subtracted by 1, and is\n * validated in the constructor.\n */\n bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n\n function __ERC1967Upgrade_init() internal onlyInitializing {\n }\n\n function __ERC1967Upgrade_init_unchained() internal onlyInitializing {\n }\n /**\n * @dev Returns the current implementation address.\n */\n function _getImplementation() internal view returns (address) {\n return StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n }\n\n /**\n * @dev Stores a new address in the EIP1967 implementation slot.\n */\n function _setImplementation(address newImplementation) private {\n require(AddressUpgradeable.isContract(newImplementation), \"ERC1967: new implementation is not a contract\");\n StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n }\n\n /**\n * @dev Perform implementation upgrade\n *\n * Emits an {Upgraded} event.\n */\n function _upgradeTo(address newImplementation) internal {\n _setImplementation(newImplementation);\n emit Upgraded(newImplementation);\n }\n\n /**\n * @dev Perform implementation upgrade with additional setup call.\n *\n * Emits an {Upgraded} event.\n */\n function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal {\n _upgradeTo(newImplementation);\n if (data.length > 0 || forceCall) {\n AddressUpgradeable.functionDelegateCall(newImplementation, data);\n }\n }\n\n /**\n * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.\n *\n * Emits an {Upgraded} event.\n */\n function _upgradeToAndCallUUPS(address newImplementation, bytes memory data, bool forceCall) internal {\n // Upgrades from old implementations will perform a rollback test. This test requires the new\n // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing\n // this special case will break upgrade paths from old UUPS implementation to new ones.\n if (StorageSlotUpgradeable.getBooleanSlot(_ROLLBACK_SLOT).value) {\n _setImplementation(newImplementation);\n } else {\n try IERC1822ProxiableUpgradeable(newImplementation).proxiableUUID() returns (bytes32 slot) {\n require(slot == _IMPLEMENTATION_SLOT, \"ERC1967Upgrade: unsupported proxiableUUID\");\n } catch {\n revert(\"ERC1967Upgrade: new implementation is not UUPS\");\n }\n _upgradeToAndCall(newImplementation, data, forceCall);\n }\n }\n\n /**\n * @dev Storage slot with the admin of the contract.\n * This is the keccak-256 hash of \"eip1967.proxy.admin\" subtracted by 1, and is\n * validated in the constructor.\n */\n bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;\n\n /**\n * @dev Returns the current admin.\n */\n function _getAdmin() internal view returns (address) {\n return StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value;\n }\n\n /**\n * @dev Stores a new address in the EIP1967 admin slot.\n */\n function _setAdmin(address newAdmin) private {\n require(newAdmin != address(0), \"ERC1967: new admin is the zero address\");\n StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value = newAdmin;\n }\n\n /**\n * @dev Changes the admin of the proxy.\n *\n * Emits an {AdminChanged} event.\n */\n function _changeAdmin(address newAdmin) internal {\n emit AdminChanged(_getAdmin(), newAdmin);\n _setAdmin(newAdmin);\n }\n\n /**\n * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.\n * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.\n */\n bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;\n\n /**\n * @dev Returns the current beacon.\n */\n function _getBeacon() internal view returns (address) {\n return StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value;\n }\n\n /**\n * @dev Stores a new beacon in the EIP1967 beacon slot.\n */\n function _setBeacon(address newBeacon) private {\n require(AddressUpgradeable.isContract(newBeacon), \"ERC1967: new beacon is not a contract\");\n require(\n AddressUpgradeable.isContract(IBeaconUpgradeable(newBeacon).implementation()),\n \"ERC1967: beacon implementation is not a contract\"\n );\n StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value = newBeacon;\n }\n\n /**\n * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does\n * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).\n *\n * Emits a {BeaconUpgraded} event.\n */\n function _upgradeBeaconToAndCall(address newBeacon, bytes memory data, bool forceCall) internal {\n _setBeacon(newBeacon);\n emit BeaconUpgraded(newBeacon);\n if (data.length > 0 || forceCall) {\n AddressUpgradeable.functionDelegateCall(IBeaconUpgradeable(newBeacon).implementation(), data);\n }\n }\n\n /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[50] private __gap;\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/proxy/utils/Initializable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\n\npragma solidity ^0.8.2;\n\nimport \"../../utils/AddressUpgradeable.sol\";\n\n/**\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n *\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\n * reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\n * case an upgrade adds a module that needs to be initialized.\n *\n * For example:\n *\n * [.hljs-theme-light.nopadding]\n * ```solidity\n * contract MyToken is ERC20Upgradeable {\n * function initialize() initializer public {\n * __ERC20_init(\"MyToken\", \"MTK\");\n * }\n * }\n *\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\n * function initializeV2() reinitializer(2) public {\n * __ERC20Permit_init(\"MyToken\");\n * }\n * }\n * ```\n *\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n *\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n *\n * [CAUTION]\n * ====\n * Avoid leaving a contract uninitialized.\n *\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\n *\n * [.hljs-theme-light.nopadding]\n * ```\n * /// @custom:oz-upgrades-unsafe-allow constructor\n * constructor() {\n * _disableInitializers();\n * }\n * ```\n * ====\n */\nabstract contract Initializable {\n /**\n * @dev Indicates that the contract has been initialized.\n * @custom:oz-retyped-from bool\n */\n uint8 private _initialized;\n\n /**\n * @dev Indicates that the contract is in the process of being initialized.\n */\n bool private _initializing;\n\n /**\n * @dev Triggered when the contract has been initialized or reinitialized.\n */\n event Initialized(uint8 version);\n\n /**\n * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\n * `onlyInitializing` functions can be used to initialize parent contracts.\n *\n * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a\n * constructor.\n *\n * Emits an {Initialized} event.\n */\n modifier initializer() {\n bool isTopLevelCall = !_initializing;\n require(\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\n \"Initializable: contract is already initialized\"\n );\n _initialized = 1;\n if (isTopLevelCall) {\n _initializing = true;\n }\n _;\n if (isTopLevelCall) {\n _initializing = false;\n emit Initialized(1);\n }\n }\n\n /**\n * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\n * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\n * used to initialize parent contracts.\n *\n * A reinitializer may be used after the original initialization step. This is essential to configure modules that\n * are added through upgrades and that require initialization.\n *\n * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\n * cannot be nested. If one is invoked in the context of another, execution will revert.\n *\n * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\n * a contract, executing them in the right order is up to the developer or operator.\n *\n * WARNING: setting the version to 255 will prevent any future reinitialization.\n *\n * Emits an {Initialized} event.\n */\n modifier reinitializer(uint8 version) {\n require(!_initializing && _initialized < version, \"Initializable: contract is already initialized\");\n _initialized = version;\n _initializing = true;\n _;\n _initializing = false;\n emit Initialized(version);\n }\n\n /**\n * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\n * {initializer} and {reinitializer} modifiers, directly or indirectly.\n */\n modifier onlyInitializing() {\n require(_initializing, \"Initializable: contract is not initializing\");\n _;\n }\n\n /**\n * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\n * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\n * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\n * through proxies.\n *\n * Emits an {Initialized} event the first time it is successfully executed.\n */\n function _disableInitializers() internal virtual {\n require(!_initializing, \"Initializable: contract is initializing\");\n if (_initialized != type(uint8).max) {\n _initialized = type(uint8).max;\n emit Initialized(type(uint8).max);\n }\n }\n\n /**\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\n */\n function _getInitializedVersion() internal view returns (uint8) {\n return _initialized;\n }\n\n /**\n * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.\n */\n function _isInitializing() internal view returns (bool) {\n return _initializing;\n }\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/proxy/utils/UUPSUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/UUPSUpgradeable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../../interfaces/draft-IERC1822Upgradeable.sol\";\nimport \"../ERC1967/ERC1967UpgradeUpgradeable.sol\";\nimport {Initializable} from \"./Initializable.sol\";\n\n/**\n * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an\n * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.\n *\n * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is\n * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing\n * `UUPSUpgradeable` with a custom implementation of upgrades.\n *\n * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.\n *\n * _Available since v4.1._\n */\nabstract contract UUPSUpgradeable is Initializable, IERC1822ProxiableUpgradeable, ERC1967UpgradeUpgradeable {\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment\n address private immutable __self = address(this);\n\n /**\n * @dev Check that the execution is being performed through a delegatecall call and that the execution context is\n * a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case\n * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a\n * function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to\n * fail.\n */\n modifier onlyProxy() {\n require(address(this) != __self, \"Function must be called through delegatecall\");\n require(_getImplementation() == __self, \"Function must be called through active proxy\");\n _;\n }\n\n /**\n * @dev Check that the execution is not being performed through a delegate call. This allows a function to be\n * callable on the implementing contract but not through proxies.\n */\n modifier notDelegated() {\n require(address(this) == __self, \"UUPSUpgradeable: must not be called through delegatecall\");\n _;\n }\n\n function __UUPSUpgradeable_init() internal onlyInitializing {\n }\n\n function __UUPSUpgradeable_init_unchained() internal onlyInitializing {\n }\n /**\n * @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the\n * implementation. It is used to validate the implementation's compatibility when performing an upgrade.\n *\n * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\n */\n function proxiableUUID() external view virtual override notDelegated returns (bytes32) {\n return _IMPLEMENTATION_SLOT;\n }\n\n /**\n * @dev Upgrade the implementation of the proxy to `newImplementation`.\n *\n * Calls {_authorizeUpgrade}.\n *\n * Emits an {Upgraded} event.\n *\n * @custom:oz-upgrades-unsafe-allow-reachable delegatecall\n */\n function upgradeTo(address newImplementation) public virtual onlyProxy {\n _authorizeUpgrade(newImplementation);\n _upgradeToAndCallUUPS(newImplementation, new bytes(0), false);\n }\n\n /**\n * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call\n * encoded in `data`.\n *\n * Calls {_authorizeUpgrade}.\n *\n * Emits an {Upgraded} event.\n *\n * @custom:oz-upgrades-unsafe-allow-reachable delegatecall\n */\n function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {\n _authorizeUpgrade(newImplementation);\n _upgradeToAndCallUUPS(newImplementation, data, true);\n }\n\n /**\n * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by\n * {upgradeTo} and {upgradeToAndCall}.\n *\n * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.\n *\n * ```solidity\n * function _authorizeUpgrade(address) internal override onlyOwner {}\n * ```\n */\n function _authorizeUpgrade(address newImplementation) internal virtual;\n\n /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[50] private __gap;\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/security/ReentrancyGuardUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)\n\npragma solidity ^0.8.0;\nimport {Initializable} from \"../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Contract module that helps prevent reentrant calls to a function.\n *\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n * available, which can be applied to functions to make sure there are no nested\n * (reentrant) calls to them.\n *\n * Note that because there is a single `nonReentrant` guard, functions marked as\n * `nonReentrant` may not call one another. This can be worked around by making\n * those functions `private`, and then adding `external` `nonReentrant` entry\n * points to them.\n *\n * TIP: If you would like to learn more about reentrancy and alternative ways\n * to protect against it, check out our blog post\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\n */\nabstract contract ReentrancyGuardUpgradeable is Initializable {\n // Booleans are more expensive than uint256 or any type that takes up a full\n // word because each write operation emits an extra SLOAD to first read the\n // slot's contents, replace the bits taken up by the boolean, and then write\n // back. This is the compiler's defense against contract upgrades and\n // pointer aliasing, and it cannot be disabled.\n\n // The values being non-zero value makes deployment a bit more expensive,\n // but in exchange the refund on every call to nonReentrant will be lower in\n // amount. Since refunds are capped to a percentage of the total\n // transaction's gas, it is best to keep them low in cases like this one, to\n // increase the likelihood of the full refund coming into effect.\n uint256 private constant _NOT_ENTERED = 1;\n uint256 private constant _ENTERED = 2;\n\n uint256 private _status;\n\n function __ReentrancyGuard_init() internal onlyInitializing {\n __ReentrancyGuard_init_unchained();\n }\n\n function __ReentrancyGuard_init_unchained() internal onlyInitializing {\n _status = _NOT_ENTERED;\n }\n\n /**\n * @dev Prevents a contract from calling itself, directly or indirectly.\n * Calling a `nonReentrant` function from another `nonReentrant`\n * function is not supported. It is possible to prevent this from happening\n * by making the `nonReentrant` function external, and making it call a\n * `private` function that does the actual work.\n */\n modifier nonReentrant() {\n _nonReentrantBefore();\n _;\n _nonReentrantAfter();\n }\n\n function _nonReentrantBefore() private {\n // On the first call to nonReentrant, _status will be _NOT_ENTERED\n require(_status != _ENTERED, \"ReentrancyGuard: reentrant call\");\n\n // Any calls to nonReentrant after this point will fail\n _status = _ENTERED;\n }\n\n function _nonReentrantAfter() private {\n // By storing the original value once again, a refund is triggered (see\n // https://eips.ethereum.org/EIPS/eip-2200)\n _status = _NOT_ENTERED;\n }\n\n /**\n * @dev Returns true if the reentrancy guard is currently set to \"entered\", which indicates there is a\n * `nonReentrant` function in the call stack.\n */\n function _reentrancyGuardEntered() internal view returns (bool) {\n return _status == _ENTERED;\n }\n\n /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[49] private __gap;\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/token/ERC20/extensions/IERC20PermitUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\n * need to send a transaction, and thus is not required to hold Ether at all.\n *\n * ==== Security Considerations\n *\n * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\n * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\n * considered as an intention to spend the allowance in any specific way. The second is that because permits have\n * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\n * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\n * generally recommended is:\n *\n * ```solidity\n * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\n * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\n * doThing(..., value);\n * }\n *\n * function doThing(..., uint256 value) public {\n * token.safeTransferFrom(msg.sender, address(this), value);\n * ...\n * }\n * ```\n *\n * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\n * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\n * {SafeERC20-safeTransferFrom}).\n *\n * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\n * contracts should have entry points that don't rely on permit.\n */\ninterface IERC20PermitUpgradeable {\n /**\n * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\n * given ``owner``'s signed approval.\n *\n * IMPORTANT: The same issues {IERC20-approve} has related to transaction\n * ordering also apply here.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n * - `deadline` must be a timestamp in the future.\n * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\n * over the EIP712-formatted function arguments.\n * - the signature must use ``owner``'s current nonce (see {nonces}).\n *\n * For more information on the signature format, see the\n * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\n * section].\n *\n * CAUTION: See Security Considerations above.\n */\n function permit(\n address owner,\n address spender,\n uint256 value,\n uint256 deadline,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) external;\n\n /**\n * @dev Returns the current nonce for `owner`. This value must be\n * included whenever a signature is generated for {permit}.\n *\n * Every successful call to {permit} increases ``owner``'s nonce by one. This\n * prevents a signature from being used multiple times.\n */\n function nonces(address owner) external view returns (uint256);\n\n /**\n * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\n */\n // solhint-disable-next-line func-name-mixedcase\n function DOMAIN_SEPARATOR() external view returns (bytes32);\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/token/ERC20/IERC20Upgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20Upgradeable {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/token/ERC20/utils/SafeERC20Upgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20Upgradeable.sol\";\nimport \"../extensions/IERC20PermitUpgradeable.sol\";\nimport \"../../../utils/AddressUpgradeable.sol\";\n\n/**\n * @title SafeERC20\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\n * contract returns false). Tokens that return no value (and instead revert or\n * throw on failure) are also supported, non-reverting calls are assumed to be\n * successful.\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\n */\nlibrary SafeERC20Upgradeable {\n using AddressUpgradeable for address;\n\n /**\n * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n */\n function safeTransfer(IERC20Upgradeable token, address to, uint256 value) internal {\n _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\n }\n\n /**\n * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\n * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.\n */\n function safeTransferFrom(IERC20Upgradeable token, address from, address to, uint256 value) internal {\n _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\n }\n\n /**\n * @dev Deprecated. This function has issues similar to the ones found in\n * {IERC20-approve}, and its usage is discouraged.\n *\n * Whenever possible, use {safeIncreaseAllowance} and\n * {safeDecreaseAllowance} instead.\n */\n function safeApprove(IERC20Upgradeable token, address spender, uint256 value) internal {\n // safeApprove should only be called when setting an initial allowance,\n // or when resetting it to zero. To increase and decrease it, use\n // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\n require(\n (value == 0) || (token.allowance(address(this), spender) == 0),\n \"SafeERC20: approve from non-zero to non-zero allowance\"\n );\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\n }\n\n /**\n * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n */\n function safeIncreaseAllowance(IERC20Upgradeable token, address spender, uint256 value) internal {\n uint256 oldAllowance = token.allowance(address(this), spender);\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));\n }\n\n /**\n * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n */\n function safeDecreaseAllowance(IERC20Upgradeable token, address spender, uint256 value) internal {\n unchecked {\n uint256 oldAllowance = token.allowance(address(this), spender);\n require(oldAllowance >= value, \"SafeERC20: decreased allowance below zero\");\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));\n }\n }\n\n /**\n * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\n * to be set to zero before setting it to a non-zero value, such as USDT.\n */\n function forceApprove(IERC20Upgradeable token, address spender, uint256 value) internal {\n bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);\n\n if (!_callOptionalReturnBool(token, approvalCall)) {\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));\n _callOptionalReturn(token, approvalCall);\n }\n }\n\n /**\n * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.\n * Revert on invalid signature.\n */\n function safePermit(\n IERC20PermitUpgradeable token,\n address owner,\n address spender,\n uint256 value,\n uint256 deadline,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) internal {\n uint256 nonceBefore = token.nonces(owner);\n token.permit(owner, spender, value, deadline, v, r, s);\n uint256 nonceAfter = token.nonces(owner);\n require(nonceAfter == nonceBefore + 1, \"SafeERC20: permit did not succeed\");\n }\n\n /**\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n * on the return value: the return value is optional (but if data is returned, it must not be false).\n * @param token The token targeted by the call.\n * @param data The call data (encoded using abi.encode or one of its variants).\n */\n function _callOptionalReturn(IERC20Upgradeable token, bytes memory data) private {\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\n // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that\n // the target address contains contract code and also asserts for success in the low-level call.\n\n bytes memory returndata = address(token).functionCall(data, \"SafeERC20: low-level call failed\");\n require(returndata.length == 0 || abi.decode(returndata, (bool)), \"SafeERC20: ERC20 operation did not succeed\");\n }\n\n /**\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n * on the return value: the return value is optional (but if data is returned, it must not be false).\n * @param token The token targeted by the call.\n * @param data The call data (encoded using abi.encode or one of its variants).\n *\n * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.\n */\n function _callOptionalReturnBool(IERC20Upgradeable token, bytes memory data) private returns (bool) {\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\n // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false\n // and not revert is the subcall reverts.\n\n (bool success, bytes memory returndata) = address(token).call(data);\n return\n success && (returndata.length == 0 || abi.decode(returndata, (bool))) && AddressUpgradeable.isContract(address(token));\n }\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/utils/AddressUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary AddressUpgradeable {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n *\n * Furthermore, `isContract` will also return true if the target contract within\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n * which only has an effect at the end of a transaction.\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n *\n * _Available since v4.8._\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n if (success) {\n if (returndata.length == 0) {\n // only check isContract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n require(isContract(target), \"Address: call to non-contract\");\n }\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason or using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n /// @solidity memory-safe-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/utils/cryptography/ECDSAUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../StringsUpgradeable.sol\";\n\n/**\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\n *\n * These functions can be used to verify that a message was signed by the holder\n * of the private keys of a given address.\n */\nlibrary ECDSAUpgradeable {\n enum RecoverError {\n NoError,\n InvalidSignature,\n InvalidSignatureLength,\n InvalidSignatureS,\n InvalidSignatureV // Deprecated in v4.8\n }\n\n function _throwError(RecoverError error) private pure {\n if (error == RecoverError.NoError) {\n return; // no error: do nothing\n } else if (error == RecoverError.InvalidSignature) {\n revert(\"ECDSA: invalid signature\");\n } else if (error == RecoverError.InvalidSignatureLength) {\n revert(\"ECDSA: invalid signature length\");\n } else if (error == RecoverError.InvalidSignatureS) {\n revert(\"ECDSA: invalid signature 's' value\");\n }\n }\n\n /**\n * @dev Returns the address that signed a hashed message (`hash`) with\n * `signature` or error string. This address can then be used for verification purposes.\n *\n * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n * this function rejects them by requiring the `s` value to be in the lower\n * half order, and the `v` value to be either 27 or 28.\n *\n * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n * verification to be secure: it is possible to craft signatures that\n * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n * this is by receiving a hash of the original message (which may otherwise\n * be too long), and then calling {toEthSignedMessageHash} on it.\n *\n * Documentation for signature generation:\n * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\n * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\n *\n * _Available since v4.3._\n */\n function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\n if (signature.length == 65) {\n bytes32 r;\n bytes32 s;\n uint8 v;\n // ecrecover takes the signature parameters, and the only way to get them\n // currently is to use assembly.\n /// @solidity memory-safe-assembly\n assembly {\n r := mload(add(signature, 0x20))\n s := mload(add(signature, 0x40))\n v := byte(0, mload(add(signature, 0x60)))\n }\n return tryRecover(hash, v, r, s);\n } else {\n return (address(0), RecoverError.InvalidSignatureLength);\n }\n }\n\n /**\n * @dev Returns the address that signed a hashed message (`hash`) with\n * `signature`. This address can then be used for verification purposes.\n *\n * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n * this function rejects them by requiring the `s` value to be in the lower\n * half order, and the `v` value to be either 27 or 28.\n *\n * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n * verification to be secure: it is possible to craft signatures that\n * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n * this is by receiving a hash of the original message (which may otherwise\n * be too long), and then calling {toEthSignedMessageHash} on it.\n */\n function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\n (address recovered, RecoverError error) = tryRecover(hash, signature);\n _throwError(error);\n return recovered;\n }\n\n /**\n * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n *\n * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]\n *\n * _Available since v4.3._\n */\n function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {\n bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);\n uint8 v = uint8((uint256(vs) >> 255) + 27);\n return tryRecover(hash, v, r, s);\n }\n\n /**\n * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\n *\n * _Available since v4.2._\n */\n function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {\n (address recovered, RecoverError error) = tryRecover(hash, r, vs);\n _throwError(error);\n return recovered;\n }\n\n /**\n * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n * `r` and `s` signature fields separately.\n *\n * _Available since v4.3._\n */\n function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {\n // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\n // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\n // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most\n // signatures from current libraries generate a unique signature with an s-value in the lower half order.\n //\n // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\n // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\n // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\n // these malleable signatures as well.\n if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\n return (address(0), RecoverError.InvalidSignatureS);\n }\n\n // If the signature is valid (and not malleable), return the signer address\n address signer = ecrecover(hash, v, r, s);\n if (signer == address(0)) {\n return (address(0), RecoverError.InvalidSignature);\n }\n\n return (signer, RecoverError.NoError);\n }\n\n /**\n * @dev Overload of {ECDSA-recover} that receives the `v`,\n * `r` and `s` signature fields separately.\n */\n function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {\n (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\n _throwError(error);\n return recovered;\n }\n\n /**\n * @dev Returns an Ethereum Signed Message, created from a `hash`. This\n * produces hash corresponding to the one signed with the\n * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n * JSON-RPC method as part of EIP-191.\n *\n * See {recover}.\n */\n function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {\n // 32 is the length in bytes of hash,\n // enforced by the type signature above\n /// @solidity memory-safe-assembly\n assembly {\n mstore(0x00, \"\\x19Ethereum Signed Message:\\n32\")\n mstore(0x1c, hash)\n message := keccak256(0x00, 0x3c)\n }\n }\n\n /**\n * @dev Returns an Ethereum Signed Message, created from `s`. This\n * produces hash corresponding to the one signed with the\n * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n * JSON-RPC method as part of EIP-191.\n *\n * See {recover}.\n */\n function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {\n return keccak256(abi.encodePacked(\"\\x19Ethereum Signed Message:\\n\", StringsUpgradeable.toString(s.length), s));\n }\n\n /**\n * @dev Returns an Ethereum Signed Typed Data, created from a\n * `domainSeparator` and a `structHash`. This produces hash corresponding\n * to the one signed with the\n * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\n * JSON-RPC method as part of EIP-712.\n *\n * See {recover}.\n */\n function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {\n /// @solidity memory-safe-assembly\n assembly {\n let ptr := mload(0x40)\n mstore(ptr, \"\\x19\\x01\")\n mstore(add(ptr, 0x02), domainSeparator)\n mstore(add(ptr, 0x22), structHash)\n data := keccak256(ptr, 0x42)\n }\n }\n\n /**\n * @dev Returns an Ethereum Signed Data with intended validator, created from a\n * `validator` and `data` according to the version 0 of EIP-191.\n *\n * See {recover}.\n */\n function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {\n return keccak256(abi.encodePacked(\"\\x19\\x00\", validator, data));\n }\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/utils/math/MathUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard math utilities missing in the Solidity language.\n */\nlibrary MathUpgradeable {\n enum Rounding {\n Down, // Toward negative infinity\n Up, // Toward infinity\n Zero // Toward zero\n }\n\n /**\n * @dev Returns the largest of two numbers.\n */\n function max(uint256 a, uint256 b) internal pure returns (uint256) {\n return a > b ? a : b;\n }\n\n /**\n * @dev Returns the smallest of two numbers.\n */\n function min(uint256 a, uint256 b) internal pure returns (uint256) {\n return a < b ? a : b;\n }\n\n /**\n * @dev Returns the average of two numbers. The result is rounded towards\n * zero.\n */\n function average(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b) / 2 can overflow.\n return (a & b) + (a ^ b) / 2;\n }\n\n /**\n * @dev Returns the ceiling of the division of two numbers.\n *\n * This differs from standard division with `/` in that it rounds up instead\n * of rounding down.\n */\n function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b - 1) / b can overflow on addition, so we distribute.\n return a == 0 ? 0 : (a - 1) / b + 1;\n }\n\n /**\n * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0\n * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)\n * with further edits by Uniswap Labs also under MIT license.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {\n unchecked {\n // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use\n // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256\n // variables such that product = prod1 * 2^256 + prod0.\n uint256 prod0; // Least significant 256 bits of the product\n uint256 prod1; // Most significant 256 bits of the product\n assembly {\n let mm := mulmod(x, y, not(0))\n prod0 := mul(x, y)\n prod1 := sub(sub(mm, prod0), lt(mm, prod0))\n }\n\n // Handle non-overflow cases, 256 by 256 division.\n if (prod1 == 0) {\n // Solidity will revert if denominator == 0, unlike the div opcode on its own.\n // The surrounding unchecked block does not change this fact.\n // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.\n return prod0 / denominator;\n }\n\n // Make sure the result is less than 2^256. Also prevents denominator == 0.\n require(denominator > prod1, \"Math: mulDiv overflow\");\n\n ///////////////////////////////////////////////\n // 512 by 256 division.\n ///////////////////////////////////////////////\n\n // Make division exact by subtracting the remainder from [prod1 prod0].\n uint256 remainder;\n assembly {\n // Compute remainder using mulmod.\n remainder := mulmod(x, y, denominator)\n\n // Subtract 256 bit number from 512 bit number.\n prod1 := sub(prod1, gt(remainder, prod0))\n prod0 := sub(prod0, remainder)\n }\n\n // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.\n // See https://cs.stackexchange.com/q/138556/92363.\n\n // Does not overflow because the denominator cannot be zero at this stage in the function.\n uint256 twos = denominator & (~denominator + 1);\n assembly {\n // Divide denominator by twos.\n denominator := div(denominator, twos)\n\n // Divide [prod1 prod0] by twos.\n prod0 := div(prod0, twos)\n\n // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.\n twos := add(div(sub(0, twos), twos), 1)\n }\n\n // Shift in bits from prod1 into prod0.\n prod0 |= prod1 * twos;\n\n // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such\n // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for\n // four bits. That is, denominator * inv = 1 mod 2^4.\n uint256 inverse = (3 * denominator) ^ 2;\n\n // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works\n // in modular arithmetic, doubling the correct bits in each step.\n inverse *= 2 - denominator * inverse; // inverse mod 2^8\n inverse *= 2 - denominator * inverse; // inverse mod 2^16\n inverse *= 2 - denominator * inverse; // inverse mod 2^32\n inverse *= 2 - denominator * inverse; // inverse mod 2^64\n inverse *= 2 - denominator * inverse; // inverse mod 2^128\n inverse *= 2 - denominator * inverse; // inverse mod 2^256\n\n // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.\n // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is\n // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1\n // is no longer required.\n result = prod0 * inverse;\n return result;\n }\n }\n\n /**\n * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {\n uint256 result = mulDiv(x, y, denominator);\n if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {\n result += 1;\n }\n return result;\n }\n\n /**\n * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.\n *\n * Inspired by Henry S. Warren, Jr.'s \"Hacker's Delight\" (Chapter 11).\n */\n function sqrt(uint256 a) internal pure returns (uint256) {\n if (a == 0) {\n return 0;\n }\n\n // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.\n //\n // We know that the \"msb\" (most significant bit) of our target number `a` is a power of 2 such that we have\n // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.\n //\n // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`\n // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`\n // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`\n //\n // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.\n uint256 result = 1 << (log2(a) >> 1);\n\n // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,\n // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at\n // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision\n // into the expected uint128 result.\n unchecked {\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n return min(result, a / result);\n }\n }\n\n /**\n * @notice Calculates sqrt(a), following the selected rounding direction.\n */\n function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = sqrt(a);\n return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 2, rounded down, of a positive value.\n * Returns 0 if given 0.\n */\n function log2(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >> 128 > 0) {\n value >>= 128;\n result += 128;\n }\n if (value >> 64 > 0) {\n value >>= 64;\n result += 64;\n }\n if (value >> 32 > 0) {\n value >>= 32;\n result += 32;\n }\n if (value >> 16 > 0) {\n value >>= 16;\n result += 16;\n }\n if (value >> 8 > 0) {\n value >>= 8;\n result += 8;\n }\n if (value >> 4 > 0) {\n value >>= 4;\n result += 4;\n }\n if (value >> 2 > 0) {\n value >>= 2;\n result += 2;\n }\n if (value >> 1 > 0) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log2(value);\n return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 10, rounded down, of a positive value.\n * Returns 0 if given 0.\n */\n function log10(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >= 10 ** 64) {\n value /= 10 ** 64;\n result += 64;\n }\n if (value >= 10 ** 32) {\n value /= 10 ** 32;\n result += 32;\n }\n if (value >= 10 ** 16) {\n value /= 10 ** 16;\n result += 16;\n }\n if (value >= 10 ** 8) {\n value /= 10 ** 8;\n result += 8;\n }\n if (value >= 10 ** 4) {\n value /= 10 ** 4;\n result += 4;\n }\n if (value >= 10 ** 2) {\n value /= 10 ** 2;\n result += 2;\n }\n if (value >= 10 ** 1) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log10(value);\n return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 256, rounded down, of a positive value.\n * Returns 0 if given 0.\n *\n * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.\n */\n function log256(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >> 128 > 0) {\n value >>= 128;\n result += 16;\n }\n if (value >> 64 > 0) {\n value >>= 64;\n result += 8;\n }\n if (value >> 32 > 0) {\n value >>= 32;\n result += 4;\n }\n if (value >> 16 > 0) {\n value >>= 16;\n result += 2;\n }\n if (value >> 8 > 0) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log256(value);\n return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/utils/math/SignedMathUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard signed math utilities missing in the Solidity language.\n */\nlibrary SignedMathUpgradeable {\n /**\n * @dev Returns the largest of two signed numbers.\n */\n function max(int256 a, int256 b) internal pure returns (int256) {\n return a > b ? a : b;\n }\n\n /**\n * @dev Returns the smallest of two signed numbers.\n */\n function min(int256 a, int256 b) internal pure returns (int256) {\n return a < b ? a : b;\n }\n\n /**\n * @dev Returns the average of two signed numbers without overflow.\n * The result is rounded towards zero.\n */\n function average(int256 a, int256 b) internal pure returns (int256) {\n // Formula from the book \"Hacker's Delight\"\n int256 x = (a & b) + ((a ^ b) >> 1);\n return x + (int256(uint256(x) >> 255) & (a ^ b));\n }\n\n /**\n * @dev Returns the absolute unsigned value of a signed value.\n */\n function abs(int256 n) internal pure returns (uint256) {\n unchecked {\n // must be unchecked in order to support `n = type(int256).min`\n return uint256(n >= 0 ? n : -n);\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/utils/StorageSlotUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)\n// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Library for reading and writing primitive types to specific storage slots.\n *\n * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n * This library helps with reading and writing to such slots without the need for inline assembly.\n *\n * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n *\n * Example usage to set ERC1967 implementation slot:\n * ```solidity\n * contract ERC1967 {\n * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n *\n * function _getImplementation() internal view returns (address) {\n * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n * }\n *\n * function _setImplementation(address newImplementation) internal {\n * require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\");\n * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n * }\n * }\n * ```\n *\n * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._\n * _Available since v4.9 for `string`, `bytes`._\n */\nlibrary StorageSlotUpgradeable {\n struct AddressSlot {\n address value;\n }\n\n struct BooleanSlot {\n bool value;\n }\n\n struct Bytes32Slot {\n bytes32 value;\n }\n\n struct Uint256Slot {\n uint256 value;\n }\n\n struct StringSlot {\n string value;\n }\n\n struct BytesSlot {\n bytes value;\n }\n\n /**\n * @dev Returns an `AddressSlot` with member `value` located at `slot`.\n */\n function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `BooleanSlot` with member `value` located at `slot`.\n */\n function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.\n */\n function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `Uint256Slot` with member `value` located at `slot`.\n */\n function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `StringSlot` with member `value` located at `slot`.\n */\n function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `StringSlot` representation of the string storage pointer `store`.\n */\n function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := store.slot\n }\n }\n\n /**\n * @dev Returns an `BytesSlot` with member `value` located at `slot`.\n */\n function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.\n */\n function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := store.slot\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/utils/StringsUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./math/MathUpgradeable.sol\";\nimport \"./math/SignedMathUpgradeable.sol\";\n\n/**\n * @dev String operations.\n */\nlibrary StringsUpgradeable {\n bytes16 private constant _SYMBOLS = \"0123456789abcdef\";\n uint8 private constant _ADDRESS_LENGTH = 20;\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n */\n function toString(uint256 value) internal pure returns (string memory) {\n unchecked {\n uint256 length = MathUpgradeable.log10(value) + 1;\n string memory buffer = new string(length);\n uint256 ptr;\n /// @solidity memory-safe-assembly\n assembly {\n ptr := add(buffer, add(32, length))\n }\n while (true) {\n ptr--;\n /// @solidity memory-safe-assembly\n assembly {\n mstore8(ptr, byte(mod(value, 10), _SYMBOLS))\n }\n value /= 10;\n if (value == 0) break;\n }\n return buffer;\n }\n }\n\n /**\n * @dev Converts a `int256` to its ASCII `string` decimal representation.\n */\n function toString(int256 value) internal pure returns (string memory) {\n return string(abi.encodePacked(value < 0 ? \"-\" : \"\", toString(SignedMathUpgradeable.abs(value))));\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n */\n function toHexString(uint256 value) internal pure returns (string memory) {\n unchecked {\n return toHexString(value, MathUpgradeable.log256(value) + 1);\n }\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n */\n function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n bytes memory buffer = new bytes(2 * length + 2);\n buffer[0] = \"0\";\n buffer[1] = \"x\";\n for (uint256 i = 2 * length + 1; i > 1; --i) {\n buffer[i] = _SYMBOLS[value & 0xf];\n value >>= 4;\n }\n require(value == 0, \"Strings: hex length insufficient\");\n return string(buffer);\n }\n\n /**\n * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.\n */\n function toHexString(address addr) internal pure returns (string memory) {\n return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);\n }\n\n /**\n * @dev Returns true if the two strings are equal.\n */\n function equal(string memory a, string memory b) internal pure returns (bool) {\n return keccak256(bytes(a)) == keccak256(bytes(b));\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/interfaces/IERC1271.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (interfaces/IERC1271.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC1271 standard signature validation method for\n * contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271].\n *\n * _Available since v4.1._\n */\ninterface IERC1271 {\n /**\n * @dev Should return whether the signature provided is valid for the provided data\n * @param hash Hash of the data to be signed\n * @param signature Signature byte array associated with _data\n */\n function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue);\n}\n"
+ },
+ "@openzeppelin/contracts-v4/interfaces/IERC5267.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5267.sol)\n\npragma solidity ^0.8.0;\n\ninterface IERC5267 {\n /**\n * @dev MAY be emitted to signal that the domain could have changed.\n */\n event EIP712DomainChanged();\n\n /**\n * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712\n * signature.\n */\n function eip712Domain()\n external\n view\n returns (\n bytes1 fields,\n string memory name,\n string memory version,\n uint256 chainId,\n address verifyingContract,\n bytes32 salt,\n uint256[] memory extensions\n );\n}\n"
+ },
+ "@openzeppelin/contracts-v4/security/ReentrancyGuard.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Contract module that helps prevent reentrant calls to a function.\n *\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n * available, which can be applied to functions to make sure there are no nested\n * (reentrant) calls to them.\n *\n * Note that because there is a single `nonReentrant` guard, functions marked as\n * `nonReentrant` may not call one another. This can be worked around by making\n * those functions `private`, and then adding `external` `nonReentrant` entry\n * points to them.\n *\n * TIP: If you would like to learn more about reentrancy and alternative ways\n * to protect against it, check out our blog post\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\n */\nabstract contract ReentrancyGuard {\n // Booleans are more expensive than uint256 or any type that takes up a full\n // word because each write operation emits an extra SLOAD to first read the\n // slot's contents, replace the bits taken up by the boolean, and then write\n // back. This is the compiler's defense against contract upgrades and\n // pointer aliasing, and it cannot be disabled.\n\n // The values being non-zero value makes deployment a bit more expensive,\n // but in exchange the refund on every call to nonReentrant will be lower in\n // amount. Since refunds are capped to a percentage of the total\n // transaction's gas, it is best to keep them low in cases like this one, to\n // increase the likelihood of the full refund coming into effect.\n uint256 private constant _NOT_ENTERED = 1;\n uint256 private constant _ENTERED = 2;\n\n uint256 private _status;\n\n constructor() {\n _status = _NOT_ENTERED;\n }\n\n /**\n * @dev Prevents a contract from calling itself, directly or indirectly.\n * Calling a `nonReentrant` function from another `nonReentrant`\n * function is not supported. It is possible to prevent this from happening\n * by making the `nonReentrant` function external, and making it call a\n * `private` function that does the actual work.\n */\n modifier nonReentrant() {\n _nonReentrantBefore();\n _;\n _nonReentrantAfter();\n }\n\n function _nonReentrantBefore() private {\n // On the first call to nonReentrant, _status will be _NOT_ENTERED\n require(_status != _ENTERED, \"ReentrancyGuard: reentrant call\");\n\n // Any calls to nonReentrant after this point will fail\n _status = _ENTERED;\n }\n\n function _nonReentrantAfter() private {\n // By storing the original value once again, a refund is triggered (see\n // https://eips.ethereum.org/EIPS/eip-2200)\n _status = _NOT_ENTERED;\n }\n\n /**\n * @dev Returns true if the reentrancy guard is currently set to \"entered\", which indicates there is a\n * `nonReentrant` function in the call stack.\n */\n function _reentrancyGuardEntered() internal view returns (bool) {\n return _status == _ENTERED;\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/token/ERC20/extensions/IERC20Permit.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\n * need to send a transaction, and thus is not required to hold Ether at all.\n *\n * ==== Security Considerations\n *\n * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\n * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\n * considered as an intention to spend the allowance in any specific way. The second is that because permits have\n * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\n * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\n * generally recommended is:\n *\n * ```solidity\n * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\n * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\n * doThing(..., value);\n * }\n *\n * function doThing(..., uint256 value) public {\n * token.safeTransferFrom(msg.sender, address(this), value);\n * ...\n * }\n * ```\n *\n * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\n * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\n * {SafeERC20-safeTransferFrom}).\n *\n * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\n * contracts should have entry points that don't rely on permit.\n */\ninterface IERC20Permit {\n /**\n * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\n * given ``owner``'s signed approval.\n *\n * IMPORTANT: The same issues {IERC20-approve} has related to transaction\n * ordering also apply here.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n * - `deadline` must be a timestamp in the future.\n * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\n * over the EIP712-formatted function arguments.\n * - the signature must use ``owner``'s current nonce (see {nonces}).\n *\n * For more information on the signature format, see the\n * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\n * section].\n *\n * CAUTION: See Security Considerations above.\n */\n function permit(\n address owner,\n address spender,\n uint256 value,\n uint256 deadline,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) external;\n\n /**\n * @dev Returns the current nonce for `owner`. This value must be\n * included whenever a signature is generated for {permit}.\n *\n * Every successful call to {permit} increases ``owner``'s nonce by one. This\n * prevents a signature from being used multiple times.\n */\n function nonces(address owner) external view returns (uint256);\n\n /**\n * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\n */\n // solhint-disable-next-line func-name-mixedcase\n function DOMAIN_SEPARATOR() external view returns (bytes32);\n}\n"
+ },
+ "@openzeppelin/contracts-v4/token/ERC20/IERC20.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\n}\n"
+ },
+ "@openzeppelin/contracts-v4/token/ERC20/utils/SafeERC20.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20.sol\";\nimport \"../extensions/IERC20Permit.sol\";\nimport \"../../../utils/Address.sol\";\n\n/**\n * @title SafeERC20\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\n * contract returns false). Tokens that return no value (and instead revert or\n * throw on failure) are also supported, non-reverting calls are assumed to be\n * successful.\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\n */\nlibrary SafeERC20 {\n using Address for address;\n\n /**\n * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n */\n function safeTransfer(IERC20 token, address to, uint256 value) internal {\n _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\n }\n\n /**\n * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\n * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.\n */\n function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {\n _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\n }\n\n /**\n * @dev Deprecated. This function has issues similar to the ones found in\n * {IERC20-approve}, and its usage is discouraged.\n *\n * Whenever possible, use {safeIncreaseAllowance} and\n * {safeDecreaseAllowance} instead.\n */\n function safeApprove(IERC20 token, address spender, uint256 value) internal {\n // safeApprove should only be called when setting an initial allowance,\n // or when resetting it to zero. To increase and decrease it, use\n // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\n require(\n (value == 0) || (token.allowance(address(this), spender) == 0),\n \"SafeERC20: approve from non-zero to non-zero allowance\"\n );\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\n }\n\n /**\n * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n */\n function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {\n uint256 oldAllowance = token.allowance(address(this), spender);\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));\n }\n\n /**\n * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n */\n function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {\n unchecked {\n uint256 oldAllowance = token.allowance(address(this), spender);\n require(oldAllowance >= value, \"SafeERC20: decreased allowance below zero\");\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));\n }\n }\n\n /**\n * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\n * to be set to zero before setting it to a non-zero value, such as USDT.\n */\n function forceApprove(IERC20 token, address spender, uint256 value) internal {\n bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);\n\n if (!_callOptionalReturnBool(token, approvalCall)) {\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));\n _callOptionalReturn(token, approvalCall);\n }\n }\n\n /**\n * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.\n * Revert on invalid signature.\n */\n function safePermit(\n IERC20Permit token,\n address owner,\n address spender,\n uint256 value,\n uint256 deadline,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) internal {\n uint256 nonceBefore = token.nonces(owner);\n token.permit(owner, spender, value, deadline, v, r, s);\n uint256 nonceAfter = token.nonces(owner);\n require(nonceAfter == nonceBefore + 1, \"SafeERC20: permit did not succeed\");\n }\n\n /**\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n * on the return value: the return value is optional (but if data is returned, it must not be false).\n * @param token The token targeted by the call.\n * @param data The call data (encoded using abi.encode or one of its variants).\n */\n function _callOptionalReturn(IERC20 token, bytes memory data) private {\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\n // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that\n // the target address contains contract code and also asserts for success in the low-level call.\n\n bytes memory returndata = address(token).functionCall(data, \"SafeERC20: low-level call failed\");\n require(returndata.length == 0 || abi.decode(returndata, (bool)), \"SafeERC20: ERC20 operation did not succeed\");\n }\n\n /**\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n * on the return value: the return value is optional (but if data is returned, it must not be false).\n * @param token The token targeted by the call.\n * @param data The call data (encoded using abi.encode or one of its variants).\n *\n * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.\n */\n function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\n // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false\n // and not revert is the subcall reverts.\n\n (bool success, bytes memory returndata) = address(token).call(data);\n return\n success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/Address.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n *\n * Furthermore, `isContract` will also return true if the target contract within\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n * which only has an effect at the end of a transaction.\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n *\n * _Available since v4.8._\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n if (success) {\n if (returndata.length == 0) {\n // only check isContract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n require(isContract(target), \"Address: call to non-contract\");\n }\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason or using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n /// @solidity memory-safe-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/cryptography/ECDSA.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../Strings.sol\";\n\n/**\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\n *\n * These functions can be used to verify that a message was signed by the holder\n * of the private keys of a given address.\n */\nlibrary ECDSA {\n enum RecoverError {\n NoError,\n InvalidSignature,\n InvalidSignatureLength,\n InvalidSignatureS,\n InvalidSignatureV // Deprecated in v4.8\n }\n\n function _throwError(RecoverError error) private pure {\n if (error == RecoverError.NoError) {\n return; // no error: do nothing\n } else if (error == RecoverError.InvalidSignature) {\n revert(\"ECDSA: invalid signature\");\n } else if (error == RecoverError.InvalidSignatureLength) {\n revert(\"ECDSA: invalid signature length\");\n } else if (error == RecoverError.InvalidSignatureS) {\n revert(\"ECDSA: invalid signature 's' value\");\n }\n }\n\n /**\n * @dev Returns the address that signed a hashed message (`hash`) with\n * `signature` or error string. This address can then be used for verification purposes.\n *\n * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n * this function rejects them by requiring the `s` value to be in the lower\n * half order, and the `v` value to be either 27 or 28.\n *\n * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n * verification to be secure: it is possible to craft signatures that\n * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n * this is by receiving a hash of the original message (which may otherwise\n * be too long), and then calling {toEthSignedMessageHash} on it.\n *\n * Documentation for signature generation:\n * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\n * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\n *\n * _Available since v4.3._\n */\n function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\n if (signature.length == 65) {\n bytes32 r;\n bytes32 s;\n uint8 v;\n // ecrecover takes the signature parameters, and the only way to get them\n // currently is to use assembly.\n /// @solidity memory-safe-assembly\n assembly {\n r := mload(add(signature, 0x20))\n s := mload(add(signature, 0x40))\n v := byte(0, mload(add(signature, 0x60)))\n }\n return tryRecover(hash, v, r, s);\n } else {\n return (address(0), RecoverError.InvalidSignatureLength);\n }\n }\n\n /**\n * @dev Returns the address that signed a hashed message (`hash`) with\n * `signature`. This address can then be used for verification purposes.\n *\n * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n * this function rejects them by requiring the `s` value to be in the lower\n * half order, and the `v` value to be either 27 or 28.\n *\n * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n * verification to be secure: it is possible to craft signatures that\n * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n * this is by receiving a hash of the original message (which may otherwise\n * be too long), and then calling {toEthSignedMessageHash} on it.\n */\n function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\n (address recovered, RecoverError error) = tryRecover(hash, signature);\n _throwError(error);\n return recovered;\n }\n\n /**\n * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n *\n * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]\n *\n * _Available since v4.3._\n */\n function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {\n bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);\n uint8 v = uint8((uint256(vs) >> 255) + 27);\n return tryRecover(hash, v, r, s);\n }\n\n /**\n * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\n *\n * _Available since v4.2._\n */\n function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {\n (address recovered, RecoverError error) = tryRecover(hash, r, vs);\n _throwError(error);\n return recovered;\n }\n\n /**\n * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n * `r` and `s` signature fields separately.\n *\n * _Available since v4.3._\n */\n function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {\n // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\n // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\n // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most\n // signatures from current libraries generate a unique signature with an s-value in the lower half order.\n //\n // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\n // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\n // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\n // these malleable signatures as well.\n if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\n return (address(0), RecoverError.InvalidSignatureS);\n }\n\n // If the signature is valid (and not malleable), return the signer address\n address signer = ecrecover(hash, v, r, s);\n if (signer == address(0)) {\n return (address(0), RecoverError.InvalidSignature);\n }\n\n return (signer, RecoverError.NoError);\n }\n\n /**\n * @dev Overload of {ECDSA-recover} that receives the `v`,\n * `r` and `s` signature fields separately.\n */\n function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {\n (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\n _throwError(error);\n return recovered;\n }\n\n /**\n * @dev Returns an Ethereum Signed Message, created from a `hash`. This\n * produces hash corresponding to the one signed with the\n * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n * JSON-RPC method as part of EIP-191.\n *\n * See {recover}.\n */\n function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {\n // 32 is the length in bytes of hash,\n // enforced by the type signature above\n /// @solidity memory-safe-assembly\n assembly {\n mstore(0x00, \"\\x19Ethereum Signed Message:\\n32\")\n mstore(0x1c, hash)\n message := keccak256(0x00, 0x3c)\n }\n }\n\n /**\n * @dev Returns an Ethereum Signed Message, created from `s`. This\n * produces hash corresponding to the one signed with the\n * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n * JSON-RPC method as part of EIP-191.\n *\n * See {recover}.\n */\n function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {\n return keccak256(abi.encodePacked(\"\\x19Ethereum Signed Message:\\n\", Strings.toString(s.length), s));\n }\n\n /**\n * @dev Returns an Ethereum Signed Typed Data, created from a\n * `domainSeparator` and a `structHash`. This produces hash corresponding\n * to the one signed with the\n * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\n * JSON-RPC method as part of EIP-712.\n *\n * See {recover}.\n */\n function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {\n /// @solidity memory-safe-assembly\n assembly {\n let ptr := mload(0x40)\n mstore(ptr, \"\\x19\\x01\")\n mstore(add(ptr, 0x02), domainSeparator)\n mstore(add(ptr, 0x22), structHash)\n data := keccak256(ptr, 0x42)\n }\n }\n\n /**\n * @dev Returns an Ethereum Signed Data with intended validator, created from a\n * `validator` and `data` according to the version 0 of EIP-191.\n *\n * See {recover}.\n */\n function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {\n return keccak256(abi.encodePacked(\"\\x19\\x00\", validator, data));\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/cryptography/EIP712.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/EIP712.sol)\n\npragma solidity ^0.8.8;\n\nimport \"./ECDSA.sol\";\nimport \"../ShortStrings.sol\";\nimport \"../../interfaces/IERC5267.sol\";\n\n/**\n * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.\n *\n * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,\n * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding\n * they need in their contracts using a combination of `abi.encode` and `keccak256`.\n *\n * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding\n * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA\n * ({_hashTypedDataV4}).\n *\n * The implementation of the domain separator was designed to be as efficient as possible while still properly updating\n * the chain id to protect against replay attacks on an eventual fork of the chain.\n *\n * NOTE: This contract implements the version of the encoding known as \"v4\", as implemented by the JSON RPC method\n * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].\n *\n * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain\n * separator of the implementation contract. This will cause the `_domainSeparatorV4` function to always rebuild the\n * separator from the immutable values, which is cheaper than accessing a cached version in cold storage.\n *\n * _Available since v3.4._\n *\n * @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment\n */\nabstract contract EIP712 is IERC5267 {\n using ShortStrings for *;\n\n bytes32 private constant _TYPE_HASH =\n keccak256(\"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\");\n\n // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to\n // invalidate the cached domain separator if the chain id changes.\n bytes32 private immutable _cachedDomainSeparator;\n uint256 private immutable _cachedChainId;\n address private immutable _cachedThis;\n\n bytes32 private immutable _hashedName;\n bytes32 private immutable _hashedVersion;\n\n ShortString private immutable _name;\n ShortString private immutable _version;\n string private _nameFallback;\n string private _versionFallback;\n\n /**\n * @dev Initializes the domain separator and parameter caches.\n *\n * The meaning of `name` and `version` is specified in\n * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:\n *\n * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\n * - `version`: the current major version of the signing domain.\n *\n * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\n * contract upgrade].\n */\n constructor(string memory name, string memory version) {\n _name = name.toShortStringWithFallback(_nameFallback);\n _version = version.toShortStringWithFallback(_versionFallback);\n _hashedName = keccak256(bytes(name));\n _hashedVersion = keccak256(bytes(version));\n\n _cachedChainId = block.chainid;\n _cachedDomainSeparator = _buildDomainSeparator();\n _cachedThis = address(this);\n }\n\n /**\n * @dev Returns the domain separator for the current chain.\n */\n function _domainSeparatorV4() internal view returns (bytes32) {\n if (address(this) == _cachedThis && block.chainid == _cachedChainId) {\n return _cachedDomainSeparator;\n } else {\n return _buildDomainSeparator();\n }\n }\n\n function _buildDomainSeparator() private view returns (bytes32) {\n return keccak256(abi.encode(_TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this)));\n }\n\n /**\n * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\n * function returns the hash of the fully encoded EIP712 message for this domain.\n *\n * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\n *\n * ```solidity\n * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(\n * keccak256(\"Mail(address to,string contents)\"),\n * mailTo,\n * keccak256(bytes(mailContents))\n * )));\n * address signer = ECDSA.recover(digest, signature);\n * ```\n */\n function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {\n return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);\n }\n\n /**\n * @dev See {EIP-5267}.\n *\n * _Available since v4.9._\n */\n function eip712Domain()\n public\n view\n virtual\n override\n returns (\n bytes1 fields,\n string memory name,\n string memory version,\n uint256 chainId,\n address verifyingContract,\n bytes32 salt,\n uint256[] memory extensions\n )\n {\n return (\n hex\"0f\", // 01111\n _name.toStringWithFallback(_nameFallback),\n _version.toStringWithFallback(_versionFallback),\n block.chainid,\n address(this),\n bytes32(0),\n new uint256[](0)\n );\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/cryptography/MerkleProof.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev These functions deal with verification of Merkle Tree proofs.\n *\n * The tree and the proofs can be generated using our\n * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].\n * You will find a quickstart guide in the readme.\n *\n * WARNING: You should avoid using leaf values that are 64 bytes long prior to\n * hashing, or use a hash function other than keccak256 for hashing leaves.\n * This is because the concatenation of a sorted pair of internal nodes in\n * the merkle tree could be reinterpreted as a leaf value.\n * OpenZeppelin's JavaScript library generates merkle trees that are safe\n * against this attack out of the box.\n */\nlibrary MerkleProof {\n /**\n * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree\n * defined by `root`. For this, a `proof` must be provided, containing\n * sibling hashes on the branch from the leaf to the root of the tree. Each\n * pair of leaves and each pair of pre-images are assumed to be sorted.\n */\n function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {\n return processProof(proof, leaf) == root;\n }\n\n /**\n * @dev Calldata version of {verify}\n *\n * _Available since v4.7._\n */\n function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {\n return processProofCalldata(proof, leaf) == root;\n }\n\n /**\n * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up\n * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt\n * hash matches the root of the tree. When processing the proof, the pairs\n * of leafs & pre-images are assumed to be sorted.\n *\n * _Available since v4.4._\n */\n function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {\n bytes32 computedHash = leaf;\n for (uint256 i = 0; i < proof.length; i++) {\n computedHash = _hashPair(computedHash, proof[i]);\n }\n return computedHash;\n }\n\n /**\n * @dev Calldata version of {processProof}\n *\n * _Available since v4.7._\n */\n function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {\n bytes32 computedHash = leaf;\n for (uint256 i = 0; i < proof.length; i++) {\n computedHash = _hashPair(computedHash, proof[i]);\n }\n return computedHash;\n }\n\n /**\n * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by\n * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.\n *\n * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.\n *\n * _Available since v4.7._\n */\n function multiProofVerify(\n bytes32[] memory proof,\n bool[] memory proofFlags,\n bytes32 root,\n bytes32[] memory leaves\n ) internal pure returns (bool) {\n return processMultiProof(proof, proofFlags, leaves) == root;\n }\n\n /**\n * @dev Calldata version of {multiProofVerify}\n *\n * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.\n *\n * _Available since v4.7._\n */\n function multiProofVerifyCalldata(\n bytes32[] calldata proof,\n bool[] calldata proofFlags,\n bytes32 root,\n bytes32[] memory leaves\n ) internal pure returns (bool) {\n return processMultiProofCalldata(proof, proofFlags, leaves) == root;\n }\n\n /**\n * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction\n * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another\n * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false\n * respectively.\n *\n * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree\n * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the\n * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).\n *\n * _Available since v4.7._\n */\n function processMultiProof(\n bytes32[] memory proof,\n bool[] memory proofFlags,\n bytes32[] memory leaves\n ) internal pure returns (bytes32 merkleRoot) {\n // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by\n // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the\n // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of\n // the merkle tree.\n uint256 leavesLen = leaves.length;\n uint256 proofLen = proof.length;\n uint256 totalHashes = proofFlags.length;\n\n // Check proof validity.\n require(leavesLen + proofLen - 1 == totalHashes, \"MerkleProof: invalid multiproof\");\n\n // The xxxPos values are \"pointers\" to the next value to consume in each array. All accesses are done using\n // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's \"pop\".\n bytes32[] memory hashes = new bytes32[](totalHashes);\n uint256 leafPos = 0;\n uint256 hashPos = 0;\n uint256 proofPos = 0;\n // At each step, we compute the next hash using two values:\n // - a value from the \"main queue\". If not all leaves have been consumed, we get the next leaf, otherwise we\n // get the next hash.\n // - depending on the flag, either another value from the \"main queue\" (merging branches) or an element from the\n // `proof` array.\n for (uint256 i = 0; i < totalHashes; i++) {\n bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];\n bytes32 b = proofFlags[i]\n ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])\n : proof[proofPos++];\n hashes[i] = _hashPair(a, b);\n }\n\n if (totalHashes > 0) {\n require(proofPos == proofLen, \"MerkleProof: invalid multiproof\");\n unchecked {\n return hashes[totalHashes - 1];\n }\n } else if (leavesLen > 0) {\n return leaves[0];\n } else {\n return proof[0];\n }\n }\n\n /**\n * @dev Calldata version of {processMultiProof}.\n *\n * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.\n *\n * _Available since v4.7._\n */\n function processMultiProofCalldata(\n bytes32[] calldata proof,\n bool[] calldata proofFlags,\n bytes32[] memory leaves\n ) internal pure returns (bytes32 merkleRoot) {\n // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by\n // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the\n // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of\n // the merkle tree.\n uint256 leavesLen = leaves.length;\n uint256 proofLen = proof.length;\n uint256 totalHashes = proofFlags.length;\n\n // Check proof validity.\n require(leavesLen + proofLen - 1 == totalHashes, \"MerkleProof: invalid multiproof\");\n\n // The xxxPos values are \"pointers\" to the next value to consume in each array. All accesses are done using\n // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's \"pop\".\n bytes32[] memory hashes = new bytes32[](totalHashes);\n uint256 leafPos = 0;\n uint256 hashPos = 0;\n uint256 proofPos = 0;\n // At each step, we compute the next hash using two values:\n // - a value from the \"main queue\". If not all leaves have been consumed, we get the next leaf, otherwise we\n // get the next hash.\n // - depending on the flag, either another value from the \"main queue\" (merging branches) or an element from the\n // `proof` array.\n for (uint256 i = 0; i < totalHashes; i++) {\n bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];\n bytes32 b = proofFlags[i]\n ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])\n : proof[proofPos++];\n hashes[i] = _hashPair(a, b);\n }\n\n if (totalHashes > 0) {\n require(proofPos == proofLen, \"MerkleProof: invalid multiproof\");\n unchecked {\n return hashes[totalHashes - 1];\n }\n } else if (leavesLen > 0) {\n return leaves[0];\n } else {\n return proof[0];\n }\n }\n\n function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {\n return a < b ? _efficientHash(a, b) : _efficientHash(b, a);\n }\n\n function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {\n /// @solidity memory-safe-assembly\n assembly {\n mstore(0x00, a)\n mstore(0x20, b)\n value := keccak256(0x00, 0x40)\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/cryptography/SignatureChecker.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/SignatureChecker.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./ECDSA.sol\";\nimport \"../../interfaces/IERC1271.sol\";\n\n/**\n * @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA\n * signatures from externally owned accounts (EOAs) as well as ERC1271 signatures from smart contract wallets like\n * Argent and Gnosis Safe.\n *\n * _Available since v4.1._\n */\nlibrary SignatureChecker {\n /**\n * @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the\n * signature is validated against that smart contract using ERC1271, otherwise it's validated using `ECDSA.recover`.\n *\n * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus\n * change through time. It could return true at block N and false at block N+1 (or the opposite).\n */\n function isValidSignatureNow(address signer, bytes32 hash, bytes memory signature) internal view returns (bool) {\n (address recovered, ECDSA.RecoverError error) = ECDSA.tryRecover(hash, signature);\n return\n (error == ECDSA.RecoverError.NoError && recovered == signer) ||\n isValidERC1271SignatureNow(signer, hash, signature);\n }\n\n /**\n * @dev Checks if a signature is valid for a given signer and data hash. The signature is validated\n * against the signer smart contract using ERC1271.\n *\n * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus\n * change through time. It could return true at block N and false at block N+1 (or the opposite).\n */\n function isValidERC1271SignatureNow(\n address signer,\n bytes32 hash,\n bytes memory signature\n ) internal view returns (bool) {\n (bool success, bytes memory result) = signer.staticcall(\n abi.encodeWithSelector(IERC1271.isValidSignature.selector, hash, signature)\n );\n return (success &&\n result.length >= 32 &&\n abi.decode(result, (bytes32)) == bytes32(IERC1271.isValidSignature.selector));\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/math/Math.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard math utilities missing in the Solidity language.\n */\nlibrary Math {\n enum Rounding {\n Down, // Toward negative infinity\n Up, // Toward infinity\n Zero // Toward zero\n }\n\n /**\n * @dev Returns the largest of two numbers.\n */\n function max(uint256 a, uint256 b) internal pure returns (uint256) {\n return a > b ? a : b;\n }\n\n /**\n * @dev Returns the smallest of two numbers.\n */\n function min(uint256 a, uint256 b) internal pure returns (uint256) {\n return a < b ? a : b;\n }\n\n /**\n * @dev Returns the average of two numbers. The result is rounded towards\n * zero.\n */\n function average(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b) / 2 can overflow.\n return (a & b) + (a ^ b) / 2;\n }\n\n /**\n * @dev Returns the ceiling of the division of two numbers.\n *\n * This differs from standard division with `/` in that it rounds up instead\n * of rounding down.\n */\n function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b - 1) / b can overflow on addition, so we distribute.\n return a == 0 ? 0 : (a - 1) / b + 1;\n }\n\n /**\n * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0\n * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)\n * with further edits by Uniswap Labs also under MIT license.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {\n unchecked {\n // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use\n // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256\n // variables such that product = prod1 * 2^256 + prod0.\n uint256 prod0; // Least significant 256 bits of the product\n uint256 prod1; // Most significant 256 bits of the product\n assembly {\n let mm := mulmod(x, y, not(0))\n prod0 := mul(x, y)\n prod1 := sub(sub(mm, prod0), lt(mm, prod0))\n }\n\n // Handle non-overflow cases, 256 by 256 division.\n if (prod1 == 0) {\n // Solidity will revert if denominator == 0, unlike the div opcode on its own.\n // The surrounding unchecked block does not change this fact.\n // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.\n return prod0 / denominator;\n }\n\n // Make sure the result is less than 2^256. Also prevents denominator == 0.\n require(denominator > prod1, \"Math: mulDiv overflow\");\n\n ///////////////////////////////////////////////\n // 512 by 256 division.\n ///////////////////////////////////////////////\n\n // Make division exact by subtracting the remainder from [prod1 prod0].\n uint256 remainder;\n assembly {\n // Compute remainder using mulmod.\n remainder := mulmod(x, y, denominator)\n\n // Subtract 256 bit number from 512 bit number.\n prod1 := sub(prod1, gt(remainder, prod0))\n prod0 := sub(prod0, remainder)\n }\n\n // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.\n // See https://cs.stackexchange.com/q/138556/92363.\n\n // Does not overflow because the denominator cannot be zero at this stage in the function.\n uint256 twos = denominator & (~denominator + 1);\n assembly {\n // Divide denominator by twos.\n denominator := div(denominator, twos)\n\n // Divide [prod1 prod0] by twos.\n prod0 := div(prod0, twos)\n\n // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.\n twos := add(div(sub(0, twos), twos), 1)\n }\n\n // Shift in bits from prod1 into prod0.\n prod0 |= prod1 * twos;\n\n // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such\n // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for\n // four bits. That is, denominator * inv = 1 mod 2^4.\n uint256 inverse = (3 * denominator) ^ 2;\n\n // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works\n // in modular arithmetic, doubling the correct bits in each step.\n inverse *= 2 - denominator * inverse; // inverse mod 2^8\n inverse *= 2 - denominator * inverse; // inverse mod 2^16\n inverse *= 2 - denominator * inverse; // inverse mod 2^32\n inverse *= 2 - denominator * inverse; // inverse mod 2^64\n inverse *= 2 - denominator * inverse; // inverse mod 2^128\n inverse *= 2 - denominator * inverse; // inverse mod 2^256\n\n // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.\n // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is\n // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1\n // is no longer required.\n result = prod0 * inverse;\n return result;\n }\n }\n\n /**\n * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {\n uint256 result = mulDiv(x, y, denominator);\n if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {\n result += 1;\n }\n return result;\n }\n\n /**\n * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.\n *\n * Inspired by Henry S. Warren, Jr.'s \"Hacker's Delight\" (Chapter 11).\n */\n function sqrt(uint256 a) internal pure returns (uint256) {\n if (a == 0) {\n return 0;\n }\n\n // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.\n //\n // We know that the \"msb\" (most significant bit) of our target number `a` is a power of 2 such that we have\n // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.\n //\n // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`\n // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`\n // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`\n //\n // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.\n uint256 result = 1 << (log2(a) >> 1);\n\n // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,\n // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at\n // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision\n // into the expected uint128 result.\n unchecked {\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n return min(result, a / result);\n }\n }\n\n /**\n * @notice Calculates sqrt(a), following the selected rounding direction.\n */\n function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = sqrt(a);\n return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 2, rounded down, of a positive value.\n * Returns 0 if given 0.\n */\n function log2(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >> 128 > 0) {\n value >>= 128;\n result += 128;\n }\n if (value >> 64 > 0) {\n value >>= 64;\n result += 64;\n }\n if (value >> 32 > 0) {\n value >>= 32;\n result += 32;\n }\n if (value >> 16 > 0) {\n value >>= 16;\n result += 16;\n }\n if (value >> 8 > 0) {\n value >>= 8;\n result += 8;\n }\n if (value >> 4 > 0) {\n value >>= 4;\n result += 4;\n }\n if (value >> 2 > 0) {\n value >>= 2;\n result += 2;\n }\n if (value >> 1 > 0) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log2(value);\n return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 10, rounded down, of a positive value.\n * Returns 0 if given 0.\n */\n function log10(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >= 10 ** 64) {\n value /= 10 ** 64;\n result += 64;\n }\n if (value >= 10 ** 32) {\n value /= 10 ** 32;\n result += 32;\n }\n if (value >= 10 ** 16) {\n value /= 10 ** 16;\n result += 16;\n }\n if (value >= 10 ** 8) {\n value /= 10 ** 8;\n result += 8;\n }\n if (value >= 10 ** 4) {\n value /= 10 ** 4;\n result += 4;\n }\n if (value >= 10 ** 2) {\n value /= 10 ** 2;\n result += 2;\n }\n if (value >= 10 ** 1) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log10(value);\n return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 256, rounded down, of a positive value.\n * Returns 0 if given 0.\n *\n * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.\n */\n function log256(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >> 128 > 0) {\n value >>= 128;\n result += 16;\n }\n if (value >> 64 > 0) {\n value >>= 64;\n result += 8;\n }\n if (value >> 32 > 0) {\n value >>= 32;\n result += 4;\n }\n if (value >> 16 > 0) {\n value >>= 16;\n result += 2;\n }\n if (value >> 8 > 0) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log256(value);\n return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/math/SignedMath.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard signed math utilities missing in the Solidity language.\n */\nlibrary SignedMath {\n /**\n * @dev Returns the largest of two signed numbers.\n */\n function max(int256 a, int256 b) internal pure returns (int256) {\n return a > b ? a : b;\n }\n\n /**\n * @dev Returns the smallest of two signed numbers.\n */\n function min(int256 a, int256 b) internal pure returns (int256) {\n return a < b ? a : b;\n }\n\n /**\n * @dev Returns the average of two signed numbers without overflow.\n * The result is rounded towards zero.\n */\n function average(int256 a, int256 b) internal pure returns (int256) {\n // Formula from the book \"Hacker's Delight\"\n int256 x = (a & b) + ((a ^ b) >> 1);\n return x + (int256(uint256(x) >> 255) & (a ^ b));\n }\n\n /**\n * @dev Returns the absolute unsigned value of a signed value.\n */\n function abs(int256 n) internal pure returns (uint256) {\n unchecked {\n // must be unchecked in order to support `n = type(int256).min`\n return uint256(n >= 0 ? n : -n);\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/ShortStrings.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/ShortStrings.sol)\n\npragma solidity ^0.8.8;\n\nimport \"./StorageSlot.sol\";\n\n// | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |\n// | length | 0x BB |\ntype ShortString is bytes32;\n\n/**\n * @dev This library provides functions to convert short memory strings\n * into a `ShortString` type that can be used as an immutable variable.\n *\n * Strings of arbitrary length can be optimized using this library if\n * they are short enough (up to 31 bytes) by packing them with their\n * length (1 byte) in a single EVM word (32 bytes). Additionally, a\n * fallback mechanism can be used for every other case.\n *\n * Usage example:\n *\n * ```solidity\n * contract Named {\n * using ShortStrings for *;\n *\n * ShortString private immutable _name;\n * string private _nameFallback;\n *\n * constructor(string memory contractName) {\n * _name = contractName.toShortStringWithFallback(_nameFallback);\n * }\n *\n * function name() external view returns (string memory) {\n * return _name.toStringWithFallback(_nameFallback);\n * }\n * }\n * ```\n */\nlibrary ShortStrings {\n // Used as an identifier for strings longer than 31 bytes.\n bytes32 private constant _FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF;\n\n error StringTooLong(string str);\n error InvalidShortString();\n\n /**\n * @dev Encode a string of at most 31 chars into a `ShortString`.\n *\n * This will trigger a `StringTooLong` error is the input string is too long.\n */\n function toShortString(string memory str) internal pure returns (ShortString) {\n bytes memory bstr = bytes(str);\n if (bstr.length > 31) {\n revert StringTooLong(str);\n }\n return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length));\n }\n\n /**\n * @dev Decode a `ShortString` back to a \"normal\" string.\n */\n function toString(ShortString sstr) internal pure returns (string memory) {\n uint256 len = byteLength(sstr);\n // using `new string(len)` would work locally but is not memory safe.\n string memory str = new string(32);\n /// @solidity memory-safe-assembly\n assembly {\n mstore(str, len)\n mstore(add(str, 0x20), sstr)\n }\n return str;\n }\n\n /**\n * @dev Return the length of a `ShortString`.\n */\n function byteLength(ShortString sstr) internal pure returns (uint256) {\n uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF;\n if (result > 31) {\n revert InvalidShortString();\n }\n return result;\n }\n\n /**\n * @dev Encode a string into a `ShortString`, or write it to storage if it is too long.\n */\n function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) {\n if (bytes(value).length < 32) {\n return toShortString(value);\n } else {\n StorageSlot.getStringSlot(store).value = value;\n return ShortString.wrap(_FALLBACK_SENTINEL);\n }\n }\n\n /**\n * @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}.\n */\n function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) {\n if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) {\n return toString(value);\n } else {\n return store;\n }\n }\n\n /**\n * @dev Return the length of a string that was encoded to `ShortString` or written to storage using {setWithFallback}.\n *\n * WARNING: This will return the \"byte length\" of the string. This may not reflect the actual length in terms of\n * actual characters as the UTF-8 encoding of a single character can span over multiple bytes.\n */\n function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) {\n if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) {\n return byteLength(value);\n } else {\n return bytes(store).length;\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/StorageSlot.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)\n// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Library for reading and writing primitive types to specific storage slots.\n *\n * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n * This library helps with reading and writing to such slots without the need for inline assembly.\n *\n * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n *\n * Example usage to set ERC1967 implementation slot:\n * ```solidity\n * contract ERC1967 {\n * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n *\n * function _getImplementation() internal view returns (address) {\n * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n * }\n *\n * function _setImplementation(address newImplementation) internal {\n * require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\");\n * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n * }\n * }\n * ```\n *\n * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._\n * _Available since v4.9 for `string`, `bytes`._\n */\nlibrary StorageSlot {\n struct AddressSlot {\n address value;\n }\n\n struct BooleanSlot {\n bool value;\n }\n\n struct Bytes32Slot {\n bytes32 value;\n }\n\n struct Uint256Slot {\n uint256 value;\n }\n\n struct StringSlot {\n string value;\n }\n\n struct BytesSlot {\n bytes value;\n }\n\n /**\n * @dev Returns an `AddressSlot` with member `value` located at `slot`.\n */\n function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `BooleanSlot` with member `value` located at `slot`.\n */\n function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.\n */\n function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `Uint256Slot` with member `value` located at `slot`.\n */\n function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `StringSlot` with member `value` located at `slot`.\n */\n function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `StringSlot` representation of the string storage pointer `store`.\n */\n function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := store.slot\n }\n }\n\n /**\n * @dev Returns an `BytesSlot` with member `value` located at `slot`.\n */\n function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.\n */\n function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := store.slot\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/Strings.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./math/Math.sol\";\nimport \"./math/SignedMath.sol\";\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n bytes16 private constant _SYMBOLS = \"0123456789abcdef\";\n uint8 private constant _ADDRESS_LENGTH = 20;\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n */\n function toString(uint256 value) internal pure returns (string memory) {\n unchecked {\n uint256 length = Math.log10(value) + 1;\n string memory buffer = new string(length);\n uint256 ptr;\n /// @solidity memory-safe-assembly\n assembly {\n ptr := add(buffer, add(32, length))\n }\n while (true) {\n ptr--;\n /// @solidity memory-safe-assembly\n assembly {\n mstore8(ptr, byte(mod(value, 10), _SYMBOLS))\n }\n value /= 10;\n if (value == 0) break;\n }\n return buffer;\n }\n }\n\n /**\n * @dev Converts a `int256` to its ASCII `string` decimal representation.\n */\n function toString(int256 value) internal pure returns (string memory) {\n return string(abi.encodePacked(value < 0 ? \"-\" : \"\", toString(SignedMath.abs(value))));\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n */\n function toHexString(uint256 value) internal pure returns (string memory) {\n unchecked {\n return toHexString(value, Math.log256(value) + 1);\n }\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n */\n function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n bytes memory buffer = new bytes(2 * length + 2);\n buffer[0] = \"0\";\n buffer[1] = \"x\";\n for (uint256 i = 2 * length + 1; i > 1; --i) {\n buffer[i] = _SYMBOLS[value & 0xf];\n value >>= 4;\n }\n require(value == 0, \"Strings: hex length insufficient\");\n return string(buffer);\n }\n\n /**\n * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.\n */\n function toHexString(address addr) internal pure returns (string memory) {\n return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);\n }\n\n /**\n * @dev Returns true if the two strings are equal.\n */\n function equal(string memory a, string memory b) internal pure returns (bool) {\n return keccak256(bytes(a)) == keccak256(bytes(b));\n }\n}\n"
+ },
+ "@openzeppelin/contracts/access/Ownable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)\n\npragma solidity ^0.8.20;\n\nimport {Context} from \"../utils/Context.sol\";\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * The initial owner is set to the address provided by the deployer. This can\n * later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract Ownable is Context {\n address private _owner;\n\n /**\n * @dev The caller account is not authorized to perform an operation.\n */\n error OwnableUnauthorizedAccount(address account);\n\n /**\n * @dev The owner is not a valid owner account. (eg. `address(0)`)\n */\n error OwnableInvalidOwner(address owner);\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the address provided by the deployer as the initial owner.\n */\n constructor(address initialOwner) {\n if (initialOwner == address(0)) {\n revert OwnableInvalidOwner(address(0));\n }\n _transferOwnership(initialOwner);\n }\n\n /**\n * @dev Throws if called by any account other than the owner.\n */\n modifier onlyOwner() {\n _checkOwner();\n _;\n }\n\n /**\n * @dev Returns the address of the current owner.\n */\n function owner() public view virtual returns (address) {\n return _owner;\n }\n\n /**\n * @dev Throws if the sender is not the owner.\n */\n function _checkOwner() internal view virtual {\n if (owner() != _msgSender()) {\n revert OwnableUnauthorizedAccount(_msgSender());\n }\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby disabling any functionality that is only available to the owner.\n */\n function renounceOwnership() public virtual onlyOwner {\n _transferOwnership(address(0));\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual onlyOwner {\n if (newOwner == address(0)) {\n revert OwnableInvalidOwner(address(0));\n }\n _transferOwnership(newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual {\n address oldOwner = _owner;\n _owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\n }\n}\n"
+ },
+ "@openzeppelin/contracts/interfaces/IERC1967.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC1967.sol)\n\npragma solidity >=0.4.11;\n\n/**\n * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.\n */\ninterface IERC1967 {\n /**\n * @dev Emitted when the implementation is upgraded.\n */\n event Upgraded(address indexed implementation);\n\n /**\n * @dev Emitted when the admin account has changed.\n */\n event AdminChanged(address previousAdmin, address newAdmin);\n\n /**\n * @dev Emitted when the beacon is changed.\n */\n event BeaconUpgraded(address indexed beacon);\n}\n"
+ },
+ "@openzeppelin/contracts/proxy/beacon/BeaconProxy.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (proxy/beacon/BeaconProxy.sol)\n\npragma solidity ^0.8.22;\n\nimport {IBeacon} from \"./IBeacon.sol\";\nimport {Proxy} from \"../Proxy.sol\";\nimport {ERC1967Utils} from \"../ERC1967/ERC1967Utils.sol\";\n\n/**\n * @dev This contract implements a proxy that gets the implementation address for each call from an {UpgradeableBeacon}.\n *\n * The beacon address can only be set once during construction, and cannot be changed afterwards. It is stored in an\n * immutable variable to avoid unnecessary storage reads, and also in the beacon storage slot specified by\n * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] so that it can be accessed externally.\n *\n * CAUTION: Since the beacon address can never be changed, you must ensure that you either control the beacon, or trust\n * the beacon to not upgrade the implementation maliciously.\n *\n * IMPORTANT: Do not use the implementation logic to modify the beacon storage slot. Doing so would leave the proxy in\n * an inconsistent state where the beacon storage slot does not match the beacon address.\n */\ncontract BeaconProxy is Proxy {\n // An immutable address for the beacon to avoid unnecessary SLOADs before each delegate call.\n address private immutable _beacon;\n\n /**\n * @dev Initializes the proxy with `beacon`.\n *\n * If `data` is nonempty, it's used as data in a delegate call to the implementation returned by the beacon. This\n * will typically be an encoded function call, and allows initializing the storage of the proxy like a Solidity\n * constructor.\n *\n * Requirements:\n *\n * - `beacon` must be a contract with the interface {IBeacon}.\n * - If `data` is empty, `msg.value` must be zero.\n */\n constructor(address beacon, bytes memory data) payable {\n ERC1967Utils.upgradeBeaconToAndCall(beacon, data);\n _beacon = beacon;\n }\n\n /**\n * @dev Returns the current implementation address of the associated beacon.\n */\n function _implementation() internal view virtual override returns (address) {\n return IBeacon(_getBeacon()).implementation();\n }\n\n /**\n * @dev Returns the beacon.\n */\n function _getBeacon() internal view virtual returns (address) {\n return _beacon;\n }\n}\n"
+ },
+ "@openzeppelin/contracts/proxy/beacon/IBeacon.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (proxy/beacon/IBeacon.sol)\n\npragma solidity >=0.4.16;\n\n/**\n * @dev This is the interface that {BeaconProxy} expects of its beacon.\n */\ninterface IBeacon {\n /**\n * @dev Must return an address that can be used as a delegate call target.\n *\n * {UpgradeableBeacon} will check that this address is a contract.\n */\n function implementation() external view returns (address);\n}\n"
+ },
+ "@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/UpgradeableBeacon.sol)\n\npragma solidity ^0.8.20;\n\nimport {IBeacon} from \"./IBeacon.sol\";\nimport {Ownable} from \"../../access/Ownable.sol\";\n\n/**\n * @dev This contract is used in conjunction with one or more instances of {BeaconProxy} to determine their\n * implementation contract, which is where they will delegate all function calls.\n *\n * An owner is able to change the implementation the beacon points to, thus upgrading the proxies that use this beacon.\n */\ncontract UpgradeableBeacon is IBeacon, Ownable {\n address private _implementation;\n\n /**\n * @dev The `implementation` of the beacon is invalid.\n */\n error BeaconInvalidImplementation(address implementation);\n\n /**\n * @dev Emitted when the implementation returned by the beacon is changed.\n */\n event Upgraded(address indexed implementation);\n\n /**\n * @dev Sets the address of the initial implementation, and the initial owner who can upgrade the beacon.\n */\n constructor(address implementation_, address initialOwner) Ownable(initialOwner) {\n _setImplementation(implementation_);\n }\n\n /**\n * @dev Returns the current implementation address.\n */\n function implementation() public view virtual returns (address) {\n return _implementation;\n }\n\n /**\n * @dev Upgrades the beacon to a new implementation.\n *\n * Emits an {Upgraded} event.\n *\n * Requirements:\n *\n * - msg.sender must be the owner of the contract.\n * - `newImplementation` must be a contract.\n */\n function upgradeTo(address newImplementation) public virtual onlyOwner {\n _setImplementation(newImplementation);\n }\n\n /**\n * @dev Sets the implementation contract address for this beacon\n *\n * Requirements:\n *\n * - `newImplementation` must be a contract.\n */\n function _setImplementation(address newImplementation) private {\n if (newImplementation.code.length == 0) {\n revert BeaconInvalidImplementation(newImplementation);\n }\n _implementation = newImplementation;\n emit Upgraded(newImplementation);\n }\n}\n"
+ },
+ "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (proxy/ERC1967/ERC1967Proxy.sol)\n\npragma solidity ^0.8.22;\n\nimport {Proxy} from \"../Proxy.sol\";\nimport {ERC1967Utils} from \"./ERC1967Utils.sol\";\n\n/**\n * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an\n * implementation address that can be changed. This address is stored in storage in the location specified by\n * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967], so that it doesn't conflict with the storage layout of the\n * implementation behind the proxy.\n */\ncontract ERC1967Proxy is Proxy {\n /**\n * @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation`.\n *\n * If `_data` is nonempty, it's used as data in a delegate call to `implementation`. This will typically be an\n * encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\n *\n * Requirements:\n *\n * - If `data` is empty, `msg.value` must be zero.\n */\n constructor(address implementation, bytes memory _data) payable {\n ERC1967Utils.upgradeToAndCall(implementation, _data);\n }\n\n /**\n * @dev Returns the current implementation address.\n *\n * TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using\n * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`\n */\n function _implementation() internal view virtual override returns (address) {\n return ERC1967Utils.getImplementation();\n }\n}\n"
+ },
+ "@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (proxy/ERC1967/ERC1967Utils.sol)\n\npragma solidity ^0.8.21;\n\nimport {IBeacon} from \"../beacon/IBeacon.sol\";\nimport {IERC1967} from \"../../interfaces/IERC1967.sol\";\nimport {Address} from \"../../utils/Address.sol\";\nimport {StorageSlot} from \"../../utils/StorageSlot.sol\";\n\n/**\n * @dev This library provides getters and event emitting update functions for\n * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots.\n */\nlibrary ERC1967Utils {\n /**\n * @dev Storage slot with the address of the current implementation.\n * This is the keccak-256 hash of \"eip1967.proxy.implementation\" subtracted by 1.\n */\n // solhint-disable-next-line private-vars-leading-underscore\n bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n\n /**\n * @dev The `implementation` of the proxy is invalid.\n */\n error ERC1967InvalidImplementation(address implementation);\n\n /**\n * @dev The `admin` of the proxy is invalid.\n */\n error ERC1967InvalidAdmin(address admin);\n\n /**\n * @dev The `beacon` of the proxy is invalid.\n */\n error ERC1967InvalidBeacon(address beacon);\n\n /**\n * @dev An upgrade function sees `msg.value > 0` that may be lost.\n */\n error ERC1967NonPayable();\n\n /**\n * @dev Returns the current implementation address.\n */\n function getImplementation() internal view returns (address) {\n return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value;\n }\n\n /**\n * @dev Stores a new address in the ERC-1967 implementation slot.\n */\n function _setImplementation(address newImplementation) private {\n if (newImplementation.code.length == 0) {\n revert ERC1967InvalidImplementation(newImplementation);\n }\n StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation;\n }\n\n /**\n * @dev Performs implementation upgrade with additional setup call if data is nonempty.\n * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected\n * to avoid stuck value in the contract.\n *\n * Emits an {IERC1967-Upgraded} event.\n */\n function upgradeToAndCall(address newImplementation, bytes memory data) internal {\n _setImplementation(newImplementation);\n emit IERC1967.Upgraded(newImplementation);\n\n if (data.length > 0) {\n Address.functionDelegateCall(newImplementation, data);\n } else {\n _checkNonPayable();\n }\n }\n\n /**\n * @dev Storage slot with the admin of the contract.\n * This is the keccak-256 hash of \"eip1967.proxy.admin\" subtracted by 1.\n */\n // solhint-disable-next-line private-vars-leading-underscore\n bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;\n\n /**\n * @dev Returns the current admin.\n *\n * TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using\n * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`\n */\n function getAdmin() internal view returns (address) {\n return StorageSlot.getAddressSlot(ADMIN_SLOT).value;\n }\n\n /**\n * @dev Stores a new address in the ERC-1967 admin slot.\n */\n function _setAdmin(address newAdmin) private {\n if (newAdmin == address(0)) {\n revert ERC1967InvalidAdmin(address(0));\n }\n StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin;\n }\n\n /**\n * @dev Changes the admin of the proxy.\n *\n * Emits an {IERC1967-AdminChanged} event.\n */\n function changeAdmin(address newAdmin) internal {\n emit IERC1967.AdminChanged(getAdmin(), newAdmin);\n _setAdmin(newAdmin);\n }\n\n /**\n * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.\n * This is the keccak-256 hash of \"eip1967.proxy.beacon\" subtracted by 1.\n */\n // solhint-disable-next-line private-vars-leading-underscore\n bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;\n\n /**\n * @dev Returns the current beacon.\n */\n function getBeacon() internal view returns (address) {\n return StorageSlot.getAddressSlot(BEACON_SLOT).value;\n }\n\n /**\n * @dev Stores a new beacon in the ERC-1967 beacon slot.\n */\n function _setBeacon(address newBeacon) private {\n if (newBeacon.code.length == 0) {\n revert ERC1967InvalidBeacon(newBeacon);\n }\n\n StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon;\n\n address beaconImplementation = IBeacon(newBeacon).implementation();\n if (beaconImplementation.code.length == 0) {\n revert ERC1967InvalidImplementation(beaconImplementation);\n }\n }\n\n /**\n * @dev Change the beacon and trigger a setup call if data is nonempty.\n * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected\n * to avoid stuck value in the contract.\n *\n * Emits an {IERC1967-BeaconUpgraded} event.\n *\n * CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since\n * it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for\n * efficiency.\n */\n function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal {\n _setBeacon(newBeacon);\n emit IERC1967.BeaconUpgraded(newBeacon);\n\n if (data.length > 0) {\n Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);\n } else {\n _checkNonPayable();\n }\n }\n\n /**\n * @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract\n * if an upgrade doesn't perform an initialization call.\n */\n function _checkNonPayable() private {\n if (msg.value > 0) {\n revert ERC1967NonPayable();\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts/proxy/Proxy.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (proxy/Proxy.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM\n * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to\n * be specified by overriding the virtual {_implementation} function.\n *\n * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a\n * different contract through the {_delegate} function.\n *\n * The success and return data of the delegated call will be returned back to the caller of the proxy.\n */\nabstract contract Proxy {\n /**\n * @dev Delegates the current call to `implementation`.\n *\n * This function does not return to its internal call site, it will return directly to the external caller.\n */\n function _delegate(address implementation) internal virtual {\n assembly {\n // Copy msg.data. We take full control of memory in this inline assembly\n // block because it will not return to Solidity code. We overwrite the\n // Solidity scratch pad at memory position 0.\n calldatacopy(0x00, 0x00, calldatasize())\n\n // Call the implementation.\n // out and outsize are 0 because we don't know the size yet.\n let result := delegatecall(gas(), implementation, 0x00, calldatasize(), 0x00, 0x00)\n\n // Copy the returned data.\n returndatacopy(0x00, 0x00, returndatasize())\n\n switch result\n // delegatecall returns 0 on error.\n case 0 {\n revert(0x00, returndatasize())\n }\n default {\n return(0x00, returndatasize())\n }\n }\n }\n\n /**\n * @dev This is a virtual function that should be overridden so it returns the address to which the fallback\n * function and {_fallback} should delegate.\n */\n function _implementation() internal view virtual returns (address);\n\n /**\n * @dev Delegates the current call to the address returned by `_implementation()`.\n *\n * This function does not return to its internal call site, it will return directly to the external caller.\n */\n function _fallback() internal virtual {\n _delegate(_implementation());\n }\n\n /**\n * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other\n * function in the contract matches the call data.\n */\n fallback() external payable virtual {\n _fallback();\n }\n}\n"
+ },
+ "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (proxy/transparent/ProxyAdmin.sol)\n\npragma solidity ^0.8.22;\n\nimport {ITransparentUpgradeableProxy} from \"./TransparentUpgradeableProxy.sol\";\nimport {Ownable} from \"../../access/Ownable.sol\";\n\n/**\n * @dev This is an auxiliary contract meant to be assigned as the admin of a {TransparentUpgradeableProxy}. For an\n * explanation of why you would want to use this see the documentation for {TransparentUpgradeableProxy}.\n */\ncontract ProxyAdmin is Ownable {\n /**\n * @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgrade(address,address)`\n * and `upgradeAndCall(address,address,bytes)` are present, and `upgrade` must be used if no function should be called,\n * while `upgradeAndCall` will invoke the `receive` function if the third argument is the empty byte string.\n * If the getter returns `\"5.0.0\"`, only `upgradeAndCall(address,address,bytes)` is present, and the third argument must\n * be the empty byte string if no function should be called, making it impossible to invoke the `receive` function\n * during an upgrade.\n */\n string public constant UPGRADE_INTERFACE_VERSION = \"5.0.0\";\n\n /**\n * @dev Sets the initial owner who can perform upgrades.\n */\n constructor(address initialOwner) Ownable(initialOwner) {}\n\n /**\n * @dev Upgrades `proxy` to `implementation` and calls a function on the new implementation.\n * See {TransparentUpgradeableProxy-_dispatchUpgradeToAndCall}.\n *\n * Requirements:\n *\n * - This contract must be the admin of `proxy`.\n * - If `data` is empty, `msg.value` must be zero.\n */\n function upgradeAndCall(\n ITransparentUpgradeableProxy proxy,\n address implementation,\n bytes memory data\n ) public payable virtual onlyOwner {\n proxy.upgradeToAndCall{value: msg.value}(implementation, data);\n }\n}\n"
+ },
+ "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (proxy/transparent/TransparentUpgradeableProxy.sol)\n\npragma solidity ^0.8.22;\n\nimport {ERC1967Utils} from \"../ERC1967/ERC1967Utils.sol\";\nimport {ERC1967Proxy} from \"../ERC1967/ERC1967Proxy.sol\";\nimport {IERC1967} from \"../../interfaces/IERC1967.sol\";\nimport {ProxyAdmin} from \"./ProxyAdmin.sol\";\n\n/**\n * @dev Interface for {TransparentUpgradeableProxy}. In order to implement transparency, {TransparentUpgradeableProxy}\n * does not implement this interface directly, and its upgradeability mechanism is implemented by an internal dispatch\n * mechanism. The compiler is unaware that these functions are implemented by {TransparentUpgradeableProxy} and will not\n * include them in the ABI so this interface must be used to interact with it.\n */\ninterface ITransparentUpgradeableProxy is IERC1967 {\n /// @dev See {UUPSUpgradeable-upgradeToAndCall}\n function upgradeToAndCall(address newImplementation, bytes calldata data) external payable;\n}\n\n/**\n * @dev This contract implements a proxy that is upgradeable through an associated {ProxyAdmin} instance.\n *\n * To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector\n * clashing], which can potentially be used in an attack, this contract uses the\n * https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two\n * things that go hand in hand:\n *\n * 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if\n * that call matches the {ITransparentUpgradeableProxy-upgradeToAndCall} function exposed by the proxy itself.\n * 2. If the admin calls the proxy, it can call the `upgradeToAndCall` function, but any other call won't be forwarded to\n * the implementation. If the admin tries to call a function on the implementation it will fail with an error indicating\n * the proxy admin cannot fallback to the target implementation.\n *\n * These properties mean that the admin account can only be used for upgrading the proxy, so it's best if it's a\n * dedicated account that is not used for anything else. This will avoid headaches due to sudden errors when trying to\n * call a function from the proxy implementation. For this reason, the proxy deploys an instance of {ProxyAdmin} and\n * allows upgrades only if they come through it. You should think of the `ProxyAdmin` instance as the administrative\n * interface of the proxy, including the ability to change who can trigger upgrades by transferring ownership.\n *\n * NOTE: The real interface of this proxy is that defined in `ITransparentUpgradeableProxy`. This contract does not\n * inherit from that interface, and instead `upgradeToAndCall` is implicitly implemented using a custom dispatch\n * mechanism in `_fallback`. Consequently, the compiler will not produce an ABI for this contract. This is necessary to\n * fully implement transparency without decoding reverts caused by selector clashes between the proxy and the\n * implementation.\n *\n * NOTE: This proxy does not inherit from {Context} deliberately. The {ProxyAdmin} of this contract won't send a\n * meta-transaction in any way, and any other meta-transaction setup should be made in the implementation contract.\n *\n * IMPORTANT: This contract avoids unnecessary storage reads by setting the admin only during construction as an\n * immutable variable, preventing any changes thereafter. However, the admin slot defined in ERC-1967 can still be\n * overwritten by the implementation logic pointed to by this proxy. In such cases, the contract may end up in an\n * undesirable state where the admin slot is different from the actual admin. Relying on the value of the admin slot\n * is generally fine if the implementation is trusted.\n *\n * WARNING: It is not recommended to extend this contract to add additional external functions. If you do so, the\n * compiler will not check that there are no selector conflicts, due to the note above. A selector clash between any new\n * function and the functions declared in {ITransparentUpgradeableProxy} will be resolved in favor of the new one. This\n * could render the `upgradeToAndCall` function inaccessible, preventing upgradeability and compromising transparency.\n */\ncontract TransparentUpgradeableProxy is ERC1967Proxy {\n // An immutable address for the admin to avoid unnecessary SLOADs before each call\n // at the expense of removing the ability to change the admin once it's set.\n // This is acceptable if the admin is always a ProxyAdmin instance or similar contract\n // with its own ability to transfer the permissions to another account.\n address private immutable _admin;\n\n /**\n * @dev The proxy caller is the current admin, and can't fallback to the proxy target.\n */\n error ProxyDeniedAdminAccess();\n\n /**\n * @dev Initializes an upgradeable proxy managed by an instance of a {ProxyAdmin} with an `initialOwner`,\n * backed by the implementation at `_logic`, and optionally initialized with `_data` as explained in\n * {ERC1967Proxy-constructor}.\n */\n constructor(address _logic, address initialOwner, bytes memory _data) payable ERC1967Proxy(_logic, _data) {\n _admin = address(new ProxyAdmin(initialOwner));\n // Set the storage value and emit an event for ERC-1967 compatibility\n ERC1967Utils.changeAdmin(_proxyAdmin());\n }\n\n /**\n * @dev Returns the admin of this proxy.\n */\n function _proxyAdmin() internal view virtual returns (address) {\n return _admin;\n }\n\n /**\n * @dev If caller is the admin process the call internally, otherwise transparently fallback to the proxy behavior.\n */\n function _fallback() internal virtual override {\n if (msg.sender == _proxyAdmin()) {\n if (msg.sig != ITransparentUpgradeableProxy.upgradeToAndCall.selector) {\n revert ProxyDeniedAdminAccess();\n } else {\n _dispatchUpgradeToAndCall();\n }\n } else {\n super._fallback();\n }\n }\n\n /**\n * @dev Upgrade the implementation of the proxy. See {ERC1967Utils-upgradeToAndCall}.\n *\n * Requirements:\n *\n * - If `data` is empty, `msg.value` must be zero.\n */\n function _dispatchUpgradeToAndCall() private {\n (address newImplementation, bytes memory data) = abi.decode(msg.data[4:], (address, bytes));\n ERC1967Utils.upgradeToAndCall(newImplementation, data);\n }\n}\n"
+ },
+ "@openzeppelin/contracts/utils/Address.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/Address.sol)\n\npragma solidity ^0.8.20;\n\nimport {Errors} from \"./Errors.sol\";\nimport {LowLevelCall} from \"./LowLevelCall.sol\";\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev There's no code at `target` (it is not a contract).\n */\n error AddressEmptyCode(address target);\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n if (address(this).balance < amount) {\n revert Errors.InsufficientBalance(address(this).balance, amount);\n }\n if (LowLevelCall.callNoReturn(recipient, amount, \"\")) {\n // call successful, nothing to do\n return;\n } else if (LowLevelCall.returnDataSize() > 0) {\n LowLevelCall.bubbleRevert();\n } else {\n revert Errors.FailedCall();\n }\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason or custom error, it is bubbled\n * up by this function (like regular Solidity function calls). However, if\n * the call reverted with no returned reason, this function reverts with a\n * {Errors.FailedCall} error.\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n if (address(this).balance < value) {\n revert Errors.InsufficientBalance(address(this).balance, value);\n }\n bool success = LowLevelCall.callNoReturn(target, value, data);\n if (success && (LowLevelCall.returnDataSize() > 0 || target.code.length > 0)) {\n return LowLevelCall.returnData();\n } else if (success) {\n revert AddressEmptyCode(target);\n } else if (LowLevelCall.returnDataSize() > 0) {\n LowLevelCall.bubbleRevert();\n } else {\n revert Errors.FailedCall();\n }\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n bool success = LowLevelCall.staticcallNoReturn(target, data);\n if (success && (LowLevelCall.returnDataSize() > 0 || target.code.length > 0)) {\n return LowLevelCall.returnData();\n } else if (success) {\n revert AddressEmptyCode(target);\n } else if (LowLevelCall.returnDataSize() > 0) {\n LowLevelCall.bubbleRevert();\n } else {\n revert Errors.FailedCall();\n }\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n bool success = LowLevelCall.delegatecallNoReturn(target, data);\n if (success && (LowLevelCall.returnDataSize() > 0 || target.code.length > 0)) {\n return LowLevelCall.returnData();\n } else if (success) {\n revert AddressEmptyCode(target);\n } else if (LowLevelCall.returnDataSize() > 0) {\n LowLevelCall.bubbleRevert();\n } else {\n revert Errors.FailedCall();\n }\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target\n * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case\n * of an unsuccessful call.\n *\n * NOTE: This function is DEPRECATED and may be removed in the next major release.\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata\n ) internal view returns (bytes memory) {\n // only check if target is a contract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n if (success && (returndata.length > 0 || target.code.length > 0)) {\n return returndata;\n } else if (success) {\n revert AddressEmptyCode(target);\n } else if (returndata.length > 0) {\n LowLevelCall.bubbleRevert(returndata);\n } else {\n revert Errors.FailedCall();\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the\n * revert reason or with a default {Errors.FailedCall} error.\n */\n function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else if (returndata.length > 0) {\n LowLevelCall.bubbleRevert(returndata);\n } else {\n revert Errors.FailedCall();\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts/utils/Context.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n\n function _contextSuffixLength() internal view virtual returns (uint256) {\n return 0;\n }\n}\n"
+ },
+ "@openzeppelin/contracts/utils/Errors.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Collection of common custom errors used in multiple contracts\n *\n * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.\n * It is recommended to avoid relying on the error API for critical functionality.\n *\n * _Available since v5.1._\n */\nlibrary Errors {\n /**\n * @dev The ETH balance of the account is not enough to perform the operation.\n */\n error InsufficientBalance(uint256 balance, uint256 needed);\n\n /**\n * @dev A call to an address target failed. The target may have reverted.\n */\n error FailedCall();\n\n /**\n * @dev The deployment failed.\n */\n error FailedDeployment();\n\n /**\n * @dev A necessary precompile is missing.\n */\n error MissingPrecompile(address);\n}\n"
+ },
+ "@openzeppelin/contracts/utils/LowLevelCall.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/LowLevelCall.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Library of low level call functions that implement different calling strategies to deal with the return data.\n *\n * WARNING: Using this library requires an advanced understanding of Solidity and how the EVM works. It is recommended\n * to use the {Address} library instead.\n */\nlibrary LowLevelCall {\n /// @dev Performs a Solidity function call using a low level `call` and ignoring the return data.\n function callNoReturn(address target, bytes memory data) internal returns (bool success) {\n return callNoReturn(target, 0, data);\n }\n\n /// @dev Same as {callNoReturn}, but allows to specify the value to be sent in the call.\n function callNoReturn(address target, uint256 value, bytes memory data) internal returns (bool success) {\n assembly (\"memory-safe\") {\n success := call(gas(), target, value, add(data, 0x20), mload(data), 0x00, 0x00)\n }\n }\n\n /// @dev Performs a Solidity function call using a low level `call` and returns the first 64 bytes of the result\n /// in the scratch space of memory. Useful for functions that return a tuple of single-word values.\n ///\n /// WARNING: Do not assume that the results are zero if `success` is false. Memory can be already allocated\n /// and this function doesn't zero it out.\n function callReturn64Bytes(\n address target,\n bytes memory data\n ) internal returns (bool success, bytes32 result1, bytes32 result2) {\n return callReturn64Bytes(target, 0, data);\n }\n\n /// @dev Same as {callReturnBytes32Pair}, but allows to specify the value to be sent in the call.\n function callReturn64Bytes(\n address target,\n uint256 value,\n bytes memory data\n ) internal returns (bool success, bytes32 result1, bytes32 result2) {\n assembly (\"memory-safe\") {\n success := call(gas(), target, value, add(data, 0x20), mload(data), 0x00, 0x40)\n result1 := mload(0x00)\n result2 := mload(0x20)\n }\n }\n\n /// @dev Performs a Solidity function call using a low level `staticcall` and ignoring the return data.\n function staticcallNoReturn(address target, bytes memory data) internal view returns (bool success) {\n assembly (\"memory-safe\") {\n success := staticcall(gas(), target, add(data, 0x20), mload(data), 0x00, 0x00)\n }\n }\n\n /// @dev Performs a Solidity function call using a low level `staticcall` and returns the first 64 bytes of the result\n /// in the scratch space of memory. Useful for functions that return a tuple of single-word values.\n ///\n /// WARNING: Do not assume that the results are zero if `success` is false. Memory can be already allocated\n /// and this function doesn't zero it out.\n function staticcallReturn64Bytes(\n address target,\n bytes memory data\n ) internal view returns (bool success, bytes32 result1, bytes32 result2) {\n assembly (\"memory-safe\") {\n success := staticcall(gas(), target, add(data, 0x20), mload(data), 0x00, 0x40)\n result1 := mload(0x00)\n result2 := mload(0x20)\n }\n }\n\n /// @dev Performs a Solidity function call using a low level `delegatecall` and ignoring the return data.\n function delegatecallNoReturn(address target, bytes memory data) internal returns (bool success) {\n assembly (\"memory-safe\") {\n success := delegatecall(gas(), target, add(data, 0x20), mload(data), 0x00, 0x00)\n }\n }\n\n /// @dev Performs a Solidity function call using a low level `delegatecall` and returns the first 64 bytes of the result\n /// in the scratch space of memory. Useful for functions that return a tuple of single-word values.\n ///\n /// WARNING: Do not assume that the results are zero if `success` is false. Memory can be already allocated\n /// and this function doesn't zero it out.\n function delegatecallReturn64Bytes(\n address target,\n bytes memory data\n ) internal returns (bool success, bytes32 result1, bytes32 result2) {\n assembly (\"memory-safe\") {\n success := delegatecall(gas(), target, add(data, 0x20), mload(data), 0x00, 0x40)\n result1 := mload(0x00)\n result2 := mload(0x20)\n }\n }\n\n /// @dev Returns the size of the return data buffer.\n function returnDataSize() internal pure returns (uint256 size) {\n assembly (\"memory-safe\") {\n size := returndatasize()\n }\n }\n\n /// @dev Returns a buffer containing the return data from the last call.\n function returnData() internal pure returns (bytes memory result) {\n assembly (\"memory-safe\") {\n result := mload(0x40)\n mstore(result, returndatasize())\n returndatacopy(add(result, 0x20), 0x00, returndatasize())\n mstore(0x40, add(result, add(0x20, returndatasize())))\n }\n }\n\n /// @dev Revert with the return data from the last call.\n function bubbleRevert() internal pure {\n assembly (\"memory-safe\") {\n let fmp := mload(0x40)\n returndatacopy(fmp, 0x00, returndatasize())\n revert(fmp, returndatasize())\n }\n }\n\n function bubbleRevert(bytes memory returndata) internal pure {\n assembly (\"memory-safe\") {\n revert(add(returndata, 0x20), mload(returndata))\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts/utils/StorageSlot.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol)\n// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Library for reading and writing primitive types to specific storage slots.\n *\n * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n * This library helps with reading and writing to such slots without the need for inline assembly.\n *\n * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n *\n * Example usage to set ERC-1967 implementation slot:\n * ```solidity\n * contract ERC1967 {\n * // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.\n * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n *\n * function _getImplementation() internal view returns (address) {\n * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n * }\n *\n * function _setImplementation(address newImplementation) internal {\n * require(newImplementation.code.length > 0);\n * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n * }\n * }\n * ```\n *\n * TIP: Consider using this library along with {SlotDerivation}.\n */\nlibrary StorageSlot {\n struct AddressSlot {\n address value;\n }\n\n struct BooleanSlot {\n bool value;\n }\n\n struct Bytes32Slot {\n bytes32 value;\n }\n\n struct Uint256Slot {\n uint256 value;\n }\n\n struct Int256Slot {\n int256 value;\n }\n\n struct StringSlot {\n string value;\n }\n\n struct BytesSlot {\n bytes value;\n }\n\n /**\n * @dev Returns an `AddressSlot` with member `value` located at `slot`.\n */\n function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `BooleanSlot` with member `value` located at `slot`.\n */\n function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `Bytes32Slot` with member `value` located at `slot`.\n */\n function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `Uint256Slot` with member `value` located at `slot`.\n */\n function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `Int256Slot` with member `value` located at `slot`.\n */\n function getInt256Slot(bytes32 slot) internal pure returns (Int256Slot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `StringSlot` with member `value` located at `slot`.\n */\n function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `StringSlot` representation of the string storage pointer `store`.\n */\n function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := store.slot\n }\n }\n\n /**\n * @dev Returns a `BytesSlot` with member `value` located at `slot`.\n */\n function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.\n */\n function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := store.slot\n }\n }\n}\n"
+ },
+ "contracts/erc7683/ERC7683.sol": {
+ "content": "// SPDX-License-Identifier: GPL-3.0-or-later\npragma solidity ^0.8.0;\n\n/// @title GaslessCrossChainOrder CrossChainOrder type\n/// @notice Standard order struct to be signed by users, disseminated to fillers, and submitted to origin settler contracts\nstruct GaslessCrossChainOrder {\n /// @dev The contract address that the order is meant to be settled by.\n /// Fillers send this order to this contract address on the origin chain\n address originSettler;\n /// @dev The address of the user who is initiating the swap,\n /// whose input tokens will be taken and escrowed\n address user;\n /// @dev Nonce to be used as replay protection for the order\n uint256 nonce;\n /// @dev The chainId of the origin chain\n uint256 originChainId;\n /// @dev The timestamp by which the order must be opened\n uint32 openDeadline;\n /// @dev The timestamp by which the order must be filled on the destination chain\n uint32 fillDeadline;\n /// @dev Type identifier for the order data. This is an EIP-712 typehash.\n bytes32 orderDataType;\n /// @dev Arbitrary implementation-specific data\n /// Can be used to define tokens, amounts, destination chains, fees, settlement parameters,\n /// or any other order-type specific information\n bytes orderData;\n}\n\n/// @title OnchainCrossChainOrder CrossChainOrder type\n/// @notice Standard order struct for user-opened orders, where the user is the msg.sender.\nstruct OnchainCrossChainOrder {\n /// @dev The timestamp by which the order must be filled on the destination chain\n uint32 fillDeadline;\n /// @dev Type identifier for the order data. This is an EIP-712 typehash.\n bytes32 orderDataType;\n /// @dev Arbitrary implementation-specific data\n /// Can be used to define tokens, amounts, destination chains, fees, settlement parameters,\n /// or any other order-type specific information\n bytes orderData;\n}\n\n/// @title ResolvedCrossChainOrder type\n/// @notice An implementation-generic representation of an order intended for filler consumption\n/// @dev Defines all requirements for filling an order by unbundling the implementation-specific orderData.\n/// @dev Intended to improve integration generalization by allowing fillers to compute the exact input and output information of any order\nstruct ResolvedCrossChainOrder {\n /// @dev The address of the user who is initiating the transfer\n address user;\n /// @dev The chainId of the origin chain\n uint256 originChainId;\n /// @dev The timestamp by which the order must be opened\n uint32 openDeadline;\n /// @dev The timestamp by which the order must be filled on the destination chain(s)\n uint32 fillDeadline;\n /// @dev The unique identifier for this order within this settlement system\n bytes32 orderId;\n /// @dev The max outputs that the filler will send. It's possible the actual amount depends on the state of the destination\n /// chain (destination dutch auction, for instance), so these outputs should be considered a cap on filler liabilities.\n Output[] maxSpent;\n /// @dev The minimum outputs that must to be given to the filler as part of order settlement. Similar to maxSpent, it's possible\n /// that special order types may not be able to guarantee the exact amount at open time, so this should be considered\n /// a floor on filler receipts.\n Output[] minReceived;\n /// @dev Each instruction in this array is parameterizes a single leg of the fill. This provides the filler with the information\n /// necessary to perform the fill on the destination(s).\n FillInstruction[] fillInstructions;\n}\n\n/// @notice Tokens that must be receive for a valid order fulfillment\nstruct Output {\n /// @dev The address of the ERC20 token on the destination chain\n /// @dev address(0) used as a sentinel for the native token\n bytes32 token;\n /// @dev The amount of the token to be sent\n uint256 amount;\n /// @dev The address to receive the output tokens\n bytes32 recipient;\n /// @dev The destination chain for this output\n uint256 chainId;\n}\n\n/// @title FillInstruction type\n/// @notice Instructions to parameterize each leg of the fill\n/// @dev Provides all the origin-generated information required to produce a valid fill leg\nstruct FillInstruction {\n /// @dev The contract address that the order is meant to be settled by\n uint64 destinationChainId;\n /// @dev The contract address that the order is meant to be filled on\n bytes32 destinationSettler;\n /// @dev The data generated on the origin chain needed by the destinationSettler to process the fill\n bytes originData;\n}\n\n/// @title IOriginSettler\n/// @notice Standard interface for settlement contracts on the origin chain\ninterface IOriginSettler {\n /// @notice Signals that an order has been opened\n /// @param orderId a unique order identifier within this settlement system\n /// @param resolvedOrder resolved order that would be returned by resolve if called instead of Open\n event Open(bytes32 indexed orderId, ResolvedCrossChainOrder resolvedOrder);\n\n /// @notice Opens a gasless cross-chain order on behalf of a user.\n /// @dev To be called by the filler.\n /// @dev This method must emit the Open event\n /// @param order The GaslessCrossChainOrder definition\n /// @param signature The user's signature over the order\n /// @param originFillerData Any filler-defined data required by the settler\n function openFor(\n GaslessCrossChainOrder calldata order,\n bytes calldata signature,\n bytes calldata originFillerData\n ) external;\n\n /// @notice Opens a cross-chain order\n /// @dev To be called by the user\n /// @dev This method must emit the Open event\n /// @param order The OnchainCrossChainOrder definition\n function open(OnchainCrossChainOrder calldata order) external;\n\n /// @notice Resolves a specific GaslessCrossChainOrder into a generic ResolvedCrossChainOrder\n /// @dev Intended to improve standardized integration of various order types and settlement contracts\n /// @param order The GaslessCrossChainOrder definition\n /// @param originFillerData Any filler-defined data required by the settler\n /// @return ResolvedCrossChainOrder hydrated order data including the inputs and outputs of the order\n function resolveFor(GaslessCrossChainOrder calldata order, bytes calldata originFillerData)\n external\n view\n returns (ResolvedCrossChainOrder memory);\n\n /// @notice Resolves a specific OnchainCrossChainOrder into a generic ResolvedCrossChainOrder\n /// @dev Intended to improve standardized integration of various order types and settlement contracts\n /// @param order The OnchainCrossChainOrder definition\n /// @return ResolvedCrossChainOrder hydrated order data including the inputs and outputs of the order\n function resolve(OnchainCrossChainOrder calldata order) external view returns (ResolvedCrossChainOrder memory);\n}\n\n/// @title IDestinationSettler\n/// @notice Standard interface for settlement contracts on the destination chain\ninterface IDestinationSettler {\n /// @notice Fills a single leg of a particular order on the destination chain\n /// @param orderId Unique order identifier for this order\n /// @param originData Data emitted on the origin to parameterize the fill\n /// @param fillerData Data provided by the filler to inform the fill or express their preferences\n function fill(\n bytes32 orderId,\n bytes calldata originData,\n bytes calldata fillerData\n ) external;\n}\n"
+ },
+ "contracts/erc7683/ERC7683Permit2Lib.sol": {
+ "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.0;\n\nimport \"../external/interfaces/IPermit2.sol\";\nimport { GaslessCrossChainOrder } from \"./ERC7683.sol\";\n\n// Data unique to every CrossChainOrder settled on Across\nstruct AcrossOrderData {\n address inputToken;\n uint256 inputAmount;\n address outputToken;\n uint256 outputAmount;\n uint256 destinationChainId;\n bytes32 recipient;\n address exclusiveRelayer;\n /// @notice User needs to be careful not to re-use a deposit nonce when depositing into Across otherwise the\n /// user risks their deposit being unfillable. See @across/contracts/SpokePool.sol#unsafeDeposit() for\n /// more details on this situation.\n uint256 depositNonce;\n uint32 exclusivityPeriod;\n bytes message;\n}\n\nstruct AcrossOriginFillerData {\n address exclusiveRelayer;\n}\n\nstruct AcrossDestinationFillerData {\n uint256 repaymentChainId;\n}\n\nbytes constant ACROSS_ORDER_DATA_TYPE = abi.encodePacked(\n \"AcrossOrderData(\",\n \"address inputToken,\",\n \"uint256 inputAmount,\",\n \"address outputToken,\",\n \"uint256 outputAmount,\",\n \"uint256 destinationChainId,\",\n \"bytes32 recipient,\",\n \"address exclusiveRelayer,\"\n \"uint256 depositNonce,\",\n \"uint32 exclusivityPeriod,\",\n \"bytes message)\"\n);\n\nbytes32 constant ACROSS_ORDER_DATA_TYPE_HASH = keccak256(ACROSS_ORDER_DATA_TYPE);\n\n/**\n * @notice ERC7683Permit2Lib knows how to process a particular type of external Permit2Order so that it can be used in Across.\n * @dev This library is responsible for definining the ERC712 type strings/hashes and performing hashes on the types.\n * @custom:security-contact bugs@across.to\n */\nlibrary ERC7683Permit2Lib {\n bytes internal constant GASLESS_CROSS_CHAIN_ORDER_TYPE =\n abi.encodePacked(\n \"GaslessCrossChainOrder(\",\n \"address originSettler,\",\n \"address user,\",\n \"uint256 nonce,\",\n \"uint256 originChainId,\",\n \"uint32 openDeadline,\",\n \"uint32 fillDeadline,\",\n \"bytes32 orderDataType,\",\n \"AcrossOrderData orderData)\"\n );\n\n bytes internal constant GASLESS_CROSS_CHAIN_ORDER_EIP712_TYPE =\n abi.encodePacked(GASLESS_CROSS_CHAIN_ORDER_TYPE, ACROSS_ORDER_DATA_TYPE);\n bytes32 internal constant GASLESS_CROSS_CHAIN_ORDER_TYPE_HASH = keccak256(GASLESS_CROSS_CHAIN_ORDER_EIP712_TYPE);\n\n string private constant TOKEN_PERMISSIONS_TYPE = \"TokenPermissions(address token,uint256 amount)\";\n string internal constant PERMIT2_ORDER_TYPE =\n string(\n abi.encodePacked(\n \"GaslessCrossChainOrder witness)\",\n ACROSS_ORDER_DATA_TYPE,\n GASLESS_CROSS_CHAIN_ORDER_TYPE,\n TOKEN_PERMISSIONS_TYPE\n )\n );\n\n // Hashes an order to get an order hash. Needed for permit2.\n function hashOrder(GaslessCrossChainOrder memory order, bytes32 orderDataHash) internal pure returns (bytes32) {\n return\n keccak256(\n abi.encode(\n GASLESS_CROSS_CHAIN_ORDER_TYPE_HASH,\n order.originSettler,\n order.user,\n order.nonce,\n order.originChainId,\n order.openDeadline,\n order.fillDeadline,\n order.orderDataType,\n orderDataHash\n )\n );\n }\n\n function hashOrderData(AcrossOrderData memory orderData) internal pure returns (bytes32) {\n return\n keccak256(\n abi.encode(\n ACROSS_ORDER_DATA_TYPE_HASH,\n orderData.inputToken,\n orderData.inputAmount,\n orderData.outputToken,\n orderData.outputAmount,\n orderData.destinationChainId,\n orderData.recipient,\n orderData.exclusiveRelayer,\n orderData.depositNonce,\n orderData.exclusivityPeriod,\n keccak256(orderData.message)\n )\n );\n }\n}\n"
+ },
+ "contracts/external/interfaces/CCTPInterfaces.sol": {
+ "content": "/**\n * Copyright (C) 2015, 2016, 2017 Dapphub\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see .\n */\n\n// SPDX-License-Identifier: GPL-3.0-or-later\npragma solidity ^0.8.0;\n\n/**\n * Imported as-is from commit 139d8d0ce3b5531d3c7ec284f89d946dfb720016 of:\n * * https://github.com/walkerq/evm-cctp-contracts/blob/139d8d0ce3b5531d3c7ec284f89d946dfb720016/src/TokenMessenger.sol\n * Changes applied post-import:\n * * Removed a majority of code from this contract and converted the needed function signatures in this interface.\n */\ninterface ITokenMessenger {\n /**\n * @notice Deposits and burns tokens from sender to be minted on destination domain.\n * Emits a `DepositForBurn` event.\n * @dev reverts if:\n * - given burnToken is not supported\n * - given destinationDomain has no TokenMessenger registered\n * - transferFrom() reverts. For example, if sender's burnToken balance or approved allowance\n * to this contract is less than `amount`.\n * - burn() reverts. For example, if `amount` is 0.\n * - MessageTransmitter returns false or reverts.\n * @param amount amount of tokens to burn\n * @param destinationDomain destination domain\n * @param mintRecipient address of mint recipient on destination domain\n * @param burnToken address of contract to burn deposited tokens, on local domain\n * @return _nonce unique nonce reserved by message\n */\n function depositForBurn(\n uint256 amount,\n uint32 destinationDomain,\n bytes32 mintRecipient,\n address burnToken\n ) external returns (uint64 _nonce);\n\n /**\n * @notice Minter responsible for minting and burning tokens on the local domain\n * @dev A TokenMessenger stores a TokenMinter contract which extends the TokenController contract.\n * https://github.com/circlefin/evm-cctp-contracts/blob/817397db0a12963accc08ff86065491577bbc0e5/src/TokenMessenger.sol#L110\n * @return minter Token Minter contract.\n */\n function localMinter() external view returns (ITokenMinter minter);\n}\n\n// Source: https://github.com/circlefin/evm-cctp-contracts/blob/63ab1f0ac06ce0793c0bbfbb8d09816bc211386d/src/v2/TokenMessengerV2.sol#L138C1-L166C15\ninterface ITokenMessengerV2 {\n /**\n * @notice Deposits and burns tokens from sender to be minted on destination domain.\n * Emits a `DepositForBurn` event.\n * @dev reverts if:\n * - given burnToken is not supported\n * - given destinationDomain has no TokenMessenger registered\n * - transferFrom() reverts. For example, if sender's burnToken balance or approved allowance\n * to this contract is less than `amount`.\n * - burn() reverts. For example, if `amount` is 0.\n * - maxFee is greater than or equal to `amount`.\n * - MessageTransmitterV2#sendMessage reverts.\n * @param amount amount of tokens to burn\n * @param destinationDomain destination domain to receive message on\n * @param mintRecipient address of mint recipient on destination domain\n * @param burnToken token to burn `amount` of, on local domain\n * @param destinationCaller authorized caller on the destination domain, as bytes32. If equal to bytes32(0),\n * any address can broadcast the message.\n * @param maxFee maximum fee to pay on the destination domain, specified in units of burnToken\n * @param minFinalityThreshold the minimum finality at which a burn message will be attested to.\n */\n function depositForBurn(\n uint256 amount,\n uint32 destinationDomain,\n bytes32 mintRecipient,\n address burnToken,\n bytes32 destinationCaller,\n uint256 maxFee,\n uint32 minFinalityThreshold\n ) external;\n}\n\n/**\n * A TokenMessenger stores a TokenMinter contract which extends the TokenController contract. The TokenController\n * contract has a burnLimitsPerMessage public mapping which can be queried to find the per-message burn limit\n * for a given token:\n * https://github.com/circlefin/evm-cctp-contracts/blob/817397db0a12963accc08ff86065491577bbc0e5/src/TokenMinter.sol#L33\n * https://github.com/circlefin/evm-cctp-contracts/blob/817397db0a12963accc08ff86065491577bbc0e5/src/roles/TokenController.sol#L69C40-L69C60\n *\n */\ninterface ITokenMinter {\n /**\n * @notice Supported burnable tokens on the local domain\n * local token (address) => maximum burn amounts per message\n * @param token address of token contract\n * @return burnLimit maximum burn amount per message for token\n */\n function burnLimitsPerMessage(address token) external view returns (uint256);\n}\n\n/**\n * IMessageTransmitter in CCTP inherits IRelayer and IReceiver, but here we only import sendMessage from IRelayer:\n * https://github.com/circlefin/evm-cctp-contracts/blob/377c9bd813fb86a42d900ae4003599d82aef635a/src/interfaces/IMessageTransmitter.sol#L25\n * https://github.com/circlefin/evm-cctp-contracts/blob/377c9bd813fb86a42d900ae4003599d82aef635a/src/interfaces/IRelayer.sol#L23-L35\n */\ninterface IMessageTransmitter {\n /**\n * @notice Sends an outgoing message from the source domain.\n * @dev Increment nonce, format the message, and emit `MessageSent` event with message information.\n * @param destinationDomain Domain of destination chain\n * @param recipient Address of message recipient on destination domain as bytes32\n * @param messageBody Raw bytes content of message\n * @return nonce reserved by message\n */\n function sendMessage(\n uint32 destinationDomain,\n bytes32 recipient,\n bytes calldata messageBody\n ) external returns (uint64);\n}\n"
+ },
+ "contracts/external/interfaces/IERC20Auth.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\n/*\n * @notice Minimal interface for an EIP-3009 compliant token.\n * https://eips.ethereum.org/EIPS/eip-3009\n */\ninterface IERC20Auth {\n /**\n * @notice Receive a transfer with a signed authorization from the payer\n * @dev This has an additional check to ensure that the payee's address matches\n * the caller of this function to prevent front-running attacks. (See security\n * considerations)\n * @param from Payer's address (Authorizer)\n * @param to Payee's address\n * @param value Amount to be transferred\n * @param validAfter The time after which this is valid (unix time)\n * @param validBefore The time before which this is valid (unix time)\n * @param nonce Unique nonce\n * @param v v of the signature\n * @param r r of the signature\n * @param s s of the signature\n */\n function receiveWithAuthorization(\n address from,\n address to,\n uint256 value,\n uint256 validAfter,\n uint256 validBefore,\n bytes32 nonce,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) external;\n}\n"
+ },
+ "contracts/external/interfaces/IPermit2.sol": {
+ "content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ninterface IPermit2 {\n struct PermitDetails {\n address token;\n uint160 amount;\n uint48 expiration;\n uint48 nonce;\n }\n\n struct PermitSingle {\n PermitDetails details;\n address spender;\n uint256 sigDeadline;\n }\n\n struct TokenPermissions {\n address token;\n uint256 amount;\n }\n\n struct PermitTransferFrom {\n TokenPermissions permitted;\n uint256 nonce;\n uint256 deadline;\n }\n\n struct SignatureTransferDetails {\n address to;\n uint256 requestedAmount;\n }\n\n function permit(address owner, PermitSingle memory permitSingle, bytes calldata signature) external;\n\n function permitWitnessTransferFrom(\n PermitTransferFrom memory permit,\n SignatureTransferDetails calldata transferDetails,\n address owner,\n bytes32 witness,\n string calldata witnessTypeString,\n bytes calldata signature\n ) external;\n\n function transferFrom(address from, address to, uint160 amount, address token) external;\n}\n"
+ },
+ "contracts/external/interfaces/WETH9Interface.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\n/**\n * @notice Interface for the WETH9 contract.\n */\ninterface WETH9Interface {\n /**\n * @notice Burn Wrapped Ether and receive native Ether.\n * @param wad Amount of WETH to unwrap and send to caller.\n */\n function withdraw(uint256 wad) external;\n\n /**\n * @notice Lock native Ether and mint Wrapped Ether ERC20\n * @dev msg.value is amount of Wrapped Ether to mint/Ether to lock.\n */\n function deposit() external payable;\n\n /**\n * @notice Get balance of WETH held by `guy`.\n * @param guy Address to get balance of.\n * @return wad Amount of WETH held by `guy`.\n */\n function balanceOf(address guy) external view returns (uint256 wad);\n\n /**\n * @notice Transfer `wad` of WETH from caller to `guy`.\n * @param guy Address to send WETH to.\n * @param wad Amount of WETH to send.\n * @return ok True if transfer succeeded.\n */\n function transfer(address guy, uint256 wad) external returns (bool);\n}\n"
+ },
+ "contracts/external/uma/core/contracts/common/implementation/MultiCaller.sol": {
+ "content": "// SPDX-License-Identifier: AGPL-3.0-only\npragma solidity ^0.8.0;\n\n// This contract is taken from Uniswap's multi call implementation (https://github.com/Uniswap/uniswap-v3-periphery/blob/main/contracts/base/Multicall.sol)\n// and was modified to be solidity 0.8 compatible. Additionally, the method was restricted to only work with msg.value\n// set to 0 to avoid any nasty attack vectors on function calls that use value sent with deposits.\n\n/// @title MultiCaller\n/// @notice Enables calling multiple methods in a single call to the contract\ncontract MultiCaller {\n function multicall(bytes[] calldata data) external returns (bytes[] memory results) {\n results = new bytes[](data.length);\n for (uint256 i = 0; i < data.length; i++) {\n (bool success, bytes memory result) = address(this).delegatecall(data[i]);\n\n if (!success) {\n // Next 5 lines from https://ethereum.stackexchange.com/a/83577\n if (result.length < 68) revert();\n assembly {\n result := add(result, 0x04)\n }\n revert(abi.decode(result, (string)));\n }\n\n results[i] = result;\n }\n }\n}\n"
+ },
+ "contracts/handlers/MulticallHandler.sol": {
+ "content": "// SPDX-License-Identifier: GPL-3.0-only\npragma solidity ^0.8.0;\n\nimport \"../interfaces/SpokePoolMessageHandler.sol\";\nimport \"@openzeppelin/contracts-v4/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts-v4/token/ERC20/utils/SafeERC20.sol\";\nimport \"@openzeppelin/contracts-v4/utils/Address.sol\";\nimport \"@openzeppelin/contracts-v4/security/ReentrancyGuard.sol\";\n\n/**\n * @title Across Multicall contract that allows a user to specify a series of calls that should be made by the handler\n * via the message field in the deposit.\n * @dev This contract makes the calls blindly. The contract will send any remaining tokens The caller should ensure that the tokens recieved by the handler are completely consumed.\n */\ncontract MulticallHandler is AcrossMessageHandler, ReentrancyGuard {\n using SafeERC20 for IERC20;\n using Address for address payable;\n\n struct Call {\n address target;\n bytes callData;\n uint256 value;\n }\n\n struct Replacement {\n address token;\n uint256 offset;\n }\n\n struct Instructions {\n // Calls that will be attempted.\n Call[] calls;\n // Where the tokens go if any part of the call fails.\n // Leftover tokens are sent here as well if the action succeeds.\n address fallbackRecipient;\n }\n\n // Emitted when one of the calls fails. Note: all calls are reverted in this case.\n event CallsFailed(Call[] calls, address indexed fallbackRecipient);\n\n // Emitted when there are leftover tokens that are sent to the fallbackRecipient.\n event DrainedTokens(address indexed recipient, address indexed token, uint256 indexed amount);\n\n // Errors\n error CallReverted(uint256 index, Call[] calls);\n error NotSelf();\n error InvalidCall(uint256 index, Call[] calls);\n error ReplacementCallFailed(bytes callData);\n error CalldataTooShort(uint256 callDataLength, uint256 offset);\n\n modifier onlySelf() {\n _requireSelf();\n _;\n }\n\n /**\n * @notice Main entrypoint for the handler called by the SpokePool contract.\n * @dev This will execute all calls encoded in the msg. The caller is responsible for making sure all tokens are\n * drained from this contract by the end of the series of calls. If not, they can be stolen.\n * A drainLeftoverTokens call can be included as a way to drain any remaining tokens from this contract.\n * @param message abi encoded array of Call structs, containing a target, callData, and value for each call that\n * the contract should make.\n */\n function handleV3AcrossMessage(address token, uint256, address, bytes memory message) external nonReentrant {\n Instructions memory instructions = abi.decode(message, (Instructions));\n\n // If there is no fallback recipient, call and revert if the inner call fails.\n if (instructions.fallbackRecipient == address(0)) {\n this.attemptCalls(instructions.calls);\n return;\n }\n\n // Otherwise, try the call and send to the fallback recipient if any tokens are leftover.\n (bool success, ) = address(this).call(abi.encodeCall(this.attemptCalls, (instructions.calls)));\n if (!success) emit CallsFailed(instructions.calls, instructions.fallbackRecipient);\n\n // If there are leftover tokens, send them to the fallback recipient regardless of execution success.\n _drainRemainingTokens(token, payable(instructions.fallbackRecipient));\n }\n\n function attemptCalls(Call[] memory calls) external onlySelf {\n uint256 length = calls.length;\n for (uint256 i = 0; i < length; ++i) {\n Call memory call = calls[i];\n\n // If we are calling an EOA with calldata, assume target was incorrectly specified and revert.\n if (call.callData.length > 0 && call.target.code.length == 0) {\n revert InvalidCall(i, calls);\n }\n\n (bool success, ) = call.target.call{ value: call.value }(call.callData);\n if (!success) revert CallReverted(i, calls);\n }\n }\n\n function drainLeftoverTokens(address token, address payable destination) external onlySelf {\n _drainRemainingTokens(token, destination);\n }\n\n function _drainRemainingTokens(address token, address payable destination) internal {\n if (token != address(0)) {\n // ERC20 token.\n uint256 amount = IERC20(token).balanceOf(address(this));\n if (amount > 0) {\n IERC20(token).safeTransfer(destination, amount);\n emit DrainedTokens(destination, token, amount);\n }\n } else {\n // Send native token\n uint256 amount = address(this).balance;\n if (amount > 0) {\n destination.sendValue(amount);\n }\n }\n }\n\n /**\n * @notice Executes a call while replacing specified calldata offsets with current token/native balances.\n * @dev Modifies calldata in-place using OR operations. Target calldata positions must be zeroed out.\n * Cannot handle negative balances, making it incompatible with DEXs requiring negative input amounts.\n * For native balance (token = address(0)), the entire balance is used as call value.\n * @param target The contract address to call\n * @param callData The calldata to execute, with zero values at replacement positions\n * @param value The native token value to send (ignored if native balance replacement is used)\n * @param replacement Array of Replacement structs specifying token addresses and byte offsets for balance injection\n */\n function makeCallWithBalance(\n address target,\n bytes memory callData,\n uint256 value,\n Replacement[] calldata replacement\n ) external onlySelf {\n for (uint256 i = 0; i < replacement.length; i++) {\n uint256 bal = 0;\n if (replacement[i].token != address(0)) {\n bal = IERC20(replacement[i].token).balanceOf(address(this));\n } else {\n bal = address(this).balance;\n\n // If we're using the native balance, we assume that the caller wants to send the full value to the target.\n value = bal;\n }\n\n // + 32 to skip the length of the calldata\n uint256 offset = replacement[i].offset + 32;\n\n // 32 has already been added to the offset, and the replacement value is 32 bytes long, so\n // we don't need to add 32 here. We just directly compare the offset with the length of the calldata.\n if (offset > callData.length) revert CalldataTooShort(callData.length, offset);\n\n assembly (\"memory-safe\") {\n // Get the pointer to the offset that the caller wants to overwrite.\n let ptr := add(callData, offset)\n // Get the current value at the offset.\n let current := mload(ptr)\n // Or the current value with the new value.\n // Reasoning:\n // - caller should 0-out any portion that they want overwritten.\n // - if the caller is representing the balance in a smaller integer, like a uint160 or uint128,\n // the higher bits will be 0 and not overwrite any other data in the calldata assuming\n // the balance is small enough to fit in the smaller integer.\n // - The catch: the smaller integer where they want to store the balance must end no\n // earlier than the 32nd byte in their calldata. Otherwise, this would require a\n // negative offset, which is not possible.\n let val := or(bal, current)\n // Store the new value at the offset.\n mstore(ptr, val)\n }\n }\n\n (bool success, ) = target.call{ value: value }(callData);\n if (!success) revert ReplacementCallFailed(callData);\n }\n\n function _requireSelf() internal view {\n // Must be called by this contract to ensure that this cannot be triggered without the explicit consent of the\n // depositor (for a valid relay).\n if (msg.sender != address(this)) revert NotSelf();\n }\n\n // Used if the caller is trying to unwrap the native token to this contract.\n receive() external payable {}\n}\n"
+ },
+ "contracts/interfaces/HubPoolInterface.sol": {
+ "content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\nimport \"@openzeppelin/contracts-v4/token/ERC20/IERC20.sol\";\n\n/**\n * @notice Concise list of functions in HubPool implementation.\n */\ninterface HubPoolInterface {\n // This leaf is meant to be decoded in the HubPool to rebalance tokens between HubPool and SpokePool.\n struct PoolRebalanceLeaf {\n // This is used to know which chain to send cross-chain transactions to (and which SpokePool to send to).\n uint256 chainId;\n // Total LP fee amount per token in this bundle, encompassing all associated bundled relays.\n uint256[] bundleLpFees;\n // Represents the amount to push to or pull from the SpokePool. If +, the pool pays the SpokePool. If negative\n // the SpokePool pays the HubPool. There can be arbitrarily complex rebalancing rules defined offchain. This\n // number is only nonzero when the rules indicate that a rebalancing action should occur. When a rebalance does\n // occur, runningBalances must be set to zero for this token and netSendAmounts should be set to the previous\n // runningBalances + relays - deposits in this bundle. If non-zero then it must be set on the SpokePool's\n // RelayerRefundLeaf amountToReturn as -1 * this value to show if funds are being sent from or to the SpokePool.\n int256[] netSendAmounts;\n // This is only here to be emitted in an event to track a running unpaid balance between the L2 pool and the L1\n // pool. A positive number indicates that the HubPool owes the SpokePool funds. A negative number indicates that\n // the SpokePool owes the HubPool funds. See the comment above for the dynamics of this and netSendAmounts.\n int256[] runningBalances;\n // Used by data worker to mark which leaves should relay roots to SpokePools, and to otherwise organize leaves.\n // For example, each leaf should contain all the rebalance information for a single chain, but in the case where\n // the list of l1Tokens is very large such that they all can't fit into a single leaf that can be executed under\n // the block gas limit, then the data worker can use this groupIndex to organize them. Any leaves with\n // a groupIndex equal to 0 will relay roots to the SpokePool, so the data worker should ensure that only one\n // leaf for a specific chainId should have a groupIndex equal to 0.\n uint256 groupIndex;\n // Used as the index in the bitmap to track whether this leaf has been executed or not.\n uint8 leafId;\n // The bundleLpFees, netSendAmounts, and runningBalances are required to be the same length. They are parallel\n // arrays for the given chainId and should be ordered by the l1Tokens field. All whitelisted tokens with nonzero\n // relays on this chain in this bundle in the order of whitelisting.\n address[] l1Tokens;\n }\n\n // A data worker can optimistically store several merkle roots on this contract by staking a bond and calling\n // proposeRootBundle. By staking a bond, the data worker is alleging that the merkle roots all contain valid leaves\n // that can be executed later to:\n // - Send funds from this contract to a SpokePool or vice versa\n // - Send funds from a SpokePool to Relayer as a refund for a relayed deposit\n // - Send funds from a SpokePool to a deposit recipient to fulfill a \"slow\" relay\n // Anyone can dispute this struct if the merkle roots contain invalid leaves before the\n // challengePeriodEndTimestamp. Once the expiration timestamp is passed, executeRootBundle to execute a leaf\n // from the poolRebalanceRoot on this contract and it will simultaneously publish the relayerRefundRoot and\n // slowRelayRoot to a SpokePool. The latter two roots, once published to the SpokePool, contain\n // leaves that can be executed on the SpokePool to pay relayers or recipients.\n struct RootBundle {\n // Contains leaves instructing this contract to send funds to SpokePools.\n bytes32 poolRebalanceRoot;\n // Relayer refund merkle root to be published to a SpokePool.\n bytes32 relayerRefundRoot;\n // Slow relay merkle root to be published to a SpokePool.\n bytes32 slowRelayRoot;\n // This is a 1D bitmap, with max size of 256 elements, limiting us to 256 chainsIds.\n uint256 claimedBitMap;\n // Proposer of this root bundle.\n address proposer;\n // Number of pool rebalance leaves to execute in the poolRebalanceRoot. After this number\n // of leaves are executed, a new root bundle can be proposed\n uint8 unclaimedPoolRebalanceLeafCount;\n // When root bundle challenge period passes and this root bundle becomes executable.\n uint32 challengePeriodEndTimestamp;\n }\n\n // Each whitelisted L1 token has an associated pooledToken struct that contains all information used to track the\n // cumulative LP positions and if this token is enabled for deposits.\n struct PooledToken {\n // LP token given to LPs of a specific L1 token.\n address lpToken;\n // True if accepting new LP's.\n bool isEnabled;\n // Timestamp of last LP fee update.\n uint32 lastLpFeeUpdate;\n // Number of LP funds sent via pool rebalances to SpokePools and are expected to be sent\n // back later.\n int256 utilizedReserves;\n // Number of LP funds held in contract less utilized reserves.\n uint256 liquidReserves;\n // Number of LP funds reserved to pay out to LPs as fees.\n uint256 undistributedLpFees;\n }\n\n // Helper contracts to facilitate cross chain actions between HubPool and SpokePool for a specific network.\n struct CrossChainContract {\n address adapter;\n address spokePool;\n }\n\n function setPaused(bool pause) external;\n\n function emergencyDeleteProposal() external;\n\n function relaySpokePoolAdminFunction(uint256 chainId, bytes memory functionData) external;\n\n function setProtocolFeeCapture(address newProtocolFeeCaptureAddress, uint256 newProtocolFeeCapturePct) external;\n\n function setBond(IERC20 newBondToken, uint256 newBondAmount) external;\n\n function setLiveness(uint32 newLiveness) external;\n\n function setIdentifier(bytes32 newIdentifier) external;\n\n function setCrossChainContracts(uint256 l2ChainId, address adapter, address spokePool) external;\n\n function enableL1TokenForLiquidityProvision(address l1Token) external;\n\n function disableL1TokenForLiquidityProvision(address l1Token) external;\n\n function addLiquidity(address l1Token, uint256 l1TokenAmount) external payable;\n\n function removeLiquidity(address l1Token, uint256 lpTokenAmount, bool sendEth) external;\n\n function exchangeRateCurrent(address l1Token) external returns (uint256);\n\n function liquidityUtilizationCurrent(address l1Token) external returns (uint256);\n\n function liquidityUtilizationPostRelay(address l1Token, uint256 relayedAmount) external returns (uint256);\n\n function sync(address l1Token) external;\n\n function proposeRootBundle(\n uint256[] memory bundleEvaluationBlockNumbers,\n uint8 poolRebalanceLeafCount,\n bytes32 poolRebalanceRoot,\n bytes32 relayerRefundRoot,\n bytes32 slowRelayRoot\n ) external;\n\n function executeRootBundle(\n uint256 chainId,\n uint256 groupIndex,\n uint256[] memory bundleLpFees,\n int256[] memory netSendAmounts,\n int256[] memory runningBalances,\n uint8 leafId,\n address[] memory l1Tokens,\n bytes32[] memory proof\n ) external;\n\n function disputeRootBundle() external;\n\n function claimProtocolFeesCaptured(address l1Token) external;\n\n function setPoolRebalanceRoute(uint256 destinationChainId, address l1Token, address destinationToken) external;\n\n function setDepositRoute(\n uint256 originChainId,\n uint256 destinationChainId,\n address originToken,\n bool depositsEnabled\n ) external;\n\n function poolRebalanceRoute(\n uint256 destinationChainId,\n address l1Token\n ) external view returns (address destinationToken);\n\n function loadEthForL2Calls() external payable;\n}\n"
+ },
+ "contracts/interfaces/IOFT.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\n/**\n * @notice This file contains minimal copies of relevant structs / interfaces for OFT bridging. Source code link:\n * https://github.com/LayerZero-Labs/LayerZero-v2/blob/9a4049ae3a374e1c0ef01ac9fb53dd83f4257a68/packages/layerzero-v2/evm/oapp/contracts/oft/interfaces/IOFT.sol\n * It's also published as a part of an npm package: @layerzerolabs/oft-evm. The published code is incompatible with\n * our compiler version requirements, so we copy it here instead\n */\n\nstruct MessagingReceipt {\n bytes32 guid;\n uint64 nonce;\n MessagingFee fee;\n}\n\nstruct MessagingFee {\n uint256 nativeFee;\n uint256 lzTokenFee;\n}\n\n/**\n * @dev Struct representing token parameters for the OFT send() operation.\n */\nstruct SendParam {\n uint32 dstEid; // Destination endpoint ID.\n bytes32 to; // Recipient address.\n uint256 amountLD; // Amount to send in local decimals.\n uint256 minAmountLD; // Minimum amount to send in local decimals.\n bytes extraOptions; // Additional options supplied by the caller to be used in the LayerZero message.\n bytes composeMsg; // The composed message for the send() operation.\n bytes oftCmd; // The OFT command to be executed, unused in default OFT implementations.\n}\n\n/**\n * @dev Struct representing OFT receipt information.\n */\nstruct OFTReceipt {\n uint256 amountSentLD; // Amount of tokens ACTUALLY debited from the sender in local decimals.\n // @dev In non-default implementations, the amountReceivedLD COULD differ from this value.\n uint256 amountReceivedLD; // Amount of tokens to be received on the remote side.\n}\n\n/**\n * @title IOFT\n * @dev Interface for the OftChain (OFT) token.\n * @dev Does not inherit ERC20 to accommodate usage by OFTAdapter as well.\n * @dev This specific interface ID is '0x02e49c2c'.\n */\ninterface IOFT {\n /**\n * @notice Retrieves the address of the token associated with the OFT.\n * @return token The address of the ERC20 token implementation.\n */\n function token() external view returns (address);\n\n /**\n * @notice Provides a quote for the send() operation.\n * @param _sendParam The parameters for the send() operation.\n * @param _payInLzToken Flag indicating whether the caller is paying in the LZ token.\n * @return fee The calculated LayerZero messaging fee from the send() operation.\n *\n * @dev MessagingFee: LayerZero msg fee\n * - nativeFee: The native fee.\n * - lzTokenFee: The lzToken fee.\n */\n function quoteSend(SendParam calldata _sendParam, bool _payInLzToken) external view returns (MessagingFee memory);\n\n /**\n * @notice Executes the send() operation.\n * @param _sendParam The parameters for the send operation.\n * @param _fee The fee information supplied by the caller.\n * - nativeFee: The native fee.\n * - lzTokenFee: The lzToken fee.\n * @param _refundAddress The address to receive any excess funds from fees etc. on the src.\n * @return receipt The LayerZero messaging receipt from the send() operation.\n * @return oftReceipt The OFT receipt information.\n *\n * @dev MessagingReceipt: LayerZero msg receipt\n * - guid: The unique identifier for the sent message.\n * - nonce: The nonce of the sent message.\n * - fee: The LayerZero fee incurred for the message.\n */\n function send(\n SendParam calldata _sendParam,\n MessagingFee calldata _fee,\n address _refundAddress\n ) external payable returns (MessagingReceipt memory, OFTReceipt memory);\n}\n"
+ },
+ "contracts/interfaces/SpokePoolInterface.sol": {
+ "content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\n/**\n * @notice Contains common data structures and functions used by all SpokePool implementations.\n */\ninterface SpokePoolInterface {\n // This leaf is meant to be decoded in the SpokePool to pay out successful relayers.\n struct RelayerRefundLeaf {\n // This is the amount to return to the HubPool. This occurs when there is a PoolRebalanceLeaf netSendAmount that\n // is negative. This is just the negative of this value.\n uint256 amountToReturn;\n // Used to verify that this is being executed on the correct destination chainId.\n uint256 chainId;\n // This array designates how much each of those addresses should be refunded.\n uint256[] refundAmounts;\n // Used as the index in the bitmap to track whether this leaf has been executed or not.\n uint32 leafId;\n // The associated L2TokenAddress that these claims apply to.\n address l2TokenAddress;\n // Must be same length as refundAmounts and designates each address that must be refunded.\n address[] refundAddresses;\n }\n\n // Stores collection of merkle roots that can be published to this contract from the HubPool, which are referenced\n // by \"data workers\" via inclusion proofs to execute leaves in the roots.\n struct RootBundle {\n // Merkle root of slow relays that were not fully filled and whose recipient is still owed funds from the LP pool.\n bytes32 slowRelayRoot;\n // Merkle root of relayer refunds for successful relays.\n bytes32 relayerRefundRoot;\n // This is a 2D bitmap tracking which leaves in the relayer refund root have been claimed, with max size of\n // 256x(2^248) leaves per root.\n mapping(uint256 => uint256) claimedBitmap;\n }\n\n function setCrossDomainAdmin(address newCrossDomainAdmin) external;\n\n function setWithdrawalRecipient(address newWithdrawalRecipient) external;\n\n function pauseDeposits(bool pause) external;\n\n function pauseFills(bool pause) external;\n\n function relayRootBundle(bytes32 relayerRefundRoot, bytes32 slowRelayRoot) external;\n\n function emergencyDeleteRootBundle(uint256 rootBundleId) external;\n\n function depositDeprecated_5947912356(\n address recipient,\n address originToken,\n uint256 amount,\n uint256 destinationChainId,\n int64 relayerFeePct,\n uint32 quoteTimestamp,\n bytes memory message,\n uint256 maxCount\n ) external payable;\n\n function depositFor(\n address depositor,\n address recipient,\n address originToken,\n uint256 amount,\n uint256 destinationChainId,\n int64 relayerFeePct,\n uint32 quoteTimestamp,\n bytes memory message,\n uint256 maxCount\n ) external payable;\n\n function executeRelayerRefundLeaf(\n uint32 rootBundleId,\n SpokePoolInterface.RelayerRefundLeaf memory relayerRefundLeaf,\n bytes32[] memory proof\n ) external payable;\n\n function chainId() external view returns (uint256);\n\n error NotEOA();\n error InvalidDepositorSignature();\n error InvalidRelayerFeePct();\n error MaxTransferSizeExceeded();\n error InvalidCrossDomainAdmin();\n error InvalidWithdrawalRecipient();\n error DepositsArePaused();\n error FillsArePaused();\n error ExternalCallExecutionFailed();\n error MessageTooShort();\n error ZeroAddressTarget();\n}\n"
+ },
+ "contracts/interfaces/SpokePoolMessageHandler.sol": {
+ "content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\n// This interface is expected to be implemented by any contract that expects to receive messages from the SpokePool.\ninterface AcrossMessageHandler {\n function handleV3AcrossMessage(\n address tokenSent,\n uint256 amount,\n address relayer,\n bytes memory message\n ) external;\n}\n"
+ },
+ "contracts/interfaces/SpokePoolPeripheryInterface.sol": {
+ "content": "//SPDX-License-Identifier: Unlicense\npragma solidity ^0.8.0;\n\nimport { IERC20 } from \"@openzeppelin/contracts-v4/token/ERC20/IERC20.sol\";\nimport { IERC20Permit } from \"@openzeppelin/contracts-v4/token/ERC20/extensions/IERC20Permit.sol\";\nimport { IPermit2 } from \"../external/interfaces/IPermit2.sol\";\n\n/**\n * @title SpokePoolPeriphery\n * @notice Contract for performing more complex interactions with an Across spoke pool deployment.\n * @custom:security-contact bugs@across.to\n */\ninterface SpokePoolPeripheryInterface {\n // Enum describing the method of transferring tokens to an exchange.\n enum TransferType {\n // Approve the exchange so that it may transfer tokens from this contract.\n Approval, // 0\n // Transfer tokens to the exchange before calling it in this contract.\n Transfer, // 1\n // Approve the exchange by authorizing a transfer with Permit2.\n Permit2Approval // 2\n }\n\n // Submission fees can be set by user to pay whoever submits the transaction in a gasless flow.\n // These are assumed to be in the same currency that is input into the contract.\n struct Fees {\n // Amount of fees to pay recipient for submitting transaction.\n uint256 amount;\n // Recipient of fees amount.\n address recipient;\n }\n\n // Params we'll need caller to pass in to specify an Across Deposit. The input token will be swapped into first\n // before submitting a bridge deposit, which is why we don't include the input token amount as it is not known\n // until after the swap.\n struct BaseDepositData {\n // Token deposited on origin chain.\n address inputToken;\n // Token received on destination chain.\n bytes32 outputToken;\n // Amount of output token to be received by recipient.\n uint256 outputAmount;\n // The account credited with deposit who can submit speedups to the Across deposit.\n address depositor;\n // The account that will receive the output token on the destination chain. If the output token is\n // wrapped native token, then if this is an EOA then they will receive native token on the destination\n // chain and if this is a contract then they will receive an ERC20.\n bytes32 recipient;\n // The destination chain identifier.\n uint256 destinationChainId;\n // The account that can exclusively fill the deposit before the exclusivity parameter.\n bytes32 exclusiveRelayer;\n // Timestamp of the deposit used by system to charge fees. Must be within short window of time into the past\n // relative to this chain's current time or deposit will revert.\n uint32 quoteTimestamp;\n // The timestamp on the destination chain after which this deposit can no longer be filled.\n uint32 fillDeadline;\n // The timestamp or offset on the destination chain after which anyone can fill the deposit. A detailed description on\n // how the parameter is interpreted by the V3 spoke pool can be found at https://github.com/across-protocol/contracts/blob/fa67f5e97eabade68c67127f2261c2d44d9b007e/contracts/SpokePool.sol#L476\n uint32 exclusivityParameter;\n // Data that is forwarded to the recipient if the recipient is a contract.\n bytes message;\n }\n\n // Minimum amount of parameters needed to perform a swap on an exchange specified. We include information beyond just the router calldata\n // and exchange address so that we may ensure that the swap was performed properly.\n struct SwapAndDepositData {\n // Amount of fees to pay for submitting transaction. Unused in gasful flows.\n Fees submissionFees;\n // Deposit data to use when interacting with the Across spoke pool.\n BaseDepositData depositData;\n // Token to swap.\n address swapToken;\n // Address of the exchange to use in the swap.\n address exchange;\n // Method of transferring tokens to the exchange.\n TransferType transferType;\n // Amount of the token to swap on the exchange.\n uint256 swapTokenAmount;\n // Minimum output amount of the exchange, and, by extension, the minimum required amount to deposit into an Across spoke pool.\n uint256 minExpectedInputTokenAmount;\n // The calldata to use when calling the exchange.\n bytes routerCalldata;\n // When enabled (true), if the swap returns more tokens than minExpectedInputTokenAmount,\n // the outputAmount will be increased proportionally.\n // When disabled (false), the original outputAmount is used regardless of how many tokens are returned.\n bool enableProportionalAdjustment;\n // Address of the SpokePool to use for depositing tokens after swap.\n address spokePool;\n // User nonce to prevent replay attacks.\n uint256 nonce;\n }\n\n // Extended deposit data to be used specifically for signing off on periphery deposits.\n struct DepositData {\n // Amount of fees to pay for submitting transaction. Unused in gasful flows.\n Fees submissionFees;\n // Deposit data describing the parameters for the V3 Across deposit.\n BaseDepositData baseDepositData;\n // The precise input amount to deposit into the spoke pool.\n uint256 inputAmount;\n // Address of the SpokePool to use for depositing tokens.\n address spokePool;\n // User nonce to prevent replay attacks.\n uint256 nonce;\n }\n\n /**\n * @notice Passthrough function to `depositV3()` on the SpokePool contract for native token deposits.\n * @dev Protects the caller from losing their ETH (or other native token) by reverting if the SpokePool address\n * they intended to call does not exist on this chain. Because this contract can be deployed at the same address\n * everywhere callers should be protected even if the transaction is submitted to an unintended network.\n * This contract should only be used for native token deposits, as this problem only exists for native tokens.\n * @param recipient Address (as bytes32) to receive funds on destination chain.\n * @param inputToken Token to lock into this contract to initiate deposit.\n * @param inputAmount Amount of tokens to deposit.\n * @param outputAmount Amount of tokens to receive on destination chain.\n * @param destinationChainId Denotes network where user will receive funds from SpokePool by a relayer.\n * @param quoteTimestamp Timestamp used by relayers to compute this deposit's realizedLPFeePct which is paid\n * to LP pool on HubPool.\n * @param message Arbitrary data that can be used to pass additional information to the recipient along with the tokens.\n * Note: this is intended to be used to pass along instructions for how a contract should use or allocate the tokens.\n * @param exclusiveRelayer Address (as bytes32) of the relayer who has exclusive rights to fill this deposit. Can be set to\n * 0x0 if no period is desired. If so, then must set exclusivityParameter to 0.\n * @param exclusivityParameter Timestamp or offset, after which any relayer can fill this deposit. Must set\n * to 0 if exclusiveRelayer is set to 0x0, and vice versa.\n * @param fillDeadline Timestamp after which this deposit can no longer be filled.\n */\n function depositNative(\n address spokePool,\n bytes32 recipient,\n address inputToken,\n uint256 inputAmount,\n bytes32 outputToken,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityParameter,\n bytes memory message\n ) external payable;\n\n /**\n * @notice Swaps tokens on this chain via specified router before submitting Across deposit atomically.\n * Caller can specify their slippage tolerance for the swap and Across deposit params.\n * @dev If msg.value is sent, the swapToken in swapAndDepositData must implement the WETH9 interface for wrapping native tokens.\n * @param swapAndDepositData Specifies the data needed to perform a swap on a generic exchange.\n */\n function swapAndBridge(SwapAndDepositData calldata swapAndDepositData) external payable;\n\n /**\n * @notice Swaps an EIP-2612 token on this chain via specified router before submitting Across deposit atomically.\n * Caller can specify their slippage tolerance for the swap and Across deposit params.\n * @dev If the swapToken does not implement `permit` to the specifications of EIP-2612, the permit call result will be ignored and the function will continue.\n * @dev If the swapToken in swapData does not implement `permit` to the specifications of EIP-2612, this function will fail.\n * @dev The nonce for the swapAndDepositData signature must be retrieved from permitNonces(signatureOwner).\n * @dev Design Decision: We use separate nonce tracking for permit-based functions versus\n * receiveWithAuthorization-based functions, which creates a theoretical replay attack that we think is\n * incredibly unlikely because this would require:\n * 1. A token implementing both ERC-2612 and ERC-3009\n * 2. A user using the same nonces for swapAndBridgeWithPermit and for swapAndBridgeWithAuthorization\n * 3. Issuing these signatures within a short amount of time (limited by fillDeadlineBuffer)\n * @param signatureOwner The owner of the permit signature and swapAndDepositData signature. Assumed to be the depositor for the Across spoke pool.\n * @param swapAndDepositData Specifies the params we need to perform a swap on a generic exchange.\n * @param deadline Deadline before which the permit signature is valid.\n * @param permitSignature Permit signature encoded as (bytes32 r, bytes32 s, uint8 v).\n * @param swapAndDepositDataSignature The signature against the input swapAndDepositData encoded as (bytes32 r, bytes32 s, uint8 v).\n */\n function swapAndBridgeWithPermit(\n address signatureOwner,\n SwapAndDepositData calldata swapAndDepositData,\n uint256 deadline,\n bytes calldata permitSignature,\n bytes calldata swapAndDepositDataSignature\n ) external;\n\n /**\n * @notice Uses permit2 to transfer tokens from a user before swapping a token on this chain via specified router and submitting an Across deposit atomically.\n * Caller can specify their slippage tolerance for the swap and Across deposit params.\n * @dev This function assumes the caller has properly set an allowance for the permit2 contract on this network.\n * @dev This function assumes that the amount of token to be swapped is equal to the amount of the token to be received from permit2.\n * @param signatureOwner The owner of the permit2 signature and depositor for the Across spoke pool.\n * @param swapAndDepositData Specifies the params we need to perform a swap on a generic exchange.\n * @param permit The permit data signed over by the owner.\n * @param signature The permit2 signature to verify against the deposit data.\n */\n function swapAndBridgeWithPermit2(\n address signatureOwner,\n SwapAndDepositData calldata swapAndDepositData,\n IPermit2.PermitTransferFrom calldata permit,\n bytes calldata signature\n ) external;\n\n /**\n * @notice Swaps an EIP-3009 token on this chain via specified router before submitting Across deposit atomically.\n * Caller can specify their slippage tolerance for the swap and Across deposit params.\n * @dev If swapToken does not implement `receiveWithAuthorization` to the specifications of EIP-3009, this call will revert.\n * @dev The nonce for the receiveWithAuthorization signature should match the nonce in the SwapAndDepositData.\n * This nonce is managed by the ERC-3009 token contract.\n * @param signatureOwner The owner of the EIP3009 signature and swapAndDepositData signature. Assumed to be the depositor for the Across spoke pool.\n * @param swapAndDepositData Specifies the params we need to perform a swap on a generic exchange.\n * @param validAfter The unix time after which the `receiveWithAuthorization` signature is valid.\n * @param validBefore The unix time before which the `receiveWithAuthorization` signature is valid.\n * @param receiveWithAuthSignature EIP3009 signature encoded as (bytes32 r, bytes32 s, uint8 v).\n * @param swapAndDepositDataSignature The signature against the input swapAndDepositData encoded as (bytes32 r, bytes32 s, uint8 v).\n */\n function swapAndBridgeWithAuthorization(\n address signatureOwner,\n SwapAndDepositData calldata swapAndDepositData,\n uint256 validAfter,\n uint256 validBefore,\n bytes calldata receiveWithAuthSignature,\n bytes calldata swapAndDepositDataSignature\n ) external;\n\n /**\n * @notice Deposits an EIP-2612 token Across input token into the Spoke Pool contract.\n * @dev If the token does not implement `permit` to the specifications of EIP-2612, the permit call result will be ignored and the function will continue.\n * @dev If `acrossInputToken` does not implement `permit` to the specifications of EIP-2612, this function will fail.\n * @dev The nonce for the depositData signature must be retrieved from permitNonces(signatureOwner).\n * @dev Design Decision: We use separate nonce tracking for permit-based functions versus\n * receiveWithAuthorization-based functions, which creates a theoretical replay attack that we think is\n * incredibly unlikely because this would require:\n * 1. A token implementing both ERC-2612 and ERC-3009\n * 2. A user using the same nonces for depositWithPermit and for depositWithAuthorization\n * 3. Issuing these signatures within a short amount of time (limited by fillDeadlineBuffer)\n * @param signatureOwner The owner of the permit signature and depositData signature. Assumed to be the depositor for the Across spoke pool.\n * @param depositData Specifies the Across deposit params to send.\n * @param deadline Deadline before which the permit signature is valid.\n * @param permitSignature Permit signature encoded as (bytes32 r, bytes32 s, uint8 v).\n * @param depositDataSignature The signature against the input depositData encoded as (bytes32 r, bytes32 s, uint8 v).\n */\n function depositWithPermit(\n address signatureOwner,\n DepositData calldata depositData,\n uint256 deadline,\n bytes calldata permitSignature,\n bytes calldata depositDataSignature\n ) external;\n\n /**\n * @notice Uses permit2 to transfer and submit an Across deposit to the Spoke Pool contract.\n * @dev This function assumes the caller has properly set an allowance for the permit2 contract on this network.\n * @dev This function assumes that the amount of token to be swapped is equal to the amount of the token to be received from permit2.\n * @param signatureOwner The owner of the permit2 signature and depositor for the Across spoke pool.\n * @param depositData Specifies the Across deposit params we'll send after the swap.\n * @param permit The permit data signed over by the owner.\n * @param signature The permit2 signature to verify against the deposit data.\n */\n function depositWithPermit2(\n address signatureOwner,\n DepositData calldata depositData,\n IPermit2.PermitTransferFrom calldata permit,\n bytes calldata signature\n ) external;\n\n /**\n * @notice Deposits an EIP-3009 compliant Across input token into the Spoke Pool contract.\n * @dev If `acrossInputToken` does not implement `receiveWithAuthorization` to the specifications of EIP-3009, this call will revert.\n * @dev The nonce for the receiveWithAuthorization signature should match the nonce in the DepositData.\n * This nonce is managed by the ERC-3009 token contract.\n * @param signatureOwner The owner of the EIP3009 signature and depositData signature. Assumed to be the depositor for the Across spoke pool.\n * @param depositData Specifies the Across deposit params to send.\n * @param validAfter The unix time after which the `receiveWithAuthorization` signature is valid.\n * @param validBefore The unix time before which the `receiveWithAuthorization` signature is valid.\n * @param receiveWithAuthSignature EIP3009 signature encoded as (bytes32 r, bytes32 s, uint8 v).\n * @param depositDataSignature The signature against the input depositData encoded as (bytes32 r, bytes32 s, uint8 v).\n */\n function depositWithAuthorization(\n address signatureOwner,\n DepositData calldata depositData,\n uint256 validAfter,\n uint256 validBefore,\n bytes calldata receiveWithAuthSignature,\n bytes calldata depositDataSignature\n ) external;\n\n /**\n * @notice Returns the current permit nonce for a user.\n * @param user The user whose nonce to return.\n * @return The current permit nonce for the user.\n */\n function permitNonces(address user) external view returns (uint256);\n}\n"
+ },
+ "contracts/interfaces/V3SpokePoolInterface.sol": {
+ "content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\n// Contains structs and functions used by SpokePool contracts to facilitate universal settlement.\ninterface V3SpokePoolInterface {\n /**************************************\n * ENUMS *\n **************************************/\n\n // Fill status tracks on-chain state of deposit, uniquely identified by relayHash.\n enum FillStatus {\n Unfilled,\n RequestedSlowFill,\n Filled\n }\n // Fill type is emitted in the FilledRelay event to assist Dataworker with determining which types of\n // fills to refund (e.g. only fast fills) and whether a fast fill created a sow fill excess.\n enum FillType {\n FastFill,\n // Fast fills are normal fills that do not replace a slow fill request.\n ReplacedSlowFill,\n // Replaced slow fills are fast fills that replace a slow fill request. This type is used by the Dataworker\n // to know when to send excess funds from the SpokePool to the HubPool because they can no longer be used\n // for a slow fill execution.\n SlowFill\n }\n // Slow fills are requested via requestSlowFill and executed by executeSlowRelayLeaf after a bundle containing\n // the slow fill is validated.\n\n /**************************************\n * STRUCTS *\n **************************************/\n\n // This struct represents the data to fully specify a **unique** relay submitted on this chain.\n // This data is hashed with the chainId() and saved by the SpokePool to prevent collisions and protect against\n // replay attacks on other chains. If any portion of this data differs, the relay is considered to be\n // completely distinct.\n struct V3RelayData {\n // The bytes32 that made the deposit on the origin chain.\n bytes32 depositor;\n // The recipient bytes32 on the destination chain.\n bytes32 recipient;\n // This is the exclusive relayer who can fill the deposit before the exclusivity deadline.\n bytes32 exclusiveRelayer;\n // Token that is deposited on origin chain by depositor.\n bytes32 inputToken;\n // Token that is received on destination chain by recipient.\n bytes32 outputToken;\n // The amount of input token deposited by depositor.\n uint256 inputAmount;\n // The amount of output token to be received by recipient.\n uint256 outputAmount;\n // Origin chain id.\n uint256 originChainId;\n // The id uniquely identifying this deposit on the origin chain.\n uint256 depositId;\n // The timestamp on the destination chain after which this deposit can no longer be filled.\n uint32 fillDeadline;\n // The timestamp on the destination chain after which any relayer can fill the deposit.\n uint32 exclusivityDeadline;\n // Data that is forwarded to the recipient.\n bytes message;\n }\n\n // Same as V3RelayData but using addresses instead of bytes32 & depositId is uint32.\n // Will be deprecated in favor of V3RelayData in the future.\n struct V3RelayDataLegacy {\n address depositor;\n address recipient;\n address exclusiveRelayer;\n address inputToken;\n address outputToken;\n uint256 inputAmount;\n uint256 outputAmount;\n uint256 originChainId;\n uint32 depositId;\n uint32 fillDeadline;\n uint32 exclusivityDeadline;\n bytes message;\n }\n\n // Contains parameters passed in by someone who wants to execute a slow relay leaf.\n struct V3SlowFill {\n V3RelayData relayData;\n uint256 chainId;\n uint256 updatedOutputAmount;\n }\n\n // Contains information about a relay to be sent along with additional information that is not unique to the\n // relay itself but is required to know how to process the relay. For example, \"updatedX\" fields can be used\n // by the relayer to modify fields of the relay with the depositor's permission, and \"repaymentChainId\" is specified\n // by the relayer to determine where to take a relayer refund, but doesn't affect the uniqueness of the relay.\n struct V3RelayExecutionParams {\n V3RelayData relay;\n bytes32 relayHash;\n uint256 updatedOutputAmount;\n bytes32 updatedRecipient;\n bytes updatedMessage;\n uint256 repaymentChainId;\n }\n\n // Packs together parameters emitted in FilledRelay because there are too many emitted otherwise.\n // Similar to V3RelayExecutionParams, these parameters are not used to uniquely identify the deposit being\n // filled so they don't have to be unpacked by all clients.\n struct V3RelayExecutionEventInfo {\n bytes32 updatedRecipient;\n bytes32 updatedMessageHash;\n uint256 updatedOutputAmount;\n FillType fillType;\n }\n\n // Represents the parameters required for a V3 deposit operation in the SpokePool.\n struct DepositV3Params {\n bytes32 depositor;\n bytes32 recipient;\n bytes32 inputToken;\n bytes32 outputToken;\n uint256 inputAmount;\n uint256 outputAmount;\n uint256 destinationChainId;\n bytes32 exclusiveRelayer;\n uint256 depositId;\n uint32 quoteTimestamp;\n uint32 fillDeadline;\n uint32 exclusivityParameter;\n bytes message;\n }\n\n /**************************************\n * EVENTS *\n **************************************/\n\n event FundsDeposited(\n bytes32 inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 indexed destinationChainId,\n uint256 indexed depositId,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityDeadline,\n bytes32 indexed depositor,\n bytes32 recipient,\n bytes32 exclusiveRelayer,\n bytes message\n );\n\n event RequestedSpeedUpDeposit(\n uint256 updatedOutputAmount,\n uint256 indexed depositId,\n bytes32 indexed depositor,\n bytes32 updatedRecipient,\n bytes updatedMessage,\n bytes depositorSignature\n );\n\n event FilledRelay(\n bytes32 inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 repaymentChainId,\n uint256 indexed originChainId,\n uint256 indexed depositId,\n uint32 fillDeadline,\n uint32 exclusivityDeadline,\n bytes32 exclusiveRelayer,\n bytes32 indexed relayer,\n bytes32 depositor,\n bytes32 recipient,\n bytes32 messageHash,\n V3RelayExecutionEventInfo relayExecutionInfo\n );\n\n event RequestedSlowFill(\n bytes32 inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 indexed originChainId,\n uint256 indexed depositId,\n uint32 fillDeadline,\n uint32 exclusivityDeadline,\n bytes32 exclusiveRelayer,\n bytes32 depositor,\n bytes32 recipient,\n bytes32 messageHash\n );\n\n event ClaimedRelayerRefund(\n bytes32 indexed l2TokenAddress,\n bytes32 indexed refundAddress,\n uint256 amount,\n address indexed caller\n );\n\n /**************************************\n * FUNCTIONS *\n **************************************/\n\n function deposit(\n bytes32 depositor,\n bytes32 recipient,\n bytes32 inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityDeadline,\n bytes calldata message\n ) external payable;\n\n function depositV3(\n address depositor,\n address recipient,\n address inputToken,\n address outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n address exclusiveRelayer,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityDeadline,\n bytes calldata message\n ) external payable;\n\n function depositNow(\n bytes32 depositor,\n bytes32 recipient,\n bytes32 inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint32 fillDeadlineOffset,\n uint32 exclusivityDeadline,\n bytes calldata message\n ) external payable;\n\n function depositV3Now(\n address depositor,\n address recipient,\n address inputToken,\n address outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n address exclusiveRelayer,\n uint32 fillDeadlineOffset,\n uint32 exclusivityDeadline,\n bytes calldata message\n ) external payable;\n\n function unsafeDeposit(\n bytes32 depositor,\n bytes32 recipient,\n bytes32 inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint256 depositNonce,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityParameter,\n bytes calldata message\n ) external payable;\n\n function speedUpDeposit(\n bytes32 depositor,\n uint256 depositId,\n uint256 updatedOutputAmount,\n bytes32 updatedRecipient,\n bytes calldata updatedMessage,\n bytes calldata depositorSignature\n ) external;\n\n function speedUpV3Deposit(\n address depositor,\n uint256 depositId,\n uint256 updatedOutputAmount,\n address updatedRecipient,\n bytes calldata updatedMessage,\n bytes calldata depositorSignature\n ) external;\n\n function fillRelay(\n V3RelayData calldata relayData,\n uint256 repaymentChainId,\n bytes32 repaymentAddress\n ) external;\n\n function fillV3Relay(V3RelayDataLegacy calldata relayData, uint256 repaymentChainId) external;\n\n function fillRelayWithUpdatedDeposit(\n V3RelayData calldata relayData,\n uint256 repaymentChainId,\n bytes32 repaymentAddress,\n uint256 updatedOutputAmount,\n bytes32 updatedRecipient,\n bytes calldata updatedMessage,\n bytes calldata depositorSignature\n ) external;\n\n function requestSlowFill(V3RelayData calldata relayData) external;\n\n function executeSlowRelayLeaf(\n V3SlowFill calldata slowFillLeaf,\n uint32 rootBundleId,\n bytes32[] calldata proof\n ) external;\n\n function claimRelayerRefund(bytes32 l2TokenAddress, bytes32 refundAddress) external;\n\n /**************************************\n * ERRORS *\n **************************************/\n\n error DisabledRoute();\n error InvalidQuoteTimestamp();\n error InvalidFillDeadline();\n error InvalidExclusiveRelayer();\n error MsgValueDoesNotMatchInputAmount();\n error NotExclusiveRelayer();\n error NoSlowFillsInExclusivityWindow();\n error RelayFilled();\n error InvalidSlowFillRequest();\n error ExpiredFillDeadline();\n error InvalidMerkleProof();\n error InvalidChainId();\n error InvalidMerkleLeaf();\n error ClaimedMerkleLeaf();\n error InvalidPayoutAdjustmentPct();\n error WrongERC7683OrderId();\n error LowLevelCallFailed(bytes data);\n error InsufficientSpokePoolBalanceToExecuteLeaf();\n error NoRelayerRefundToClaim();\n\n /**************************************\n * LEGACY EVENTS *\n **************************************/\n\n // Note: these events are unused, but included in the ABI for ease of migration.\n event V3FundsDeposited(\n address inputToken,\n address outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 indexed destinationChainId,\n uint32 indexed depositId,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityDeadline,\n address indexed depositor,\n address recipient,\n address exclusiveRelayer,\n bytes message\n );\n\n event RequestedSpeedUpV3Deposit(\n uint256 updatedOutputAmount,\n uint32 indexed depositId,\n address indexed depositor,\n address updatedRecipient,\n bytes updatedMessage,\n bytes depositorSignature\n );\n\n // Legacy struct only used to preserve the FilledV3Relay event definition.\n struct LegacyV3RelayExecutionEventInfo {\n address updatedRecipient;\n bytes updatedMessage;\n uint256 updatedOutputAmount;\n FillType fillType;\n }\n\n event FilledV3Relay(\n address inputToken,\n address outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 repaymentChainId,\n uint256 indexed originChainId,\n uint32 indexed depositId,\n uint32 fillDeadline,\n uint32 exclusivityDeadline,\n address exclusiveRelayer,\n address indexed relayer,\n address depositor,\n address recipient,\n bytes message,\n LegacyV3RelayExecutionEventInfo relayExecutionInfo\n );\n\n event RequestedV3SlowFill(\n address inputToken,\n address outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 indexed originChainId,\n uint32 indexed depositId,\n uint32 fillDeadline,\n uint32 exclusivityDeadline,\n address exclusiveRelayer,\n address depositor,\n address recipient,\n bytes message\n );\n}\n"
+ },
+ "contracts/Lens_SpokePool.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\nimport \"./ZkSync_SpokePool.sol\";\n\n/**\n * @notice Lens specific SpokePool. Wrapper around the ZkSync_SpokePool contract.\n * @dev Resources for compiling and deploying contracts with hardhat: https://era.zksync.io/docs/tools/hardhat/hardhat-zksync-solc.html\n * @custom:security-contact bugs@across.to\n */\ncontract Lens_SpokePool is ZkSync_SpokePool {\n /// @custom:oz-upgrades-unsafe-allow constructor\n constructor(\n address _wrappedNativeTokenAddress,\n IERC20 _circleUSDC,\n ZkBridgeLike _zkUSDCBridge,\n uint256 _l1ChainId,\n ITokenMessenger _cctpTokenMessenger,\n uint32 _depositQuoteTimeBuffer,\n uint32 _fillDeadlineBuffer\n )\n ZkSync_SpokePool(\n _wrappedNativeTokenAddress,\n _circleUSDC,\n _zkUSDCBridge,\n _l1ChainId,\n _cctpTokenMessenger,\n _depositQuoteTimeBuffer,\n _fillDeadlineBuffer\n )\n {}\n}\n"
+ },
+ "contracts/libraries/AddressConverters.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\nlibrary Bytes32ToAddress {\n /**************************************\n * ERRORS *\n **************************************/\n error InvalidBytes32();\n\n function toAddress(bytes32 _bytes32) internal pure returns (address) {\n checkAddress(_bytes32);\n return address(uint160(uint256(_bytes32)));\n }\n\n function toAddressUnchecked(bytes32 _bytes32) internal pure returns (address) {\n return address(uint160(uint256(_bytes32)));\n }\n\n function checkAddress(bytes32 _bytes32) internal pure {\n if (uint256(_bytes32) >> 160 != 0) {\n revert InvalidBytes32();\n }\n }\n}\n\nlibrary AddressToBytes32 {\n function toBytes32(address _address) internal pure returns (bytes32) {\n return bytes32(uint256(uint160(_address)));\n }\n}\n"
+ },
+ "contracts/libraries/CircleCCTPAdapter.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\nimport \"@openzeppelin/contracts-v4/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts-v4/token/ERC20/utils/SafeERC20.sol\";\nimport \"../external/interfaces/CCTPInterfaces.sol\";\nimport { AddressToBytes32 } from \"../libraries/AddressConverters.sol\";\n\nlibrary CircleDomainIds {\n uint32 public constant Ethereum = 0;\n uint32 public constant Optimism = 2;\n uint32 public constant Arbitrum = 3;\n uint32 public constant Solana = 5;\n uint32 public constant Base = 6;\n uint32 public constant Polygon = 7;\n uint32 public constant DoctorWho = 10;\n uint32 public constant Linea = 11;\n uint32 public constant WorldChain = 14;\n uint32 public constant Monad = 15;\n uint32 public constant BSC = 17;\n uint32 public constant HyperEVM = 19;\n uint32 public constant Ink = 21;\n uint32 public constant Arc = 26;\n uint32 public constant UNINITIALIZED = type(uint32).max;\n}\n\n/**\n * @notice Facilitate bridging USDC via Circle's CCTP.\n * @dev This contract is intended to be inherited by other chain-specific adapters and spoke pools.\n * @custom:security-contact bugs@across.to\n */\nabstract contract CircleCCTPAdapter {\n using SafeERC20 for IERC20;\n using AddressToBytes32 for address;\n /**\n * @notice The domain ID that CCTP will transfer funds to.\n * @dev This identifier is assigned by Circle and is not related to a chain ID.\n * @dev Official domain list can be found here: https://developers.circle.com/stablecoins/docs/supported-domains\n */\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n\n uint32 public immutable recipientCircleDomainId;\n\n /**\n * @notice The official USDC contract address on this chain.\n * @dev Posted officially here: https://developers.circle.com/stablecoins/docs/usdc-on-main-networks\n */\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n IERC20 public immutable usdcToken;\n\n /**\n * @notice The official Circle CCTP token bridge contract endpoint.\n * @dev Posted officially here: https://developers.circle.com/stablecoins/docs/evm-smart-contracts\n */\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n ITokenMessenger public immutable cctpTokenMessenger;\n\n /**\n * @notice Indicates if the CCTP V2 TokenMessenger is being used.\n * @dev This is determined by checking if the feeRecipient() function exists and returns a non-zero address.\n */\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n bool public immutable cctpV2;\n\n /**\n * @notice intiailizes the CircleCCTPAdapter contract.\n * @param _usdcToken USDC address on the current chain.\n * @param _cctpTokenMessenger TokenMessenger contract to bridge via CCTP. If the zero address is passed, CCTP bridging will be disabled.\n * @param _recipientCircleDomainId The domain ID that CCTP will transfer funds to.\n */\n /// @custom:oz-upgrades-unsafe-allow constructor\n constructor(\n IERC20 _usdcToken,\n /// @dev This should ideally be an address but it's kept as an ITokenMessenger to avoid rippling changes to the\n /// constructors for every SpokePool/Adapter.\n ITokenMessenger _cctpTokenMessenger,\n uint32 _recipientCircleDomainId\n ) {\n usdcToken = _usdcToken;\n cctpTokenMessenger = _cctpTokenMessenger;\n recipientCircleDomainId = _recipientCircleDomainId;\n\n // Only the CCTP V2 TokenMessenger has a feeRecipient() function, so we use it to\n // figure out if we are using CCTP V2 or V1. `success` can be true even if the contract doesn't\n // implement feeRecipient but it has a fallback function so to be extra safe, we check the return value\n // of feeRecipient() as well.\n (bool success, bytes memory feeRecipient) = address(cctpTokenMessenger).staticcall(\n abi.encodeWithSignature(\"feeRecipient()\")\n );\n // In case of a call to nonexistent contract or a call to a contract with a fallback function which\n // doesn't return any data, feeRecipient can be empty so check its length.\n // Even with this check, it's possible that the contract has implemented a fallback function that returns\n // 32 bytes of data but its not actually the feeRecipient address. This is extremely low risk but worth\n // mentioning that the following check is not 100% safe.\n cctpV2 = (success &&\n feeRecipient.length == 32 &&\n address(uint160(uint256(bytes32(feeRecipient)))) != address(0));\n }\n\n /**\n * @notice Returns whether or not the CCTP bridge is enabled.\n * @dev If the CCTPTokenMessenger is the zero address, CCTP bridging is disabled.\n */\n function _isCCTPEnabled() internal view returns (bool) {\n return address(cctpTokenMessenger) != address(0);\n }\n\n /**\n * @notice Transfers USDC from the current domain to the given address on the new domain.\n * @dev This function will revert if the CCTP bridge is disabled. I.e. if the zero address is passed to the constructor for the cctpTokenMessenger.\n * @param to Address to receive USDC on the new domain.\n * @param amount Amount of USDC to transfer.\n */\n function _transferUsdc(address to, uint256 amount) internal {\n _transferUsdc(to.toBytes32(), amount);\n }\n\n /**\n * @notice Transfers USDC from the current domain to the given address on the new domain.\n * @dev This function will revert if the CCTP bridge is disabled. I.e. if the zero address is passed to the constructor for the cctpTokenMessenger.\n * @param to Address to receive USDC on the new domain represented as bytes32.\n * @param amount Amount of USDC to transfer.\n */\n function _transferUsdc(bytes32 to, uint256 amount) internal {\n // Only approve the exact amount to be transferred\n usdcToken.safeIncreaseAllowance(address(cctpTokenMessenger), amount);\n // Submit the amount to be transferred to bridge via the TokenMessenger.\n // If the amount to send exceeds the burn limit per message, then split the message into smaller parts.\n // @dev We do not care about casting cctpTokenMessenger to ITokenMessengerV2 since both V1 and V2\n // expose a localMinter() view function that returns either an ITokenMinterV1 or ITokenMinterV2. Regardless,\n // we only care about the burnLimitsPerMessage function which is available in both versions and performs\n // the same logic, therefore we purposefully do not re-cast the cctpTokenMessenger and cctpMinter\n // to the specific version.\n ITokenMinter cctpMinter = cctpTokenMessenger.localMinter();\n uint256 burnLimit = cctpMinter.burnLimitsPerMessage(address(usdcToken));\n uint256 remainingAmount = amount;\n while (remainingAmount > 0) {\n uint256 partAmount = remainingAmount > burnLimit ? burnLimit : remainingAmount;\n if (cctpV2) {\n // Uses the CCTP V2 \"standard transfer\" speed and\n // therefore pays no additional fee for the transfer to be sped up.\n ITokenMessengerV2(address(cctpTokenMessenger)).depositForBurn(\n partAmount,\n recipientCircleDomainId,\n to,\n address(usdcToken),\n // The following parameters are new in this function from V2 to V1, can read more here:\n // https://developers.circle.com/stablecoins/evm-smart-contracts\n bytes32(0), // destinationCaller is set to bytes32(0) to indicate that anyone can call\n // receiveMessage on the destination to finalize the transfer\n 0, // maxFee can be set to 0 for a \"standard transfer\"\n 2000 // minFinalityThreshold can be set to 2000 for a \"standard transfer\",\n // https://github.com/circlefin/evm-cctp-contracts/blob/63ab1f0ac06ce0793c0bbfbb8d09816bc211386d/src/v2/FinalityThresholds.sol#L21\n );\n } else {\n cctpTokenMessenger.depositForBurn(partAmount, recipientCircleDomainId, to, address(usdcToken));\n }\n remainingAmount -= partAmount;\n }\n }\n}\n"
+ },
+ "contracts/libraries/CrossDomainAddressUtils.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\n/**\n * @title AddressUtils\n * @notice This library contains internal functions for manipulating addresses.\n */\nlibrary CrossDomainAddressUtils {\n // L1 addresses are transformed during l1->l2 calls.\n // This cannot be pulled directly from Arbitrum contracts because their contracts are not 0.8.X compatible and\n // this operation takes advantage of overflows, whose behavior changed in 0.8.0.\n function applyL1ToL2Alias(address l1Address) internal pure returns (address l2Address) {\n unchecked {\n l2Address = address(uint160(l1Address) + uint160(0x1111000000000000000000000000000000001111));\n }\n }\n}\n"
+ },
+ "contracts/libraries/OFTTransportAdapter.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\nimport { IERC20 } from \"@openzeppelin/contracts-v4/token/ERC20/IERC20.sol\";\nimport { SafeERC20 } from \"@openzeppelin/contracts-v4/token/ERC20/utils/SafeERC20.sol\";\nimport { IOFT, SendParam, MessagingFee, OFTReceipt } from \"../interfaces/IOFT.sol\";\nimport { AddressToBytes32 } from \"../libraries/AddressConverters.sol\";\n\n/**\n * @notice Facilitate bridging tokens via LayerZero's OFT.\n * @dev This contract is intended to be inherited by other chain-specific adapters and spoke pools.\n * @custom:security-contact bugs@across.to\n */\ncontract OFTTransportAdapter {\n using SafeERC20 for IERC20;\n using AddressToBytes32 for address;\n\n /** @notice Empty bytes array used for OFT messaging parameters */\n bytes public constant EMPTY_MSG_BYTES = new bytes(0);\n\n /**\n * @notice Fee cap checked before sending messages to OFTMessenger\n * @dev Conservative (high) cap to not interfere with operations under normal conditions\n */\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n uint256 public immutable OFT_FEE_CAP;\n\n /**\n * @notice The destination endpoint id in the OFT messaging protocol.\n * @dev Source https://docs.layerzero.network/v2/developers/evm/technical-reference/deployed-contracts.\n */\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n uint32 public immutable OFT_DST_EID;\n\n /** @notice Thrown when OFT fee exceeds the configured cap */\n error OftFeeCapExceeded();\n\n /** @notice Thrown when contract has insufficient balance to pay OFT fees */\n error OftInsufficientBalanceForFee();\n\n /** @notice Thrown when LayerZero token fee is not zero (only native fees supported) */\n error OftLzFeeNotZero();\n\n /** @notice Thrown when amount received differs from expected amount */\n error OftIncorrectAmountReceivedLD();\n\n /** @notice Thrown when amount sent differs from expected amount */\n error OftIncorrectAmountSentLD();\n\n /**\n * @notice intiailizes the OFTTransportAdapter contract.\n * @param _oftDstEid the endpoint ID that OFT protocol will transfer funds to.\n * @param _feeCap a fee cap we check against before sending a message with value to OFTMessenger as fees.\n */\n /// @custom:oz-upgrades-unsafe-allow constructor\n constructor(uint32 _oftDstEid, uint256 _feeCap) {\n OFT_DST_EID = _oftDstEid;\n OFT_FEE_CAP = _feeCap;\n }\n\n /**\n * @notice transfer token to the other dstEid (e.g. chain) via OFT messaging protocol\n * @dev the caller has to provide both _token and _messenger. The caller is responsible for knowing the correct _messenger\n * @param _token token we're sending on current chain.\n * @param _messenger corresponding OFT messenger on current chain.\n * @param _to address to receive a transfer on the destination chain.\n * @param _amount amount to send.\n */\n function _transferViaOFT(IERC20 _token, IOFT _messenger, address _to, uint256 _amount) internal {\n (SendParam memory sendParam, MessagingFee memory fee) = _buildOftTransfer(_messenger, _to, _amount);\n _sendOftTransfer(_token, _messenger, sendParam, fee);\n }\n\n /**\n * @notice Build OFT send params and quote the native fee.\n * @dev Sets `minAmountLD == amountLD` to disallow silent deductions (e.g. dust removal) by OFT.\n * The fee is quoted for payment in native token.\n * @param _messenger OFT messenger contract on the current chain for the token being sent.\n * @param _to Destination address on the remote chain.\n * @param _amount Amount of tokens to transfer.\n * @return sendParam The encoded OFT send parameters.\n * @return fee The quoted MessagingFee required for the transfer.\n */\n function _buildOftTransfer(\n IOFT _messenger,\n address _to,\n uint256 _amount\n ) internal view returns (SendParam memory, MessagingFee memory) {\n bytes32 to = _to.toBytes32();\n\n SendParam memory sendParam = SendParam(\n OFT_DST_EID,\n to,\n /**\n * _amount, _amount here specify `amountLD` and `minAmountLD`. Setting `minAmountLD` equal to `amountLD` protects us\n * from any changes to the sent amount due to internal OFT contract logic, e.g. `_removeDust`. Meaning that if any\n * dust is subtracted, the `.send()` should revert\n */\n _amount,\n _amount,\n /**\n * EMPTY_MSG_BYTES, EMPTY_MSG_BYTES, EMPTY_MSG_BYTES here specify `extraOptions`, `composeMsg` and `oftCmd`.\n * These can be set to empty bytes arrays for the purposes of sending a simple cross-chain transfer.\n */\n EMPTY_MSG_BYTES,\n EMPTY_MSG_BYTES,\n EMPTY_MSG_BYTES\n );\n\n // `false` in the 2nd param here refers to `bool _payInLzToken`. We will pay in native token, so set to `false`\n MessagingFee memory fee = _messenger.quoteSend(sendParam, false);\n\n return (sendParam, fee);\n }\n\n /**\n * @notice Execute an OFT transfer using pre-built params and fee.\n * @dev Verifies fee bounds and equality of sent/received amounts. Pays native fee from this contract.\n * @param _token ERC-20 token to transfer.\n * @param _messenger OFT messenger contract on the current chain for `_token`.\n * @param sendParam Pre-built OFT send parameters.\n * @param fee Quoted MessagingFee to pay for this transfer.\n */\n function _sendOftTransfer(\n IERC20 _token,\n IOFT _messenger,\n SendParam memory sendParam,\n MessagingFee memory fee\n ) internal {\n // Create a stack variable to optimize gas usage on subsequent reads\n uint256 nativeFee = fee.nativeFee;\n if (nativeFee > OFT_FEE_CAP) revert OftFeeCapExceeded();\n if (nativeFee > address(this).balance) revert OftInsufficientBalanceForFee();\n if (fee.lzTokenFee != 0) revert OftLzFeeNotZero();\n\n // Approve the exact _amount for `_messenger` to spend. Fee will be paid in native token\n uint256 _amount = sendParam.amountLD;\n _token.forceApprove(address(_messenger), _amount);\n\n (, OFTReceipt memory oftReceipt) = _messenger.send{ value: nativeFee }(sendParam, fee, address(this));\n\n // The HubPool expects that the amount received by the SpokePool is exactly the sent amount\n if (_amount != oftReceipt.amountReceivedLD) revert OftIncorrectAmountReceivedLD();\n // Also check the amount sent on origin chain to harden security\n if (_amount != oftReceipt.amountSentLD) revert OftIncorrectAmountSentLD();\n }\n}\n"
+ },
+ "contracts/libraries/PeripherySigningLib.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\nimport { SpokePoolPeripheryInterface } from \"../interfaces/SpokePoolPeripheryInterface.sol\";\n\nlibrary PeripherySigningLib {\n string internal constant EIP712_FEES_TYPE = \"Fees(uint256 amount,address recipient)\";\n string internal constant EIP712_BASE_DEPOSIT_DATA_TYPE =\n \"BaseDepositData(address inputToken,bytes32 outputToken,uint256 outputAmount,address depositor,bytes32 recipient,uint256 destinationChainId,bytes32 exclusiveRelayer,uint32 quoteTimestamp,uint32 fillDeadline,uint32 exclusivityParameter,bytes message)\";\n string internal constant EIP712_DEPOSIT_DATA_TYPE =\n \"DepositData(Fees submissionFees,BaseDepositData baseDepositData,uint256 inputAmount,address spokePool,uint256 nonce)\";\n string internal constant EIP712_SWAP_AND_DEPOSIT_DATA_TYPE =\n \"SwapAndDepositData(Fees submissionFees,BaseDepositData depositData,address swapToken,address exchange,uint8 transferType,uint256 swapTokenAmount,uint256 minExpectedInputTokenAmount,bytes routerCalldata,bool enableProportionalAdjustment,address spokePool,uint256 nonce)\";\n\n // EIP712 Type hashes.\n bytes32 internal constant EIP712_FEES_TYPEHASH = keccak256(abi.encodePacked(EIP712_FEES_TYPE));\n bytes32 internal constant EIP712_BASE_DEPOSIT_DATA_TYPEHASH =\n keccak256(abi.encodePacked(EIP712_BASE_DEPOSIT_DATA_TYPE));\n bytes32 internal constant EIP712_DEPOSIT_DATA_TYPEHASH =\n keccak256(abi.encodePacked(EIP712_DEPOSIT_DATA_TYPE, EIP712_BASE_DEPOSIT_DATA_TYPE, EIP712_FEES_TYPE));\n bytes32 internal constant EIP712_SWAP_AND_DEPOSIT_DATA_TYPEHASH =\n keccak256(abi.encodePacked(EIP712_SWAP_AND_DEPOSIT_DATA_TYPE, EIP712_BASE_DEPOSIT_DATA_TYPE, EIP712_FEES_TYPE));\n\n // EIP712 Type strings.\n string internal constant TOKEN_PERMISSIONS_TYPE = \"TokenPermissions(address token,uint256 amount)\";\n string internal constant EIP712_SWAP_AND_DEPOSIT_TYPE_STRING =\n string(\n abi.encodePacked(\n \"SwapAndDepositData witness)\",\n EIP712_BASE_DEPOSIT_DATA_TYPE,\n EIP712_FEES_TYPE,\n EIP712_SWAP_AND_DEPOSIT_DATA_TYPE,\n TOKEN_PERMISSIONS_TYPE\n )\n );\n string internal constant EIP712_DEPOSIT_TYPE_STRING =\n string(\n abi.encodePacked(\n \"DepositData witness)\",\n EIP712_BASE_DEPOSIT_DATA_TYPE,\n EIP712_DEPOSIT_DATA_TYPE,\n EIP712_FEES_TYPE,\n TOKEN_PERMISSIONS_TYPE\n )\n );\n\n error InvalidSignature();\n\n /**\n * @notice Creates the EIP712 compliant hashed data corresponding to the BaseDepositData struct.\n * @param baseDepositData Input struct whose values are hashed.\n * @dev BaseDepositData is only used as a nested struct for both DepositData and SwapAndDepositData.\n */\n function hashBaseDepositData(\n SpokePoolPeripheryInterface.BaseDepositData calldata baseDepositData\n ) internal pure returns (bytes32) {\n return\n keccak256(\n abi.encode(\n EIP712_BASE_DEPOSIT_DATA_TYPEHASH,\n baseDepositData.inputToken,\n baseDepositData.outputToken,\n baseDepositData.outputAmount,\n baseDepositData.depositor,\n baseDepositData.recipient,\n baseDepositData.destinationChainId,\n baseDepositData.exclusiveRelayer,\n baseDepositData.quoteTimestamp,\n baseDepositData.fillDeadline,\n baseDepositData.exclusivityParameter,\n keccak256(baseDepositData.message)\n )\n );\n }\n\n /**\n * @notice Creates the EIP712 compliant hashed data corresponding to the Fees struct.\n * @param fees Input struct whose values are hashed.\n * @dev Fees is only used as a nested struct for both DepositData and SwapAndDepositData.\n */\n function hashFees(SpokePoolPeripheryInterface.Fees calldata fees) internal pure returns (bytes32) {\n return keccak256(abi.encode(EIP712_FEES_TYPEHASH, fees.amount, fees.recipient));\n }\n\n /**\n * @notice Creates the EIP712 compliant hashed data corresponding to the DepositData struct.\n * @param depositData Input struct whose values are hashed.\n */\n function hashDepositData(\n SpokePoolPeripheryInterface.DepositData calldata depositData\n ) internal pure returns (bytes32) {\n return\n keccak256(\n abi.encode(\n EIP712_DEPOSIT_DATA_TYPEHASH,\n hashFees(depositData.submissionFees),\n hashBaseDepositData(depositData.baseDepositData),\n depositData.inputAmount,\n depositData.spokePool,\n depositData.nonce\n )\n );\n }\n\n /**\n * @notice Creates the EIP712 compliant hashed data corresponding to the SwapAndDepositData struct.\n * @param swapAndDepositData Input struct whose values are hashed.\n */\n function hashSwapAndDepositData(\n SpokePoolPeripheryInterface.SwapAndDepositData calldata swapAndDepositData\n ) internal pure returns (bytes32) {\n return\n keccak256(\n abi.encode(\n EIP712_SWAP_AND_DEPOSIT_DATA_TYPEHASH,\n hashFees(swapAndDepositData.submissionFees),\n hashBaseDepositData(swapAndDepositData.depositData),\n swapAndDepositData.swapToken,\n swapAndDepositData.exchange,\n swapAndDepositData.transferType,\n swapAndDepositData.swapTokenAmount,\n swapAndDepositData.minExpectedInputTokenAmount,\n keccak256(swapAndDepositData.routerCalldata),\n swapAndDepositData.enableProportionalAdjustment,\n swapAndDepositData.spokePool,\n swapAndDepositData.nonce\n )\n );\n }\n\n /**\n * @notice Reads an input bytes, and, assuming it is a signature for a 32-byte hash, returns the v, r, and s values.\n * @param _signature The input signature to deserialize.\n */\n function deserializeSignature(bytes calldata _signature) internal pure returns (bytes32 r, bytes32 s, uint8 v) {\n if (_signature.length != 65) revert InvalidSignature();\n v = uint8(_signature[64]);\n r = bytes32(_signature[0:32]);\n s = bytes32(_signature[32:64]);\n }\n}\n"
+ },
+ "contracts/MerkleLib.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\nimport \"./interfaces/SpokePoolInterface.sol\";\nimport \"./interfaces/V3SpokePoolInterface.sol\";\nimport \"./interfaces/HubPoolInterface.sol\";\n\nimport \"@openzeppelin/contracts-v4/utils/cryptography/MerkleProof.sol\";\n\n/**\n * @notice Library to help with merkle roots, proofs, and claims.\n * @custom:security-contact bugs@across.to\n */\nlibrary MerkleLib {\n /**\n * @notice Verifies that a repayment is contained within a merkle root.\n * @param root the merkle root.\n * @param rebalance the rebalance struct.\n * @param proof the merkle proof.\n * @return bool to signal if the pool rebalance proof correctly shows inclusion of the rebalance within the tree.\n */\n function verifyPoolRebalance(\n bytes32 root,\n HubPoolInterface.PoolRebalanceLeaf memory rebalance,\n bytes32[] memory proof\n ) internal pure returns (bool) {\n return MerkleProof.verify(proof, root, keccak256(abi.encode(rebalance)));\n }\n\n /**\n * @notice Verifies that a relayer refund is contained within a merkle root.\n * @param root the merkle root.\n * @param refund the refund struct.\n * @param proof the merkle proof.\n * @return bool to signal if the relayer refund proof correctly shows inclusion of the refund within the tree.\n */\n function verifyRelayerRefund(\n bytes32 root,\n SpokePoolInterface.RelayerRefundLeaf memory refund,\n bytes32[] memory proof\n ) internal pure returns (bool) {\n return MerkleProof.verify(proof, root, keccak256(abi.encode(refund)));\n }\n\n function verifyV3SlowRelayFulfillment(\n bytes32 root,\n V3SpokePoolInterface.V3SlowFill memory slowRelayFulfillment,\n bytes32[] memory proof\n ) internal pure returns (bool) {\n return MerkleProof.verify(proof, root, keccak256(abi.encode(slowRelayFulfillment)));\n }\n\n // The following functions are primarily copied from\n // https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol with minor changes.\n\n /**\n * @notice Tests whether a claim is contained within a claimedBitMap mapping.\n * @param claimedBitMap a simple uint256 mapping in storage used as a bitmap.\n * @param index the index to check in the bitmap.\n * @return bool indicating if the index within the claimedBitMap has been marked as claimed.\n */\n function isClaimed(mapping(uint256 => uint256) storage claimedBitMap, uint256 index) internal view returns (bool) {\n uint256 claimedWordIndex = index / 256;\n uint256 claimedBitIndex = index % 256;\n uint256 claimedWord = claimedBitMap[claimedWordIndex];\n uint256 mask = (1 << claimedBitIndex);\n return claimedWord & mask == mask;\n }\n\n /**\n * @notice Marks an index in a claimedBitMap as claimed.\n * @param claimedBitMap a simple uint256 mapping in storage used as a bitmap.\n * @param index the index to mark in the bitmap.\n */\n function setClaimed(mapping(uint256 => uint256) storage claimedBitMap, uint256 index) internal {\n uint256 claimedWordIndex = index / 256;\n uint256 claimedBitIndex = index % 256;\n claimedBitMap[claimedWordIndex] = claimedBitMap[claimedWordIndex] | (1 << claimedBitIndex);\n }\n\n /**\n * @notice Tests whether a claim is contained within a 1D claimedBitMap mapping.\n * @param claimedBitMap a simple uint256 value, encoding a 1D bitmap.\n * @param index the index to check in the bitmap. Uint8 type enforces that index can't be > 255.\n * @return bool indicating if the index within the claimedBitMap has been marked as claimed.\n */\n function isClaimed1D(uint256 claimedBitMap, uint8 index) internal pure returns (bool) {\n uint256 mask = (1 << index);\n return claimedBitMap & mask == mask;\n }\n\n /**\n * @notice Marks an index in a claimedBitMap as claimed.\n * @param claimedBitMap a simple uint256 mapping in storage used as a bitmap. Uint8 type enforces that index\n * can't be > 255.\n * @param index the index to mark in the bitmap.\n * @return uint256 representing the modified input claimedBitMap with the index set to true.\n */\n function setClaimed1D(uint256 claimedBitMap, uint8 index) internal pure returns (uint256) {\n return claimedBitMap | (1 << index);\n }\n}\n"
+ },
+ "contracts/SpokePool.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.18;\n\nimport \"./MerkleLib.sol\";\nimport \"./erc7683/ERC7683.sol\";\nimport \"./erc7683/ERC7683Permit2Lib.sol\";\nimport \"./external/interfaces/WETH9Interface.sol\";\nimport \"./interfaces/SpokePoolMessageHandler.sol\";\nimport \"./interfaces/SpokePoolInterface.sol\";\nimport \"./interfaces/V3SpokePoolInterface.sol\";\nimport \"./upgradeable/MultiCallerUpgradeable.sol\";\nimport \"./upgradeable/EIP712CrossChainUpgradeable.sol\";\nimport \"./upgradeable/AddressLibUpgradeable.sol\";\nimport \"./libraries/AddressConverters.sol\";\nimport { IOFT, SendParam, MessagingFee } from \"./interfaces/IOFT.sol\";\nimport { OFTTransportAdapter } from \"./libraries/OFTTransportAdapter.sol\";\n\nimport \"@openzeppelin/contracts-upgradeable-v4/token/ERC20/IERC20Upgradeable.sol\";\nimport \"@openzeppelin/contracts-upgradeable-v4/token/ERC20/utils/SafeERC20Upgradeable.sol\";\nimport \"@openzeppelin/contracts-v4/utils/cryptography/SignatureChecker.sol\";\nimport \"@openzeppelin/contracts-upgradeable-v4/proxy/utils/UUPSUpgradeable.sol\";\nimport \"@openzeppelin/contracts-upgradeable-v4/security/ReentrancyGuardUpgradeable.sol\";\nimport \"@openzeppelin/contracts-v4/utils/math/SignedMath.sol\";\n\n/**\n * @title SpokePool\n * @notice Base contract deployed on source and destination chains enabling depositors to transfer assets from source to\n * destination. Deposit orders are fulfilled by off-chain relayers who also interact with this contract. Deposited\n * tokens are locked on the source chain and relayers send the recipient the desired token currency and amount\n * on the destination chain. Locked source chain tokens are later sent over the canonical token bridge to L1 HubPool.\n * Relayers are refunded with destination tokens out of this contract after another off-chain actor, a \"data worker\",\n * submits a proof that the relayer correctly submitted a relay on this SpokePool.\n * @custom:security-contact bugs@across.to\n */\nabstract contract SpokePool is\n V3SpokePoolInterface,\n SpokePoolInterface,\n UUPSUpgradeable,\n ReentrancyGuardUpgradeable,\n MultiCallerUpgradeable,\n EIP712CrossChainUpgradeable,\n IDestinationSettler,\n OFTTransportAdapter\n{\n using SafeERC20Upgradeable for IERC20Upgradeable;\n using AddressLibUpgradeable for address;\n using Bytes32ToAddress for bytes32;\n using AddressToBytes32 for address;\n\n // Address of the L1 contract that acts as the owner of this SpokePool. This should normally be set to the HubPool\n // address. The crossDomainAdmin address is unused when the SpokePool is deployed to the same chain as the HubPool.\n address public crossDomainAdmin;\n\n // Address of the L1 contract that will send tokens to and receive tokens from this contract to fund relayer\n // refunds and slow relays.\n address public withdrawalRecipient;\n\n // Note: The following two storage variables prefixed with DEPRECATED used to be variables that could be set by\n // the cross-domain admin. Admins ended up not changing these in production, so to reduce\n // gas in deposit/fill functions, we are converting them to private variables to maintain the contract\n // storage layout and replacing them with immutable or constant variables, because retrieving a constant\n // value is cheaper than retrieving a storage variable. Please see out the immutable/constant variable section.\n WETH9Interface private DEPRECATED_wrappedNativeToken;\n uint32 private DEPRECATED_depositQuoteTimeBuffer;\n\n // `numberOfDeposits` acts as a counter to generate unique deposit identifiers for this spoke pool.\n // It is a uint32 that increments with each `depositV3` call. In the `FundsDeposited` event, it is\n // implicitly cast to uint256 by setting its most significant bits to 0, reducing the risk of ID collisions\n // with unsafe deposits. However, this variable's name could be improved (e.g., `depositNonceCounter`)\n // since it does not accurately reflect the total number of deposits, as `unsafeDeposit` can bypass this increment.\n uint32 public numberOfDeposits;\n\n // Whether deposits and fills are disabled.\n bool public pausedFills;\n bool public pausedDeposits;\n\n // This contract can store as many root bundles as the HubPool chooses to publish here.\n RootBundle[] public rootBundles;\n\n // Origin token to destination token routings can be turned on or off, which can enable or disable deposits.\n mapping(address => mapping(uint256 => bool)) private DEPRECATED_enabledDepositRoutes;\n\n // Each relay is associated with the hash of parameters that uniquely identify the original deposit and a relay\n // attempt for that deposit. The relay itself is just represented as the amount filled so far. The total amount to\n // relay, the fees, and the agents are all parameters included in the hash key.\n mapping(bytes32 => uint256) private DEPRECATED_relayFills;\n\n // Note: We will likely un-deprecate the fill and deposit counters to implement a better\n // dynamic LP fee mechanism but for now we'll deprecate it to reduce bytecode\n // in deposit/fill functions. These counters are designed to implement a fee mechanism that is based on a\n // canonical history of deposit and fill events and how they update a virtual running balance of liabilities and\n // assets, which then determines the LP fee charged to relays.\n\n // This keeps track of the worst-case liabilities due to fills.\n // It is never reset. Users should only rely on it to determine the worst-case increase in liabilities between\n // two points. This is used to provide frontrunning protection to ensure the relayer's assumptions about the state\n // upon which their expected repayments are based will not change before their transaction is mined.\n mapping(address => uint256) private DEPRECATED_fillCounter;\n\n // This keeps track of the total running deposits for each token. This allows depositors to protect themselves from\n // frontrunning that might change their worst-case quote.\n mapping(address => uint256) private DEPRECATED_depositCounter;\n\n // This tracks the number of identical refunds that have been requested.\n // The intention is to allow an off-chain system to know when this could be a duplicate and ensure that the other\n // requests are known and accounted for.\n mapping(bytes32 => uint256) private DEPRECATED_refundsRequested;\n\n // Mapping of V3 relay hashes to fill statuses. Distinguished from relayFills\n // to eliminate any chance of collision between pre and post V3 relay hashes.\n mapping(bytes32 => uint256) public fillStatuses;\n\n // Mapping of L2TokenAddress to relayer to outstanding refund amount. Used when a relayer repayment fails for some\n // reason (eg blacklist) to track their outstanding liability, thereby letting them claim it later.\n mapping(address => mapping(address => uint256)) public relayerRefund;\n\n // Mapping of L2 token address to L2 IOFT messenger address. Required to support bridging via OFT standard\n mapping(address l2TokenAddress => address l2OftMessenger) public oftMessengers;\n\n /**************************************************************\n * CONSTANT/IMMUTABLE VARIABLES *\n **************************************************************/\n // Constant and immutable variables do not take up storage slots and are instead added to the contract bytecode\n // at compile time. The difference between them is that constant variables must be declared inline, meaning\n // that they cannot be changed in production without changing the contract code, while immutable variables\n // can be set in the constructor. Therefore we use the immutable keyword for variables that we might want to be\n // different for each child contract (one obvious example of this is the wrappedNativeToken) or that we might\n // want to update in the future like depositQuoteTimeBuffer. Constants are unlikely to ever be changed.\n\n // Address of wrappedNativeToken contract for this network. If an origin token matches this, then the caller can\n // optionally instruct this contract to wrap native tokens when depositing (ie ETH->WETH or MATIC->WMATIC).\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n WETH9Interface public immutable wrappedNativeToken;\n\n // Any deposit quote times greater than or less than this value to the current contract time is blocked. Forces\n // caller to use an approximately \"current\" realized fee.\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n uint32 public immutable depositQuoteTimeBuffer;\n\n // The fill deadline can only be set this far into the future from the timestamp of the deposit on this contract.\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n uint32 public immutable fillDeadlineBuffer;\n\n uint256 public constant MAX_TRANSFER_SIZE = 1e36;\n\n bytes32 public constant UPDATE_BYTES32_DEPOSIT_DETAILS_HASH =\n keccak256(\n \"UpdateDepositDetails(uint256 depositId,uint256 originChainId,uint256 updatedOutputAmount,bytes32 updatedRecipient,bytes updatedMessage)\"\n );\n // Default chain Id used to signify that no repayment is requested, for example when executing a slow fill.\n uint256 public constant EMPTY_REPAYMENT_CHAIN_ID = 0;\n // Default address used to signify that no relayer should be credited with a refund, for example\n // when executing a slow fill.\n bytes32 public constant EMPTY_RELAYER = bytes32(0);\n // This is the magic value that signals to the off-chain validator\n // that this deposit can never expire. A deposit with this fill deadline should always be eligible for a\n // slow fill, meaning that its output token and input token must be \"equivalent\". Therefore, this value is only\n // used as a fillDeadline in deposit(), a soon to be deprecated function that also hardcodes outputToken to\n // the zero address, which forces the off-chain validator to replace the output token with the equivalent\n // token for the input token. By using this magic value, off-chain validators do not have to keep\n // this event in their lookback window when querying for expired deposits.\n uint32 public constant INFINITE_FILL_DEADLINE = type(uint32).max;\n\n // One year in seconds. If `exclusivityParameter` is set to a value less than this, then the emitted\n // exclusivityDeadline in a deposit event will be set to the current time plus this value.\n uint32 public constant MAX_EXCLUSIVITY_PERIOD_SECONDS = 31_536_000;\n\n // EIP-7702 prefix for delegated wallets.\n bytes3 internal constant EIP7702_PREFIX = 0xef0100;\n\n /****************************************\n * EVENTS *\n ****************************************/\n event SetXDomainAdmin(address indexed newAdmin);\n event SetWithdrawalRecipient(address indexed newWithdrawalRecipient);\n event EnabledDepositRoute(address indexed originToken, uint256 indexed destinationChainId, bool enabled);\n event RelayedRootBundle(\n uint32 indexed rootBundleId,\n bytes32 indexed relayerRefundRoot,\n bytes32 indexed slowRelayRoot\n );\n event ExecutedRelayerRefundRoot(\n uint256 amountToReturn,\n uint256 indexed chainId,\n uint256[] refundAmounts,\n uint32 indexed rootBundleId,\n uint32 indexed leafId,\n address l2TokenAddress,\n address[] refundAddresses,\n bool deferredRefunds,\n address caller\n );\n event TokensBridged(\n uint256 amountToReturn,\n uint256 indexed chainId,\n uint32 indexed leafId,\n bytes32 indexed l2TokenAddress,\n address caller\n );\n event EmergencyDeletedRootBundle(uint256 indexed rootBundleId);\n event PausedDeposits(bool isPaused);\n event PausedFills(bool isPaused);\n event SetOFTMessenger(address indexed token, address indexed messenger);\n\n /// @notice Emitted when the call to external contract is executed, triggered by an admin action\n event AdminExternalCallExecuted(address indexed target, bytes data);\n\n error OFTTokenMismatch();\n /// @notice Thrown when the native fee sent by the caller is insufficient to cover the OFT transfer.\n error OFTFeeUnderpaid();\n\n /**\n * @notice Construct the SpokePool. Normally, logic contracts used in upgradeable proxies shouldn't\n * have constructors since the following code will be executed within the logic contract's state, not the\n * proxy contract's state. However, if we restrict the constructor to setting only immutable variables, then\n * we are safe because immutable variables are included in the logic contract's bytecode rather than its storage.\n * @dev Do not leave an implementation contract uninitialized. An uninitialized implementation contract can be\n * taken over by an attacker, which may impact the proxy. To prevent the implementation contract from being\n * used, you should invoke the _disableInitializers function in the constructor to automatically lock it when\n * it is deployed:\n * @param _wrappedNativeTokenAddress wrappedNativeToken address for this network to set.\n * @param _depositQuoteTimeBuffer depositQuoteTimeBuffer to set. Quote timestamps can't be set more than this amount\n * into the past from the block time of the deposit.\n * @param _fillDeadlineBuffer fillDeadlineBuffer to set. Fill deadlines can't be set more than this amount\n * into the future from the block time of the deposit.\n * @param _oftDstEid destination endpoint id for OFT messaging\n * @param _oftFeeCap fee cap in native token when paying for cross-chain OFT transfers\n */\n /// @custom:oz-upgrades-unsafe-allow constructor\n constructor(\n address _wrappedNativeTokenAddress,\n uint32 _depositQuoteTimeBuffer,\n uint32 _fillDeadlineBuffer,\n uint32 _oftDstEid,\n uint256 _oftFeeCap\n ) OFTTransportAdapter(_oftDstEid, _oftFeeCap) {\n wrappedNativeToken = WETH9Interface(_wrappedNativeTokenAddress);\n depositQuoteTimeBuffer = _depositQuoteTimeBuffer;\n fillDeadlineBuffer = _fillDeadlineBuffer;\n _disableInitializers();\n }\n\n /**\n * @notice Construct the base SpokePool.\n * @param _initialDepositId Starting deposit ID. Set to 0 unless this is a re-deployment in order to mitigate\n * relay hash collisions.\n * @param _crossDomainAdmin Cross domain admin to set. Can be changed by admin.\n * @param _withdrawalRecipient Address which receives token withdrawals. Can be changed by admin. For Spoke Pools on L2, this will\n * likely be the hub pool.\n */\n function __SpokePool_init(\n uint32 _initialDepositId,\n address _crossDomainAdmin,\n address _withdrawalRecipient\n ) public onlyInitializing {\n numberOfDeposits = _initialDepositId;\n __EIP712_init(\"ACROSS-V2\", \"1.0.0\");\n __UUPSUpgradeable_init();\n __ReentrancyGuard_init();\n _setCrossDomainAdmin(_crossDomainAdmin);\n _setWithdrawalRecipient(_withdrawalRecipient);\n }\n\n /****************************************\n * MODIFIERS *\n ****************************************/\n\n /**\n * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by\n * {upgradeTo} and {upgradeToAndCall}.\n * @dev This should be set to cross domain admin for specific SpokePool.\n */\n modifier onlyAdmin() {\n _requireAdminSender();\n _;\n }\n\n modifier unpausedDeposits() {\n if (pausedDeposits) revert DepositsArePaused();\n _;\n }\n\n modifier unpausedFills() {\n if (pausedFills) revert FillsArePaused();\n _;\n }\n\n /**************************************\n * ADMIN FUNCTIONS *\n **************************************/\n\n // Allows cross domain admin to upgrade UUPS proxy implementation.\n function _authorizeUpgrade(address newImplementation) internal override onlyAdmin {}\n\n /**\n * @notice Pauses deposit-related functions. This is intended to be used if this contract is deprecated or when\n * something goes awry.\n * @dev Affects `deposit()` but not `speedUpDeposit()`, so that existing deposits can be sped up and still\n * relayed.\n * @param pause true if the call is meant to pause the system, false if the call is meant to unpause it.\n */\n function pauseDeposits(bool pause) public override onlyAdmin nonReentrant {\n pausedDeposits = pause;\n emit PausedDeposits(pause);\n }\n\n /**\n * @notice Pauses fill-related functions. This is intended to be used if this contract is deprecated or when\n * something goes awry.\n * @dev Affects fillRelayWithUpdatedDeposit() and fillRelay().\n * @param pause true if the call is meant to pause the system, false if the call is meant to unpause it.\n */\n function pauseFills(bool pause) public override onlyAdmin nonReentrant {\n pausedFills = pause;\n emit PausedFills(pause);\n }\n\n /**\n * @notice Change cross domain admin address. Callable by admin only.\n * @param newCrossDomainAdmin New cross domain admin.\n */\n function setCrossDomainAdmin(address newCrossDomainAdmin) public override onlyAdmin nonReentrant {\n _setCrossDomainAdmin(newCrossDomainAdmin);\n }\n\n /**\n * @notice Change L1 withdrawal recipient address. Callable by admin only.\n * @param newWithdrawalRecipient New withdrawal recipient address.\n */\n function setWithdrawalRecipient(address newWithdrawalRecipient) public override onlyAdmin nonReentrant {\n _setWithdrawalRecipient(newWithdrawalRecipient);\n }\n\n /**\n * @notice This method stores a new root bundle in this contract that can be executed to refund relayers, fulfill\n * slow relays, and send funds back to the HubPool on L1. This method can only be called by the admin and is\n * designed to be called as part of a cross-chain message from the HubPool's executeRootBundle method.\n * @param relayerRefundRoot Merkle root containing relayer refund leaves that can be individually executed via\n * executeRelayerRefundLeaf().\n * @param slowRelayRoot Merkle root containing slow relay fulfillment leaves that can be individually executed via\n * executeSlowRelayLeaf().\n */\n function relayRootBundle(bytes32 relayerRefundRoot, bytes32 slowRelayRoot) public override onlyAdmin nonReentrant {\n uint32 rootBundleId = uint32(rootBundles.length);\n RootBundle storage rootBundle = rootBundles.push();\n rootBundle.relayerRefundRoot = relayerRefundRoot;\n rootBundle.slowRelayRoot = slowRelayRoot;\n emit RelayedRootBundle(rootBundleId, relayerRefundRoot, slowRelayRoot);\n }\n\n /**\n * @notice This method is intended to only be used in emergencies where a bad root bundle has reached the\n * SpokePool.\n * @param rootBundleId Index of the root bundle that needs to be deleted. Note: this is intentionally a uint256\n * to ensure that a small input range doesn't limit which indices this method is able to reach.\n */\n function emergencyDeleteRootBundle(uint256 rootBundleId) public override onlyAdmin nonReentrant {\n // Deleting a struct containing a mapping does not delete the mapping in Solidity, therefore the bitmap's\n // data will still remain potentially leading to vulnerabilities down the line. The way around this would\n // be to iterate through every key in the mapping and resetting the value to 0, but this seems expensive and\n // would require a new list in storage to keep track of keys.\n //slither-disable-next-line mapping-deletion\n delete rootBundles[rootBundleId];\n emit EmergencyDeletedRootBundle(rootBundleId);\n }\n\n /**\n * @notice Add token -> OFTMessenger relationship. Callable only by admin.\n * @param token token address on the current chain\n * @param messenger IOFT contract address on the current chain for the specified token. Acts as a 'mailbox'\n */\n function setOftMessenger(address token, address messenger) external onlyAdmin nonReentrant {\n _setOftMessenger(token, messenger);\n }\n\n /**\n * @notice Execute an external call to a target contract.\n * @param message The message containing the target address and calldata to execute.\n * @return returnData The return data from the executed call.\n */\n function executeExternalCall(\n bytes calldata message\n ) external onlyAdmin nonReentrant returns (bytes memory returnData) {\n (address target, bytes memory data) = abi.decode(message, (address, bytes));\n\n if (target == address(0)) revert ZeroAddressTarget();\n if (data.length < 4) revert MessageTooShort(); // need at least a selector\n\n // external call to target\n bool success;\n (success, returnData) = target.call(data);\n\n if (!success) revert ExternalCallExecutionFailed();\n emit AdminExternalCallExecuted(target, data);\n }\n\n /**************************************\n * LEGACY DEPOSITOR FUNCTIONS *\n **************************************/\n\n /**\n * @dev DEPRECATION NOTICE: this function is deprecated and will be removed in the future.\n * Please use deposit (under DEPOSITOR FUNCTIONS below) or depositV3 instead.\n * @notice Called by user to bridge funds from origin to destination chain. Depositor will effectively lock\n * tokens in this contract and receive a destination token on the destination chain. The origin => destination\n * token mapping is stored on the L1 HubPool.\n * @notice The caller must first approve this contract to spend amount of originToken.\n * @notice The originToken => destinationChainId must be enabled.\n * @notice This method is payable because the caller is able to deposit native token if the originToken is\n * wrappedNativeToken and this function will handle wrapping the native token to wrappedNativeToken.\n * @dev Produces a FundsDeposited event with an infinite expiry, meaning that this deposit can never expire.\n * Moreover, the event's outputToken is set to 0x0 meaning that this deposit can always be slow filled.\n * @param recipient Address to receive funds at on destination chain.\n * @param originToken Token to lock into this contract to initiate deposit.\n * @param amount Amount of tokens to deposit. Will be amount of tokens to receive less fees.\n * @param destinationChainId Denotes network where user will receive funds from SpokePool by a relayer.\n * @param relayerFeePct % of deposit amount taken out to incentivize a fast relayer.\n * @param quoteTimestamp Timestamp used by relayers to compute this deposit's realizedLPFeePct which is paid\n * to LP pool on HubPool.\n * @param message Arbitrary data that can be used to pass additional information to the recipient along with the tokens.\n * Note: this is intended to be used to pass along instructions for how a contract should use or allocate the tokens.\n */\n function depositDeprecated_5947912356(\n address recipient,\n address originToken,\n uint256 amount,\n uint256 destinationChainId,\n int64 relayerFeePct,\n uint32 quoteTimestamp,\n bytes memory message,\n uint256 // maxCount. Deprecated.\n ) public payable nonReentrant unpausedDeposits {\n _deposit(\n msg.sender,\n recipient,\n originToken,\n amount,\n destinationChainId,\n relayerFeePct,\n quoteTimestamp,\n message\n );\n }\n\n /**\n * @dev DEPRECATION NOTICE: this function is deprecated and will be removed in the future.\n * Please use the other deposit or depositV3 instead.\n * @notice The only difference between depositFor and deposit is that the depositor address stored\n * in the relay hash can be overridden by the caller. This means that the passed in depositor\n * can speed up the deposit, which is useful if the deposit is taken from the end user to a middle layer\n * contract, like an aggregator or the SpokePoolVerifier, before calling deposit on this contract.\n * @notice The caller must first approve this contract to spend amount of originToken.\n * @notice The originToken => destinationChainId must be enabled.\n * @notice This method is payable because the caller is able to deposit native token if the originToken is\n * wrappedNativeToken and this function will handle wrapping the native token to wrappedNativeToken.\n * @param depositor Address who is credited for depositing funds on origin chain and can speed up the deposit.\n * @param recipient Address to receive funds at on destination chain.\n * @param originToken Token to lock into this contract to initiate deposit.\n * @param amount Amount of tokens to deposit. Will be amount of tokens to receive less fees.\n * @param destinationChainId Denotes network where user will receive funds from SpokePool by a relayer.\n * @param relayerFeePct % of deposit amount taken out to incentivize a fast relayer.\n * @param quoteTimestamp Timestamp used by relayers to compute this deposit's realizedLPFeePct which is paid\n * to LP pool on HubPool.\n * @param message Arbitrary data that can be used to pass additional information to the recipient along with the tokens.\n * Note: this is intended to be used to pass along instructions for how a contract should use or allocate the tokens.\n */\n function depositFor(\n address depositor,\n address recipient,\n address originToken,\n uint256 amount,\n uint256 destinationChainId,\n int64 relayerFeePct,\n uint32 quoteTimestamp,\n bytes memory message,\n uint256 // maxCount. Deprecated.\n ) public payable nonReentrant unpausedDeposits {\n _deposit(depositor, recipient, originToken, amount, destinationChainId, relayerFeePct, quoteTimestamp, message);\n }\n\n /********************************************\n * DEPOSITOR FUNCTIONS *\n ********************************************/\n\n /**\n * @notice Previously, this function allowed the caller to specify the exclusivityDeadline, otherwise known as the\n * as exact timestamp on the destination chain before which only the exclusiveRelayer could fill the deposit. Now,\n * the caller is expected to pass in a number that will be interpreted either as an offset or a fixed\n * timestamp depending on its value.\n * @notice Request to bridge input token cross chain to a destination chain and receive a specified amount\n * of output tokens. The fee paid to relayers and the system should be captured in the spread between output\n * amount and input amount when adjusted to be denominated in the input token. A relayer on the destination\n * chain will send outputAmount of outputTokens to the recipient and receive inputTokens on a repayment\n * chain of their choice. Therefore, the fee should account for destination fee transaction costs,\n * the relayer's opportunity cost of capital while they wait to be refunded following an optimistic challenge\n * window in the HubPool, and the system fee that they'll be charged.\n * @dev On the destination chain, the hash of the deposit data will be used to uniquely identify this deposit, so\n * modifying any params in it will result in a different hash and a different deposit. The hash will comprise\n * all parameters to this function along with this chain's chainId(). Relayers are only refunded for filling\n * deposits with deposit hashes that map exactly to the one emitted by this contract.\n * @param depositor The account credited with the deposit who can request to \"speed up\" this deposit by modifying\n * the output amount, recipient, and message.\n * @param recipient The account receiving funds on the destination chain. Can be an EOA or a contract. If\n * the output token is the wrapped native token for the chain, then the recipient will receive native token if\n * an EOA or wrapped native token if a contract.\n * @param inputToken The token pulled from the caller's account and locked into this contract to\n * initiate the deposit. The equivalent of this token on the relayer's repayment chain of choice will be sent\n * as a refund. If this is equal to the wrapped native token then the caller can optionally pass in native token as\n * msg.value, as long as msg.value = inputTokenAmount.\n * @param outputToken The token that the relayer will send to the recipient on the destination chain. Must be an\n * ERC20.\n * @param inputAmount The amount of input tokens to pull from the caller's account and lock into this contract.\n * This amount will be sent to the relayer on their repayment chain of choice as a refund following an optimistic\n * challenge window in the HubPool, less a system fee.\n * @param outputAmount The amount of output tokens that the relayer will send to the recipient on the destination.\n * @param destinationChainId The destination chain identifier. Must be enabled along with the input token\n * as a valid deposit route from this spoke pool or this transaction will revert.\n * @param exclusiveRelayer The relayer that will be exclusively allowed to fill this deposit before the\n * exclusivity deadline timestamp. This must be a valid, non-zero address if the exclusivity deadline is\n * greater than the current block.timestamp. If the exclusivity deadline is < currentTime, then this must be\n * address(0), and vice versa if this is address(0).\n * @param quoteTimestamp The HubPool timestamp that is used to determine the system fee paid by the depositor.\n * This must be set to some time between [currentTime - depositQuoteTimeBuffer, currentTime]\n * where currentTime is block.timestamp on this chain or this transaction will revert.\n * @param fillDeadline The deadline for the relayer to fill the deposit. After this destination chain timestamp,\n * the fill will revert on the destination chain. Must be set before currentTime + fillDeadlineBuffer, where\n * currentTime is block.timestamp on this chain or this transaction will revert.\n * @param exclusivityParameter This value is used to set the exclusivity deadline timestamp in the emitted deposit\n * event. Before this destination chain timestamp, only the exclusiveRelayer (if set to a non-zero address),\n * can fill this deposit. There are three ways to use this parameter:\n * 1. NO EXCLUSIVITY: If this value is set to 0, then a timestamp of 0 will be emitted,\n * meaning that there is no exclusivity period.\n * 2. OFFSET: If this value is less than MAX_EXCLUSIVITY_PERIOD_SECONDS, then add this value to\n * the block.timestamp to derive the exclusive relayer deadline. Note that using the parameter in this way\n * will expose the filler of the deposit to the risk that the block.timestamp of this event gets changed\n * due to a chain-reorg, which would also change the exclusivity timestamp.\n * 3. TIMESTAMP: Otherwise, set this value as the exclusivity deadline timestamp.\n * which is the deadline for the exclusiveRelayer to fill the deposit.\n * @param message The message to send to the recipient on the destination chain if the recipient is a contract.\n * If the message is not empty, the recipient contract must implement handleV3AcrossMessage() or the fill will revert.\n */\n function deposit(\n bytes32 depositor,\n bytes32 recipient,\n bytes32 inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityParameter,\n bytes calldata message\n ) public payable override nonReentrant unpausedDeposits {\n // Increment the `numberOfDeposits` counter to ensure a unique deposit ID for this spoke pool.\n DepositV3Params memory params = DepositV3Params({\n depositor: depositor,\n recipient: recipient,\n inputToken: inputToken,\n outputToken: outputToken,\n inputAmount: inputAmount,\n outputAmount: outputAmount,\n destinationChainId: destinationChainId,\n exclusiveRelayer: exclusiveRelayer,\n depositId: numberOfDeposits++,\n quoteTimestamp: quoteTimestamp,\n fillDeadline: fillDeadline,\n exclusivityParameter: exclusivityParameter,\n message: message\n });\n _depositV3(params);\n }\n\n /**\n * @notice A version of `deposit` that accepts `address` types for backward compatibility.\n * This function allows bridging of input tokens cross-chain to a destination chain, receiving a specified amount of output tokens.\n * The relayer is refunded in input tokens on a repayment chain of their choice, minus system fees, after an optimistic challenge\n * window. The exclusivity period is specified as an offset from the current block timestamp.\n *\n * @dev This version mirrors the original `depositV3` function, but uses `address` types for `depositor`, `recipient`,\n * `inputToken`, `outputToken`, and `exclusiveRelayer` for compatibility with contracts using the `address` type.\n *\n * The key functionality and logic remain identical, ensuring interoperability across both versions.\n *\n * @param depositor The account credited with the deposit who can request to \"speed up\" this deposit by modifying\n * the output amount, recipient, and message.\n * @param recipient The account receiving funds on the destination chain. Can be an EOA or a contract. If\n * the output token is the wrapped native token for the chain, then the recipient will receive native token if\n * an EOA or wrapped native token if a contract.\n * @param inputToken The token pulled from the caller's account and locked into this contract to initiate the deposit.\n * The equivalent of this token on the relayer's repayment chain of choice will be sent as a refund. If this is equal\n * to the wrapped native token, the caller can optionally pass in native token as msg.value, provided msg.value = inputTokenAmount.\n * @param outputToken The token that the relayer will send to the recipient on the destination chain. Must be an ERC20.\n * @param inputAmount The amount of input tokens pulled from the caller's account and locked into this contract. This\n * amount will be sent to the relayer as a refund following an optimistic challenge window in the HubPool, less a system fee.\n * @param outputAmount The amount of output tokens that the relayer will send to the recipient on the destination.\n * @param destinationChainId The destination chain identifier. Must be enabled along with the input token as a valid\n * deposit route from this spoke pool or this transaction will revert.\n * @param exclusiveRelayer The relayer exclusively allowed to fill this deposit before the exclusivity deadline.\n * @param quoteTimestamp The HubPool timestamp that determines the system fee paid by the depositor. This must be set\n * between [currentTime - depositQuoteTimeBuffer, currentTime] where currentTime is block.timestamp on this chain.\n * @param fillDeadline The deadline for the relayer to fill the deposit. After this destination chain timestamp, the fill will\n * revert on the destination chain. Must be set before currentTime + fillDeadlineBuffer, where currentTime is block.timestamp\n * on this chain.\n * @param exclusivityParameter This value is used to set the exclusivity deadline timestamp in the emitted deposit\n * event. Before this destination chain timestamp, only the exclusiveRelayer (if set to a non-zero address),\n * can fill this deposit. There are three ways to use this parameter:\n * 1. NO EXCLUSIVITY: If this value is set to 0, then a timestamp of 0 will be emitted,\n * meaning that there is no exclusivity period.\n * 2. OFFSET: If this value is less than MAX_EXCLUSIVITY_PERIOD_SECONDS, then add this value to\n * the block.timestamp to derive the exclusive relayer deadline. Note that using the parameter in this way\n * will expose the filler of the deposit to the risk that the block.timestamp of this event gets changed\n * due to a chain-reorg, which would also change the exclusivity timestamp.\n * 3. TIMESTAMP: Otherwise, set this value as the exclusivity deadline timestamp.\n * which is the deadline for the exclusiveRelayer to fill the deposit.\n * @param message The message to send to the recipient on the destination chain if the recipient is a contract. If the\n * message is not empty, the recipient contract must implement `handleV3AcrossMessage()` or the fill will revert.\n */\n function depositV3(\n address depositor,\n address recipient,\n address inputToken,\n address outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n address exclusiveRelayer,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityParameter,\n bytes calldata message\n ) public payable override {\n deposit(\n depositor.toBytes32(),\n recipient.toBytes32(),\n inputToken.toBytes32(),\n outputToken.toBytes32(),\n inputAmount,\n outputAmount,\n destinationChainId,\n exclusiveRelayer.toBytes32(),\n quoteTimestamp,\n fillDeadline,\n exclusivityParameter,\n message\n );\n }\n\n /**\n * @notice See deposit for details. This function is identical to deposit except that it does not use the\n * global deposit ID counter as a deposit nonce, instead allowing the caller to pass in a deposit nonce. This\n * function is designed to be used by anyone who wants to pre-compute their resultant relay data hash, which\n * could be useful for filling a deposit faster and avoiding any risk of a relay hash unexpectedly changing\n * due to another deposit front-running this one and incrementing the global deposit ID counter.\n * @dev This is labeled \"unsafe\" because there is no guarantee that the depositId emitted in the resultant\n * FundsDeposited event is unique which means that the\n * corresponding fill might collide with an existing relay hash on the destination chain SpokePool,\n * which would make this deposit unfillable. In this case, the depositor would subsequently receive a refund\n * of `inputAmount` of `inputToken` on the origin chain after the fill deadline. Re-using a depositNonce is very\n * dangerous when combined with `speedUpDeposit`, as a speed up signature can be re-used for any deposits\n * with the same deposit ID.\n * @dev On the destination chain, the hash of the deposit data will be used to uniquely identify this deposit, so\n * modifying any params in it will result in a different hash and a different deposit. The hash will comprise\n * all parameters to this function along with this chain's chainId(). Relayers are only refunded for filling\n * deposits with deposit hashes that map exactly to the one emitted by this contract.\n * @param depositNonce The nonce that uniquely identifies this deposit. This function will combine this parameter\n * with the msg.sender address to create a unique uint256 depositNonce and ensure that the msg.sender cannot\n * use this function to front-run another depositor's unsafe deposit. This function guarantees that the resultant\n * deposit nonce will not collide with a safe uint256 deposit nonce whose 24 most significant bytes are always 0.\n * @param depositor See identically named parameter in depositV3() comments.\n * @param recipient See identically named parameter in depositV3() comments.\n * @param inputToken See identically named parameter in depositV3() comments.\n * @param outputToken See identically named parameter in depositV3() comments.\n * @param inputAmount See identically named parameter in depositV3() comments.\n * @param outputAmount See identically named parameter in depositV3() comments.\n * @param destinationChainId See identically named parameter in depositV3() comments.\n * @param exclusiveRelayer See identically named parameter in depositV3() comments.\n * @param quoteTimestamp See identically named parameter in depositV3() comments.\n * @param fillDeadline See identically named parameter in depositV3() comments.\n * @param exclusivityParameter See identically named parameter in depositV3() comments.\n * @param message See identically named parameter in depositV3() comments.\n */\n function unsafeDeposit(\n bytes32 depositor,\n bytes32 recipient,\n bytes32 inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint256 depositNonce,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityParameter,\n bytes calldata message\n ) public payable nonReentrant unpausedDeposits {\n // @dev Create the uint256 deposit ID by concatenating the msg.sender and depositor address with the inputted\n // depositNonce parameter. The resultant 32 byte string will be hashed and then casted to an \"unsafe\"\n // uint256 deposit ID. The probability that the resultant ID collides with a \"safe\" deposit ID is\n // equal to the chance that the first 28 bytes of the hash are 0, which is too small for us to consider.\n\n uint256 depositId = getUnsafeDepositId(msg.sender, depositor, depositNonce);\n DepositV3Params memory params = DepositV3Params({\n depositor: depositor,\n recipient: recipient,\n inputToken: inputToken,\n outputToken: outputToken,\n inputAmount: inputAmount,\n outputAmount: outputAmount,\n destinationChainId: destinationChainId,\n exclusiveRelayer: exclusiveRelayer,\n depositId: depositId,\n quoteTimestamp: quoteTimestamp,\n fillDeadline: fillDeadline,\n exclusivityParameter: exclusivityParameter,\n message: message\n });\n _depositV3(params);\n }\n\n /**\n * @notice Submits deposit and sets quoteTimestamp to current Time. Sets fill and exclusivity\n * deadlines as offsets added to the current time. This function is designed to be called by users\n * such as Multisig contracts who do not have certainty when their transaction will mine.\n * @param depositor The account credited with the deposit who can request to \"speed up\" this deposit by modifying\n * the output amount, recipient, and message.\n * @param recipient The account receiving funds on the destination chain. Can be an EOA or a contract. If\n * the output token is the wrapped native token for the chain, then the recipient will receive native token if\n * an EOA or wrapped native token if a contract.\n * @param inputToken The token pulled from the caller's account and locked into this contract to\n * initiate the deposit. The equivalent of this token on the relayer's repayment chain of choice will be sent\n * as a refund. If this is equal to the wrapped native token then the caller can optionally pass in native token as\n * msg.value, as long as msg.value = inputTokenAmount.\n * @param outputToken The token that the relayer will send to the recipient on the destination chain. Must be an\n * ERC20.\n * @param inputAmount The amount of input tokens to pull from the caller's account and lock into this contract.\n * This amount will be sent to the relayer on their repayment chain of choice as a refund following an optimistic\n * challenge window in the HubPool, plus a system fee.\n * @param outputAmount The amount of output tokens that the relayer will send to the recipient on the destination.\n * @param destinationChainId The destination chain identifier. Must be enabled along with the input token\n * as a valid deposit route from this spoke pool or this transaction will revert.\n * @param exclusiveRelayer The relayer that will be exclusively allowed to fill this deposit before the\n * exclusivity deadline timestamp.\n * @param fillDeadlineOffset Added to the current time to set the fill deadline, which is the deadline for the\n * relayer to fill the deposit. After this destination chain timestamp, the fill will revert on the\n * destination chain.\n * @param exclusivityParameter See identically named parameter in deposit() comments.\n * @param message The message to send to the recipient on the destination chain if the recipient is a contract.\n * If the message is not empty, the recipient contract must implement handleV3AcrossMessage() or the fill will revert.\n */\n function depositNow(\n bytes32 depositor,\n bytes32 recipient,\n bytes32 inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint32 fillDeadlineOffset,\n uint32 exclusivityParameter,\n bytes calldata message\n ) external payable override {\n deposit(\n depositor,\n recipient,\n inputToken,\n outputToken,\n inputAmount,\n outputAmount,\n destinationChainId,\n exclusiveRelayer,\n uint32(getCurrentTime()),\n uint32(getCurrentTime()) + fillDeadlineOffset,\n exclusivityParameter,\n message\n );\n }\n\n /**\n * @notice A version of `depositNow` that supports addresses as input types for backward compatibility.\n * This function submits a deposit and sets `quoteTimestamp` to the current time. The `fill` and `exclusivity` deadlines\n * are set as offsets added to the current time. It is designed to be called by users, including Multisig contracts, who may\n * not have certainty when their transaction will be mined.\n *\n * @dev This version is identical to the original `depositV3Now` but uses `address` types for `depositor`, `recipient`,\n * `inputToken`, `outputToken`, and `exclusiveRelayer` to support compatibility with older systems.\n * It maintains the same logic and purpose, ensuring interoperability with both versions.\n *\n * @param depositor The account credited with the deposit, who can request to \"speed up\" this deposit by modifying\n * the output amount, recipient, and message.\n * @param recipient The account receiving funds on the destination chain. Can be an EOA or a contract. If\n * the output token is the wrapped native token for the chain, then the recipient will receive the native token if\n * an EOA or wrapped native token if a contract.\n * @param inputToken The token pulled from the caller's account and locked into this contract to initiate the deposit.\n * Equivalent tokens on the relayer's repayment chain will be sent as a refund. If this is the wrapped native token,\n * msg.value must equal inputTokenAmount when passed.\n * @param outputToken The token the relayer will send to the recipient on the destination chain. Must be an ERC20.\n * @param inputAmount The amount of input tokens pulled from the caller's account and locked into this contract.\n * This amount will be sent to the relayer as a refund following an optimistic challenge window in the HubPool, plus a system fee.\n * @param outputAmount The amount of output tokens the relayer will send to the recipient on the destination.\n * @param destinationChainId The destination chain identifier. Must be enabled with the input token as a valid deposit route\n * from this spoke pool, or the transaction will revert.\n * @param exclusiveRelayer The relayer exclusively allowed to fill the deposit before the exclusivity deadline.\n * @param fillDeadlineOffset Added to the current time to set the fill deadline. After this timestamp, fills on the\n * destination chain will revert.\n * @param exclusivityParameter See identically named parameter in deposit() comments.\n * @param message The message to send to the recipient on the destination chain. If the recipient is a contract, it must\n * implement `handleV3AcrossMessage()` if the message is not empty, or the fill will revert.\n */\n function depositV3Now(\n address depositor,\n address recipient,\n address inputToken,\n address outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n address exclusiveRelayer,\n uint32 fillDeadlineOffset,\n uint32 exclusivityParameter,\n bytes calldata message\n ) external payable override {\n depositV3(\n depositor,\n recipient,\n inputToken,\n outputToken,\n inputAmount,\n outputAmount,\n destinationChainId,\n exclusiveRelayer,\n uint32(getCurrentTime()),\n uint32(getCurrentTime()) + fillDeadlineOffset,\n exclusivityParameter,\n message\n );\n }\n\n /**\n * @notice Depositor can use this function to signal to relayer to use updated output amount, recipient,\n * and/or message. The speed up signature uniquely identifies the speed up based only on\n * depositor, deposit ID and origin chain, so using this function in conjunction with unsafeDeposit is risky\n * due to the chance of repeating a deposit ID.\n * @dev the depositor and depositId must match the params in a FundsDeposited event that the depositor\n * wants to speed up. The relayer has the option but not the obligation to use this updated information\n * when filling the deposit via fillRelayWithUpdatedDeposit().\n * @param depositor Depositor that must sign the depositorSignature and was the original depositor.\n * @param depositId Deposit ID to speed up.\n * @param updatedOutputAmount New output amount to use for this deposit. Should be lower than previous value\n * otherwise relayer has no incentive to use this updated value.\n * @param updatedRecipient New recipient to use for this deposit. Can be modified if the recipient is a contract\n * that expects to receive a message from the relay and for some reason needs to be modified.\n * @param updatedMessage New message to use for this deposit. Can be modified if the recipient is a contract\n * that expects to receive a message from the relay and for some reason needs to be modified.\n * @param depositorSignature Signed EIP712 hashstruct containing the deposit ID. Should be signed by the depositor\n * account. If depositor is a contract, then should implement EIP1271 to sign as a contract. See\n * _verifyUpdateV3DepositMessage() for more details about how this signature should be constructed.\n */\n function speedUpDeposit(\n bytes32 depositor,\n uint256 depositId,\n uint256 updatedOutputAmount,\n bytes32 updatedRecipient,\n bytes calldata updatedMessage,\n bytes calldata depositorSignature\n ) public override nonReentrant {\n _verifyUpdateV3DepositMessage(\n depositor.toAddress(),\n depositId,\n chainId(),\n updatedOutputAmount,\n updatedRecipient,\n updatedMessage,\n depositorSignature,\n UPDATE_BYTES32_DEPOSIT_DETAILS_HASH\n );\n\n // Assuming the above checks passed, a relayer can take the signature and the updated deposit information\n // from the following event to submit a fill with updated relay data.\n emit RequestedSpeedUpDeposit(\n updatedOutputAmount,\n depositId,\n depositor,\n updatedRecipient,\n updatedMessage,\n depositorSignature\n );\n }\n\n /**\n * @notice A version of `speedUpDeposit` using `address` types for backward compatibility.\n * This function allows the depositor to signal to the relayer to use updated output amount, recipient, and/or message\n * when filling a deposit. This can be useful when the deposit needs to be modified after the original transaction has\n * been mined.\n *\n * @dev The `depositor` and `depositId` must match the parameters in a `FundsDeposited` event that the depositor wants to speed up.\n * The relayer is not obligated but has the option to use this updated information when filling the deposit using\n * `fillRelayWithUpdatedDeposit()`. This version uses `address` types for compatibility with systems relying on\n * `address`-based implementations.\n *\n * @param depositor The depositor that must sign the `depositorSignature` and was the original depositor.\n * @param depositId The deposit ID to speed up.\n * @param updatedOutputAmount The new output amount to use for this deposit. It should be lower than the previous value,\n * otherwise the relayer has no incentive to use this updated value.\n * @param updatedRecipient The new recipient for this deposit. Can be modified if the original recipient is a contract that\n * expects to receive a message from the relay and needs to be changed.\n * @param updatedMessage The new message for this deposit. Can be modified if the recipient is a contract that expects\n * to receive a message from the relay and needs to be updated.\n * @param depositorSignature The signed EIP712 hashstruct containing the deposit ID. Should be signed by the depositor account.\n * If the depositor is a contract, it should implement EIP1271 to sign as a contract. See `_verifyUpdateV3DepositMessage()`\n * for more details on how the signature should be constructed.\n */\n function speedUpV3Deposit(\n address depositor,\n uint256 depositId,\n uint256 updatedOutputAmount,\n address updatedRecipient,\n bytes calldata updatedMessage,\n bytes calldata depositorSignature\n ) public {\n _verifyUpdateV3DepositMessage(\n depositor,\n depositId,\n chainId(),\n updatedOutputAmount,\n updatedRecipient.toBytes32(),\n updatedMessage,\n depositorSignature,\n UPDATE_BYTES32_DEPOSIT_DETAILS_HASH\n );\n\n // Assuming the above checks passed, a relayer can take the signature and the updated deposit information\n // from the following event to submit a fill with updated relay data.\n emit RequestedSpeedUpDeposit(\n updatedOutputAmount,\n depositId,\n depositor.toBytes32(),\n updatedRecipient.toBytes32(),\n updatedMessage,\n depositorSignature\n );\n }\n\n /**************************************\n * RELAYER FUNCTIONS *\n **************************************/\n\n /**\n * @notice Fulfill request to bridge cross chain by sending specified output tokens to the recipient.\n * @dev The fee paid to relayers and the system should be captured in the spread between output\n * amount and input amount when adjusted to be denominated in the input token. A relayer on the destination\n * chain will send outputAmount of outputTokens to the recipient and receive inputTokens on a repayment\n * chain of their choice. Therefore, the fee should account for destination fee transaction costs, the\n * relayer's opportunity cost of capital while they wait to be refunded following an optimistic challenge\n * window in the HubPool, and a system fee charged to relayers.\n * @dev The hash of the relayData will be used to uniquely identify the deposit to fill, so\n * modifying any params in it will result in a different hash and a different deposit. The hash will comprise\n * all parameters passed to deposit() on the origin chain along with that chain's chainId(). This chain's\n * chainId() must therefore match the destinationChainId passed into deposit.\n * Relayers are only refunded for filling deposits with deposit hashes that map exactly to the one emitted by the\n * origin SpokePool therefore the relayer should not modify any params in relayData.\n * @dev Cannot fill more than once. Partial fills are not supported.\n * @param relayData struct containing all the data needed to identify the deposit to be filled. Should match\n * all the same-named parameters emitted in the origin chain FundsDeposited event.\n * - depositor: The account credited with the deposit who can request to \"speed up\" this deposit by modifying\n * the output amount, recipient, and message.\n * - recipient The account receiving funds on this chain. Can be an EOA or a contract. If\n * the output token is the wrapped native token for the chain, then the recipient will receive native token if\n * an EOA or wrapped native token if a contract.\n * - inputToken: The token pulled from the caller's account to initiate the deposit. The equivalent of this\n * token on the repayment chain will be sent as a refund to the caller.\n * - outputToken The token that the caller will send to the recipient on the destination chain. Must be an\n * ERC20.\n * - inputAmount: This amount, less a system fee, will be sent to the caller on their repayment chain of choice as a refund\n * following an optimistic challenge window in the HubPool.\n * - outputAmount: The amount of output tokens that the caller will send to the recipient.\n * - originChainId: The origin chain identifier.\n * - exclusiveRelayer The relayer that will be exclusively allowed to fill this deposit before the\n * exclusivity deadline timestamp.\n * - fillDeadline The deadline for the caller to fill the deposit. After this timestamp,\n * the fill will revert on the destination chain.\n * - exclusivityDeadline: The deadline for the exclusive relayer to fill the deposit. After this\n * timestamp, anyone can fill this deposit. Note that if this value was set in deposit by adding an offset\n * to the deposit's block.timestamp, there is re-org risk for the caller of this method because the event's\n * block.timestamp can change. Read the comments in `deposit` about the `exclusivityParameter` for more details.\n * - message The message to send to the recipient if the recipient is a contract that implements a\n * handleV3AcrossMessage() public function\n * @param repaymentChainId Chain of SpokePool where relayer wants to be refunded after the challenge window has\n * passed. Will receive inputAmount of the equivalent token to inputToken on the repayment chain.\n * @param repaymentAddress Address the relayer wants to be receive their refund at.\n */\n function fillRelay(\n V3RelayData memory relayData,\n uint256 repaymentChainId,\n bytes32 repaymentAddress\n ) public override nonReentrant unpausedFills {\n // Exclusivity deadline is inclusive and is the latest timestamp that the exclusive relayer has sole right\n // to fill the relay.\n if (\n _fillIsExclusive(relayData.exclusivityDeadline, uint32(getCurrentTime())) &&\n relayData.exclusiveRelayer.toAddress() != msg.sender\n ) {\n revert NotExclusiveRelayer();\n }\n\n V3RelayExecutionParams memory relayExecution = V3RelayExecutionParams({\n relay: relayData,\n relayHash: getV3RelayHash(relayData),\n updatedOutputAmount: relayData.outputAmount,\n updatedRecipient: relayData.recipient,\n updatedMessage: relayData.message,\n repaymentChainId: repaymentChainId\n });\n\n _fillRelayV3(relayExecution, repaymentAddress, false);\n }\n\n // Exposes the same function as fillRelay but with a legacy V3RelayData struct that takes in address types. Inner\n // function fillV3Relay() applies reentrancy & non-paused checks.\n function fillV3Relay(V3RelayDataLegacy calldata relayData, uint256 repaymentChainId) public override {\n // Convert V3RelayDataLegacy to V3RelayData using the .toBytes32() method.\n V3RelayData memory convertedRelayData = V3RelayData({\n depositor: relayData.depositor.toBytes32(),\n recipient: relayData.recipient.toBytes32(),\n exclusiveRelayer: relayData.exclusiveRelayer.toBytes32(),\n inputToken: relayData.inputToken.toBytes32(),\n outputToken: relayData.outputToken.toBytes32(),\n inputAmount: relayData.inputAmount,\n outputAmount: relayData.outputAmount,\n originChainId: relayData.originChainId,\n depositId: relayData.depositId,\n fillDeadline: relayData.fillDeadline,\n exclusivityDeadline: relayData.exclusivityDeadline,\n message: relayData.message\n });\n\n fillRelay(convertedRelayData, repaymentChainId, msg.sender.toBytes32());\n }\n\n /**\n * @notice Identical to fillV3Relay except that the relayer wants to use a depositor's updated output amount,\n * recipient, and/or message. The relayer should only use this function if they can supply a message signed\n * by the depositor that contains the fill's matching deposit ID along with updated relay parameters.\n * If the signature can be verified, then this function will emit a FilledV3Event that will be used by\n * the system for refund verification purposes. In other words, this function is an alternative way to fill a\n * a deposit than fillV3Relay.\n * @dev Subject to same exclusivity deadline rules as fillV3Relay().\n * @param relayData struct containing all the data needed to identify the deposit to be filled. See fillV3Relay().\n * @param repaymentChainId Chain of SpokePool where relayer wants to be refunded after the challenge window has\n * passed. See fillV3Relay().\n * @param repaymentAddress Address the relayer wants to be receive their refund at.\n * @param updatedOutputAmount New output amount to use for this deposit.\n * @param updatedRecipient New recipient to use for this deposit.\n * @param updatedMessage New message to use for this deposit.\n * @param depositorSignature Signed EIP712 hashstruct containing the deposit ID. Should be signed by the depositor\n * account.\n */\n function fillRelayWithUpdatedDeposit(\n V3RelayData calldata relayData,\n uint256 repaymentChainId,\n bytes32 repaymentAddress,\n uint256 updatedOutputAmount,\n bytes32 updatedRecipient,\n bytes calldata updatedMessage,\n bytes calldata depositorSignature\n ) public override nonReentrant unpausedFills {\n // Exclusivity deadline is inclusive and is the latest timestamp that the exclusive relayer has sole right\n // to fill the relay.\n if (\n _fillIsExclusive(relayData.exclusivityDeadline, uint32(getCurrentTime())) &&\n relayData.exclusiveRelayer.toAddress() != msg.sender\n ) {\n revert NotExclusiveRelayer();\n }\n\n V3RelayExecutionParams memory relayExecution = V3RelayExecutionParams({\n relay: relayData,\n relayHash: getV3RelayHash(relayData),\n updatedOutputAmount: updatedOutputAmount,\n updatedRecipient: updatedRecipient,\n updatedMessage: updatedMessage,\n repaymentChainId: repaymentChainId\n });\n\n _verifyUpdateV3DepositMessage(\n relayData.depositor.toAddress(),\n relayData.depositId,\n relayData.originChainId,\n updatedOutputAmount,\n updatedRecipient,\n updatedMessage,\n depositorSignature,\n UPDATE_BYTES32_DEPOSIT_DETAILS_HASH\n );\n\n _fillRelayV3(relayExecution, repaymentAddress, false);\n }\n\n /**\n * @notice Request Across to send LP funds to this contract to fulfill a slow fill relay\n * for a deposit in the next bundle.\n * @dev Slow fills are not possible unless the input and output tokens are \"equivalent\", i.e.\n * they route to the same L1 token via PoolRebalanceRoutes.\n * @dev Slow fills are created by inserting slow fill objects into a merkle tree that is included\n * in the next HubPool \"root bundle\". Once the optimistic challenge window has passed, the HubPool\n * will relay the slow root to this chain via relayRootBundle(). Once the slow root is relayed,\n * the slow fill can be executed by anyone who calls executeSlowRelayLeaf().\n * @dev Cannot request a slow fill if the fill deadline has passed.\n * @dev Cannot request a slow fill if the relay has already been filled or a slow fill has already been requested.\n * @param relayData struct containing all the data needed to identify the deposit that should be\n * slow filled. If any of the params are missing or different from the origin chain deposit,\n * then Across will not include a slow fill for the intended deposit.\n */\n function requestSlowFill(V3RelayData calldata relayData) public override nonReentrant unpausedFills {\n uint32 currentTime = uint32(getCurrentTime());\n // If a depositor has set an exclusivity deadline, then only the exclusive relayer should be able to\n // fast fill within this deadline. Moreover, the depositor should expect to get *fast* filled within\n // this deadline, not slow filled. As a simplifying assumption, we will not allow slow fills to be requested\n // during this exclusivity period.\n if (_fillIsExclusive(relayData.exclusivityDeadline, currentTime)) {\n revert NoSlowFillsInExclusivityWindow();\n }\n if (relayData.fillDeadline < currentTime) revert ExpiredFillDeadline();\n\n bytes32 relayHash = getV3RelayHash(relayData);\n if (fillStatuses[relayHash] != uint256(FillStatus.Unfilled)) revert InvalidSlowFillRequest();\n fillStatuses[relayHash] = uint256(FillStatus.RequestedSlowFill);\n\n emit RequestedSlowFill(\n relayData.inputToken,\n relayData.outputToken,\n relayData.inputAmount,\n relayData.outputAmount,\n relayData.originChainId,\n relayData.depositId,\n relayData.fillDeadline,\n relayData.exclusivityDeadline,\n relayData.exclusiveRelayer,\n relayData.depositor,\n relayData.recipient,\n _hashNonEmptyMessage(relayData.message)\n );\n }\n\n /**\n * @notice Fills a single leg of a particular order on the destination chain\n * @dev ERC-7683 fill function.\n * @param orderId Unique order identifier for this order\n * @param originData Data emitted on the origin to parameterize the fill\n * @param fillerData Data provided by the filler to inform the fill or express their preferences\n */\n function fill(bytes32 orderId, bytes calldata originData, bytes calldata fillerData) external {\n if (keccak256(abi.encode(originData, chainId())) != orderId) {\n revert WrongERC7683OrderId();\n }\n\n // Ensure that the call is not malformed. If the call is malformed, abi.decode will fail.\n V3SpokePoolInterface.V3RelayData memory relayData = abi.decode(originData, (V3SpokePoolInterface.V3RelayData));\n AcrossDestinationFillerData memory destinationFillerData = abi.decode(\n fillerData,\n (AcrossDestinationFillerData)\n );\n\n // Must do a delegatecall because the function requires the inputs to be calldata.\n (bool success, bytes memory data) = address(this).delegatecall(\n abi.encodeCall(\n V3SpokePoolInterface.fillRelay,\n (relayData, destinationFillerData.repaymentChainId, msg.sender.toBytes32())\n )\n );\n if (!success) {\n revert LowLevelCallFailed(data);\n }\n }\n\n /**************************************\n * DATA WORKER FUNCTIONS *\n **************************************/\n\n /**\n * @notice Executes a slow relay leaf stored as part of a root bundle relayed by the HubPool.\n * @dev Executing a slow fill leaf is equivalent to filling the relayData so this function cannot be used to\n * double fill a recipient. The relayData that is filled is included in the slowFillLeaf and is hashed\n * like any other fill sent through a fill method.\n * @dev There is no relayer credited with filling this relay since funds are sent directly out of this contract.\n * @param slowFillLeaf Contains all data necessary to uniquely identify a relay for this chain. This struct is\n * hashed and included in a merkle root that is relayed to all spoke pools.\n * - relayData: struct containing all the data needed to identify the original deposit to be slow filled.\n * - chainId: chain identifier where slow fill leaf should be executed. If this doesn't match this chain's\n * chainId, then this function will revert.\n * - updatedOutputAmount: Amount to be sent to recipient out of this contract's balance. Can be set differently\n * from relayData.outputAmount to charge a different fee because this deposit was \"slow\" filled. Usually,\n * this will be set higher to reimburse the recipient for waiting for the slow fill.\n * @param rootBundleId Unique ID of root bundle containing slow relay root that this leaf is contained in.\n * @param proof Inclusion proof for this leaf in slow relay root in root bundle.\n */\n function executeSlowRelayLeaf(\n V3SlowFill calldata slowFillLeaf,\n uint32 rootBundleId,\n bytes32[] calldata proof\n ) public override nonReentrant {\n V3RelayData memory relayData = slowFillLeaf.relayData;\n\n _preExecuteLeafHook(relayData.outputToken.toAddress());\n\n // @TODO In the future consider allowing way for slow fill leaf to be created with updated\n // deposit params like outputAmount, message and recipient.\n V3RelayExecutionParams memory relayExecution = V3RelayExecutionParams({\n relay: relayData,\n relayHash: getV3RelayHash(relayData),\n updatedOutputAmount: slowFillLeaf.updatedOutputAmount,\n updatedRecipient: relayData.recipient,\n updatedMessage: relayData.message,\n repaymentChainId: EMPTY_REPAYMENT_CHAIN_ID // Repayment not relevant for slow fills.\n });\n\n _verifyV3SlowFill(relayExecution, rootBundleId, proof);\n\n // - No relayer to refund for slow fill executions.\n _fillRelayV3(relayExecution, EMPTY_RELAYER, true);\n }\n\n /**\n * @notice Executes a relayer refund leaf stored as part of a root bundle. Will send the relayer the amount they\n * sent to the recipient plus a relayer fee.\n * @param rootBundleId Unique ID of root bundle containing relayer refund root that this leaf is contained in.\n * @param relayerRefundLeaf Contains all data necessary to reconstruct leaf contained in root bundle and to\n * refund relayer. This data structure is explained in detail in the SpokePoolInterface.\n * @param proof Inclusion proof for this leaf in relayer refund root in root bundle.\n */\n function executeRelayerRefundLeaf(\n uint32 rootBundleId,\n SpokePoolInterface.RelayerRefundLeaf memory relayerRefundLeaf,\n bytes32[] memory proof\n ) public payable virtual override nonReentrant {\n _preExecuteLeafHook(relayerRefundLeaf.l2TokenAddress);\n\n if (relayerRefundLeaf.chainId != chainId()) revert InvalidChainId();\n\n RootBundle storage rootBundle = rootBundles[rootBundleId];\n\n // Check that proof proves that relayerRefundLeaf is contained within the relayer refund root.\n // Note: This should revert if the relayerRefundRoot is uninitialized.\n if (!MerkleLib.verifyRelayerRefund(rootBundle.relayerRefundRoot, relayerRefundLeaf, proof)) {\n revert InvalidMerkleProof();\n }\n\n _setClaimedLeaf(rootBundleId, relayerRefundLeaf.leafId);\n\n bool deferredRefunds = _distributeRelayerRefunds(\n relayerRefundLeaf.chainId,\n relayerRefundLeaf.amountToReturn,\n relayerRefundLeaf.refundAmounts,\n relayerRefundLeaf.leafId,\n relayerRefundLeaf.l2TokenAddress,\n relayerRefundLeaf.refundAddresses\n );\n\n emit ExecutedRelayerRefundRoot(\n relayerRefundLeaf.amountToReturn,\n relayerRefundLeaf.chainId,\n relayerRefundLeaf.refundAmounts,\n rootBundleId,\n relayerRefundLeaf.leafId,\n relayerRefundLeaf.l2TokenAddress,\n relayerRefundLeaf.refundAddresses,\n deferredRefunds,\n msg.sender\n );\n }\n\n /**\n * @notice Enables a relayer to claim outstanding repayments. Should virtually never be used, unless for some reason\n * relayer repayment transfer fails for reasons such as token transfer reverts due to blacklisting. In this case,\n * the relayer can still call this method and claim the tokens to a new address.\n * @param l2TokenAddress Address of the L2 token to claim refunds for.\n * @param refundAddress Address to send the refund to.\n */\n function claimRelayerRefund(bytes32 l2TokenAddress, bytes32 refundAddress) external {\n uint256 refund = relayerRefund[l2TokenAddress.toAddress()][msg.sender];\n if (refund == 0) revert NoRelayerRefundToClaim();\n relayerRefund[l2TokenAddress.toAddress()][msg.sender] = 0;\n IERC20Upgradeable(l2TokenAddress.toAddress()).safeTransfer(refundAddress.toAddress(), refund);\n\n emit ClaimedRelayerRefund(l2TokenAddress, refundAddress, refund, msg.sender);\n }\n\n /**************************************\n * VIEW FUNCTIONS *\n **************************************/\n\n /**\n * @notice Returns chain ID for this network.\n * @dev Some L2s like ZKSync don't support the CHAIN_ID opcode so we allow the implementer to override this.\n */\n function chainId() public view virtual override returns (uint256) {\n return block.chainid;\n }\n\n /**\n * @notice Gets the current time.\n * @return uint for the current timestamp.\n */\n function getCurrentTime() public view virtual returns (uint256) {\n return block.timestamp; // solhint-disable-line not-rely-on-time\n }\n\n /**\n * @notice Returns the deposit ID for an unsafe deposit. This function is used to compute the deposit ID\n * in unsafeDeposit and is provided as a convenience.\n * @dev msgSender and depositor are both used as inputs to allow passthrough depositors to create unique\n * deposit hash spaces for unique depositors.\n * @param msgSender The caller of the transaction used as input to produce the deposit ID.\n * @param depositor The depositor address used as input to produce the deposit ID.\n * @param depositNonce The nonce used as input to produce the deposit ID.\n * @return The deposit ID for the unsafe deposit.\n */\n function getUnsafeDepositId(\n address msgSender,\n bytes32 depositor,\n uint256 depositNonce\n ) public pure returns (uint256) {\n return uint256(keccak256(abi.encodePacked(msgSender, depositor, depositNonce)));\n }\n\n function getRelayerRefund(address l2TokenAddress, address refundAddress) public view returns (uint256) {\n return relayerRefund[l2TokenAddress][refundAddress];\n }\n\n function getV3RelayHash(V3RelayData memory relayData) public view returns (bytes32) {\n return keccak256(abi.encode(relayData, chainId()));\n }\n\n /**************************************\n * INTERNAL FUNCTIONS *\n **************************************/\n\n function _depositV3(DepositV3Params memory params) internal {\n // Verify depositor is a valid EVM address.\n params.depositor.checkAddress();\n\n // Require that quoteTimestamp has a maximum age so that depositors pay an LP fee based on recent HubPool usage.\n // It is assumed that cross-chain timestamps are normally loosely in-sync, but clock drift can occur. If the\n // SpokePool time stalls or lags significantly, it is still possible to make deposits by setting quoteTimestamp\n // within the configured buffer. The owner should pause deposits/fills if this is undesirable.\n // This will underflow if quoteTimestamp is more than depositQuoteTimeBuffer;\n // this is safe but will throw an unintuitive error.\n\n // slither-disable-next-line timestamp\n uint256 currentTime = getCurrentTime();\n if (currentTime < params.quoteTimestamp || currentTime - params.quoteTimestamp > depositQuoteTimeBuffer)\n revert InvalidQuoteTimestamp();\n\n // fillDeadline is relative to the destination chain.\n // Don’t allow fillDeadline to be more than several bundles into the future.\n // This limits the maximum required lookback for dataworker and relayer instances.\n if (params.fillDeadline > currentTime + fillDeadlineBuffer) revert InvalidFillDeadline();\n\n // There are three cases for setting the exclusivity deadline using the exclusivity parameter:\n // 1. If this parameter is 0, then there is no exclusivity period and emit 0 for the deadline. This\n // means that fillers of this deposit do not have to worry about the block.timestamp of this event changing\n // due to re-orgs when filling this deposit.\n // 2. If the exclusivity parameter is less than or equal to MAX_EXCLUSIVITY_PERIOD_SECONDS, then the exclusivity\n // deadline is set to the block.timestamp of this event plus the exclusivity parameter. This means that the\n // filler of this deposit assumes re-org risk when filling this deposit because the block.timestamp of this\n // event affects the exclusivity deadline.\n // 3. Otherwise, interpret this parameter as a timestamp and emit it as the exclusivity deadline. This means\n // that the filler of this deposit will not assume re-org risk related to the block.timestamp of this\n // event changing.\n uint32 exclusivityDeadline = params.exclusivityParameter;\n if (exclusivityDeadline > 0) {\n if (exclusivityDeadline <= MAX_EXCLUSIVITY_PERIOD_SECONDS) {\n exclusivityDeadline += uint32(currentTime);\n }\n\n // As a safety measure, prevent caller from inadvertently locking funds during exclusivity period\n // by forcing them to specify an exclusive relayer.\n if (params.exclusiveRelayer == bytes32(0)) revert InvalidExclusiveRelayer();\n }\n\n // If the address of the origin token is a wrappedNativeToken contract and there is a msg.value with the\n // transaction then the user is sending the native token. In this case, the native token should be\n // wrapped.\n if (params.inputToken == address(wrappedNativeToken).toBytes32() && msg.value > 0) {\n if (msg.value != params.inputAmount) revert MsgValueDoesNotMatchInputAmount();\n wrappedNativeToken.deposit{ value: msg.value }();\n // Else, it is a normal ERC20. In this case pull the token from the caller as per normal.\n // Note: this includes the case where the L2 caller has WETH (already wrapped ETH) and wants to bridge them.\n // In this case the msg.value will be set to 0, indicating a \"normal\" ERC20 bridging action.\n } else {\n // msg.value should be 0 if input token isn't the wrapped native token.\n if (msg.value != 0) revert MsgValueDoesNotMatchInputAmount();\n IERC20Upgradeable(params.inputToken.toAddress()).safeTransferFrom(\n msg.sender,\n address(this),\n params.inputAmount\n );\n }\n\n emit FundsDeposited(\n params.inputToken,\n params.outputToken,\n params.inputAmount,\n params.outputAmount,\n params.destinationChainId,\n params.depositId,\n params.quoteTimestamp,\n params.fillDeadline,\n exclusivityDeadline,\n params.depositor,\n params.recipient,\n params.exclusiveRelayer,\n params.message\n );\n }\n\n function _deposit(\n address depositor,\n address recipient,\n address originToken,\n uint256 amount,\n uint256 destinationChainId,\n int64 relayerFeePct,\n uint32 quoteTimestamp,\n bytes memory message\n ) internal {\n // We limit the relay fees to prevent the user spending all their funds on fees.\n if (SignedMath.abs(relayerFeePct) >= 0.5e18) revert InvalidRelayerFeePct();\n if (amount > MAX_TRANSFER_SIZE) revert MaxTransferSizeExceeded();\n\n // Require that quoteTimestamp has a maximum age so that depositors pay an LP fee based on recent HubPool usage.\n // It is assumed that cross-chain timestamps are normally loosely in-sync, but clock drift can occur. If the\n // SpokePool time stalls or lags significantly, it is still possible to make deposits by setting quoteTimestamp\n // within the configured buffer. The owner should pause deposits if this is undesirable. This will underflow if\n // quoteTimestamp is more than depositQuoteTimeBuffer; this is safe but will throw an unintuitive error.\n\n // slither-disable-next-line timestamp\n if (getCurrentTime() - quoteTimestamp > depositQuoteTimeBuffer) revert InvalidQuoteTimestamp();\n\n // Increment count of deposits so that deposit ID for this spoke pool is unique.\n uint32 newDepositId = numberOfDeposits++;\n\n // If the address of the origin token is a wrappedNativeToken contract and there is a msg.value with the\n // transaction then the user is sending ETH. In this case, the ETH should be deposited to wrappedNativeToken.\n if (originToken == address(wrappedNativeToken) && msg.value > 0) {\n if (msg.value != amount) revert MsgValueDoesNotMatchInputAmount();\n wrappedNativeToken.deposit{ value: msg.value }();\n // Else, it is a normal ERC20. In this case pull the token from the user's wallet as per normal.\n // Note: this includes the case where the L2 user has WETH (already wrapped ETH) and wants to bridge them.\n // In this case the msg.value will be set to 0, indicating a \"normal\" ERC20 bridging action.\n } else {\n IERC20Upgradeable(originToken).safeTransferFrom(msg.sender, address(this), amount);\n }\n\n emit FundsDeposited(\n originToken.toBytes32(), // inputToken\n bytes32(0), // outputToken. Setting this to 0x0 means that the outputToken should be assumed to be the\n // canonical token for the destination chain matching the inputToken. Therefore, this deposit\n // can always be slow filled.\n // - setting token to 0x0 will signal to off-chain validator that the \"equivalent\"\n // token as the inputToken for the destination chain should be replaced here.\n amount, // inputAmount\n _computeAmountPostFees(amount, relayerFeePct), // outputAmount\n // - output amount will be the deposit amount less relayerFeePct, which should now be set\n // equal to realizedLpFeePct + gasFeePct + capitalCostFeePct where (gasFeePct + capitalCostFeePct)\n // is equal to the old usage of `relayerFeePct`.\n destinationChainId,\n newDepositId,\n quoteTimestamp,\n INFINITE_FILL_DEADLINE, // fillDeadline. Default to infinite expiry because\n // expired deposits refunds could be a breaking change for existing users of this function.\n 0, // exclusivityDeadline. Setting this to 0 along with the exclusiveRelayer to 0x0 means that there\n // is no exclusive deadline\n depositor.toBytes32(),\n recipient.toBytes32(),\n bytes32(0), // exclusiveRelayer. Setting this to 0x0 will signal to off-chain validator that there\n // is no exclusive relayer.\n message\n );\n }\n\n function _distributeRelayerRefunds(\n uint256 _chainId,\n uint256 amountToReturn,\n uint256[] memory refundAmounts,\n uint32 leafId,\n address l2TokenAddress,\n address[] memory refundAddresses\n ) internal returns (bool deferredRefunds) {\n uint256 numRefunds = refundAmounts.length;\n if (refundAddresses.length != numRefunds) revert InvalidMerkleLeaf();\n\n if (numRefunds > 0) {\n uint256 spokeStartBalance = IERC20Upgradeable(l2TokenAddress).balanceOf(address(this));\n uint256 totalRefundedAmount = 0; // Track the total amount refunded.\n\n // Send each relayer refund address the associated refundAmount for the L2 token address.\n // Note: Even if the L2 token is not enabled on this spoke pool, we should still refund relayers.\n for (uint256 i = 0; i < numRefunds; ++i) {\n if (refundAmounts[i] > 0) {\n totalRefundedAmount += refundAmounts[i];\n\n // Only if the total refunded amount exceeds the spoke starting balance, should we revert. This\n // ensures that bundles are atomic, if we have sufficient balance to refund all relayers and\n // prevents can only re-pay some of the relayers.\n if (totalRefundedAmount > spokeStartBalance) revert InsufficientSpokePoolBalanceToExecuteLeaf();\n\n bool success = _noRevertTransfer(l2TokenAddress, refundAddresses[i], refundAmounts[i]);\n\n // If the transfer failed then track a deferred transfer for the relayer. Given this function would\n // have reverted if there was insufficient balance, this will only happen if the transfer call\n // reverts. This will only occur if the underlying transfer method on the l2Token reverts due to\n // recipient blacklisting or other related modifications to the l2Token.transfer method.\n if (!success) {\n relayerRefund[l2TokenAddress][refundAddresses[i]] += refundAmounts[i];\n deferredRefunds = true;\n }\n }\n }\n }\n // If leaf's amountToReturn is positive, then send L2 --> L1 message to bridge tokens back via\n // chain-specific bridging method.\n if (amountToReturn > 0) {\n _bridgeTokensToHubPool(amountToReturn, l2TokenAddress);\n\n emit TokensBridged(amountToReturn, _chainId, leafId, l2TokenAddress.toBytes32(), msg.sender);\n }\n }\n\n // Re-implementation of OZ _callOptionalReturnBool to use private logic. Function executes a transfer and returns a\n // bool indicating if the external call was successful, rather than reverting. Original method:\n // https://github.com/OpenZeppelin/openzeppelin-contracts/blob/28aed34dc5e025e61ea0390c18cac875bfde1a78/contracts/token/ERC20/utils/SafeERC20.sol#L188\n function _noRevertTransfer(address token, address to, uint256 amount) internal returns (bool) {\n bool success;\n uint256 returnSize;\n uint256 returnValue;\n bytes memory data = abi.encodeCall(IERC20Upgradeable.transfer, (to, amount));\n assembly {\n success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)\n returnSize := returndatasize()\n returnValue := mload(0)\n }\n return success && (returnSize == 0 ? address(token).code.length > 0 : returnValue == 1);\n }\n\n function _setCrossDomainAdmin(address newCrossDomainAdmin) internal {\n if (newCrossDomainAdmin == address(0)) revert InvalidCrossDomainAdmin();\n crossDomainAdmin = newCrossDomainAdmin;\n emit SetXDomainAdmin(newCrossDomainAdmin);\n }\n\n function _setWithdrawalRecipient(address newWithdrawalRecipient) internal {\n if (newWithdrawalRecipient == address(0)) revert InvalidWithdrawalRecipient();\n withdrawalRecipient = newWithdrawalRecipient;\n emit SetWithdrawalRecipient(newWithdrawalRecipient);\n }\n\n function _preExecuteLeafHook(address) internal virtual {\n // This method by default is a no-op. Different child spoke pools might want to execute functionality here\n // such as wrapping any native tokens owned by the contract into wrapped tokens before proceeding with\n // executing the leaf.\n }\n\n // Should be overriden by implementing contract depending on how L2 handles sending tokens to L1.\n function _bridgeTokensToHubPool(uint256 amountToReturn, address l2TokenAddress) internal virtual;\n\n function _setClaimedLeaf(uint32 rootBundleId, uint32 leafId) internal {\n RootBundle storage rootBundle = rootBundles[rootBundleId];\n\n // Verify the leafId in the leaf has not yet been claimed.\n if (MerkleLib.isClaimed(rootBundle.claimedBitmap, leafId)) revert ClaimedMerkleLeaf();\n\n // Set leaf as claimed in bitmap. This is passed by reference to the storage rootBundle.\n MerkleLib.setClaimed(rootBundle.claimedBitmap, leafId);\n }\n\n function _verifyUpdateV3DepositMessage(\n address depositor,\n uint256 depositId,\n uint256 originChainId,\n uint256 updatedOutputAmount,\n bytes32 updatedRecipient,\n bytes memory updatedMessage,\n bytes memory depositorSignature,\n bytes32 hashType\n ) internal view {\n // A depositor can request to modify an un-relayed deposit by signing a hash containing the updated\n // details and information uniquely identifying the deposit to relay. This information ensures\n // that this signature cannot be re-used for other deposits.\n bytes32 expectedTypedDataV4Hash = _hashTypedDataV4(\n keccak256(\n abi.encode(\n hashType,\n depositId,\n originChainId,\n updatedOutputAmount,\n updatedRecipient,\n keccak256(updatedMessage)\n )\n ),\n originChainId\n );\n _verifyDepositorSignature(depositor, expectedTypedDataV4Hash, depositorSignature);\n }\n\n // This function is isolated and made virtual to allow different L2's to implement chain specific recovery of\n // signers from signatures because some L2s might not support ecrecover. To be safe, consider always reverting\n // this function for L2s where ecrecover is different from how it works on Ethereum, otherwise there is the\n // potential to forge a signature from the depositor using a different private key than the original depositor's.\n function _verifyDepositorSignature(\n address depositor,\n bytes32 ethSignedMessageHash,\n bytes memory depositorSignature\n ) internal view virtual {\n // Note:\n // - We don't need to worry about re-entrancy from a contract deployed at the depositor address since the method\n // `SignatureChecker.isValidSignatureNow` is a view method. Re-entrancy can happen, but it cannot affect state.\n // - EIP-1271 signatures are supported. This means that a signature valid now, may not be valid later and vice-versa.\n // - For an EIP-1271 signature to work, the depositor contract address must map to a deployed contract on the destination\n // chain that can validate the signature.\n // - Regular signatures from an EOA are also supported.\n bool isValid = SignatureChecker.isValidSignatureNow(depositor, ethSignedMessageHash, depositorSignature);\n if (!isValid) revert InvalidDepositorSignature();\n }\n\n function _verifyV3SlowFill(\n V3RelayExecutionParams memory relayExecution,\n uint32 rootBundleId,\n bytes32[] memory proof\n ) internal view {\n V3SlowFill memory slowFill = V3SlowFill({\n relayData: relayExecution.relay,\n chainId: chainId(),\n updatedOutputAmount: relayExecution.updatedOutputAmount\n });\n\n if (!MerkleLib.verifyV3SlowRelayFulfillment(rootBundles[rootBundleId].slowRelayRoot, slowFill, proof)) {\n revert InvalidMerkleProof();\n }\n }\n\n function _computeAmountPostFees(uint256 amount, int256 feesPct) private pure returns (uint256) {\n return (amount * uint256(int256(1e18) - feesPct)) / 1e18;\n }\n\n // Unwraps ETH and does a transfer to a recipient address. If the recipient is a smart contract then sends wrappedNativeToken.\n function _unwrapwrappedNativeTokenTo(address payable to, uint256 amount) internal {\n if (!address(to).isContract() || _is7702DelegatedWallet(to)) {\n wrappedNativeToken.withdraw(amount);\n AddressLibUpgradeable.sendValue(to, amount);\n } else {\n IERC20Upgradeable(address(wrappedNativeToken)).safeTransfer(to, amount);\n }\n }\n\n /**\n * @notice Checks if an address is a 7702 delegated wallet (EOA with delegated code).\n * @param account The address to check.\n * @return True if the address is a 7702 delegated wallet, false otherwise.\n */\n function _is7702DelegatedWallet(address account) internal view virtual returns (bool) {\n return bytes3(account.code) == EIP7702_PREFIX;\n }\n\n // @param relayer: relayer who is actually credited as filling this deposit. Can be different from\n // exclusiveRelayer if passed exclusivityDeadline or if slow fill.\n function _fillRelayV3(V3RelayExecutionParams memory relayExecution, bytes32 relayer, bool isSlowFill) internal {\n V3RelayData memory relayData = relayExecution.relay;\n\n if (relayData.fillDeadline < getCurrentTime()) revert ExpiredFillDeadline();\n\n bytes32 relayHash = relayExecution.relayHash;\n\n // If a slow fill for this fill was requested then the relayFills value for this hash will be\n // FillStatus.RequestedSlowFill. Therefore, if this is the status, then this fast fill\n // will be replacing the slow fill. If this is a slow fill execution, then the following variable\n // is trivially true. We'll emit this value in the FilledRelay\n // event to assist the Dataworker in knowing when to return funds back to the HubPool that can no longer\n // be used for a slow fill execution.\n FillType fillType = isSlowFill\n ? FillType.SlowFill // The following is true if this is a fast fill that was sent after a slow fill request.\n : (\n fillStatuses[relayExecution.relayHash] == uint256(FillStatus.RequestedSlowFill)\n ? FillType.ReplacedSlowFill\n : FillType.FastFill\n );\n\n // @dev This function doesn't support partial fills. Therefore, we associate the relay hash with\n // an enum tracking its fill status. All filled relays, whether slow or fast fills, are set to the Filled\n // status. However, we also use this slot to track whether this fill had a slow fill requested. Therefore\n // we can include a bool in the FilledRelay event making it easy for the dataworker to compute if this\n // fill was a fast fill that replaced a slow fill and therefore this SpokePool has excess funds that it\n // needs to send back to the HubPool.\n if (fillStatuses[relayHash] == uint256(FillStatus.Filled)) revert RelayFilled();\n fillStatuses[relayHash] = uint256(FillStatus.Filled);\n\n _emitFilledRelayEvent(relayExecution, relayData, relayer, fillType);\n _transferTokensToRecipient(relayExecution, relayData, isSlowFill);\n }\n\n /**\n * @notice Emits the FilledRelay event for a completed relay fill.\n * @param relayExecution The relay execution parameters.\n * @param relayData The relay data.\n * @param relayer The relayer address.\n * @param fillType The type of fill being executed.\n */\n function _emitFilledRelayEvent(\n V3RelayExecutionParams memory relayExecution,\n V3RelayData memory relayData,\n bytes32 relayer,\n FillType fillType\n ) internal {\n emit FilledRelay(\n relayData.inputToken,\n relayData.outputToken,\n relayData.inputAmount,\n relayData.outputAmount,\n relayExecution.repaymentChainId,\n relayData.originChainId,\n relayData.depositId,\n relayData.fillDeadline,\n relayData.exclusivityDeadline,\n relayData.exclusiveRelayer,\n relayer,\n relayData.depositor,\n relayData.recipient,\n _hashNonEmptyMessage(relayData.message),\n V3RelayExecutionEventInfo({\n updatedRecipient: relayExecution.updatedRecipient,\n updatedMessageHash: _hashNonEmptyMessage(relayExecution.updatedMessage),\n updatedOutputAmount: relayExecution.updatedOutputAmount,\n fillType: fillType\n })\n );\n }\n\n /**\n * @notice Transfers tokens to the recipient based on the relay execution parameters.\n * @param relayExecution The relay execution parameters.\n * @param relayData The relay data.\n * @param isSlowFill Whether this is a slow fill execution.\n */\n function _transferTokensToRecipient(\n V3RelayExecutionParams memory relayExecution,\n V3RelayData memory relayData,\n bool isSlowFill\n ) internal {\n address outputToken = relayData.outputToken.toAddress();\n uint256 amountToSend = relayExecution.updatedOutputAmount;\n address recipientToSend = relayExecution.updatedRecipient.toAddress();\n\n // If relay token is wrappedNativeToken then unwrap and send native token.\n if (outputToken == address(wrappedNativeToken)) {\n // Note: useContractFunds is True if we want to send funds to the recipient directly out of this contract,\n // otherwise we expect the caller to send funds to the recipient. If useContractFunds is True and the\n // recipient wants wrappedNativeToken, then we can assume that wrappedNativeToken is already in the\n // contract, otherwise we'll need the user to send wrappedNativeToken to this contract. Regardless, we'll\n // need to unwrap it to native token before sending to the user.\n if (!isSlowFill) IERC20Upgradeable(outputToken).safeTransferFrom(msg.sender, address(this), amountToSend);\n _unwrapwrappedNativeTokenTo(payable(recipientToSend), amountToSend);\n // Else, this is a normal ERC20 token. Send to recipient.\n } else {\n // Note: Similar to note above, send token directly from the contract to the user in the slow relay case.\n if (!isSlowFill) IERC20Upgradeable(outputToken).safeTransferFrom(msg.sender, recipientToSend, amountToSend);\n else IERC20Upgradeable(outputToken).safeTransfer(recipientToSend, amountToSend);\n }\n\n bytes memory updatedMessage = relayExecution.updatedMessage;\n if (updatedMessage.length > 0 && recipientToSend.isContract()) {\n AcrossMessageHandler(recipientToSend).handleV3AcrossMessage(\n outputToken,\n amountToSend,\n msg.sender,\n updatedMessage\n );\n }\n }\n\n // Determine whether the exclusivityDeadline implies active exclusivity.\n function _fillIsExclusive(uint32 exclusivityDeadline, uint32 currentTime) internal pure returns (bool) {\n return exclusivityDeadline >= currentTime;\n }\n\n // Helper for emitting message hash. For easier easier human readability we return bytes32(0) for empty message.\n function _hashNonEmptyMessage(bytes memory message) internal pure returns (bytes32) {\n if (message.length == 0) return bytes32(0);\n else return keccak256(message);\n }\n\n function _setOftMessenger(address _token, address _messenger) private {\n if (_messenger != address(0) && IOFT(_messenger).token() != _token) {\n revert OFTTokenMismatch();\n }\n oftMessengers[_token] = _messenger;\n emit SetOFTMessenger(_token, _messenger);\n }\n\n function _getOftMessenger(address _token) internal view returns (address) {\n return oftMessengers[_token];\n }\n\n /**\n * @notice Perform an OFT transfer where the caller supplies the native fee via msg.value.\n * @dev Supports overpayment: any excess native token is refunded to msg.sender before executing the transfer.\n * This function does not re-quote and uses the provided `fee` with `_sendOftTransfer`.\n * Must be invoked from a payable context.\n * @param _token ERC-20 token to transfer.\n * @param _messenger OFT messenger contract on the current chain for `_token`.\n * @param _to Destination address on the remote chain.\n * @param _amount Amount of tokens to transfer.\n */\n function _fundedTransferViaOft(IERC20 _token, IOFT _messenger, address _to, uint256 _amount) internal {\n (SendParam memory sendParam, MessagingFee memory fee) = _buildOftTransfer(_messenger, _to, _amount);\n\n if (fee.nativeFee > msg.value) {\n revert OFTFeeUnderpaid();\n }\n // Refund any overpayment to the caller using a safe native transfer.\n uint256 refund = msg.value - fee.nativeFee;\n if (refund > 0) {\n AddressLibUpgradeable.sendValue(payable(msg.sender), refund);\n }\n _sendOftTransfer(_token, _messenger, sendParam, fee);\n }\n\n // Implementing contract needs to override this to ensure that only the appropriate cross chain admin can execute\n // certain admin functions. For L2 contracts, the cross chain admin refers to some L1 address or contract, and for\n // L1, this would just be the same admin of the HubPool.\n function _requireAdminSender() internal virtual;\n\n // Added to enable the this contract to receive native token (ETH). Used when unwrapping wrappedNativeToken.\n receive() external payable {}\n\n // Reserve storage slots for future versions of this base contract to add state variables without\n // affecting the storage layout of child contracts. Decrement the size of __gap whenever state variables\n // are added, so that the total number of slots taken by this contract remains constant. Per-contract\n // storage layout information can be found in storage-layouts/\n // This is at bottom of contract to make sure it's always at the end of storage.\n uint256[997] private __gap;\n}\n"
+ },
+ "contracts/SpokePoolPeriphery.sol": {
+ "content": "// SPDX-License-Identifier: GPL-3.0-or-later\npragma solidity ^0.8.0;\n\nimport { IERC20 } from \"@openzeppelin/contracts-v4/token/ERC20/IERC20.sol\";\nimport { SafeERC20 } from \"@openzeppelin/contracts-v4/token/ERC20/utils/SafeERC20.sol\";\nimport { IERC20Permit } from \"@openzeppelin/contracts-v4/token/ERC20/extensions/IERC20Permit.sol\";\nimport { Address } from \"@openzeppelin/contracts-v4/utils/Address.sol\";\nimport { MultiCaller } from \"contracts/external/uma/core/contracts/common/implementation/MultiCaller.sol\";\nimport { ReentrancyGuard } from \"@openzeppelin/contracts-v4/security/ReentrancyGuard.sol\";\nimport { SignatureChecker } from \"@openzeppelin/contracts-v4/utils/cryptography/SignatureChecker.sol\";\nimport { EIP712 } from \"@openzeppelin/contracts-v4/utils/cryptography/EIP712.sol\";\nimport { V3SpokePoolInterface } from \"./interfaces/V3SpokePoolInterface.sol\";\nimport { IERC20Auth } from \"./external/interfaces/IERC20Auth.sol\";\nimport { WETH9Interface } from \"./external/interfaces/WETH9Interface.sol\";\nimport { IPermit2 } from \"./external/interfaces/IPermit2.sol\";\nimport { PeripherySigningLib } from \"./libraries/PeripherySigningLib.sol\";\nimport { SpokePoolPeripheryInterface } from \"./interfaces/SpokePoolPeripheryInterface.sol\";\nimport { AddressToBytes32 } from \"./libraries/AddressConverters.sol\";\n\n/**\n * @title SwapProxy\n * @notice A dedicated proxy contract that isolates swap execution to mitigate frontrunning vulnerabilities.\n * The SpokePoolPeriphery transfers tokens to this contract, which performs the swap and returns tokens back to the periphery.\n * @custom:security-contact bugs@across.to\n */\ncontract SwapProxy is ReentrancyGuard {\n using SafeERC20 for IERC20;\n using Address for address;\n\n // Canonical Permit2 contract address\n IPermit2 public immutable permit2;\n\n // EIP 1271 magic bytes indicating a valid signature.\n bytes4 private constant EIP1271_VALID_SIGNATURE = 0x1626ba7e;\n\n // EIP 1271 bytes indicating an invalid signature.\n bytes4 private constant EIP1271_INVALID_SIGNATURE = 0xffffffff;\n\n // Mapping from (token, spender) to nonce for Permit2 operations\n mapping(address => mapping(address => uint48)) private permit2Nonces;\n\n // Slot for checking whether this contract is expecting a callback from permit2. Used to confirm whether it should return a valid signature response.\n bool private expectingPermit2Callback;\n\n // Errors\n error SwapFailed();\n error UnsupportedTransferType();\n error InvalidExchange();\n\n /**\n * @notice Constructs a new SwapProxy.\n * @param _permit2 Address of the canonical permit2 contract.\n */\n constructor(address _permit2) {\n permit2 = IPermit2(_permit2);\n }\n\n /**\n * @notice Executes a swap on the given exchange with the provided calldata.\n * @param inputToken The token to swap from\n * @param outputToken The token to swap to\n * @param inputAmount The amount of input tokens to swap\n * @param exchange The exchange to perform the swap\n * @param transferType The method of transferring tokens to the exchange\n * @param routerCalldata The calldata to execute on the exchange\n * @return outputAmount The actual amount of output tokens received from the swap\n */\n function performSwap(\n address inputToken,\n address outputToken,\n uint256 inputAmount,\n address exchange,\n SpokePoolPeripheryInterface.TransferType transferType,\n bytes calldata routerCalldata\n ) external nonReentrant returns (uint256 outputAmount) {\n // Prevent nonce invalidation attack by disallowing exchange to be the permit2 address\n if (exchange == address(permit2)) revert InvalidExchange();\n\n // We'll return the final balance of output tokens\n\n // The exchange will either receive funds from this contract via:\n // 1. A direct approval to spend funds on this contract (TransferType.Approval),\n // 2. A direct transfer of funds to the exchange (TransferType.Transfer), or\n // 3. A permit2 approval (TransferType.Permit2Approval)\n if (transferType == SpokePoolPeripheryInterface.TransferType.Approval) {\n IERC20(inputToken).forceApprove(exchange, inputAmount);\n } else if (transferType == SpokePoolPeripheryInterface.TransferType.Transfer) {\n IERC20(inputToken).safeTransfer(exchange, inputAmount);\n } else if (transferType == SpokePoolPeripheryInterface.TransferType.Permit2Approval) {\n IERC20(inputToken).forceApprove(address(permit2), inputAmount);\n expectingPermit2Callback = true;\n permit2.permit(\n address(this), // owner\n IPermit2.PermitSingle({\n details: IPermit2.PermitDetails({\n token: inputToken,\n amount: uint160(inputAmount),\n expiration: uint48(block.timestamp),\n nonce: permit2Nonces[inputToken][exchange]++\n }),\n spender: exchange,\n sigDeadline: block.timestamp\n }), // permitSingle\n \"\" // signature is unused. The only verification for a valid signature is if we are at this code block.\n );\n expectingPermit2Callback = false;\n } else {\n revert UnsupportedTransferType();\n }\n\n // Execute the swap\n (bool success, ) = exchange.call(routerCalldata);\n if (!success) revert SwapFailed();\n\n // Get the final output token balance\n uint256 outputBalance = IERC20(outputToken).balanceOf(address(this));\n\n // Transfer all output tokens back to the periphery\n IERC20(outputToken).safeTransfer(msg.sender, outputBalance);\n\n // Return the net amount received from the swap\n return outputBalance;\n }\n\n /**\n * @notice Verifies that the signer is the owner of the signing contract.\n * @dev This function is called by Permit2 during the permit process\n * and we need to return a valid signature result to allow permit2 to succeed.\n */\n function isValidSignature(bytes32, bytes calldata) external view returns (bytes4 magicBytes) {\n magicBytes = (msg.sender == address(permit2) && expectingPermit2Callback)\n ? EIP1271_VALID_SIGNATURE\n : EIP1271_INVALID_SIGNATURE;\n }\n}\n\n/**\n * @title SpokePoolPeriphery\n * @notice Contract for performing more complex interactions with an Across spoke pool deployment.\n * @custom:security-contact bugs@across.to\n */\ncontract SpokePoolPeriphery is SpokePoolPeripheryInterface, ReentrancyGuard, MultiCaller, EIP712 {\n using SafeERC20 for IERC20;\n using Address for address;\n using AddressToBytes32 for address;\n\n // Canonical Permit2 contract address.\n IPermit2 public immutable permit2;\n\n // Swap proxy used for isolating all swap operations\n SwapProxy public immutable swapProxy;\n\n // Mapping from user address to their current nonce\n mapping(address => uint256) public permitNonces;\n\n event SwapBeforeBridge(\n address exchange,\n bytes exchangeCalldata,\n address indexed swapToken,\n address indexed acrossInputToken,\n uint256 swapTokenAmount,\n uint256 acrossInputAmount,\n bytes32 indexed acrossOutputToken,\n uint256 acrossOutputAmount\n );\n\n /****************************************\n * ERRORS *\n ****************************************/\n error MinimumExpectedInputAmount();\n error InvalidMsgValue();\n error InvalidSignature();\n error InvalidMinExpectedInputAmount();\n error InvalidNonce();\n\n /**\n * @notice Construct a new Periphery contract.\n * @param _permit2 Address of the canonical permit2 contract.\n */\n constructor(IPermit2 _permit2) EIP712(\"ACROSS-PERIPHERY\", \"1.0.0\") {\n require(address(_permit2) != address(0), \"Permit2 cannot be zero address\");\n require(_isContract(address(_permit2)), \"Permit2 must be a contract\");\n permit2 = _permit2;\n\n // Deploy the swap proxy with reference to the permit2 address\n swapProxy = new SwapProxy(address(_permit2));\n }\n\n /**\n * @inheritdoc SpokePoolPeripheryInterface\n */\n function depositNative(\n address spokePool,\n bytes32 recipient,\n address inputToken,\n uint256 inputAmount,\n bytes32 outputToken,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityParameter,\n bytes memory message\n ) external payable override nonReentrant {\n // Set msg.sender as the depositor so that msg.sender can speed up the deposit.\n V3SpokePoolInterface(spokePool).deposit{ value: msg.value }(\n msg.sender.toBytes32(),\n recipient,\n inputToken.toBytes32(),\n outputToken,\n inputAmount,\n outputAmount,\n destinationChainId,\n exclusiveRelayer,\n quoteTimestamp,\n fillDeadline,\n exclusivityParameter,\n message\n );\n }\n\n /**\n * @inheritdoc SpokePoolPeripheryInterface\n * @dev Revert case: When enableProportionalAdjustment is true, the calculation\n * depositData.outputAmount * returnAmount may overflow if the product exceeds 2^256-1,\n * causing immediate transaction revert even when the final division result would fit.\n * This case should be extremely rare as both values would need to be > 1e18 * 1e18.\n * Users will only see a generic failure without explanatory error message.\n * @dev Does not support native tokens as swap output. Only ERC20 tokens can be deposited via this function.\n */\n function swapAndBridge(SwapAndDepositData calldata swapAndDepositData) external payable override nonReentrant {\n // If a user performs a swapAndBridge with the swap token as the native token, wrap the value and treat the rest of transaction\n // as though the user deposited a wrapped native token.\n if (msg.value != 0) {\n if (msg.value != swapAndDepositData.swapTokenAmount) revert InvalidMsgValue();\n // Assume swapToken implements WETH9 interface if sending value\n WETH9Interface(swapAndDepositData.swapToken).deposit{ value: msg.value }();\n } else {\n // Transfer ERC20 tokens from sender to this contract\n IERC20(swapAndDepositData.swapToken).safeTransferFrom(\n msg.sender,\n address(this),\n swapAndDepositData.swapTokenAmount\n );\n }\n\n _swapAndBridge(swapAndDepositData);\n }\n\n /**\n * @inheritdoc SpokePoolPeripheryInterface\n * @dev Revert case: When enableProportionalAdjustment is true, the calculation\n * depositData.outputAmount * returnAmount may overflow if the product exceeds 2^256-1,\n * causing immediate transaction revert even when the final division result would fit.\n * This case should be extremely rare as both values would need to be > 1e18 * 1e18.\n * Users will only see a generic failure without explanatory error message.\n * @dev Does not support native tokens as swap output. Only ERC20 tokens can be deposited via this function.\n */\n function swapAndBridgeWithPermit(\n address signatureOwner,\n SwapAndDepositData calldata swapAndDepositData,\n uint256 deadline,\n bytes calldata permitSignature,\n bytes calldata swapAndDepositDataSignature\n ) external override nonReentrant {\n (bytes32 r, bytes32 s, uint8 v) = PeripherySigningLib.deserializeSignature(permitSignature);\n // Load variables used in this function onto the stack.\n address _swapToken = swapAndDepositData.swapToken;\n uint256 _swapTokenAmount = swapAndDepositData.swapTokenAmount;\n uint256 _submissionFeeAmount = swapAndDepositData.submissionFees.amount;\n address _submissionFeeRecipient = swapAndDepositData.submissionFees.recipient;\n uint256 _pullAmount = _submissionFeeAmount + _swapTokenAmount;\n\n // For permit transactions, we wrap the call in a try/catch block so that the transaction will continue even if the call to\n // permit fails. For example, this may be useful if the permit signature, which can be redeemed by anyone, is executed by somebody\n // other than this contract.\n try IERC20Permit(_swapToken).permit(signatureOwner, address(this), _pullAmount, deadline, v, r, s) {} catch {}\n IERC20(_swapToken).safeTransferFrom(signatureOwner, address(this), _pullAmount);\n _paySubmissionFees(_swapToken, _submissionFeeRecipient, _submissionFeeAmount);\n // Verify and increment nonce to prevent replay attacks.\n _validateAndIncrementNonce(signatureOwner, swapAndDepositData.nonce);\n // Verify that the signatureOwner signed the input swapAndDepositData.\n _validateSignature(\n signatureOwner,\n PeripherySigningLib.hashSwapAndDepositData(swapAndDepositData),\n swapAndDepositDataSignature\n );\n _swapAndBridge(swapAndDepositData);\n }\n\n /**\n * @inheritdoc SpokePoolPeripheryInterface\n * @dev Revert case: When enableProportionalAdjustment is true, the calculation\n * depositData.outputAmount * returnAmount may overflow if the product exceeds 2^256-1,\n * causing immediate transaction revert even when the final division result would fit.\n * This case should be extremely rare as both values would need to be > 1e18 * 1e18.\n * Users will only see a generic failure without explanatory error message.\n * @dev Does not support native tokens as swap output. Only ERC20 tokens can be deposited via this function.\n */\n function swapAndBridgeWithPermit2(\n address signatureOwner,\n SwapAndDepositData calldata swapAndDepositData,\n IPermit2.PermitTransferFrom calldata permit,\n bytes calldata signature\n ) external override nonReentrant {\n bytes32 witness = PeripherySigningLib.hashSwapAndDepositData(swapAndDepositData);\n uint256 _submissionFeeAmount = swapAndDepositData.submissionFees.amount;\n IPermit2.SignatureTransferDetails memory transferDetails = IPermit2.SignatureTransferDetails({\n to: address(this),\n requestedAmount: swapAndDepositData.swapTokenAmount + _submissionFeeAmount\n });\n\n permit2.permitWitnessTransferFrom(\n permit,\n transferDetails,\n signatureOwner,\n witness,\n PeripherySigningLib.EIP712_SWAP_AND_DEPOSIT_TYPE_STRING,\n signature\n );\n _paySubmissionFees(\n swapAndDepositData.swapToken,\n swapAndDepositData.submissionFees.recipient,\n _submissionFeeAmount\n );\n _swapAndBridge(swapAndDepositData);\n }\n\n /**\n * @inheritdoc SpokePoolPeripheryInterface\n * @dev Revert case: When enableProportionalAdjustment is true, the calculation\n * depositData.outputAmount * returnAmount may overflow if the product exceeds 2^256-1,\n * causing immediate transaction revert even when the final division result would fit.\n * This case should be extremely rare as both values would need to be > 1e18 * 1e18.\n * Users will only see a generic failure without explanatory error message.\n * @dev Does not support native tokens as swap output. Only ERC20 tokens can be deposited via this function.\n */\n function swapAndBridgeWithAuthorization(\n address signatureOwner,\n SwapAndDepositData calldata swapAndDepositData,\n uint256 validAfter,\n uint256 validBefore,\n bytes calldata receiveWithAuthSignature,\n bytes calldata swapAndDepositDataSignature\n ) external override nonReentrant {\n (bytes32 r, bytes32 s, uint8 v) = PeripherySigningLib.deserializeSignature(receiveWithAuthSignature);\n uint256 _submissionFeeAmount = swapAndDepositData.submissionFees.amount;\n // While any contract can vacuously implement `receiveWithAuthorization` (or just have a fallback),\n // if tokens were not sent to this contract, by this call to swapData.swapToken, this function will revert\n // when attempting to swap tokens it does not own.\n IERC20Auth(address(swapAndDepositData.swapToken)).receiveWithAuthorization(\n signatureOwner,\n address(this),\n swapAndDepositData.swapTokenAmount + _submissionFeeAmount,\n validAfter,\n validBefore,\n bytes32(swapAndDepositData.nonce),\n v,\n r,\n s\n );\n _paySubmissionFees(\n swapAndDepositData.swapToken,\n swapAndDepositData.submissionFees.recipient,\n _submissionFeeAmount\n );\n\n // Note: No need to validate our internal nonce for receiveWithAuthorization\n // as EIP-3009 has its own nonce mechanism that prevents replay attacks.\n //\n // Design Decision: We reuse the receiveWithAuthorization nonce for our signatures,\n // but not for permit, which creates a theoretical replay attack that we think is\n // incredibly unlikely because this would require:\n // 1. A token implementing both ERC-2612 and ERC-3009\n // 2. A user using the same nonces for swapAndBridgeWithPermit and for swapAndBridgeWithAuthorization\n // 3. Issuing these signatures within a short amount of time (limited by fillDeadlineBuffer)\n // Verify that the signatureOwner signed the input swapAndDepositData.\n _validateSignature(\n signatureOwner,\n PeripherySigningLib.hashSwapAndDepositData(swapAndDepositData),\n swapAndDepositDataSignature\n );\n _swapAndBridge(swapAndDepositData);\n }\n\n /**\n * @inheritdoc SpokePoolPeripheryInterface\n */\n function depositWithPermit(\n address signatureOwner,\n DepositData calldata depositData,\n uint256 deadline,\n bytes calldata permitSignature,\n bytes calldata depositDataSignature\n ) external override nonReentrant {\n (bytes32 r, bytes32 s, uint8 v) = PeripherySigningLib.deserializeSignature(permitSignature);\n // Load variables used in this function onto the stack.\n address _inputToken = depositData.baseDepositData.inputToken;\n uint256 _inputAmount = depositData.inputAmount;\n uint256 _submissionFeeAmount = depositData.submissionFees.amount;\n address _submissionFeeRecipient = depositData.submissionFees.recipient;\n uint256 _pullAmount = _submissionFeeAmount + _inputAmount;\n\n // For permit transactions, we wrap the call in a try/catch block so that the transaction will continue even if the call to\n // permit fails. For example, this may be useful if the permit signature, which can be redeemed by anyone, is executed by somebody\n // other than this contract.\n try IERC20Permit(_inputToken).permit(signatureOwner, address(this), _pullAmount, deadline, v, r, s) {} catch {}\n IERC20(_inputToken).safeTransferFrom(signatureOwner, address(this), _pullAmount);\n _paySubmissionFees(_inputToken, _submissionFeeRecipient, _submissionFeeAmount);\n\n // Verify and increment nonce to prevent replay attacks.\n _validateAndIncrementNonce(signatureOwner, depositData.nonce);\n // Verify that the signatureOwner signed the input depositData.\n _validateSignature(signatureOwner, PeripherySigningLib.hashDepositData(depositData), depositDataSignature);\n _deposit(\n depositData.spokePool,\n depositData.baseDepositData.depositor,\n depositData.baseDepositData.recipient,\n _inputToken,\n depositData.baseDepositData.outputToken,\n _inputAmount,\n depositData.baseDepositData.outputAmount,\n depositData.baseDepositData.destinationChainId,\n depositData.baseDepositData.exclusiveRelayer,\n depositData.baseDepositData.quoteTimestamp,\n depositData.baseDepositData.fillDeadline,\n depositData.baseDepositData.exclusivityParameter,\n depositData.baseDepositData.message\n );\n }\n\n /**\n * @inheritdoc SpokePoolPeripheryInterface\n */\n function depositWithPermit2(\n address signatureOwner,\n DepositData calldata depositData,\n IPermit2.PermitTransferFrom calldata permit,\n bytes calldata signature\n ) external override nonReentrant {\n bytes32 witness = PeripherySigningLib.hashDepositData(depositData);\n uint256 _submissionFeeAmount = depositData.submissionFees.amount;\n IPermit2.SignatureTransferDetails memory transferDetails = IPermit2.SignatureTransferDetails({\n to: address(this),\n requestedAmount: depositData.inputAmount + _submissionFeeAmount\n });\n\n permit2.permitWitnessTransferFrom(\n permit,\n transferDetails,\n signatureOwner,\n witness,\n PeripherySigningLib.EIP712_DEPOSIT_TYPE_STRING,\n signature\n );\n _paySubmissionFees(\n depositData.baseDepositData.inputToken,\n depositData.submissionFees.recipient,\n _submissionFeeAmount\n );\n\n _deposit(\n depositData.spokePool,\n depositData.baseDepositData.depositor,\n depositData.baseDepositData.recipient,\n depositData.baseDepositData.inputToken,\n depositData.baseDepositData.outputToken,\n depositData.inputAmount,\n depositData.baseDepositData.outputAmount,\n depositData.baseDepositData.destinationChainId,\n depositData.baseDepositData.exclusiveRelayer,\n depositData.baseDepositData.quoteTimestamp,\n depositData.baseDepositData.fillDeadline,\n depositData.baseDepositData.exclusivityParameter,\n depositData.baseDepositData.message\n );\n }\n\n /**\n * @inheritdoc SpokePoolPeripheryInterface\n */\n function depositWithAuthorization(\n address signatureOwner,\n DepositData calldata depositData,\n uint256 validAfter,\n uint256 validBefore,\n bytes calldata receiveWithAuthSignature,\n bytes calldata depositDataSignature\n ) external override nonReentrant {\n // Load variables used multiple times onto the stack.\n uint256 _inputAmount = depositData.inputAmount;\n uint256 _submissionFeeAmount = depositData.submissionFees.amount;\n\n // Redeem the receiveWithAuthSignature.\n (bytes32 r, bytes32 s, uint8 v) = PeripherySigningLib.deserializeSignature(receiveWithAuthSignature);\n IERC20Auth(depositData.baseDepositData.inputToken).receiveWithAuthorization(\n signatureOwner,\n address(this),\n _inputAmount + _submissionFeeAmount,\n validAfter,\n validBefore,\n bytes32(depositData.nonce),\n v,\n r,\n s\n );\n _paySubmissionFees(\n depositData.baseDepositData.inputToken,\n depositData.submissionFees.recipient,\n _submissionFeeAmount\n );\n\n // Note: No need to validate our internal nonce for receiveWithAuthorization\n // as EIP-3009 has its own nonce mechanism that prevents replay attacks.\n //\n // Design Decision: We reuse the receiveWithAuthorization nonce for our signatures,\n // but not for permit, which creates a theoretical replay attack that we think is\n // incredibly unlikely because this would require:\n // 1. A token implementing both ERC-2612 and ERC-3009\n // 2. A user using the same nonces for depositWithPermit and for depositWithAuthorization\n // 3. Issuing these signatures within a short amount of time (limited by fillDeadlineBuffer)\n // Verify that the signatureOwner signed the input depositData.\n _validateSignature(signatureOwner, PeripherySigningLib.hashDepositData(depositData), depositDataSignature);\n _deposit(\n depositData.spokePool,\n depositData.baseDepositData.depositor,\n depositData.baseDepositData.recipient,\n depositData.baseDepositData.inputToken,\n depositData.baseDepositData.outputToken,\n _inputAmount,\n depositData.baseDepositData.outputAmount,\n depositData.baseDepositData.destinationChainId,\n depositData.baseDepositData.exclusiveRelayer,\n depositData.baseDepositData.quoteTimestamp,\n depositData.baseDepositData.fillDeadline,\n depositData.baseDepositData.exclusivityParameter,\n depositData.baseDepositData.message\n );\n }\n\n /**\n * @notice Returns the contract's EIP712 domain separator, used to sign hashed DepositData/SwapAndDepositData types.\n */\n function domainSeparator() external view returns (bytes32) {\n return _domainSeparatorV4();\n }\n\n /**\n * @notice Validates that the typed data hash corresponds to the input signature owner and corresponding signature.\n * @param signatureOwner The alledged signer of the input hash.\n * @param typedDataHash The EIP712 data hash to check the signature against.\n * @param signature The signature to validate.\n */\n function _validateSignature(address signatureOwner, bytes32 typedDataHash, bytes calldata signature) private view {\n if (!SignatureChecker.isValidSignatureNow(signatureOwner, _hashTypedDataV4(typedDataHash), signature)) {\n revert InvalidSignature();\n }\n }\n\n /**\n * @notice Validates and increments the user's nonce to prevent replay attacks.\n * @param user The user whose nonce is being validated.\n * @param providedNonce The provided nonce value.\n */\n function _validateAndIncrementNonce(address user, uint256 providedNonce) private {\n if (permitNonces[user] != providedNonce) {\n revert InvalidNonce();\n }\n permitNonces[user]++;\n }\n\n /**\n * @notice Approves the spoke pool and calls `depositV3` function with the specified input parameters.\n * @param depositor The address on the origin chain which should be treated as the depositor by Across, and will therefore receive refunds if this deposit\n * is unfilled.\n * @param recipient The address on the destination chain which should receive outputAmount of outputToken.\n * @param inputToken The token to deposit on the origin chain.\n * @param outputToken The token to receive on the destination chain.\n * @param inputAmount The amount of the input token to deposit.\n * @param outputAmount The amount of the output token to receive.\n * @param destinationChainId The network ID for the destination chain.\n * @param exclusiveRelayer The optional address for an Across relayer which may fill the deposit exclusively.\n * @param quoteTimestamp The timestamp at which the relay and LP fee was calculated.\n * @param fillDeadline The timestamp at which the deposit must be filled before it will be refunded by Across.\n * @param exclusivityParameter The deadline or offset during which the exclusive relayer has rights to fill the deposit without contention.\n * @param message The message to execute on the destination chain.\n */\n function _deposit(\n address spokePool,\n address depositor,\n bytes32 recipient,\n address inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityParameter,\n bytes calldata message\n ) private {\n IERC20(inputToken).forceApprove(spokePool, inputAmount);\n V3SpokePoolInterface(spokePool).deposit(\n depositor.toBytes32(),\n recipient,\n inputToken.toBytes32(),\n outputToken,\n inputAmount,\n outputAmount,\n destinationChainId,\n exclusiveRelayer,\n quoteTimestamp,\n fillDeadline,\n exclusivityParameter,\n message\n );\n }\n\n /**\n * @notice Swaps a token on the origin chain before depositing into the Across spoke pool atomically.\n * @param swapAndDepositData The parameters to use when calling both the swap on an exchange and bridging via an Across spoke pool.\n */\n function _swapAndBridge(SwapAndDepositData calldata swapAndDepositData) private {\n // Load variables we use multiple times onto the stack.\n IERC20 _swapToken = IERC20(swapAndDepositData.swapToken);\n IERC20 _acrossInputToken = IERC20(swapAndDepositData.depositData.inputToken);\n address _exchange = swapAndDepositData.exchange;\n uint256 _swapTokenAmount = swapAndDepositData.swapTokenAmount;\n\n // Transfer tokens to the swap proxy for executing the swap\n _swapToken.safeTransfer(address(swapProxy), _swapTokenAmount);\n\n // Execute the swap via the swap proxy using the appropriate transfer type\n // This function will swap _swapToken for _acrossInputToken and return the amount of _acrossInputToken received\n uint256 returnAmount = swapProxy.performSwap(\n address(_swapToken),\n address(_acrossInputToken),\n _swapTokenAmount,\n _exchange,\n swapAndDepositData.transferType,\n swapAndDepositData.routerCalldata\n );\n\n // Sanity check that received amount from swap is enough to submit Across deposit with.\n if (returnAmount < swapAndDepositData.minExpectedInputTokenAmount) revert MinimumExpectedInputAmount();\n\n // Calculate adjusted output amount based on whether proportional adjustment is enabled\n if (swapAndDepositData.minExpectedInputTokenAmount == 0) revert InvalidMinExpectedInputAmount();\n uint256 adjustedOutputAmount;\n if (swapAndDepositData.enableProportionalAdjustment) {\n // Adjust the output amount proportionally based on the returned input amount\n adjustedOutputAmount =\n (swapAndDepositData.depositData.outputAmount * returnAmount) /\n swapAndDepositData.minExpectedInputTokenAmount;\n } else {\n // Use the fixed output amount without adjustment\n adjustedOutputAmount = swapAndDepositData.depositData.outputAmount;\n }\n\n emit SwapBeforeBridge(\n _exchange,\n swapAndDepositData.routerCalldata,\n address(_swapToken),\n address(_acrossInputToken),\n _swapTokenAmount,\n returnAmount,\n swapAndDepositData.depositData.outputToken,\n adjustedOutputAmount\n );\n\n // Deposit the swapped tokens into Across and bridge them using remainder of input params.\n _deposit(\n swapAndDepositData.spokePool,\n swapAndDepositData.depositData.depositor,\n swapAndDepositData.depositData.recipient,\n address(_acrossInputToken),\n swapAndDepositData.depositData.outputToken,\n returnAmount,\n adjustedOutputAmount,\n swapAndDepositData.depositData.destinationChainId,\n swapAndDepositData.depositData.exclusiveRelayer,\n swapAndDepositData.depositData.quoteTimestamp,\n swapAndDepositData.depositData.fillDeadline,\n swapAndDepositData.depositData.exclusivityParameter,\n swapAndDepositData.depositData.message\n );\n }\n\n function _paySubmissionFees(address feeToken, address recipient, uint256 amount) private {\n if (amount > 0) {\n // Use msg.sender as recipient if recipient is zero address, otherwise use the specified recipient\n address feeRecipient = recipient == address(0) ? msg.sender : recipient;\n IERC20(feeToken).safeTransfer(feeRecipient, amount);\n }\n }\n\n /**\n * @notice Internal function to check if an address is a contract\n * @dev This is a replacement for OpenZeppelin's isContract function which is deprecated\n * @param addr The address to check\n * @return True if the address is a contract, false otherwise\n */\n function _isContract(address addr) private view returns (bool) {\n uint256 size;\n assembly {\n size := extcodesize(addr)\n }\n return size > 0;\n }\n}\n"
+ },
+ "contracts/SpokePoolVerifier.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\nimport \"@openzeppelin/contracts-v4/utils/Address.sol\";\nimport \"./interfaces/V3SpokePoolInterface.sol\";\nimport { AddressToBytes32 } from \"./libraries/AddressConverters.sol\";\n\n/**\n * @notice SpokePoolVerifier is a contract that verifies that the SpokePool exists on this chain before sending ETH to it.\n * @dev This contract must be deployed via Create2 to the same address on all chains. That way, an errant transaction sent\n * to the wrong chain will be blocked by this contract rather than hitting a dead address. This means that this contract\n * will not work to protect chains, like zkSync, where Create2 address derivations don't match other chains.\n * Source: https://era.zksync.io/docs/reference/architecture/differences-with-ethereum.html#create-create2\n * @custom:security-contact bugs@across.to\n */\ncontract SpokePoolVerifier {\n using Address for address;\n using AddressToBytes32 for address;\n\n error InvalidMsgValue();\n error InvalidSpokePool();\n\n /**\n * @notice Passthrough function to `deposit()` on the SpokePool contract.\n * @dev Protects the caller from losing their ETH (or other native token) by reverting if the SpokePool address\n * they intended to call does not exist on this chain. Because this contract can be deployed at the same address\n * everywhere callers should be protected even if the transaction is submitted to an unintended network.\n * This contract should only be used for native token deposits, as this problem only exists for native tokens.\n * @param spokePool Address of the SpokePool contract that the user is intending to call.\n * @param recipient Address to receive funds at on destination chain.\n * @param inputToken Token to lock into this contract to initiate deposit.\n * @param inputAmount Amount of tokens to deposit.\n * @param outputAmount Amount of tokens to receive on destination chain.\n * @param destinationChainId Denotes network where user will receive funds from SpokePool by a relayer.\n * @param quoteTimestamp Timestamp used by relayers to compute this deposit's realizedLPFeePct which is paid\n * to LP pool on HubPool.\n * @param message Arbitrary data that can be used to pass additional information to the recipient along with the tokens.\n * Note: this is intended to be used to pass along instructions for how a contract should use or allocate the tokens.\n * @param exclusiveRelayer Address of the relayer who has exclusive rights to fill this deposit. Can be set to\n * 0x0 if no exclusivity period is desired. If so, then must set exclusivityDeadline to 0.\n * @param exclusivityDeadline Timestamp after which any relayer can fill this deposit. Must set\n * to 0 if exclusiveRelayer is set to 0x0, and vice versa.\n * @param fillDeadline Timestamp after which this deposit can no longer be filled.\n */\n function deposit(\n V3SpokePoolInterface spokePool,\n bytes32 recipient,\n bytes32 inputToken,\n uint256 inputAmount,\n bytes32 outputToken,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityDeadline,\n bytes memory message\n ) external payable {\n if (msg.value != inputAmount) revert InvalidMsgValue();\n if (!address(spokePool).isContract()) revert InvalidSpokePool();\n // Set msg.sender as the depositor so that msg.sender can speed up the deposit.\n spokePool.deposit{ value: msg.value }(\n msg.sender.toBytes32(),\n recipient,\n inputToken,\n outputToken,\n inputAmount,\n outputAmount,\n destinationChainId,\n exclusiveRelayer,\n quoteTimestamp,\n fillDeadline,\n exclusivityDeadline,\n message\n );\n }\n}\n"
+ },
+ "contracts/upgradeable/AddressLibUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @title AddressUpgradeable\n * @dev Collection of functions related to the address type\n * @notice Logic is 100% copied from \"@openzeppelin/contracts-upgradeable-v4/contracts/utils/AddressUpgradeable.sol\" but one\n * comment is added to clarify why we allow delegatecall() in this contract, which is typically unsafe for use in\n * upgradeable implementation contracts.\n * @dev See https://docs.openzeppelin.com/upgrades-plugins/1.x/faq#delegatecall-selfdestruct for more details.\n * @custom:security-contact bugs@across.to\n */\nlibrary AddressLibUpgradeable {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n *\n * Furthermore, `isContract` will also return true if the target contract within\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n * which only has an effect at the end of a transaction.\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{ value: amount }(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n (bool success, bytes memory returndata) = target.call{ value: value }(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n /// @custom:oz-upgrades-unsafe-allow delegatecall\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n *\n * _Available since v4.8._\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n if (success) {\n if (returndata.length == 0) {\n // only check isContract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n require(isContract(target), \"Address: call to non-contract\");\n }\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason or using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n /// @solidity memory-safe-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n}\n"
+ },
+ "contracts/upgradeable/EIP712CrossChainUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\nimport \"@openzeppelin/contracts-upgradeable-v4/utils/cryptography/ECDSAUpgradeable.sol\";\nimport \"@openzeppelin/contracts-upgradeable-v4/proxy/utils/Initializable.sol\";\n\n/**\n * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.\n *\n * This contract is based on OpenZeppelin's implementation:\n * https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable/blob/master/contracts/utils/cryptography/EIP712Upgradeable.sol\n *\n * NOTE: Modified version that allows to build a domain separator that relies on a different chain id than the chain this\n * contract is deployed to. An example use case we want to support is:\n * - User A signs a message on chain with id = 1\n * - User B executes a method by verifying user A's EIP-712 compliant signature on a chain with id != 1\n * @custom:security-contact bugs@across.to\n */\nabstract contract EIP712CrossChainUpgradeable is Initializable {\n /* solhint-disable var-name-mixedcase */\n bytes32 private _HASHED_NAME;\n bytes32 private _HASHED_VERSION;\n bytes32 private constant _TYPE_HASH = keccak256(\"EIP712Domain(string name,string version,uint256 chainId)\");\n\n /* solhint-enable var-name-mixedcase */\n\n /**\n * @dev Initializes the domain separator and parameter caches.\n *\n * The meaning of `name` and `version` is specified in\n * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:\n *\n * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\n * - `version`: the current major version of the signing domain.\n *\n * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\n * contract upgrade].\n */\n function __EIP712_init(string memory name, string memory version) internal onlyInitializing {\n __EIP712_init_unchained(name, version);\n }\n\n function __EIP712_init_unchained(string memory name, string memory version) internal onlyInitializing {\n bytes32 hashedName = keccak256(bytes(name));\n bytes32 hashedVersion = keccak256(bytes(version));\n _HASHED_NAME = hashedName;\n _HASHED_VERSION = hashedVersion;\n }\n\n /**\n * @dev Returns the domain separator depending on the `originChainId`.\n * @param originChainId Chain id of network where message originates from.\n * @return bytes32 EIP-712-compliant domain separator.\n */\n function _domainSeparatorV4(uint256 originChainId) internal view returns (bytes32) {\n return keccak256(abi.encode(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION, originChainId));\n }\n\n /**\n * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\n * function returns the hash of the fully encoded EIP712 message for this domain.\n *\n * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\n *\n * ```solidity\n * bytes32 structHash = keccak256(abi.encode(\n * keccak256(\"Mail(address to,string contents)\"),\n * mailTo,\n * keccak256(bytes(mailContents))\n * ));\n * bytes32 digest = _hashTypedDataV4(structHash, originChainId);\n * address signer = ECDSA.recover(digest, signature);\n * ```\n * @param structHash Hashed struct as defined in https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct.\n * @param originChainId Chain id of network where message originates from.\n * @return bytes32 Hash digest that is recoverable via `EDCSA.recover`.\n */\n function _hashTypedDataV4(bytes32 structHash, uint256 originChainId) internal view virtual returns (bytes32) {\n return ECDSAUpgradeable.toTypedDataHash(_domainSeparatorV4(originChainId), structHash);\n }\n\n // Reserve storage slots for future versions of this base contract to add state variables without\n // affecting the storage layout of child contracts. Decrement the size of __gap whenever state variables\n // are added, so that the total number of slots taken by this contract remains constant. Per-contract\n // storage layout information can be found in storage-layouts/\n // This is at bottom of contract to make sure it's always at the end of storage.\n uint256[1000] private __gap;\n}\n"
+ },
+ "contracts/upgradeable/MultiCallerUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\n/**\n * @title MultiCallerUpgradeable\n * @notice Logic is 100% copied from \"contracts/external/uma/core/contracts/common/implementation/MultiCaller.sol\" but one\n * comment is added to clarify why we allow delegatecall() in this contract, which is typically unsafe for use in\n * upgradeable implementation contracts.\n * @dev See https://docs.openzeppelin.com/upgrades-plugins/1.x/faq#delegatecall-selfdestruct for more details.\n * @custom:security-contact bugs@across.to\n */\ncontract MultiCallerUpgradeable {\n struct Result {\n bool success;\n bytes returnData;\n }\n\n function _validateMulticallData(bytes[] calldata data) internal virtual {\n // no-op\n }\n\n function multicall(bytes[] calldata data) external returns (bytes[] memory results) {\n _validateMulticallData(data);\n\n uint256 dataLength = data.length;\n results = new bytes[](dataLength);\n\n //slither-disable-start calls-loop\n for (uint256 i = 0; i < dataLength; ++i) {\n // Typically, implementation contracts used in the upgradeable proxy pattern shouldn't call `delegatecall`\n // because it could allow a malicious actor to call this implementation contract directly (rather than\n // through a proxy contract) and then selfdestruct() the contract, thereby freezing the upgradeable\n // proxy. However, since we're only delegatecall-ing into this contract, then we can consider this\n // use of delegatecall() safe.\n\n //slither-disable-start low-level-calls\n /// @custom:oz-upgrades-unsafe-allow delegatecall\n (bool success, bytes memory result) = address(this).delegatecall(data[i]);\n //slither-disable-end low-level-calls\n\n if (!success) {\n // Next 5 lines from https://ethereum.stackexchange.com/a/83577\n if (result.length < 68) revert();\n //slither-disable-next-line assembly\n assembly {\n result := add(result, 0x04)\n }\n revert(abi.decode(result, (string)));\n }\n\n results[i] = result;\n }\n //slither-disable-end calls-loop\n }\n\n function tryMulticall(bytes[] calldata data) external returns (Result[] memory results) {\n _validateMulticallData(data);\n\n uint256 dataLength = data.length;\n results = new Result[](dataLength);\n\n //slither-disable-start calls-loop\n for (uint256 i = 0; i < dataLength; ++i) {\n // The delegatecall here is safe for the same reasons outlined in the first multicall function.\n Result memory result = results[i];\n //slither-disable-start low-level-calls\n /// @custom:oz-upgrades-unsafe-allow delegatecall\n (result.success, result.returnData) = address(this).delegatecall(data[i]);\n //slither-disable-end low-level-calls\n }\n //slither-disable-end calls-loop\n }\n\n // Reserve storage slots for future versions of this base contract to add state variables without\n // affecting the storage layout of child contracts. Decrement the size of __gap whenever state variables\n // are added, so that the total number of slots taken by this contract remains constant. Per-contract\n // storage layout information can be found in storage-layouts/\n // This is at bottom of contract to make sure it's always at the end of storage.\n uint256[1000] private __gap;\n}\n"
+ },
+ "contracts/ZkSync_SpokePool.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\nimport \"@openzeppelin/contracts-v4/token/ERC20/utils/SafeERC20.sol\";\nimport { CircleCCTPAdapter, CircleDomainIds, ITokenMessenger } from \"./libraries/CircleCCTPAdapter.sol\";\nimport { CrossDomainAddressUtils } from \"./libraries/CrossDomainAddressUtils.sol\";\nimport \"./SpokePool.sol\";\n\n// https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/bridge/asset-router/L2AssetRouter.sol#L321\ninterface IL2AssetRouter {\n function withdraw(bytes32 _assetId, bytes memory _assetData) external returns (bytes32);\n}\n\n// https://github.com/matter-labs/era-contracts/blob/6391c0d7bf6184d7f6718060e3991ba6f0efe4a7/zksync/contracts/bridge/L2ERC20Bridge.sol#L104\ninterface ZkBridgeLike {\n function withdraw(address _l1Receiver, address _l2Token, uint256 _amount) external;\n}\n\ninterface IL2ETH {\n function withdraw(address _l1Receiver) external payable;\n}\n\n/**\n * @notice ZkSync specific SpokePool, intended to be compiled with `@matterlabs/hardhat-zksync-solc`.\n * @dev Resources for compiling and deploying contracts with hardhat: https://era.zksync.io/docs/tools/hardhat/hardhat-zksync-solc.html\n * @custom:security-contact bugs@across.to\n */\ncontract ZkSync_SpokePool is SpokePool, CircleCCTPAdapter {\n using SafeERC20 for IERC20;\n\n // On Ethereum, avoiding constructor parameters and putting them into constants reduces some of the gas cost\n // upon contract deployment. On zkSync the opposite is true: deploying the same bytecode for contracts,\n // while changing only constructor parameters can lead to substantial fee savings. So, the following params\n // are all set by passing in constructor params where possible.\n\n // ETH on ZkSync implements a subset of the ERC-20 interface, with additional built-in support to bridge to L1.\n address public l2Eth;\n\n // Legacy bridge used to withdraw ERC20's to L1, replaced by `l2AssetRouter`.\n address public DEPRECATED_zkErc20Bridge;\n\n /// @dev Legacy bridge used to withdraw USDC to L1, for withdrawing all other ERC20's we use `l2AssetRouter`.\n ZkBridgeLike public immutable zkUSDCBridge;\n\n /// @dev The offset from which the built-in, but user space contracts are located.\n /// Source: https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/common/l2-helpers/L2ContractAddresses.sol#L12C1-L13C58\n uint160 constant USER_CONTRACTS_OFFSET = 0x10000; // 2^16\n\n /// Contract used to withdraw ERC20's to L1.\n /// Source: https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/common/l2-helpers/L2ContractAddresses.sol#L68\n address constant L2_ASSET_ROUTER_ADDR = address(USER_CONTRACTS_OFFSET + 0x03);\n IL2AssetRouter public constant l2AssetRouter = IL2AssetRouter(L2_ASSET_ROUTER_ADDR);\n\n /// @dev An l2 system contract address, used in the assetId calculation for native assets.\n /// This is needed for automatic bridging, i.e. without deploying the AssetHandler contract,\n /// if the assetId can be calculated with this address then it is in fact an NTV asset\n /// Source: https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/common/l2-helpers/L2ContractAddresses.sol#L70C1-L73C85\n address constant L2_NATIVE_TOKEN_VAULT_ADDR = address(USER_CONTRACTS_OFFSET + 0x04);\n\n // Used to compute asset ID needed to withdraw tokens.\n uint256 public immutable l1ChainId;\n\n event SetZkBridge(address indexed erc20Bridge, address indexed oldErc20Bridge);\n\n error InvalidBridgeConfig();\n\n /**\n * @notice Constructor.\n * @param _zkUSDCBridge Legacy bridge used to withdraw USDC to L1, for withdrawing all other ERC20's we use `l2AssetRouter`.\n * @param _wrappedNativeTokenAddress wrappedNativeToken address for this network to set.\n * @param _circleUSDC Circle USDC address on the SpokePool. Set to 0x0 to use the standard ERC20 bridge instead.\n * If not set to zero, then either the zkUSDCBridge or cctpTokenMessenger must be set and will be used to\n * bridge this token.\n * @param _zkUSDCBridge Elastic chain custom bridge address for USDC (if deployed, or address(0) to disable).\n * @param _l1ChainId Chain ID of the L1 chain.\n * @param _cctpTokenMessenger TokenMessenger contract to bridge via CCTP. If the zero address is passed, CCTP bridging will be disabled.\n * @param _depositQuoteTimeBuffer depositQuoteTimeBuffer to set. Quote timestamps can't be set more than this amount\n * into the past from the block time of the deposit.\n * @param _fillDeadlineBuffer fillDeadlineBuffer to set. Fill deadlines can't be set more than this amount\n * into the future from the block time of the deposit.\n */\n /// @custom:oz-upgrades-unsafe-allow constructor\n constructor(\n address _wrappedNativeTokenAddress,\n IERC20 _circleUSDC,\n ZkBridgeLike _zkUSDCBridge,\n uint256 _l1ChainId,\n ITokenMessenger _cctpTokenMessenger,\n uint32 _depositQuoteTimeBuffer,\n uint32 _fillDeadlineBuffer\n )\n SpokePool(\n _wrappedNativeTokenAddress,\n _depositQuoteTimeBuffer,\n _fillDeadlineBuffer,\n // ZkSync_SpokePool does not use OFT messaging; setting destination eid and fee cap to 0\n 0,\n 0\n )\n CircleCCTPAdapter(_circleUSDC, _cctpTokenMessenger, CircleDomainIds.Ethereum)\n {\n address zero = address(0);\n if (address(_circleUSDC) != zero) {\n bool zkUSDCBridgeDisabled = address(_zkUSDCBridge) == zero;\n bool cctpUSDCBridgeDisabled = address(_cctpTokenMessenger) == zero;\n // Bridged and Native USDC are mutually exclusive.\n if (zkUSDCBridgeDisabled == cctpUSDCBridgeDisabled) {\n revert InvalidBridgeConfig();\n }\n }\n\n zkUSDCBridge = _zkUSDCBridge;\n l1ChainId = _l1ChainId;\n }\n\n /**\n * @notice Initialize the ZkSync SpokePool.\n * @param _initialDepositId Starting deposit ID. Set to 0 unless this is a re-deployment in order to mitigate\n * relay hash collisions.\n * @param _crossDomainAdmin Cross domain admin to set. Can be changed by admin.\n * @param _withdrawalRecipient Address which receives token withdrawals. Can be changed by admin. For Spoke Pools on L2, this will\n * likely be the hub pool.\n */\n function initialize(\n uint32 _initialDepositId,\n address _crossDomainAdmin,\n address _withdrawalRecipient\n ) public initializer {\n l2Eth = 0x000000000000000000000000000000000000800A;\n __SpokePool_init(_initialDepositId, _crossDomainAdmin, _withdrawalRecipient);\n }\n\n modifier onlyFromCrossDomainAdmin() {\n require(msg.sender == CrossDomainAddressUtils.applyL1ToL2Alias(crossDomainAdmin), \"ONLY_COUNTERPART_GATEWAY\");\n _;\n }\n\n /**************************************\n * INTERNAL FUNCTIONS *\n **************************************/\n\n /**\n * @notice Checks if an address is a 7702 delegated wallet (EOA with delegated code).\n * @return False Since eraVM does not support 7702 delegated wallets, this function always returns false.\n */\n function _is7702DelegatedWallet(address) internal pure override returns (bool) {\n return false;\n }\n\n /**\n * @notice Wraps any ETH into WETH before executing base function. This is necessary because SpokePool receives\n * ETH over the canonical token bridge instead of WETH.\n */\n function _preExecuteLeafHook(address l2TokenAddress) internal override {\n if (l2TokenAddress == address(wrappedNativeToken)) _depositEthToWeth();\n }\n\n // Wrap any ETH owned by this contract so we can send expected L2 token to recipient. This is necessary because\n // this SpokePool will receive ETH from the canonical token bridge instead of WETH. This may not be neccessary\n // if ETH on ZkSync is treated as ETH and the fallback() function is triggered when this contract receives\n // ETH. We will have to test this but this function for now allows the contract to safely convert all of its\n // held ETH into WETH at the cost of higher gas costs.\n function _depositEthToWeth() internal {\n //slither-disable-next-line arbitrary-send-eth\n if (address(this).balance > 0) wrappedNativeToken.deposit{ value: address(this).balance }();\n }\n\n function _bridgeTokensToHubPool(uint256 amountToReturn, address l2TokenAddress) internal override {\n // SpokePool is expected to receive ETH from the L1 HubPool and currently, withdrawing ETH directly\n // over the ERC20 Bridge is blocked at the contract level. Therefore, we need to unwrap it before withdrawing.\n if (l2TokenAddress == address(wrappedNativeToken)) {\n WETH9Interface(l2TokenAddress).withdraw(amountToReturn); // Unwrap into ETH.\n // To withdraw tokens, we actually call 'withdraw' on the L2 eth token itself.\n IL2ETH(l2Eth).withdraw{ value: amountToReturn }(withdrawalRecipient);\n } else if (l2TokenAddress == address(usdcToken)) {\n if (_isCCTPEnabled()) {\n // Circle native USDC via CCTP.\n _transferUsdc(withdrawalRecipient, amountToReturn);\n } else {\n // Matter Labs custom USDC bridge for Circle Bridged (upgradable) USDC.\n IERC20(l2TokenAddress).forceApprove(address(zkUSDCBridge), amountToReturn);\n zkUSDCBridge.withdraw(withdrawalRecipient, l2TokenAddress, amountToReturn);\n }\n } else {\n bytes32 assetId = _getAssetId(l2TokenAddress);\n bytes memory data = _encodeBridgeBurnData(amountToReturn, withdrawalRecipient, l2TokenAddress);\n l2AssetRouter.withdraw(assetId, data);\n }\n }\n\n // Implementation from https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/common/libraries/DataEncoding.sol#L117C14-L117C62\n function _getAssetId(address _tokenAddress) internal view returns (bytes32) {\n return keccak256(abi.encode(l1ChainId, L2_NATIVE_TOKEN_VAULT_ADDR, _tokenAddress));\n }\n\n // Implementation from https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/common/libraries/DataEncoding.sol#L24C1-L30C6\n function _encodeBridgeBurnData(\n uint256 _amount,\n address _remoteReceiver,\n address _l2TokenAddress\n ) internal pure returns (bytes memory) {\n return abi.encode(_amount, _remoteReceiver, _l2TokenAddress);\n }\n\n function _requireAdminSender() internal override onlyFromCrossDomainAdmin {}\n\n // Reserve storage slots for future versions of this base contract to add state variables without\n // affecting the storage layout of child contracts. Decrement the size of __gap whenever state variables\n // are added, so that the total number of slots taken by this contract remains constant. Per-contract\n // storage layout information can be found in storage-layouts/\n // This is at bottom of contract to make sure it's always at the end of storage.\n uint256[999] private __gap;\n}\n"
+ }
+ },
+ "settings": {
+ "optimizer": {
+ "enabled": true,
+ "mode": "3"
+ },
+ "viaIR": true,
+ "evmVersion": "prague",
+ "debug": {
+ "revertStrings": "strip"
+ },
+ "outputSelection": {
+ "*": {
+ "*": ["abi", "evm.methodIdentifiers", "metadata", "devdoc", "userdoc", "storageLayout"],
+ "": ["ast"]
+ }
+ },
+ "detectMissingLibraries": false,
+ "forceEVMLA": false,
+ "enableEraVMExtensions": false
+ },
+ "suppressedErrors": ["sendtransfer"]
+}
diff --git a/deployments/zksync/ZkSync_SpokePool.json b/deployments/zksync/ZkSync_SpokePool.json
index 692bb5784..995f6728b 100644
--- a/deployments/zksync/ZkSync_SpokePool.json
+++ b/deployments/zksync/ZkSync_SpokePool.json
@@ -1,5 +1,5 @@
{
- "address": "0x9a6755E1d9B0cBe3223aE58bcF4AFAADf91890eC",
+ "address": "0xb234cA484866c811d0e6D3318866F583781ED045",
"abi": [
{
"inputs": [
@@ -8,6 +8,26 @@
"name": "_wrappedNativeTokenAddress",
"type": "address"
},
+ {
+ "internalType": "contract IERC20",
+ "name": "_circleUSDC",
+ "type": "address"
+ },
+ {
+ "internalType": "contract ZkBridgeLike",
+ "name": "_zkUSDCBridge",
+ "type": "address"
+ },
+ {
+ "internalType": "uint256",
+ "name": "_l1ChainId",
+ "type": "uint256"
+ },
+ {
+ "internalType": "contract ITokenMessenger",
+ "name": "_cctpTokenMessenger",
+ "type": "address"
+ },
{
"internalType": "uint32",
"name": "_depositQuoteTimeBuffer",
@@ -42,6 +62,11 @@
"name": "ExpiredFillDeadline",
"type": "error"
},
+ {
+ "inputs": [],
+ "name": "ExternalCallExecutionFailed",
+ "type": "error"
+ },
{
"inputs": [],
"name": "FillsArePaused",
@@ -52,6 +77,11 @@
"name": "InsufficientSpokePoolBalanceToExecuteLeaf",
"type": "error"
},
+ {
+ "inputs": [],
+ "name": "InvalidBridgeConfig",
+ "type": "error"
+ },
{
"inputs": [],
"name": "InvalidBytes32",
@@ -133,6 +163,11 @@
"name": "MaxTransferSizeExceeded",
"type": "error"
},
+ {
+ "inputs": [],
+ "name": "MessageTooShort",
+ "type": "error"
+ },
{
"inputs": [],
"name": "MsgValueDoesNotMatchInputAmount",
@@ -158,6 +193,41 @@
"name": "NotExclusiveRelayer",
"type": "error"
},
+ {
+ "inputs": [],
+ "name": "OFTFeeUnderpaid",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OFTTokenMismatch",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftFeeCapExceeded",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftIncorrectAmountReceivedLD",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftIncorrectAmountSentLD",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftInsufficientBalanceForFee",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftLzFeeNotZero",
+ "type": "error"
+ },
{
"inputs": [],
"name": "RelayFilled",
@@ -168,6 +238,11 @@
"name": "WrongERC7683OrderId",
"type": "error"
},
+ {
+ "inputs": [],
+ "name": "ZeroAddressTarget",
+ "type": "error"
+ },
{
"anonymous": false,
"inputs": [
@@ -187,6 +262,25 @@
"name": "AdminChanged",
"type": "event"
},
+ {
+ "anonymous": false,
+ "inputs": [
+ {
+ "indexed": true,
+ "internalType": "address",
+ "name": "target",
+ "type": "address"
+ },
+ {
+ "indexed": false,
+ "internalType": "bytes",
+ "name": "data",
+ "type": "bytes"
+ }
+ ],
+ "name": "AdminExternalCallExecuted",
+ "type": "event"
+ },
{
"anonymous": false,
"inputs": [
@@ -961,6 +1055,25 @@
"name": "RequestedV3SlowFill",
"type": "event"
},
+ {
+ "anonymous": false,
+ "inputs": [
+ {
+ "indexed": true,
+ "internalType": "address",
+ "name": "token",
+ "type": "address"
+ },
+ {
+ "indexed": true,
+ "internalType": "address",
+ "name": "messenger",
+ "type": "address"
+ }
+ ],
+ "name": "SetOFTMessenger",
+ "type": "event"
+ },
{
"anonymous": false,
"inputs": [
@@ -1141,6 +1254,32 @@
"name": "V3FundsDeposited",
"type": "event"
},
+ {
+ "inputs": [],
+ "name": "DEPRECATED_zkErc20Bridge",
+ "outputs": [
+ {
+ "internalType": "address",
+ "name": "",
+ "type": "address"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "EMPTY_MSG_BYTES",
+ "outputs": [
+ {
+ "internalType": "bytes",
+ "name": "",
+ "type": "bytes"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
{
"inputs": [],
"name": "EMPTY_RELAYER",
@@ -1208,12 +1347,25 @@
},
{
"inputs": [],
- "name": "UPDATE_ADDRESS_DEPOSIT_DETAILS_HASH",
+ "name": "OFT_DST_EID",
"outputs": [
{
- "internalType": "bytes32",
+ "internalType": "uint32",
"name": "",
- "type": "bytes32"
+ "type": "uint32"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "OFT_FEE_CAP",
+ "outputs": [
+ {
+ "internalType": "uint256",
+ "name": "",
+ "type": "uint256"
}
],
"stateMutability": "view",
@@ -1255,6 +1407,32 @@
"stateMutability": "nonpayable",
"type": "function"
},
+ {
+ "inputs": [],
+ "name": "cctpTokenMessenger",
+ "outputs": [
+ {
+ "internalType": "contract ITokenMessenger",
+ "name": "",
+ "type": "address"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "cctpV2",
+ "outputs": [
+ {
+ "internalType": "bool",
+ "name": "",
+ "type": "bool"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
{
"inputs": [],
"name": "chainId",
@@ -1691,25 +1869,20 @@
{
"inputs": [
{
- "internalType": "address",
- "name": "",
- "type": "address"
- },
- {
- "internalType": "uint256",
- "name": "",
- "type": "uint256"
+ "internalType": "bytes",
+ "name": "message",
+ "type": "bytes"
}
],
- "name": "enabledDepositRoutes",
+ "name": "executeExternalCall",
"outputs": [
{
- "internalType": "bool",
- "name": "",
- "type": "bool"
+ "internalType": "bytes",
+ "name": "returnData",
+ "type": "bytes"
}
],
- "stateMutability": "view",
+ "stateMutability": "nonpayable",
"type": "function"
},
{
@@ -2348,11 +2521,6 @@
"name": "_initialDepositId",
"type": "uint32"
},
- {
- "internalType": "contract ZkBridgeLike",
- "name": "_zkErc20Bridge",
- "type": "address"
- },
{
"internalType": "address",
"name": "_crossDomainAdmin",
@@ -2369,6 +2537,32 @@
"stateMutability": "nonpayable",
"type": "function"
},
+ {
+ "inputs": [],
+ "name": "l1ChainId",
+ "outputs": [
+ {
+ "internalType": "uint256",
+ "name": "",
+ "type": "uint256"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "l2AssetRouter",
+ "outputs": [
+ {
+ "internalType": "contract IL2AssetRouter",
+ "name": "",
+ "type": "address"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
{
"inputs": [],
"name": "l2Eth",
@@ -2414,6 +2608,25 @@
"stateMutability": "view",
"type": "function"
},
+ {
+ "inputs": [
+ {
+ "internalType": "address",
+ "name": "l2TokenAddress",
+ "type": "address"
+ }
+ ],
+ "name": "oftMessengers",
+ "outputs": [
+ {
+ "internalType": "address",
+ "name": "l2OftMessenger",
+ "type": "address"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
{
"inputs": [
{
@@ -2479,6 +2692,19 @@
"stateMutability": "view",
"type": "function"
},
+ {
+ "inputs": [],
+ "name": "recipientCircleDomainId",
+ "outputs": [
+ {
+ "internalType": "uint32",
+ "name": "",
+ "type": "uint32"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
{
"inputs": [
{
@@ -2637,21 +2863,16 @@
"inputs": [
{
"internalType": "address",
- "name": "originToken",
+ "name": "token",
"type": "address"
},
{
- "internalType": "uint256",
- "name": "destinationChainId",
- "type": "uint256"
- },
- {
- "internalType": "bool",
- "name": "enabled",
- "type": "bool"
+ "internalType": "address",
+ "name": "messenger",
+ "type": "address"
}
],
- "name": "setEnableRoute",
+ "name": "setOftMessenger",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
@@ -2669,19 +2890,6 @@
"stateMutability": "nonpayable",
"type": "function"
},
- {
- "inputs": [
- {
- "internalType": "contract ZkBridgeLike",
- "name": "_zkErc20Bridge",
- "type": "address"
- }
- ],
- "name": "setZkBridge",
- "outputs": [],
- "stateMutability": "nonpayable",
- "type": "function"
- },
{
"inputs": [
{
@@ -2893,6 +3101,19 @@
"stateMutability": "payable",
"type": "function"
},
+ {
+ "inputs": [],
+ "name": "usdcToken",
+ "outputs": [
+ {
+ "internalType": "contract IERC20",
+ "name": "",
+ "type": "address"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
{
"inputs": [],
"name": "withdrawalRecipient",
@@ -2921,7 +3142,7 @@
},
{
"inputs": [],
- "name": "zkErc20Bridge",
+ "name": "zkUSDCBridge",
"outputs": [
{
"internalType": "contract ZkBridgeLike",
@@ -2937,8 +3158,8 @@
"type": "receive"
}
],
- "numDeployments": 8,
- "solcInputHash": "a2b5602aff3457253a4864427693a771",
+ "numDeployments": 9,
+ "solcInputHash": "47139abb5837f5482556d72341819801",
"metadata": {
"llvm_options": [],
"optimizer_settings": {
@@ -2949,11 +3170,11 @@
"level_middle_end": "Aggressive",
"level_middle_end_size": "Zero"
},
- "solc_version": "0.8.23",
- "solc_zkvm_edition": null,
+ "solc_version": "0.8.30",
+ "solc_zkvm_edition": "1.0.2",
"source_metadata": {
"compiler": {
- "version": "0.8.23+commit.f704f362"
+ "version": "0.8.30+commit.89ae86f4"
},
"language": "Solidity",
"output": {
@@ -2965,6 +3186,26 @@
"name": "_wrappedNativeTokenAddress",
"type": "address"
},
+ {
+ "internalType": "contract IERC20",
+ "name": "_circleUSDC",
+ "type": "address"
+ },
+ {
+ "internalType": "contract ZkBridgeLike",
+ "name": "_zkUSDCBridge",
+ "type": "address"
+ },
+ {
+ "internalType": "uint256",
+ "name": "_l1ChainId",
+ "type": "uint256"
+ },
+ {
+ "internalType": "contract ITokenMessenger",
+ "name": "_cctpTokenMessenger",
+ "type": "address"
+ },
{
"internalType": "uint32",
"name": "_depositQuoteTimeBuffer",
@@ -2999,6 +3240,11 @@
"name": "ExpiredFillDeadline",
"type": "error"
},
+ {
+ "inputs": [],
+ "name": "ExternalCallExecutionFailed",
+ "type": "error"
+ },
{
"inputs": [],
"name": "FillsArePaused",
@@ -3009,6 +3255,11 @@
"name": "InsufficientSpokePoolBalanceToExecuteLeaf",
"type": "error"
},
+ {
+ "inputs": [],
+ "name": "InvalidBridgeConfig",
+ "type": "error"
+ },
{
"inputs": [],
"name": "InvalidBytes32",
@@ -3090,6 +3341,11 @@
"name": "MaxTransferSizeExceeded",
"type": "error"
},
+ {
+ "inputs": [],
+ "name": "MessageTooShort",
+ "type": "error"
+ },
{
"inputs": [],
"name": "MsgValueDoesNotMatchInputAmount",
@@ -3115,6 +3371,41 @@
"name": "NotExclusiveRelayer",
"type": "error"
},
+ {
+ "inputs": [],
+ "name": "OFTFeeUnderpaid",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OFTTokenMismatch",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftFeeCapExceeded",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftIncorrectAmountReceivedLD",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftIncorrectAmountSentLD",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftInsufficientBalanceForFee",
+ "type": "error"
+ },
+ {
+ "inputs": [],
+ "name": "OftLzFeeNotZero",
+ "type": "error"
+ },
{
"inputs": [],
"name": "RelayFilled",
@@ -3125,6 +3416,11 @@
"name": "WrongERC7683OrderId",
"type": "error"
},
+ {
+ "inputs": [],
+ "name": "ZeroAddressTarget",
+ "type": "error"
+ },
{
"anonymous": false,
"inputs": [
@@ -3144,6 +3440,25 @@
"name": "AdminChanged",
"type": "event"
},
+ {
+ "anonymous": false,
+ "inputs": [
+ {
+ "indexed": true,
+ "internalType": "address",
+ "name": "target",
+ "type": "address"
+ },
+ {
+ "indexed": false,
+ "internalType": "bytes",
+ "name": "data",
+ "type": "bytes"
+ }
+ ],
+ "name": "AdminExternalCallExecuted",
+ "type": "event"
+ },
{
"anonymous": false,
"inputs": [
@@ -3918,6 +4233,25 @@
"name": "RequestedV3SlowFill",
"type": "event"
},
+ {
+ "anonymous": false,
+ "inputs": [
+ {
+ "indexed": true,
+ "internalType": "address",
+ "name": "token",
+ "type": "address"
+ },
+ {
+ "indexed": true,
+ "internalType": "address",
+ "name": "messenger",
+ "type": "address"
+ }
+ ],
+ "name": "SetOFTMessenger",
+ "type": "event"
+ },
{
"anonymous": false,
"inputs": [
@@ -4098,6 +4432,32 @@
"name": "V3FundsDeposited",
"type": "event"
},
+ {
+ "inputs": [],
+ "name": "DEPRECATED_zkErc20Bridge",
+ "outputs": [
+ {
+ "internalType": "address",
+ "name": "",
+ "type": "address"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "EMPTY_MSG_BYTES",
+ "outputs": [
+ {
+ "internalType": "bytes",
+ "name": "",
+ "type": "bytes"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
{
"inputs": [],
"name": "EMPTY_RELAYER",
@@ -4165,12 +4525,25 @@
},
{
"inputs": [],
- "name": "UPDATE_ADDRESS_DEPOSIT_DETAILS_HASH",
+ "name": "OFT_DST_EID",
"outputs": [
{
- "internalType": "bytes32",
+ "internalType": "uint32",
"name": "",
- "type": "bytes32"
+ "type": "uint32"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "OFT_FEE_CAP",
+ "outputs": [
+ {
+ "internalType": "uint256",
+ "name": "",
+ "type": "uint256"
}
],
"stateMutability": "view",
@@ -4202,14 +4575,40 @@
"type": "address"
},
{
- "internalType": "address",
- "name": "_withdrawalRecipient",
+ "internalType": "address",
+ "name": "_withdrawalRecipient",
+ "type": "address"
+ }
+ ],
+ "name": "__SpokePool_init",
+ "outputs": [],
+ "stateMutability": "nonpayable",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "cctpTokenMessenger",
+ "outputs": [
+ {
+ "internalType": "contract ITokenMessenger",
+ "name": "",
"type": "address"
}
],
- "name": "__SpokePool_init",
- "outputs": [],
- "stateMutability": "nonpayable",
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "cctpV2",
+ "outputs": [
+ {
+ "internalType": "bool",
+ "name": "",
+ "type": "bool"
+ }
+ ],
+ "stateMutability": "view",
"type": "function"
},
{
@@ -4648,25 +5047,20 @@
{
"inputs": [
{
- "internalType": "address",
- "name": "",
- "type": "address"
- },
- {
- "internalType": "uint256",
- "name": "",
- "type": "uint256"
+ "internalType": "bytes",
+ "name": "message",
+ "type": "bytes"
}
],
- "name": "enabledDepositRoutes",
+ "name": "executeExternalCall",
"outputs": [
{
- "internalType": "bool",
- "name": "",
- "type": "bool"
+ "internalType": "bytes",
+ "name": "returnData",
+ "type": "bytes"
}
],
- "stateMutability": "view",
+ "stateMutability": "nonpayable",
"type": "function"
},
{
@@ -5305,11 +5699,6 @@
"name": "_initialDepositId",
"type": "uint32"
},
- {
- "internalType": "contract ZkBridgeLike",
- "name": "_zkErc20Bridge",
- "type": "address"
- },
{
"internalType": "address",
"name": "_crossDomainAdmin",
@@ -5326,6 +5715,32 @@
"stateMutability": "nonpayable",
"type": "function"
},
+ {
+ "inputs": [],
+ "name": "l1ChainId",
+ "outputs": [
+ {
+ "internalType": "uint256",
+ "name": "",
+ "type": "uint256"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
+ {
+ "inputs": [],
+ "name": "l2AssetRouter",
+ "outputs": [
+ {
+ "internalType": "contract IL2AssetRouter",
+ "name": "",
+ "type": "address"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
{
"inputs": [],
"name": "l2Eth",
@@ -5371,6 +5786,25 @@
"stateMutability": "view",
"type": "function"
},
+ {
+ "inputs": [
+ {
+ "internalType": "address",
+ "name": "l2TokenAddress",
+ "type": "address"
+ }
+ ],
+ "name": "oftMessengers",
+ "outputs": [
+ {
+ "internalType": "address",
+ "name": "l2OftMessenger",
+ "type": "address"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
{
"inputs": [
{
@@ -5436,6 +5870,19 @@
"stateMutability": "view",
"type": "function"
},
+ {
+ "inputs": [],
+ "name": "recipientCircleDomainId",
+ "outputs": [
+ {
+ "internalType": "uint32",
+ "name": "",
+ "type": "uint32"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
{
"inputs": [
{
@@ -5594,21 +6041,16 @@
"inputs": [
{
"internalType": "address",
- "name": "originToken",
+ "name": "token",
"type": "address"
},
{
- "internalType": "uint256",
- "name": "destinationChainId",
- "type": "uint256"
- },
- {
- "internalType": "bool",
- "name": "enabled",
- "type": "bool"
+ "internalType": "address",
+ "name": "messenger",
+ "type": "address"
}
],
- "name": "setEnableRoute",
+ "name": "setOftMessenger",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
@@ -5626,19 +6068,6 @@
"stateMutability": "nonpayable",
"type": "function"
},
- {
- "inputs": [
- {
- "internalType": "contract ZkBridgeLike",
- "name": "_zkErc20Bridge",
- "type": "address"
- }
- ],
- "name": "setZkBridge",
- "outputs": [],
- "stateMutability": "nonpayable",
- "type": "function"
- },
{
"inputs": [
{
@@ -5850,6 +6279,19 @@
"stateMutability": "payable",
"type": "function"
},
+ {
+ "inputs": [],
+ "name": "usdcToken",
+ "outputs": [
+ {
+ "internalType": "contract IERC20",
+ "name": "",
+ "type": "address"
+ }
+ ],
+ "stateMutability": "view",
+ "type": "function"
+ },
{
"inputs": [],
"name": "withdrawalRecipient",
@@ -5878,7 +6320,7 @@
},
{
"inputs": [],
- "name": "zkErc20Bridge",
+ "name": "zkUSDCBridge",
"outputs": [
{
"internalType": "contract ZkBridgeLike",
@@ -6027,6 +6469,14 @@
"rootBundleId": "Index of the root bundle that needs to be deleted. Note: this is intentionally a uint256 to ensure that a small input range doesn't limit which indices this method is able to reach."
}
},
+ "executeExternalCall(bytes)": {
+ "params": {
+ "message": "The message containing the target address and calldata to execute."
+ },
+ "returns": {
+ "returnData": "The return data from the executed call."
+ }
+ },
"executeRelayerRefundLeaf(uint32,(uint256,uint256,uint256[],uint32,address,address[]),bytes32[])": {
"params": {
"proof": "Inclusion proof for this leaf in relayer refund root in root bundle.",
@@ -6086,12 +6536,11 @@
"_0": "The deposit ID for the unsafe deposit."
}
},
- "initialize(uint32,address,address,address)": {
+ "initialize(uint32,address,address)": {
"params": {
"_crossDomainAdmin": "Cross domain admin to set. Can be changed by admin.",
"_initialDepositId": "Starting deposit ID. Set to 0 unless this is a re-deployment in order to mitigate relay hash collisions.",
- "_withdrawalRecipient": "Address which receives token withdrawals. Can be changed by admin. For Spoke Pools on L2, this will likely be the hub pool.",
- "_zkErc20Bridge": "Address of L2 ERC20 gateway. Can be reset by admin."
+ "_withdrawalRecipient": "Address which receives token withdrawals. Can be changed by admin. For Spoke Pools on L2, this will likely be the hub pool."
}
},
"pauseDeposits(bool)": {
@@ -6126,11 +6575,10 @@
"newCrossDomainAdmin": "New cross domain admin."
}
},
- "setEnableRoute(address,uint256,bool)": {
+ "setOftMessenger(address,address)": {
"params": {
- "destinationChainId": "Chain ID for where depositor wants to receive funds.",
- "enabled": "True to enable deposits, False otherwise.",
- "originToken": "Token that depositor can deposit to this contract."
+ "messenger": "IOFT contract address on the current chain for the specified token. Acts as a 'mailbox'",
+ "token": "token address on the current chain"
}
},
"setWithdrawalRecipient(address)": {
@@ -6138,11 +6586,6 @@
"newWithdrawalRecipient": "New withdrawal recipient address."
}
},
- "setZkBridge(address)": {
- "params": {
- "_zkErc20Bridge": "New address of L2 ERC20 gateway."
- }
- },
"speedUpDeposit(bytes32,uint256,uint256,bytes32,bytes,bytes)": {
"details": "the depositor and depositId must match the params in a FundsDeposited event that the depositor wants to speed up. The relayer has the option but not the obligation to use this updated information when filling the deposit via fillRelayWithUpdatedDeposit().",
"params": {
@@ -6166,7 +6609,7 @@
}
},
"unsafeDeposit(bytes32,bytes32,bytes32,bytes32,uint256,uint256,uint256,bytes32,uint256,uint32,uint32,uint32,bytes)": {
- "details": "This is labeled \"unsafe\" because there is no guarantee that the depositId emitted in the resultant FundsDeposited event is unique which means that the corresponding fill might collide with an existing relay hash on the destination chain SpokePool, which would make this deposit unfillable. In this case, the depositor would subsequently receive a refund of `inputAmount` of `inputToken` on the origin chain after the fill deadline.On the destination chain, the hash of the deposit data will be used to uniquely identify this deposit, so modifying any params in it will result in a different hash and a different deposit. The hash will comprise all parameters to this function along with this chain's chainId(). Relayers are only refunded for filling deposits with deposit hashes that map exactly to the one emitted by this contract.",
+ "details": "This is labeled \"unsafe\" because there is no guarantee that the depositId emitted in the resultant FundsDeposited event is unique which means that the corresponding fill might collide with an existing relay hash on the destination chain SpokePool, which would make this deposit unfillable. In this case, the depositor would subsequently receive a refund of `inputAmount` of `inputToken` on the origin chain after the fill deadline. Re-using a depositNonce is very dangerous when combined with `speedUpDeposit`, as a speed up signature can be re-used for any deposits with the same deposit ID.On the destination chain, the hash of the deposit data will be used to uniquely identify this deposit, so modifying any params in it will result in a different hash and a different deposit. The hash will comprise all parameters to this function along with this chain's chainId(). Relayers are only refunded for filling deposits with deposit hashes that map exactly to the one emitted by this contract.",
"params": {
"depositNonce": "The nonce that uniquely identifies this deposit. This function will combine this parameter with the msg.sender address to create a unique uint256 depositNonce and ensure that the msg.sender cannot use this function to front-run another depositor's unsafe deposit. This function guarantees that the resultant deposit nonce will not collide with a safe uint256 deposit nonce whose 24 most significant bytes are always 0.",
"depositor": "See identically named parameter in depositV3() comments.",
@@ -6192,11 +6635,62 @@
"details": "Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event."
}
},
+ "stateVariables": {
+ "L2_NATIVE_TOKEN_VAULT_ADDR": {
+ "details": "An l2 system contract address, used in the assetId calculation for native assets. This is needed for automatic bridging, i.e. without deploying the AssetHandler contract, if the assetId can be calculated with this address then it is in fact an NTV asset Source: https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/common/l2-helpers/L2ContractAddresses.sol#L70C1-L73C85"
+ },
+ "USER_CONTRACTS_OFFSET": {
+ "details": "The offset from which the built-in, but user space contracts are located. Source: https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/common/l2-helpers/L2ContractAddresses.sol#L12C1-L13C58"
+ },
+ "zkUSDCBridge": {
+ "details": "Legacy bridge used to withdraw USDC to L1, for withdrawing all other ERC20's we use `l2AssetRouter`."
+ }
+ },
"version": 1
},
"userdoc": {
+ "errors": {
+ "OFTFeeUnderpaid()": [
+ {
+ "notice": "Thrown when the native fee sent by the caller is insufficient to cover the OFT transfer."
+ }
+ ],
+ "OftFeeCapExceeded()": [
+ {
+ "notice": "Thrown when OFT fee exceeds the configured cap "
+ }
+ ],
+ "OftIncorrectAmountReceivedLD()": [
+ {
+ "notice": "Thrown when amount received differs from expected amount "
+ }
+ ],
+ "OftIncorrectAmountSentLD()": [
+ {
+ "notice": "Thrown when amount sent differs from expected amount "
+ }
+ ],
+ "OftInsufficientBalanceForFee()": [
+ {
+ "notice": "Thrown when contract has insufficient balance to pay OFT fees "
+ }
+ ],
+ "OftLzFeeNotZero()": [
+ {
+ "notice": "Thrown when LayerZero token fee is not zero (only native fees supported) "
+ }
+ ]
+ },
+ "events": {
+ "AdminExternalCallExecuted(address,bytes)": {
+ "notice": "Emitted when the call to external contract is executed, triggered by an admin action"
+ }
+ },
"kind": "user",
"methods": {
+ "EMPTY_MSG_BYTES()": {
+ "notice": "Empty bytes array used for OFT messaging parameters "
+ },
"__SpokePool_init(uint32,address,address)": {
"notice": "Construct the base SpokePool."
},
@@ -6227,6 +6721,9 @@
"emergencyDeleteRootBundle(uint256)": {
"notice": "This method is intended to only be used in emergencies where a bad root bundle has reached the SpokePool."
},
+ "executeExternalCall(bytes)": {
+ "notice": "Execute an external call to a target contract."
+ },
"executeRelayerRefundLeaf(uint32,(uint256,uint256,uint256[],uint32,address,address[]),bytes32[])": {
"notice": "Executes a relayer refund leaf stored as part of a root bundle. Will send the relayer the amount they sent to the recipient plus a relayer fee."
},
@@ -6248,8 +6745,8 @@
"getUnsafeDepositId(address,bytes32,uint256)": {
"notice": "Returns the deposit ID for an unsafe deposit. This function is used to compute the deposit ID in unsafeDeposit and is provided as a convenience."
},
- "initialize(uint32,address,address,address)": {
- "notice": "Construct the ZkSync SpokePool."
+ "initialize(uint32,address,address)": {
+ "notice": "Initialize the ZkSync SpokePool."
},
"pauseDeposits(bool)": {
"notice": "Pauses deposit-related functions. This is intended to be used if this contract is deprecated or when something goes awry."
@@ -6266,17 +6763,14 @@
"setCrossDomainAdmin(address)": {
"notice": "Change cross domain admin address. Callable by admin only."
},
- "setEnableRoute(address,uint256,bool)": {
- "notice": "Enable/Disable an origin token => destination chain ID route for deposits. Callable by admin only."
+ "setOftMessenger(address,address)": {
+ "notice": "Add token -> OFTMessenger relationship. Callable only by admin."
},
"setWithdrawalRecipient(address)": {
"notice": "Change L1 withdrawal recipient address. Callable by admin only."
},
- "setZkBridge(address)": {
- "notice": "Change L2 token bridge addresses. Callable only by admin."
- },
"speedUpDeposit(bytes32,uint256,uint256,bytes32,bytes,bytes)": {
- "notice": "Depositor can use this function to signal to relayer to use updated output amount, recipient, and/or message."
+ "notice": "Depositor can use this function to signal to relayer to use updated output amount, recipient, and/or message. The speed up signature uniquely identifies the speed up based only on depositor, deposit ID and origin chain, so using this function in conjunction with unsafeDeposit is risky due to the chance of repeating a deposit ID."
},
"speedUpV3Deposit(address,uint256,uint256,address,bytes,bytes)": {
"notice": "A version of `speedUpDeposit` using `address` types for backward compatibility. This function allows the depositor to signal to the relayer to use updated output amount, recipient, and/or message when filling a deposit. This can be useful when the deposit needs to be modified after the original transaction has been mined."
@@ -6293,7 +6787,7 @@
"compilationTarget": {
"contracts/ZkSync_SpokePool.sol": "ZkSync_SpokePool"
},
- "evmVersion": "shanghai",
+ "evmVersion": "prague",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
@@ -6305,7 +6799,7 @@
"remappings": []
},
"sources": {
- "@openzeppelin/contracts-upgradeable/interfaces/IERC1967Upgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/interfaces/IERC1967Upgradeable.sol": {
"keccak256": "0x47d6e06872b12e72c79d1b5eb55842f860b5fb1207b2317c2358d2766b950a7b",
"license": "MIT",
"urls": [
@@ -6313,7 +6807,7 @@
"dweb:/ipfs/QmQoSrHhka35iKDK5iyNt8cuXXS5ANXVPjLhfsJjktB8V9"
]
},
- "@openzeppelin/contracts-upgradeable/interfaces/draft-IERC1822Upgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/interfaces/draft-IERC1822Upgradeable.sol": {
"keccak256": "0x77c89f893e403efc6929ba842b7ccf6534d4ffe03afe31670b4a528c0ad78c0f",
"license": "MIT",
"urls": [
@@ -6321,7 +6815,7 @@
"dweb:/ipfs/QmXdJDyYs6WMwMh21dez2BYPxhSUaUYFMDtVNcn2cgFR79"
]
},
- "@openzeppelin/contracts-upgradeable/proxy/ERC1967/ERC1967UpgradeUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/proxy/ERC1967/ERC1967UpgradeUpgradeable.sol": {
"keccak256": "0x7795808e3899c805254e3ae58074b20f799b466e3f43e057e47bedee5fb771f8",
"license": "MIT",
"urls": [
@@ -6329,7 +6823,7 @@
"dweb:/ipfs/QmRtm4Ese9u4jfxXyuWPXLwzenwFotuQjAWV7rXtZTB1E9"
]
},
- "@openzeppelin/contracts-upgradeable/proxy/beacon/IBeaconUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/proxy/beacon/IBeaconUpgradeable.sol": {
"keccak256": "0x24b86ac8c005b8c654fbf6ac34a5a4f61580d7273541e83e013e89d66fbf0908",
"license": "MIT",
"urls": [
@@ -6337,7 +6831,7 @@
"dweb:/ipfs/QmVMU5tWt7zBQMmf5cpMX8UMHV86T3kFeTxBTBjFqVWfoJ"
]
},
- "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/proxy/utils/Initializable.sol": {
"keccak256": "0x89be10e757d242e9b18d5a32c9fbe2019f6d63052bbe46397a430a1d60d7f794",
"license": "MIT",
"urls": [
@@ -6345,7 +6839,7 @@
"dweb:/ipfs/QmRiNZLoJk5k3HPMYGPGjZFd2ke1ZxjhJZkM45Ec9GH9hv"
]
},
- "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/proxy/utils/UUPSUpgradeable.sol": {
"keccak256": "0xefb41f5c1a00249b7a99f0782f8c557865605426a3fb6e5fe9ae334293ae4f33",
"license": "MIT",
"urls": [
@@ -6353,7 +6847,7 @@
"dweb:/ipfs/Qmb5vcymmNEZUJMaHmYxnhvGJDEsGMae4YjcHwkA74jy99"
]
},
- "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/security/ReentrancyGuardUpgradeable.sol": {
"keccak256": "0x2025ccf05f6f1f2fd4e078e552836f525a1864e3854ed555047cd732320ab29b",
"license": "MIT",
"urls": [
@@ -6361,7 +6855,7 @@
"dweb:/ipfs/QmQa3DnvccwdWJeWrjgXPnFMTWbzWQWR39hVqC7eEwo2PC"
]
},
- "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/token/ERC20/IERC20Upgradeable.sol": {
"keccak256": "0x0e1f0f5f62f67a881cd1a9597acbc0a5e4071f3c2c10449a183b922ae7272e3f",
"license": "MIT",
"urls": [
@@ -6369,7 +6863,7 @@
"dweb:/ipfs/QmQXRuFzStEWqeEPbhQU6cAg9PaSowxJVo4PDKyRod7dco"
]
},
- "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/IERC20PermitUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/token/ERC20/extensions/IERC20PermitUpgradeable.sol": {
"keccak256": "0x07e881de3b9f6d2c07909f193f24b96c7fe4ea60013260f3f25aecd8bab3c2f8",
"license": "MIT",
"urls": [
@@ -6377,7 +6871,7 @@
"dweb:/ipfs/QmcRAzaSP1UnGr4vrGkfJmB2L9aiTYoXfV1Lg9gqrVRWn8"
]
},
- "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/token/ERC20/utils/SafeERC20Upgradeable.sol": {
"keccak256": "0x23b997be73d3dd46885262704f0f8cfc7273fdadfe303d37969a9561373972b5",
"license": "MIT",
"urls": [
@@ -6385,7 +6879,7 @@
"dweb:/ipfs/QmUZV5bMbgk2PAkV3coouSeSainHN2jhqaQDJaA7hQRyu2"
]
},
- "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/utils/AddressUpgradeable.sol": {
"keccak256": "0x9c80f545915582e63fe206c6ce27cbe85a86fc10b9cd2a0e8c9488fb7c2ee422",
"license": "MIT",
"urls": [
@@ -6393,7 +6887,7 @@
"dweb:/ipfs/QmbCzMNSTL7Zi7M4UCSqBrkHtp4jjxUnGbkneCZKdR1qeq"
]
},
- "@openzeppelin/contracts-upgradeable/utils/StorageSlotUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/utils/StorageSlotUpgradeable.sol": {
"keccak256": "0x07ac95acad040f1fb1f6120dd0aa5f702db69446e95f82613721879d30de0908",
"license": "MIT",
"urls": [
@@ -6401,7 +6895,7 @@
"dweb:/ipfs/QmWe49zj65jayrCe9jZpoWhYUZ1RiwSxyU2s7SBZnMztVy"
]
},
- "@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/utils/StringsUpgradeable.sol": {
"keccak256": "0xb96dc79b65b7c37937919dcdb356a969ce0aa2e8338322bf4dc027a3c9c9a7eb",
"license": "MIT",
"urls": [
@@ -6409,7 +6903,7 @@
"dweb:/ipfs/QmPqpP3YeRbBdTJRe6Gv2eGsUaANf4J6RwTNRW36iYahfV"
]
},
- "@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/utils/cryptography/ECDSAUpgradeable.sol": {
"keccak256": "0xa014f65d84b02827055d99993ccdbfb4b56b2c9e91eb278d82a93330659d06e4",
"license": "MIT",
"urls": [
@@ -6417,7 +6911,7 @@
"dweb:/ipfs/QmTkDNWkq5o9Cv2jS7s6JvSmsPBkeunZhPe7Z2njGL31wo"
]
},
- "@openzeppelin/contracts-upgradeable/utils/math/MathUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/utils/math/MathUpgradeable.sol": {
"keccak256": "0x2bc0007987c229ae7624eb29be6a9b84f6a6a5872f76248b15208b131ea41c4e",
"license": "MIT",
"urls": [
@@ -6425,7 +6919,7 @@
"dweb:/ipfs/QmSCWfNoSvvTN57ic7o1RW6NqSxxGAqbBTnLKc7QHe27qB"
]
},
- "@openzeppelin/contracts-upgradeable/utils/math/SignedMathUpgradeable.sol": {
+ "@openzeppelin/contracts-upgradeable-v4/utils/math/SignedMathUpgradeable.sol": {
"keccak256": "0x88f6b7bba3ee33eeb741f9a0f5bc98b6e6e352d0fe4905377bb328590f84095a",
"license": "MIT",
"urls": [
@@ -6433,7 +6927,7 @@
"dweb:/ipfs/QmXFkNxMc3AAGzhs2wUEZyErWQjsvoTGyYjuU5oZkFki5Z"
]
},
- "@openzeppelin/contracts/interfaces/IERC1271.sol": {
+ "@openzeppelin/contracts-v4/interfaces/IERC1271.sol": {
"keccak256": "0x0705a4b1b86d7b0bd8432118f226ba139c44b9dcaba0a6eafba2dd7d0639c544",
"license": "MIT",
"urls": [
@@ -6441,7 +6935,7 @@
"dweb:/ipfs/QmRKCJW6jjzR5UYZcLpGnhEJ75UVbH6EHkEa49sWx2SKng"
]
},
- "@openzeppelin/contracts/token/ERC20/IERC20.sol": {
+ "@openzeppelin/contracts-v4/token/ERC20/IERC20.sol": {
"keccak256": "0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305",
"license": "MIT",
"urls": [
@@ -6449,7 +6943,31 @@
"dweb:/ipfs/QmPV3FGYjVwvKSgAXKUN3r9T9GwniZz83CxBpM7vyj2G53"
]
},
- "@openzeppelin/contracts/utils/Strings.sol": {
+ "@openzeppelin/contracts-v4/token/ERC20/extensions/IERC20Permit.sol": {
+ "keccak256": "0xb264c03a3442eb37a68ad620cefd1182766b58bee6cec40343480392d6b14d69",
+ "license": "MIT",
+ "urls": [
+ "bzz-raw://28879d01fd22c07b44f006612775f8577defbe459cb01685c5e25cd518c91a71",
+ "dweb:/ipfs/QmVgfkwv2Fxw6hhTcDUZhE7NkoSKjab3ipM7UaRbt6uXb5"
+ ]
+ },
+ "@openzeppelin/contracts-v4/token/ERC20/utils/SafeERC20.sol": {
+ "keccak256": "0xabefac93435967b4d36a4fabcbdbb918d1f0b7ae3c3d85bc30923b326c927ed1",
+ "license": "MIT",
+ "urls": [
+ "bzz-raw://9d213d3befca47da33f6db0310826bcdb148299805c10d77175ecfe1d06a9a68",
+ "dweb:/ipfs/QmRgCn6SP1hbBkExUADFuDo8xkT4UU47yjNF5FhCeRbQmS"
+ ]
+ },
+ "@openzeppelin/contracts-v4/utils/Address.sol": {
+ "keccak256": "0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa",
+ "license": "MIT",
+ "urls": [
+ "bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931",
+ "dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm"
+ ]
+ },
+ "@openzeppelin/contracts-v4/utils/Strings.sol": {
"keccak256": "0x3088eb2868e8d13d89d16670b5f8612c4ab9ff8956272837d8e90106c59c14a0",
"license": "MIT",
"urls": [
@@ -6457,7 +6975,7 @@
"dweb:/ipfs/QmPCW1bFisUzJkyjroY3yipwfism9RRCigCcK1hbXtVM8n"
]
},
- "@openzeppelin/contracts/utils/cryptography/ECDSA.sol": {
+ "@openzeppelin/contracts-v4/utils/cryptography/ECDSA.sol": {
"keccak256": "0x809bc3edb4bcbef8263fa616c1b60ee0004b50a8a1bfa164d8f57fd31f520c58",
"license": "MIT",
"urls": [
@@ -6465,7 +6983,7 @@
"dweb:/ipfs/QmTm34KVe6uZBZwq8dZDNWwPcm24qBJdxqL3rPxBJ4LrMv"
]
},
- "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol": {
+ "@openzeppelin/contracts-v4/utils/cryptography/MerkleProof.sol": {
"keccak256": "0xcf688741f79f4838d5301dcf72d0af9eff11bbab6ab0bb112ad144c7fb672dac",
"license": "MIT",
"urls": [
@@ -6473,7 +6991,7 @@
"dweb:/ipfs/QmR7m1zWQNfZHUKTtqnjoCjCBbNFcjCxV27rxf6iMfhVtG"
]
},
- "@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol": {
+ "@openzeppelin/contracts-v4/utils/cryptography/SignatureChecker.sol": {
"keccak256": "0x3af3ca86df39aac39a0514c84459d691434a108d2151c8ce9d69f32e315cab80",
"license": "MIT",
"urls": [
@@ -6481,7 +6999,7 @@
"dweb:/ipfs/QmT6ZXStmK3Knhh9BokeVHQ9HXTBZNgL3Eb1ar1cYg1hWy"
]
},
- "@openzeppelin/contracts/utils/math/Math.sol": {
+ "@openzeppelin/contracts-v4/utils/math/Math.sol": {
"keccak256": "0xe4455ac1eb7fc497bb7402579e7b4d64d928b846fce7d2b6fde06d366f21c2b3",
"license": "MIT",
"urls": [
@@ -6489,7 +7007,7 @@
"dweb:/ipfs/QmSqE4mXHA2BXW58deDbXE8MTcsL5JSKNDbm23sVQxRLPS"
]
},
- "@openzeppelin/contracts/utils/math/SignedMath.sol": {
+ "@openzeppelin/contracts-v4/utils/math/SignedMath.sol": {
"keccak256": "0xf92515413956f529d95977adc9b0567d583c6203fc31ab1c23824c35187e3ddc",
"license": "MIT",
"urls": [
@@ -6498,27 +7016,27 @@
]
},
"contracts/MerkleLib.sol": {
- "keccak256": "0xdaf19fdc82593b79a608af8f691aec89a3c0e47b210770deabbe66ece7c35bb1",
+ "keccak256": "0xd1842fc6092305350938b2bed201b84f18efb587c503500123387840fd35b197",
"license": "BUSL-1.1",
"urls": [
- "bzz-raw://03c37f78657beed37257187e237d74492de0199734aa03272a419f66161c0dca",
- "dweb:/ipfs/QmdcXMAoRLZejhh2xcVMWR3WfUvXcArKrCFEE82JDYiJbh"
+ "bzz-raw://0ae89f19dee6b25c87204999b91ebc8cadc5a893927d0f8f5cc0770247694bd0",
+ "dweb:/ipfs/Qmf4CW4Xqe1tueEXNVcBREJewWJ1zgDQovgz2NwRAfTgWz"
]
},
"contracts/SpokePool.sol": {
- "keccak256": "0x62c641e112f07f831e4141dcb6b2f5dade3e60b2c85ebb72d553e036742126fd",
+ "keccak256": "0x21e75d08601d3522f0e6d675360f27eb29759c107fbffe116b7e022b047c4c39",
"license": "BUSL-1.1",
"urls": [
- "bzz-raw://b2b4069889cdac14059dc0452dd352e8d899e85ac6a37886500fcb0608351739",
- "dweb:/ipfs/QmaLeMZevVxtrzxFd4ZER8Ukjk3HRTQ7da7QzzokKB6VMz"
+ "bzz-raw://418cf413af2501e636edbdafa80289b9de481f0f4c632f276856ff5fc1fcb8eb",
+ "dweb:/ipfs/QmauPa3gWpNbPyaZg5got1zFmNFMoecvoSZvxq84bJ9ceA"
]
},
"contracts/ZkSync_SpokePool.sol": {
- "keccak256": "0x7bbd2f3b5376af9122e8bc29b0efa461dd24aabcfa2940ad3a888556cdd9bddb",
+ "keccak256": "0x02fca25dd165333422ba113d49a6ebac34e6e84e67fe780e0c154cc2e125bfa6",
"license": "BUSL-1.1",
"urls": [
- "bzz-raw://27fda66173c43da958c6d1d3f4e5af817bf2b95664fb43da20b3373c574e3c91",
- "dweb:/ipfs/QmSH18qyHkp7217vpCYLKprBLTc4X2PVqMshcumGjEN3DU"
+ "bzz-raw://38728695269acb02bffdead20255e335aca5672c64ad0a89dec823bc83f02b86",
+ "dweb:/ipfs/QmRwZWe8nTjdV8RWjHAUo6VQ8ynkDBq69Y4t6GfDNVGWTV"
]
},
"contracts/erc7683/ERC7683.sol": {
@@ -6530,19 +7048,27 @@
]
},
"contracts/erc7683/ERC7683Permit2Lib.sol": {
- "keccak256": "0x12d0e6dd7e394b75067157ccbe3e8756db138b8f48b3c69494da2e2f294d582f",
+ "keccak256": "0x47bf69c597fd6735fd4bb24c42d78a2c967d9bce0c303fe0a8ddafe6d2321f94",
"license": "UNLICENSED",
"urls": [
- "bzz-raw://f4185b2e3396fdb6ce934e462fcdca2c1be29caaa7949ab22072f2105354220e",
- "dweb:/ipfs/QmbPwAQK6K32ENZeytLkPi41TWiWXzFzpJ7Ah67hU8kvjw"
+ "bzz-raw://d37b60c5b94d9bb29c42d41dd18dacbc54649921d5cdf85d8c20bb4e43c415b9",
+ "dweb:/ipfs/QmZFhiKWztX7UTG6w4wrcK5LSaMHFKH7NxVgrzkxV24bEs"
+ ]
+ },
+ "contracts/external/interfaces/CCTPInterfaces.sol": {
+ "keccak256": "0x69059bd91cdb9bea59242c543a167e38a9f3a7788687d4194f68420a956c7608",
+ "license": "GPL-3.0-or-later",
+ "urls": [
+ "bzz-raw://0d0781aeb87d7f860ab9ff49c6c6af60b0e93fb547108b98ba8c8501c3980104",
+ "dweb:/ipfs/QmY9H7YiXn3a8jdQgcADboxSEsi5V4F7CPcJrWNbxGToAu"
]
},
"contracts/external/interfaces/IPermit2.sol": {
- "keccak256": "0x68f40961ee44fbc71eff2037f2c88ba9bfbccf35b9b1eae5a527b71d19bf3a71",
+ "keccak256": "0x7c6a2087606df8c70ab1585b69d3f155e2301e274d5a056b3b7e2402929cff33",
"license": "MIT",
"urls": [
- "bzz-raw://2281f309f1b0df4d1c9beeeaa2673152c73e6e20991438420a9de18c51269ea7",
- "dweb:/ipfs/QmafDC3g5yBqPvSof5FmGKv4gMR3TXT5Xj3tULDA5CKmaE"
+ "bzz-raw://da44d21b12562dbad1e24192868ac196d10cdbe9a3d443fa58c1230e31a34ecc",
+ "dweb:/ipfs/Qmb5i46saxwcyyPW15tCUcqVn61vKVzVo8P7uZZ2mtMMjt"
]
},
"contracts/external/interfaces/WETH9Interface.sol": {
@@ -6554,35 +7080,43 @@
]
},
"contracts/interfaces/HubPoolInterface.sol": {
- "keccak256": "0xefd509ab379b94004b5767d67971e5c0bda4ca1e9f376b5aea75a0297b5d7bd6",
+ "keccak256": "0x94f2b1fdaeb4d557beca9fa86466e0bb74b1744357c318a8bea506e4c5fb5823",
+ "license": "MIT",
+ "urls": [
+ "bzz-raw://7bd7b3b3c100edf48e461306117a2659fb068c3ce1eccdfe96f615521423c6c0",
+ "dweb:/ipfs/QmSRAxJFmVfYAWYw9W4VGUoxu6B3qX12UAJUgQREdfGJt1"
+ ]
+ },
+ "contracts/interfaces/IOFT.sol": {
+ "keccak256": "0x9c32621db83fa983cdc964eec1cd8ee07f98f40aca4d799abe953df620cf1994",
"license": "BUSL-1.1",
"urls": [
- "bzz-raw://0b7e509e90bcca9b96bf55e92498b17bbb548359c470b17285740080a6c0d9de",
- "dweb:/ipfs/QmdviQBbB58H9HR3tKQepEuYcMKXZthyTThGXUgQDAC828"
+ "bzz-raw://85219ca7bd16d067c3aae102aa19445fb6749725e562fd5b8fea76fcedc72266",
+ "dweb:/ipfs/QmdDsPMhcyEbhLjzamDEyAyTgvP3CQDBtH1g8CkPLHAMU2"
]
},
"contracts/interfaces/SpokePoolInterface.sol": {
- "keccak256": "0x4fefc97b3446f957f2679869ee7d8e8cc319a189f3fe47584b8203256a0d703b",
- "license": "BUSL-1.1",
+ "keccak256": "0xd6f689f4aa7b8f9591aa3ee3e228eb0e768f106aad1a4dda3f00eb92376cc9d1",
+ "license": "MIT",
"urls": [
- "bzz-raw://0a73f80d7737c1a15f4d54225c66b7ffaf69fb85b0e9ef5a06a730f60d43ac13",
- "dweb:/ipfs/QmXegUowEkfsEraUYK2TgweT8j4uKVWxbQCiKV1qtDRKbt"
+ "bzz-raw://d7305d11d78e3aa314451afcd776c33aece89c801c552b5aff3af0e3a5826574",
+ "dweb:/ipfs/QmdKx4XdXcEp4jmJEBQKeexwVnBTaPLa6QvHCmPowYw9JQ"
]
},
"contracts/interfaces/SpokePoolMessageHandler.sol": {
- "keccak256": "0xef7377f05d40e665eb346fb1647e1341558ce5fd1e03768d81a41a579365ff47",
- "license": "BUSL-1.1",
+ "keccak256": "0xc522e2ee6d874df26cae297fc23fc6e8b5216fc8d1901299bb147a25a8c6c259",
+ "license": "MIT",
"urls": [
- "bzz-raw://6689551ad226c66bbab84387f193445ab209bf795f17ce4cf1be9ab5c1984e5d",
- "dweb:/ipfs/Qme3XnW4RZJruCDJTV8MNQsjJj14qPWZHLQZJhY4rh1iV6"
+ "bzz-raw://8942693e1cef207ae68750884e9e3c221df24dafe897af0ae6a1339e17391c29",
+ "dweb:/ipfs/QmSCSQ5DNBetH8xUa73vWXR3D4CdsV6hHFmDqtT2QwLuWt"
]
},
"contracts/interfaces/V3SpokePoolInterface.sol": {
- "keccak256": "0x28d33b34690ea41eea70c5cce5db8c5f1066d74b59a23e28c7b4d9afddef7608",
- "license": "BUSL-1.1",
+ "keccak256": "0x15819fd7ff7b33d3fc55de30a5eb1136dfbcf953be2a962dddc550d77e1823fe",
+ "license": "MIT",
"urls": [
- "bzz-raw://8098952a936841bb3616849c8ee96cf82328998a9cd739030f2ce57cf90d32ee",
- "dweb:/ipfs/Qmb1PpC5RkNsasyjyZrrmbMwXmKzMiSYfzm2B9Kutg6Bmf"
+ "bzz-raw://4f8c43279c38b718fe471171f8dd2eb9f6e8550b939ce65c7c71f0aa6233c421",
+ "dweb:/ipfs/QmXFCLp8jWNKi7QRYTN9ZyNoxsTL1RZfJPLMYzUN9xQC9K"
]
},
"contracts/libraries/AddressConverters.sol": {
@@ -6593,6 +7127,14 @@
"dweb:/ipfs/QmYqEaWXgiJnsH8wRAuTKF41bxkxxvY947wdKoZrjM7HVx"
]
},
+ "contracts/libraries/CircleCCTPAdapter.sol": {
+ "keccak256": "0x3eba540f2b9ec65544546ed337cb3e167d6bbf4967016fdb63ab40b4e613c965",
+ "license": "BUSL-1.1",
+ "urls": [
+ "bzz-raw://7cbaa654c56d98912b0d3f51d5d9c27a7c0462cc79774c05578280344bbda531",
+ "dweb:/ipfs/QmatVR2hNbimHwNeU391X6LRG1MfYLasuxJHfTndJiimXn"
+ ]
+ },
"contracts/libraries/CrossDomainAddressUtils.sol": {
"keccak256": "0x8cc6314539c233645e25cd87dca634ff334560227047e041da84be6079250f59",
"license": "BUSL-1.1",
@@ -6601,37 +7143,45 @@
"dweb:/ipfs/QmajkTu7x5UzzGKr31ZRjhHKAFLge4rxiRWkjuJpQYaYV5"
]
},
+ "contracts/libraries/OFTTransportAdapter.sol": {
+ "keccak256": "0x113bc1d94c8877542496fd057c163963fe589613f584c04f4f9fb743c1f69d81",
+ "license": "BUSL-1.1",
+ "urls": [
+ "bzz-raw://a0fc1131d28847fce763c01a10e0cf154adf259dfb06a72b2f03e9b167400c99",
+ "dweb:/ipfs/QmXjJGoqEE3jqqcMJ68mwUm7fVHA14fG3G39FrjRc9PnUU"
+ ]
+ },
"contracts/upgradeable/AddressLibUpgradeable.sol": {
- "keccak256": "0x655040da45a857cf609d7176c7b0647bf76d36e73e856af79d511014c7e8ef81",
+ "keccak256": "0x9509e139e9fce6ab70e242314424754cb0543d450877892a2c82789cb8e81574",
"license": "MIT",
"urls": [
- "bzz-raw://5c17767f34d57380767b49f8584d62598964fc813e6f3587d76b51ec2357bb4e",
- "dweb:/ipfs/QmSyoTa1Snn3KiJD7KjCwsPmNqpJzusXterbEXxbYCZoJK"
+ "bzz-raw://e31859d9c6240635d443247f84ee934a1a4f64d9f109d243522053bccf3be1aa",
+ "dweb:/ipfs/QmUC67udW4a8rdNn7cjR3B7VYiToK2nyxeQrMzEZteLWqk"
]
},
"contracts/upgradeable/EIP712CrossChainUpgradeable.sol": {
- "keccak256": "0xff617722706d1c0a6d346e56e4598cc5f60adea99b4ac1d2347dcd69270a14f6",
+ "keccak256": "0x0bf31fb2767fc6a135d5bfdf7458a08a4847feb68c69036a1d077da2c562ad63",
"license": "BUSL-1.1",
"urls": [
- "bzz-raw://e2d04649c09bad766c5632da2e3a4f1deed1e013e8b713fad1f101e06f4b56a3",
- "dweb:/ipfs/QmfCewdTDr2krzvNY5rH5BprngEtBmxPXCZf6JKavxw2Sb"
+ "bzz-raw://4c203db01a7e6199863837bf895caa52970cad1de167443e3df231d647c7d951",
+ "dweb:/ipfs/QmTppC2GRVJLHHg1uz3WPACr6LbEAErdW8Dj3M1AgD9gG6"
]
},
"contracts/upgradeable/MultiCallerUpgradeable.sol": {
- "keccak256": "0xc1378a7d63785d9381b8fb6e42962499ab26a243292e20981c2792511a4697f3",
+ "keccak256": "0x88ea9c08255277034a2823e8366534c4f0d2a58138ab0dd561f438537dbb9ab9",
"license": "BUSL-1.1",
"urls": [
- "bzz-raw://2ec8d733e528d6e79732409eb04aa5f8a8bcdf5888e677919a07d8b84afb1598",
- "dweb:/ipfs/QmQF23Gf9vHb6Ne6kaEZmQTjobWzasEWWr5YaBFkuEypz4"
+ "bzz-raw://d632736fc39ea8dc0cd7a3e46101f3c85c377bbf4241b179cdf9d6e228344709",
+ "dweb:/ipfs/QmXTYv3c8b9YHeBkoAeeQzriAEfMUEou9Uyh9iA8v4xqMZ"
]
}
},
"version": 1
},
- "zk_version": "1.5.7"
+ "zk_version": "1.5.15"
},
- "bytecode": "0x00040000000000020020000000000002000000000501034f000000600110027000000c7a0010019d00000c7a03100197000300000035035500020000000503550000000100200190000000260000c13d0000008001000039000000400010043f000000040030008c000000850000413d000000000135034f000000000205043b000000e00420027000000c850040009c000000890000213d00000caf0040009c000001520000a13d00000cb00040009c000003b30000a13d00000cb10040009c000004270000213d00000cb70040009c000009a00000213d00000cba0040009c000014f20000613d00000cbb0040009c00001c110000c13d0000000001000416000000000001004b00001c110000c13d0000086b01000039000000000101041a00000cf10010019800000a9d0000013d0000000001000416000000000001004b00001c110000c13d00000000040300190000001f0130003900000c7b011001970000010001100039000000400010043f0000001f0230018f00000c7c033001980000010001300039000000000805034f000000390000613d0000010005000039000000000608034f000000006706043c0000000005750436000000000015004b000000350000c13d000000000002004b000000460000613d000000000338034f0000000302200210000000000501043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f0000000000210435000000600040008c00001c110000413d000001000300043d00000c7d0030009c00001c110000213d000001200100043d00000c7a0010009c00001c110000213d000001400200043d00000c7a0020009c00001c110000213d00000c7d033001970000000004000410000000800040043f000000a00030043f000000c00010043f000000e00020043f000000000500041a0000ff000050019000000a160000c13d000000ff0650018f000000ff0060008c000000750000613d000000ff015001bf000000000010041b000000ff01000039000000400200043d000000000012043500000c7a0020009c00000c7a020080410000004001200210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000c82011001c70000800d02000039000000010300003900000c830400004131e531d60000040f000000010020019000001c110000613d000000e00200043d000000c00100043d000000a00300043d000000800400043d0000014000000443000001600040044300000020040000390000018000400443000001a0003004430000004003000039000001c000300443000001e00010044300000060010000390000020000100443000002200020044300000100004004430000000401000039000001200010044300000c8401000041000031e60001042e000000000003004b00001c110000c13d0000000001000019000031e60001042e00000c860040009c000003580000a13d00000c870040009c000003da0000a13d00000c880040009c0000048b0000213d00000c8e0040009c000009aa0000213d000000000705034f00000c910040009c000015030000613d00000c920040009c00001c110000c13d0000000006030019000000640030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401700370000000000101043b00000cee0010009c00001c110000213d0000000402100039000000000126004900000cf30010009c00001c110000213d000001800010008c00001c110000413d0000020001000039000000400010043f000000000327034f000000000303043b000000800030043f0000002003200039000000000337034f000000000303043b000000a00030043f0000004003200039000000000337034f000000000303043b000000c00030043f0000006003200039000000000337034f000000000303043b000000e00030043f0000008003200039000000000337034f000000000303043b000001000030043f000000a003200039000000000337034f000000000303043b000001200030043f000000c003200039000000000337034f000000000303043b000001400030043f000000e003200039000000000337034f000000000303043b000001600030043f0000010003200039000000000337034f000000000303043b000001800030043f0000012003200039000000000537034f000000000505043b00000c7a0050009c00001c110000213d000001a00050043f0000002003300039000000000537034f000000000505043b00000c7a0050009c00001c110000213d000001c00050043f0000002003300039000000000337034f000000000303043b00000cee0030009c00001c110000213d00000000032300190000001f02300039000000000062004b00001c110000813d000000000237034f000000000202043b00000cee0020009c00001e5b0000213d00000000040600190000001f0620003900000d6c066001970000003f0660003900000d6c0660019700000cf40060009c00001e5b0000213d00000020033000390000020006600039000000400060043f000002000020043f0000000006320019000000000046004b00001c110000213d000000000437034f00000d6c052001980000001f0620018f0000022003500039000000fd0000613d0000022007000039000000000804034f000000008908043c0000000007970436000000000037004b000000f90000c13d000000000006004b0000010a0000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f000000000043043500000220022000390000000000020435000001e00010043f0000006501000039000000000101041a000000020010008c000018ed0000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000cf50010019800001b1f0000c13d000001c00100043d001300000001001d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000130200002900000c7a02200197000000000101043b00000c7a01100197000000000012004b000001310000413d000000c00100043d00000c7d0010009c000021d80000213d0000000002000411000000000021004b00001bd50000c13d000000800100003931e528ff0000040f001300000001001d000001400100043d001200000001001d000000a00100043d001100000001001d000001e00100043d001000000001001d31e525730000040f0000008002100039000000100300002900000000003204350000006002100039000000110300002900000000003204350000004002100039000000120300002900000000003204350000002002100039000000130300002900000000003204350000008002000039000000000021043500000002020003670000002403200370000000000303043b000000a00410003900000000003404350000004402200370000000000202043b31e52b970000040f000016440000013d00000cc50040009c000003f00000213d00000ccf0040009c000004e60000a13d00000cd00040009c000007cb0000213d00000cd30040009c00000aa20000613d00000cd40040009c00001c110000c13d0000000009030019000000640030008c00001c110000413d000000000a05034f0000000401500370000000000101043b001300000001001d00000c7a0010009c00001c110000213d0000002401a00370000000000101043b00000cee0010009c00001c110000213d000000000219004900000cf30020009c00001c110000213d000000c40020008c00001c110000413d0000014002000039000000400020043f000000040310003900000000033a034f000000000303043b000000800030043f000000240310003900000000033a034f000000000303043b000000a00030043f000000440310003900000000053a034f000000000505043b00000cee0050009c00001c110000213d00000000051500190000002306500039000000000096004b00001c110000813d000000040650003900000000066a034f000000000706043b00000cee0070009c00001e5b0000213d00000005067002100000003f0860003900000d070880019700000d5d0080009c00001e5b0000213d0000014008800039000000400080043f000001400070043f00000024055000390000000006560019000000000096004b00001c110000213d000000000007004b00000000040a034f0000019c0000613d000000000754034f000000000707043b000000200220003900000000007204350000002005500039000000000065004b000001950000413d0000014002000039000000c00020043f0000002002300039000000000324034f000000000303043b00000c7a0030009c00001c110000213d000000e00030043f000000200220003900000000032a034f000000000303043b00000c7d0030009c00001c110000213d000001000030043f000000200220003900000000022a034f000000000202043b00000cee0020009c00001c110000213d00000000021200190000002301200039000000000091004b000000000300001900000d080300804100000d0801100197000000000001004b000000000500001900000d080500404100000d080010009c000000000503c019000000000005004b00001c110000c13d000000040120003900000000011a034f000000000301043b00000cee0030009c00001e5b0000213d00000005053002100000003f0150003900000d0706100197000000400100043d0000000006610019000000000016004b0000000007000039000000010700403900000cee0060009c00001e5b0000213d000000010070019000001e5b0000c13d000000400060043f000000000031043500000024022000390000000003250019000000000093004b00001c110000213d000000000032004b000001df0000813d000000000501001900000000062a034f000000000606043b00000c7d0060009c00001c110000213d000000200550003900000000006504350000002002200039000000000032004b000001d60000413d000001200010043f0000004401a00370000000000101043b00000cee0010009c00001c110000213d0000002302100039000000000092004b000000000300001900000d080300804100000d0802200197000000000002004b000000000500001900000d080500404100000d080020009c000000000503c019000000000005004b00001c110000c13d000000040210003900000000022a034f000000000202043b00000cee0020009c00001e5b0000213d00000005032002100000003f0530003900000d0705500197000000400600043d0000000005560019001100000006001d000000000065004b0000000006000039000000010600403900000cee0050009c00001e5b0000213d000000010060019000001e5b0000c13d0000002401100039000000400050043f00000011050000290000000005250436001000000005001d0000000003130019000000000093004b00001c110000213d000000000002004b000002140000613d000000110200002900000000041a034f000000000404043b000000200220003900000000004204350000002001100039000000000031004b0000020d0000413d0000006501000039000000000201041a000000020020008c000018ed0000613d0000000202000039000000000021041b000001000100043d001200000001001d00000d170100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000120200002900120c7d0020019b000000000101043b00000c7d01100197000000120010006b000002410000c13d00000d5401000041000000000010044300000000010004100000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c70000800a0200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001ff40000c13d000000a00100043d001200000001001d00000cfb010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000120010006b00001ff10000c13d0000086c01000039000000000101041a000000130010006c0000241d0000a13d0000086c01000039000000000010043f000000130100002900000003011000c9000e00000001001d00000d240110009a000000000101041a000f00000001001d000000400100043d0000002002100039000000200300003900000000003204350000004003100039000000800400043d00000000004304350000006003100039000000a00400043d00000000004304350000008003100039000000c005000039000000c00400043d00000000005304350000010003100039000000000504043300000000005304350000012003100039000000000005004b000002780000613d00000000060000190000002004400039000000000704043300000000037304360000000106600039000000000056004b000002720000413d000000e00400043d00000c7a04400197000000a0051000390000000000450435000001000400043d00000c7d04400197000000c00510003900000000004504350000000004130049000000400540008a000000e006100039000001200400043d000000000056043500000000050404330000000003530436000000000005004b000002910000613d00000000060000190000002004400039000000000704043300000c7d0770019700000000037304360000000106600039000000000056004b0000028a0000413d0000000003130049000000200430008a00000000004104350000001f0330003900000d6c043001970000000003140019000000000043004b0000000004000039000000010400403900000cee0030009c00001e5b0000213d000000010040019000001e5b0000c13d000000400030043f00000c7a0020009c00000c7a020080410000004002200210000000000101043300000c7a0010009c00000c7a010080410000006001100210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b00000011020000290000000002020433000000000002004b000002d30000613d001200000000001d0000001202000029000000050220021000000010022000290000000002020433000000000021004b000002c10000813d000000000010043f000000200020043f0000000001000414000002c40000013d000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b0000001203000029001200010030003d00000011020000290000000002020433000000120020006b000002b70000413d0000000f0010006c00001ca30000c13d0000086c01000039000000000101041a000000130010006c0000241d0000a13d000000e00100043d001200000001001d000000080110027000000d6001100197000000000010043f0000000e0100002900000d610110009a000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d0000001202000029000000ff0220018f000000010220020f000000000101043b000000000301041a0000000000230170000021f90000c13d000000000223019f000000000021041b000000c00100043d000f00000001001d0000000012010434000c00000001001d000001200100043d000b00000001001d0000000031010434000900000003001d000d00000002001d000000000021004b000022770000c13d000000800100043d000600000001001d000000a00100043d000500000001001d000001000100043d00100c7d0010019b000000e00100043d000400000001001d0000000d0000006b000700000000001d000022870000c13d000000060000006b000022b40000c13d0000000001000411001200000001001d000000400100043d0000002004100039000001200200043d000000a00500043d000000e00300043d000001000800043d000000c00600043d000000800700043d000000c00900003900000000009404350000000000710435000000c00410003900000000070604330000000000740435000000e00410003900000c7d08800197000000000007004b000003260000613d00000000090000190000002006600039000000000a0604330000000004a404360000000109900039000000000079004b000003200000413d000000130600002900000c7a0660019700000c7a073001970000000003140049000000600910003900000000003904350000004003100039000000000083043500000000080204330000000003840436000000000008004b0000033a0000613d00000000040000190000002002200039000000000902043300000c7d0990019700000000039304360000000104400039000000000084004b000003330000413d000000120200002900000c7d02200197000000a0041000390000000000240435000000070000006b0000000002000039000000010200c03900000080041000390000000000240435000000000213004900000c7a0020009c00000c7a02008041000000600220021000000c7a0010009c00000c7a010080410000004001100210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c70000800d02000039000000040300003900000d6a0400004131e531d60000040f000000010020019000001c110000613d000016440000013d00000c9c0040009c000004190000213d00000ca60040009c000004ed0000a13d00000ca70040009c000008230000213d00000caa0040009c00000ab00000613d00000cab0040009c00001c110000c13d000000640030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b001300000001001d00000c7a0010009c00001c110000213d0000002401500370000000000101043b001200000001001d00000c7d0010009c00001c110000213d0000004401500370000000000101043b001100000001001d00000c7d0010009c00001c110000213d000000000100041a0000000801100270000000ff0110018f31e528dd0000040f0000001301000029000000c00110021000000cde011001970000086b02000039000000000302041a00000cdf03300197000000000113019f000000000012041b000000400100043d001300000001001d31e525680000040f00000ce10100004100000013020000290000002003200039000f00000003001d000000000013043500000009010000390000000000120435000000400100043d001000000001001d31e525680000040f00000ce20100004100000010020000290000002003200039000e00000003001d000000000013043500000005010000390000000000120435000000000100041a0000000801100270000000ff0110018f000d00000001001d31e528dd0000040f0000000d0100002931e528dd0000040f000000130100002900000000020104330000000f0100002931e531a30000040f00000010020000290000000002020433001300000001001d0000000e0100002931e531a30000040f0000047f020000390000001303000029000000000032041b0000048002000039000000000012041b31e530140000040f31e5302c0000040f000000120100002931e530470000040f000000110100002931e530640000040f0000000001000019000031e60001042e00000cbc0040009c000004a90000a13d00000cbd0040009c0000065a0000213d00000cc00040009c00000a2a0000613d00000cc10040009c00001c110000c13d0000000001000416000000000001004b00001c110000c13d00000d17010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000400300043d00000c7a0030009c00000c7a0200004100000000020340190000004002200210000000000101043b00000c7d011001970000000004000410000000000014004b000015f30000c13d00000d3401000041000000000013043500000cec012001c7000031e60001042e00000c930040009c000004cb0000a13d00000c940040009c000007c00000213d00000c970040009c00000a2f0000613d00000c980040009c00001c110000c13d0000000002030019000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b00000cee0010009c00001c110000213d000000040110003931e525ed0000040f31e528ff0000040f000009f60000013d00000cc60040009c000005dd0000a13d00000cc70040009c000008310000213d00000cca0040009c00000e510000613d00000ccb0040009c00001c110000c13d000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b001300000001001d00000c7d0010009c00001c110000213d00000d17010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000c7d011001970000000002000410000000000012004b000016030000c13d000000400100043d000000640210003900000d47030000410000164c0000013d00000c9d0040009c000006200000a13d00000c9e0040009c0000083c0000213d00000ca10040009c00000e580000613d00000ca20040009c00001c110000c13d000000440030008c00001c110000413d0000000001000416000000000001004b000004960000613d00001c110000013d00000cb20040009c000009e40000213d00000cb50040009c000015180000613d00000cb60040009c00001c110000c13d000001640030008c00001c110000413d0000000401500370000000000101043b001300000001001d00000c7d0010009c00001c110000213d0000002401500370000000000101043b001200000001001d00000c7d0010009c00001c110000213d0000004401500370000000000101043b001100000001001d00000c7d0010009c00001c110000213d0000006401500370000000000101043b001000000001001d00000c7d0010009c00001c110000213d000000e401500370000000000101043b000f00000001001d00000c7d0010009c00001c110000213d0000010401500370000000000101043b000e00000001001d00000c7a0010009c00001c110000213d0000012401500370000000000101043b000d00000001001d00000c7a0010009c00001c110000213d0000014401500370000000000101043b00000cee0010009c00001c110000213d0000002302100039000000000032004b00001c110000813d0000000402100039000000000225034f000000000202043b000c00000002001d00000cee0020009c00001c110000213d0000002402100039000b00000002001d0000000c01200029000000000031004b00001c110000213d0000008401500370000000000101043b000a00000001001d000000a401500370000000000101043b000900000001001d000000c401500370000000000101043b000800000001001d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000c7a091001970000000e0a90002900000c7a00a0009c000009de0000213d00000013010000290000001202000029000000110300002900000010040000290000000a05000029000000090600002900000008070000290000000f080000290000000d0b0000290000000b0c0000290000000c0d00002931e5268f0000040f0000000001000019000031e60001042e00000c890040009c000009fd0000213d00000c8c0040009c000015430000613d00000c8d0040009c00001c110000c13d000000440030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b00000c7d0010009c00001c110000213d0000002402500370000000000202043b001300000002001d00000c7d0020009c00001c110000213d000000000010043f0000087301000039000000200010043f0000004002000039000000000100001931e531a30000040f000000130200002931e525c30000040f000000000101041a000009f60000013d00000cc20040009c0000109f0000613d000000000705034f00000cc30040009c000012640000613d00000cc40040009c00001c110000c13d000000440030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401700370000000000101043b00000c7d0010009c00001c110000213d000000000010043f0000086d01000039000000200010043f00000040020000390000000001000019001300000007035331e531a30000040f000000130200035f0000002402200370000000000202043b000000000020043f000000200010043f0000000001000019000000400200003931e531a30000040f000000000101041a000000ff0010019000000a9d0000013d00000c990040009c000010ce0000613d00000c9a0040009c000012d50000613d00000c9b0040009c00001c110000c13d000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b001300000001001d00000c7d0010009c00001c110000213d0000086901000039000000000101041a00000cd80110009a00000c7d011001970000000002000411000000000012004b000015390000c13d31e529850000040f000000130100002931e530810000040f000016440000013d00000cd50040009c000010d30000613d00000cd60040009c000012e60000613d00000cd70040009c000009a40000613d00001c110000013d00000cac0040009c000010de0000613d00000cad0040009c000013470000613d00000cae0040009c00001c110000c13d000001a40030008c00001c110000413d0000012401500370000000000101043b001300000001001d00000c7a0010009c00001c110000213d0000014401500370000000000101043b001200000001001d00000c7a0010009c00001c110000213d0000016401500370000000000101043b001100000001001d00000c7a0010009c00001c110000213d0000018401500370000000000101043b00000cee0010009c00001c110000213d0000002302100039000000000032004b00001c110000813d000f00040010003d0000000f02500360000000000202043b001000000002001d00000cee0020009c00001c110000213d0000001001100029000e00240010003d0000000e0030006b00001c110000213d0000000401500370000000000101043b000d00000001001d0000002401500370000000000101043b000c00000001001d0000004401500370000000000101043b000b00000001001d0000006401500370000000000101043b000a00000001001d0000008401500370000000000101043b000900000001001d000000a401500370000000000101043b000800000001001d000000c401500370000000000101043b000700000001001d000000e401500370000000000101043b000600000001001d0000010401500370000000000101043b0000006502000039000000000302041a000000020030008c0000152f0000613d0000000203000039000000000032041b0000086b02000039000000000202041a00000cf100200198000018fe0000c13d00000000020004110000006002200210000000a00020043f0000000d02000029000000b40020043f000000d40010043f0000005401000039000000800010043f0000010001000039000000400010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d15011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000400200043d000500000002001d00000d160020009c00001e5b0000213d000000000101043b0000000503000029000001a002300039000000400020043f0000016002300039000300000002001d000000110400002900000000004204350000014002300039000400000002001d000000120400002900000000004204350000012002300039001100000002001d000000130400002900000000004204350000010002300039000100000002001d0000000000120435000000e001300039000200000001001d00000006020000290000000000210435000000c001300039001200000001001d00000007020000290000000000210435000000a001300039000700000001001d000000080200002900000000002104350000008001300039000800000001001d000000090200002900000000002104350000006001300039000900000001001d0000000a0200002900000000002104350000004001300039001300000001001d0000000b0200002900000000002104350000000d010000290000000001130436000d00000001001d0000000c02000029000000000021043500000010010000290000001f0110003900000d6c011001970000003f0110003900000d6c02100197000000400100043d0000000002210019000000000012004b0000000003000039000000010300403900000cee0020009c00001e5b0000213d000000010030019000001e5b0000c13d000000400020043f000000100200002900000000022104360000000e04000029000000000040007c00001c110000213d000000100500002900000d6c045001980000001f0550018f00000000034200190000000f0600002900000020066000390000000206600367000005a20000613d000000000706034f0000000008020019000000007907043c0000000008980436000000000038004b0000059e0000c13d000000000005004b000005af0000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000001002200029000000000002043500000005020000290000018003200039001000000003001d0000000000130435000000000102043300000c7d0010009c000021d80000213d0000001301000029000000000101043300000c7d0010009c000021d80000213d000000000010043f0000086d01000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b00000012020000290000000002020433000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000000101041a000000ff0010019000001c600000c13d000000400100043d00000d2202000041000014ec0000013d00000ccc0040009c000012500000613d000000000d05034f00000ccd0040009c0000136e0000613d00000cce0040009c00001c110000c13d000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401d00370000000000101043b001300000001001d00000cee0010009c00001c110000213d0000001301000029001200040010003d000000120130006a00000cf30010009c00001c110000213d000001800010008c00001c110000413d0000006501000039000000000201041a000000020020008c0000152f0000613d0000000202000039000000000021041b0000086b01000039000000000101041a00000cf500100198000016530000c13d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d0000001302000029001101440020003d00000002020003670000001103200360000000000101043b000000000303043b00000c7a0030009c00001c110000213d00000c7a01100197000000000013004b000018e60000813d000000110300002900100020003000920000001002200360000000000202043b00000c7a0020009c00001c110000213d000000000012004b00001a160000813d000000400100043d00000d5b02000041000014ec0000013d00000ca30040009c0000125d0000613d000000000b05034f00000ca40040009c000014be0000613d00000ca50040009c00001c110000c13d0000000005030019000000240030008c00001c110000413d0000000002000416000000000002004b00001c110000c13d0000000402b00370000000000202043b001100000002001d00000cee0020009c00001c110000213d00000011020000290000002302200039000000000052004b00001c110000813d0000001102000029000000040220003900000000022b034f000000000202043b001000000002001d00000cee0020009c00001c110000213d0000001102000029000000240d200039000000100200002900000005032002100000000002d30019000000000052004b00001c110000213d0000003f0230003900000d070220019700000cfa0020009c00001e5b0000213d00000000040500190000008002200039000000400020043f0000001005000029000000800050043f000000000005004b000016cf0000c13d00000020010000390000000003120436000000800100043d0000000000130435000000400320003900000005041002100000000007340019000000000001004b000017890000c13d0000000001270049000010920000013d000000000c05034f00000cbe0040009c00000a360000613d00000cbf0040009c00001c110000c13d0000000006030019000000c40030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401c00370000000000101043b001300000001001d00000c7d0010009c00001c110000213d0000004401c00370000000000101043b001100000001001d0000002401c00370000000000101043b001200000001001d0000006401c00370000000000101043b001000000001001d00000c7d0010009c00001c110000213d0000008401c00370000000000101043b00000cee0010009c00001c110000213d0000002302100039000000000062004b00001c110000813d000000040210003900000000032c034f000000000303043b000f00000003001d00000cee0030009c00001c110000213d0000002403100039000e00000003001d0000000f01300029000000000061004b00001c110000213d000000a401c00370000000000301043b00000cee0030009c00001c110000213d0000002301300039000000000061004b00001c110000813d000000040130003900000000051c034f000000000505043b000d00000005001d00000cee0050009c00001c110000213d0000002405300039000c00000005001d0000000d03500029000000000063004b00001c110000213d0000000f030000290000001f0330003900000d6c03300197000a00000003001d0000003f0330003900000d6c0330019700000cfa0030009c00001e5b0000213d0000008003300039000000400030043f000000200220003900000000070c034f00000000032c034f0000000f02000029000000800020043f00000d6c04200198000b001f00200193000800000004001d000000a002400039000006b30000613d000000a004000039000000000503034f000000005605043c0000000004640436000000000024004b000006af0000c13d0000000b0000006b000006c10000613d00000008033003600000000b040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000f02000029000000a00220003900000000000204350000000d020000290000001f0220003900000d6c02200197000500000002001d0000003f0220003900000d6c02200197000000400300043d0000000002230019000900000003001d000000000032004b0000000003000039000000010300403900000cee0020009c00001e5b0000213d000000010030019000001e5b0000c13d000000400020043f0000002001100039000000000217034f0000000d010000290000000903000029000000000413043600000d6c031001980006001f00100193000400000003001d000700000004001d0000000001340019000006e60000613d000000000302034f0000000704000029000000003503043c0000000004540436000000000014004b000006e20000c13d000000060000006b000006f40000613d000000040220036000000006030000290000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f000000000021043500000007020000290000000d012000290000000000010435000000800100043d00000c7a0010009c00000c7a010080410000006001100210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000121019f00000cfc011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000200000001001d000000400300043d000000400130003900000012020000290000000000210435000300000003001d000000200230003900000d2d01000041000100000002001d000000000012043500000cfb010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000301043b0000000304000029000000c00140003900000002020000290000000000210435000000a001400039000000100200002900000000002104350000008001400039000000110200002900000000002104350000006001400039000200000003001d0000000000310435000000c001000039000000000014043500000cfe0040009c00001e5b0000213d0000000302000029000000e001200039000000400010043f000000010100002900000c7a0010009c00000c7a010080410000004001100210000000000202043300000c7a0020009c00000c7a020080410000006002200210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000300000001001d0000047f01000039000000000201041a0000048001000039000000000301041a000000400100043d0000008004100039000000020500002900000000005404350000006004100039000000000034043500000040031000390000000000230435000000200210003900000cff0300004100000000003204350000008003000039000000000031043500000d000010009c00001e5b0000213d000000a003100039000000400030043f00000c7a0020009c00000c7a020080410000004002200210000000000101043300000c7a0010009c00000c7a010080410000006001100210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000400200043d00000022032000390000000304000029000000000043043500000d010300004100000000003204350000000203200039000000000013043500000c7a0020009c00000c7a020080410000004001200210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000121019f00000d02011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000300000001001d00000009010000290000000001010433000000410010008c0000078d0000c13d00000009010000290000004001100039000000000101043300000d030010009c00001cf70000a13d000000400200043d000000440120003900000040030000390000000000310435000000200120003900000d0503000041000000000031043500000024032000390000000304000029000000000043043500000009030000290000000003030433000000640420003900000000003404350000008404200039000000000003004b0000000708000029000007a70000613d000000000500001900000000064500190000000007850019000000000707043300000000007604350000002005500039000000000035004b000007a00000413d000000000443001900000000000404350000001f0330003900000d6c0330019700000064043000390000000000420435000000a30330003900000d6c043001970000000003240019000000000043004b0000000004000039000000010400403900000cee0030009c00001e5b0000213d000000010040019000001e5b0000c13d000000400030043f000000000302043300000000020004140000001304000029000000040040008c00001d8e0000c13d0000000102000039000000010400003100001da00000013d00000c950040009c00000a970000613d00000c960040009c00001c110000c13d0000000001000416000000000001004b00001c110000c13d00000cf601000041000000800010043f00000cf201000041000031e60001042e000000000e05034f00000cd10040009c00000ec40000613d00000cd20040009c00001c110000c13d000000640030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401e00370000000000101043b001300000001001d00000c7d0010009c00001c110000213d0000004401e00370000000000201043b000000000002004b0000000001000039000000010100c039001200000002001d000000000012004b00001c110000c13d0000086901000039000000000101041a00000cd80110009a00000c7d011001970000000002000411000000000012004b000015390000c13d0000002401e00370000000000301043b0000006501000039000000000201041a000000020020008c0000152f0000613d001100000003001d0000000202000039000000000021041b0000001301000029000000000010043f0000086d01000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b0000001102000029000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000000201041a00000d6d022001970000001203000029000000000232019f000000000021041b000000400100043d000000000031043500000c7a0010009c00000c7a010080410000004001100210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000c82011001c70000800d02000039000000030300003900000d4f0400004100000013050000290000001106000029000016410000013d00000ca80040009c0000103d0000613d00000ca90040009c00001c110000c13d0000000001000416000000000001004b00001c110000c13d0000800b0100003900000004030000390000000004000415000000200440008a000000050440021000000cfb02000041000012590000013d00000cc80040009c000010680000613d00000cc90040009c00001c110000c13d0000000001000416000000000001004b00001c110000c13d00000d4101000041000000800010043f00000cf201000041000031e60001042e00000c9f0040009c0000109a0000613d00000ca00040009c00001c110000c13d0000000006030019000000c40030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d000000000e05034f0000006401e00370000000000101043b001100000001001d0000004401e00370000000000101043b001000000001001d0000002401e00370000000000101043b001200000001001d0000000401e00370000000000101043b001300000001001d0000008401e00370000000000101043b00000cee0010009c00001c110000213d0000002302100039000000000062004b00001c110000813d000000040210003900000000032e034f000000000303043b000f00000003001d00000cee0030009c00001c110000213d0000002403100039000e00000003001d0000000f01300029000000000061004b00001c110000213d000000a401e00370000000000301043b00000cee0030009c00001c110000213d0000002301300039000000000061004b00001c110000813d000000040130003900000000051e034f000000000505043b000d00000005001d00000cee0050009c00001c110000213d0000002405300039000c00000005001d0000000d03500029000000000063004b00001c110000213d0000006503000039000000000403041a000000020040008c0000152f0000613d0000000204000039000000000043041b000000130300002900000cf70030009c000019800000813d0000000f030000290000001f0330003900000d6c03300197000a00000003001d0000003f0330003900000d6c0330019700000cfa0030009c00001e5b0000213d0000008003300039000000400030043f000000200220003900000000032e034f0000000f02000029000000800020043f00000d6c04200198000b001f00200193000800000004001d000000a002400039000008990000613d000000a004000039000000000503034f000000005605043c0000000004640436000000000024004b000008950000c13d0000000b0000006b000008a70000613d00000008033003600000000b040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000f02000029000000a00220003900000000000204350000000d020000290000001f0220003900000d6c02200197000500000002001d0000003f0220003900000d6c02200197000000400300043d0000000002230019000900000003001d000000000032004b0000000003000039000000010300403900000cee0020009c00001e5b0000213d000000010030019000001e5b0000c13d000000400020043f000000200110003900000000021e034f0000000d010000290000000903000029000000000413043600000d6c031001980006001f00100193000400000003001d000700000004001d0000000001340019000008cc0000613d000000000302034f0000000704000029000000003503043c0000000004540436000000000014004b000008c80000c13d000000060000006b000008da0000613d000000040220036000000006030000290000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f000000000021043500000007020000290000000d01200029000000000001043500000cfb010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000101043b000300000001001d000000800100043d00000c7a0010009c00000c7a010080410000006001100210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000121019f00000cfc011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000201043b000000400100043d000000c0031000390000000000230435000000a00210003900000011030000290000000000320435000000800210003900000010030000290000000000320435000000600210003900000003030000290000000000320435000000400210003900000012030000290000000000320435000000200210003900000cfd030000410000000000320435000000c003000039000000000031043500000cfe0010009c00001e5b0000213d000000e003100039000000400030043f00000c7a0020009c00000c7a020080410000004002200210000000000101043300000c7a0010009c00000c7a010080410000006001100210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000200000001001d0000047f01000039000000000201041a0000048001000039000000000301041a000000400100043d0000008004100039000000030500002900000000005404350000006004100039000000000034043500000040031000390000000000230435000000200210003900000cff0300004100000000003204350000008003000039000000000031043500000d000010009c00001e5b0000213d000000a003100039000000400030043f00000c7a0020009c00000c7a020080410000004002200210000000000101043300000c7a0010009c00000c7a010080410000006001100210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000400200043d00000022032000390000000204000029000000000043043500000d010300004100000000003204350000000203200039000000000013043500000c7a0020009c00000c7a020080410000004001200210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000121019f00000d02011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000300000001001d00000009010000290000000001010433000000410010008c0000096d0000c13d00000009010000290000004001100039000000000101043300000d030010009c00001d390000a13d000000400200043d000000440120003900000040030000390000000000310435000000200120003900000d0503000041000000000031043500000024032000390000000304000029000000000043043500000009030000290000000003030433000000640420003900000000003404350000008404200039000000000003004b0000000708000029000009870000613d000000000500001900000000064500190000000007850019000000000707043300000000007604350000002005500039000000000035004b000009800000413d000000000443001900000000000404350000001f0330003900000d6c0330019700000064043000390000000000420435000000a30330003900000d6c043001970000000003240019000000000043004b0000000004000039000000010400403900000cee0030009c00001e5b0000213d000000010040019000001e5b0000c13d000000400030043f000000000302043300000000020004140000001304000029000000040040008c00001e110000c13d0000000102000039000000010400003100001e230000013d00000cb80040009c0000155b0000613d00000cb90040009c00001c110000c13d0000000001000416000000000001004b00001c110000c13d000000800000043f00000cf201000041000031e60001042e00000c8f0040009c000015620000613d00000c900040009c00001c110000c13d000001640030008c00001c110000413d0000010401500370000000000101043b001300000001001d00000c7a0010009c00001c110000213d0000012401500370000000000101043b001200000001001d00000c7a0010009c00001c110000213d0000014401500370000000000101043b00000cee0010009c00001c110000213d0000002302100039000000000032004b00001c110000813d0000000402100039000000000225034f000000000202043b001100000002001d00000cee0020009c00001c110000213d0000002402100039001000000002001d0000001101200029000000000031004b00001c110000213d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000c7a01100197000f00000001001d0000001301100029001300000001001d00000c7a0010009c000018e90000a13d00000d5901000041000000000010043f0000001101000039000000040010043f00000d5301000041000031e70001043000000cb30040009c0000156b0000613d00000cb40040009c00001c110000c13d000000640030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b00000c7d0010009c00001c110000213d0000002402500370000000000202043b0000004403500370000000000303043b31e5289e0000040f000000400200043d000000000012043500000c7a0020009c00000c7a02008041000000400120021000000cec011001c7000031e60001042e00000c8a0040009c000015b00000613d00000c8b0040009c00001c110000c13d000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b001300000001001d00000c7d0010009c00001c110000213d0000086901000039000000000101041a00000cd80110009a00000c7d011001970000000002000411000000000012004b000015390000c13d31e529850000040f000000130100002931e530640000040f000016440000013d000000400100043d000000640210003900000c7e030000410000000000320435000000440210003900000c7f03000041000000000032043500000024021000390000002703000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000c81011001c7000031e7000104300000000001000416000000000001004b00001c110000c13d0000086901000039000015660000013d0000000001000416000000000001004b00001c110000c13d00000c7a01000041000000800010043f00000cf201000041000031e60001042e000001240030008c00001c110000413d0000000401c00370000000000101043b00000c7d0010009c00001c110000213d0000002402c00370000000000202043b00000c7d0020009c00001c110000213d00000000040300190000004403c00370000000000303043b00000c7d0030009c00001c110000213d000000a405c00370000000000605043b00000d2f0060019800000d3005000041000000000500601900000d3107600197000000000575019f000000000056004b00001c110000c13d000000c405c00370000000000705043b00000c7a0070009c00001c110000213d000000e405c00370000000000805043b00000cee0080009c00001c110000213d0000002305800039000000000045004b00001c110000813d000000040980003900000000059c034f000000000505043b00000cee0050009c00001e5b0000213d0000001f0b50003900000d6c0bb001970000003f0bb0003900000d6c0bb0019700000cfa00b0009c00001e5b0000213d0000002408800039000000800bb000390000004000b0043f000000800050043f0000000008850019000000000048004b00001c110000213d0000002004900039000000000f0c034f00000000084c034f00000d6c095001980000001f0a50018f000000a00490003900000a780000613d000000a00b000039000000000c08034f00000000cd0c043c000000000bdb043600000000004b004b00000a740000c13d00000000000a004b00000a850000613d000000000898034f0000000309a00210000000000a040433000000000a9a01cf000000000a9a022f000000000808043b0000010009900089000000000898022f00000000089801cf0000000008a8019f0000000000840435000000a00450003900000000000404350000006504000039000000000404041a000000020040008c000018ed0000613d00000002040000390000006505000039000000000045041b0000086b04000039000000000404041a00000cf10040019800001a130000c13d0000006404f00370000000000404043b0000008405f00370000000000505043b000013440000013d0000000001000416000000000001004b00001c110000c13d0000086b01000039000000000101041a00000cf5001001980000000001000039000000010100c039000000800010043f00000cf201000041000031e60001042e0000000001000416000000000001004b00001c110000c13d0000000001000412001d00000001001d001c00200000003d0000800501000039000000440300003900000000040004150000001d0440008a000000050440021000000d170200004131e531b80000040f000015670000013d000000e40030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b001300000001001d00000cee0010009c00001c110000213d00000000040300190000001301000029001200040010003d000000120130006a00000cf30010009c00001c110000213d000001800010008c00001c110000413d000000a401500370000000000101043b00000cee0010009c00001c110000213d0000002302100039000000000042004b00001c110000813d0000000402100039000000000225034f000000000202043b001100000002001d00000cee0020009c00001c110000213d0000002402100039001000000002001d000f00110020002d0000000f0040006b00001c110000213d000000c401500370000000000101043b00000cee0010009c00001c110000213d0000002302100039000000000042004b00001c110000813d0000000402100039000000000225034f000000000202043b000e00000002001d00000cee0020009c00001c110000213d0000002402100039000d00000002001d000c000e0020002d0000000c0040006b00001c110000213d0000002401500370000000000101043b000800000001001d0000004401500370000000000101043b000b00000001001d0000006401500370000000000101043b000a00000001001d0000008401500370000000000101043b000900000001001d0000006501000039000000000101041a000000020010008c0000152f0000613d00000002010000390000006503000039000000000013041b0000086b01000039000000000101041a00000cf500100198000016530000c13d0000001301000029000601440010003d0000000601500360000000000101043b000700000001001d00000c7a0010009c00001c110000213d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000c7a01100197000000070010006b00000b1c0000413d000000130100002900000044011000390000000201100367000000000101043b00000c7d0010009c000021d80000213d0000000002000411000000000021004b00001bd50000c13d000000000c0000310000001201c0006a00000cf30010009c00001c110000213d000001800010008c00001c110000413d000000400100043d00000d110010009c00001e5b0000213d0000018002100039000000400020043f000000060b0000290000014002b0008a000000020d00036700000000022d034f000000000202043b00000000022104360000012003b0008a00000000033d034f000000000303043b00000000003204350000010003b0008a00000000033d034f000000000403043b00000040031000390000000000430435000000e004b0008a00000000044d034f000000000504043b00000060041000390000000000540435000000c005b0008a00000000055d034f000000000605043b00000080051000390000000000650435000000a006b0008a00000000066d034f000000000706043b000000a00610003900000000007604350000008007b0008a00000000077d034f000000000807043b000000c00710003900000000008704350000006008b0008a00000000088d034f000000000908043b000000e00810003900000000009804350000004009b0008a000000000a9d034f0000010009100039000000000a0a043b0000000000a90435000000200bb0008a000000000abd034f000000000e0a043b00000c7a00e0009c00001c110000213d000001200a10003900130000000a001d0000000000ea0435000000200eb00039000000000bed034f000000000f0b043b00000c7a00f0009c00001c110000213d000001400a10003900070000000a001d0000000000fa0435000000200ee00039000000000eed034f000000000e0e043b00000cee00e0009c00001c110000213d000000120ae0002900060000000a001d0000001f0ea000390000000000ce004b000000000b00001900000d080b00804100000d080ee0019700000d080fc00197000000000afe013f0000000000fe004b000000000e00001900000d080e00404100000d0800a0009c000000000e0bc01900000000000e004b00001c110000c13d000000060ad00360000000000a0a043b00000cee00a0009c00001e5b0000213d000000000f0a00190000001f0aa0003900000d6c0aa001970000003f0aa0003900000d6c0aa00197000000400b00043d000000000eab001900050000000b001d0000000000be004b000000000a000039000000010a00403900000cee00e0009c00001e5b0000213d0000000100a0019000001e5b0000c13d000000060a000029000000200ba000390000004000e0043f000000050e000029000000000efe043600060000000e001d000000000abf00190000000000ca004b00001c110000213d0003000000bd035300000d6c0bf001980004001f00f00193000000060cb0002900000ba00000613d000000030e00035f000000060d00002900000000ea0e043c000000000dad04360000000000cd004b00000b9c0000c13d000000040000006b00000bae0000613d000000030ab0035f000000040b000029000000030bb00210000000000d0c0433000000000dbd01cf000000000dbd022f000000000a0a043b000001000bb00089000000000aba022f000000000aba01cf000000000ada019f0000000000ac0435000000060af0002900000000000a0435000001600c100039000000050a0000290000000000ac0435000000400b00043d000000200db00039000000400a00003900060000000d001d0000000000ad04350000000001010433000000600ab0003900000000001a043500000000010204330000008002b0003900000000001204350000000001030433000000a002b0003900000000001204350000000001040433000000c002b0003900000000001204350000000001050433000000e002b00039000000000012043500000000010604330000010002b00039000000000012043500000000010704330000012002b00039000000000012043500000000010804330000014002b00039000000000012043500000000010904330000016002b0003900000000001204350000001301000029000000000101043300000c7a011001970000018002b0003900000000001204350000000701000029000000000101043300000c7a01100197000001a002b00039000000000012043500000000010c0433000001c002b0003900000180030000390000000000320435000001e002b000390000000016010434000000000062043500130000000b001d0000020002b00039000000000006004b00000bf00000613d000000000300001900000000042300190000000005310019000000000505043300000000005404350000002003300039000000000063004b00000be90000413d000700000006001d0000000001260019000000000001043500000cfb010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000013040000290000004002400039000000000012043500000007010000290000001f0110003900000d6c01100197000001e00210003900000000002404350000021f0110003900000d6c021001970000000001420019000000000021004b0000000002000039000000010200403900000cee0010009c00001e5b0000213d000000010020019000001e5b0000c13d000000400010043f000000060100002900000c7a0010009c00000c7a0100804100000040011002100000001302000029000000000202043300000c7a0020009c00000c7a020080410000006002200210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000301043b000000400100043d001300000001001d00000d120010009c00001e5b0000213d0000001301000029000000c004100039000000400040043f0000000001000031000000120210006a00000cf30020009c00001c110000213d000001800020008c00001c110000413d000000130200002900000d130020009c00001e5b0000213d00000013070000290000024002700039000000400020043f00000002020003670000001208000029000000000582034f000000000505043b000700000005001d00000000005404350000002005800039000000000552034f000000000505043b000000e00670003900000000005604350000004005800039000000000552034f000000000505043b000001000670003900000000005604350000006005800039000000000552034f000000000505043b000001200670003900000000005604350000008005800039000000000552034f000000000505043b00000140067000390000000000560435000000a005800039000000000552034f000000000505043b00000160067000390000000000560435000000c005800039000000000552034f000000000505043b00000180067000390000000000560435000000e005800039000000000552034f000000000605043b000001a005700039000600000006001d00000000006504350000010005800039000000000552034f000001c006700039000000000505043b000500000005001d00000000005604350000012005800039000000000652034f000000000606043b00000c7a0060009c00001c110000213d0000001307000029000001e00770003900000000006704350000002005500039000000000652034f000000000606043b00000c7a0060009c00001c110000213d0000001307000029000002000770003900000000006704350000002005500039000000000552034f000000000505043b00000cee0050009c00001c110000213d00000012075000290000001f05700039000000000015004b000000000600001900000d080600804100000d080550019700000d0808100197000000000985013f000000000085004b000000000500001900000d080500404100000d080090009c000000000506c019000000000005004b00001c110000c13d000000000572034f000000000605043b00000cee0060009c00001e5b0000213d0000001f0560003900000d6c055001970000003f0550003900000d6c08500197000000400500043d0000000008850019000000000058004b0000000009000039000000010900403900000cee0080009c00001e5b0000213d000000010090019000001e5b0000c13d0000002009700039000000400080043f00000000076504360000000008960019000000000018004b00001c110000213d000000000992034f00000d6c0a6001980000001f0b60018f0000000008a7001900000cb00000613d000000000c09034f000000000d07001900000000ce0c043c000000000ded043600000000008d004b00000cac0000c13d00000000000b004b00000cbd0000613d0000000009a9034f000000030ab00210000000000b080433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f000000000098043500000000066700190000000000060435000000130700002900000060067000390000000908000029000000000086043500000040067000390000000a0800002900000000008604350000002006700039000000000036043500000000004704350000022003700039000000000053043500000011030000290000001f0330003900000d6c033001970000003f0330003900000d6c04300197000000400300043d0000000005430019000000000035004b0000000006000039000000010600403900000cee0050009c00001e5b0000213d000000010060019000001e5b0000c13d000000400050043f000000110500002900000000075304360000000f0010006b00001c110000213d0000001005200360000000110800002900000d6c098001980000001f0680018f000000000a97001900000ce90000613d000000000805034f000000008b08043c0000000007b704360000000000a7004b00000ce50000c13d000000000006004b000000000795034f000000030860021000000cf60000613d000000000b0a0433000000000b8b01cf000000000b8b022f000000000c07043b000001000d800089000000000cdc022f000000000cdc01cf000000000bbc019f0000000000ba0435000000110a000029000000200aa00039000000000ba3001900000000000b0435000000130c000029000000a00bc00039000000080d0000290000000000db0435000000800bc0003900000000003b0435000000070300002900000c7d0030009c000021d80000213d000000400300043d0000000004430019000000000034004b000000000b000039000000010b00403900000cee0040009c00001e5b0000213d0000000100b0019000001e5b0000c13d000000400040043f00000011040000290000000004430436000000000b940019000000000009004b00000d170000613d0000000009040019000000005c05043c0000000009c904360000000000b9004b00000d130000c13d000000000006004b00000d220000613d00000000050b043300000000058501cf000000000585022f000000000607043b0000010007800089000000000676022f00000000067601cf000000000556019f00000000005b04350000000005a3001900000000000504350000000e050000290000001f0550003900000d6c055001970000003f0550003900000d6c05500197000000400600043d0000000005560019001100000006001d000000000065004b0000000006000039000000010600403900000cee0050009c00001e5b0000213d000000010060019000001e5b0000c13d000000400050043f0000000e0500002900000011060000290000000005560436001200000005001d0000000c0010006b00001c110000213d0000000d022003600000000e0600002900000d6c056001980000001f0660018f000000120150002900000d460000613d000000000702034f0000001208000029000000007907043c0000000008980436000000000018004b00000d420000c13d000000000006004b00000d530000613d000000000252034f0000000305600210000000000601043300000000065601cf000000000656022f000000000202043b0000010005500089000000000252022f00000000025201cf000000000262019f000000000021043500000012020000290000000e01200029000000000001043500000c7a0040009c00000c7a040080410000004001400210000000000203043300000c7a0020009c00000c7a020080410000006002200210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000201043b000000400100043d000000c0031000390000000000230435000000a0021000390000000903000029000000000032043500000080021000390000000a030000290000000000320435000000600210003900000006030000290000000000320435000000400210003900000005030000290000000000320435000000200210003900000cfd030000410000000000320435000000c003000039000000000031043500000cfe0010009c00001e5b0000213d000000e003100039000000400030043f00000c7a0020009c00000c7a020080410000004002200210000000000101043300000c7a0010009c00000c7a010080410000006001100210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000f00000001001d0000047f01000039000000000201041a0000048001000039000000000301041a000000400100043d0000008004100039000000060500002900000000005404350000006004100039000000000034043500000040031000390000000000230435000000200210003900000cff0300004100000000003204350000008003000039001000000003001d000000000031043500000d000010009c00001e5b0000213d000000a003100039000000400030043f00000c7a0020009c00000c7a020080410000004002200210000000000101043300000c7a0010009c00000c7a010080410000006001100210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000400200043d00000022032000390000000f04000029000000000043043500000d010300004100000000003204350000000203200039000000000013043500000c7a0020009c00000c7a020080410000004001200210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000121019f00000d02011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000f00000001001d00000011010000290000000001010433000000410010008c00000e1f0000c13d00000011010000290000004001100039000000000101043300000d030010009c00000e1f0000213d00000011020000290000006002200039000000000202043300000012030000290000000003030433000000400400043d0000006005400039000000000015043500000040014000390000000000310435000000f801200270000000200240003900000000001204350000000f010000290000000000140435000000000000043f00000c7a0040009c00000c7a040080410000004001400210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000d04011001c7000000010200003931e531db0000040f000000600310027000000c7a03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200440019000000e070000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b00000e030000c13d000000000005004b00000e140000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000024860000613d000000000100043d00000c7d00100198000000000100601900000e1f0000613d000000070110014f00000c7d001001980000251d0000613d000000400200043d000000440120003900000040030000390000000000310435000000200120003900000d0503000041000000000031043500000024032000390000000f04000029000000000043043500000011030000290000000003030433000000640420003900000000003404350000008404200039000000000003004b00000e380000613d000000000500001900000000064500190000001207500029000000000707043300000000007604350000002005500039000000000035004b00000e310000413d000000000443001900000000000404350000001f0330003900000d6c0330019700000064043000390000000000420435000000a30330003900000d6c043001970000000003240019000000000043004b0000000004000039000000010400403900000cee0030009c00001e5b0000213d000000010040019000001e5b0000c13d000000400030043f000000000302043300000000020004140000000704000029000000040040008c000024920000c13d00000001020000390000000103000031000024a40000013d0000000001000416000000000001004b00001c110000c13d00000d2d01000041000000800010043f00000cf201000041000031e60001042e000001840030008c00001c110000413d0000010401500370000000000101043b001300000001001d00000c7a0010009c00001c110000213d0000012401500370000000000101043b001200000001001d00000c7a0010009c00001c110000213d0000014401500370000000000101043b001100000001001d00000c7a0010009c00001c110000213d0000016401500370000000000101043b00000cee0010009c00001c110000213d00000000040300190000002302100039000000000032004b00001c110000813d0000000402100039000000000225034f000000000202043b001000000002001d00000cee0020009c00001c110000213d0000002402100039000f00000002001d0000001001200029000000000041004b00001c110000213d0000006501000039000000000101041a000000020010008c0000152f0000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000cf100100198000018fe0000c13d000000c00110027000000c7a01100197000e00000001001d31e528f40000040f0000086b03000039000000000203041a00000cdf02200197000000c00110021000000cde01100197000000000112019f000000000013041b31e5257f0000040f00000002020003670000000403200370000000000303043b0000000004010019000d00000001001d00000000013104360000002403200370000000000303043b00000000003104350000004401200370000000000101043b000000400340003900000000001304350000006401200370000000000101043b000000600340003900000000001304350000008401200370000000000101043b00000080034000390000000000130435000000a401200370000000000101043b000000a0034000390000000000130435000000c401200370000000000101043b000000c0034000390000000000130435000000e401200370000000000101043b000000e002400039000000000012043500000100014000390000000e02000029000000000021043500000120014000390000001302000029000000000021043500000140014000390000001202000029000000000021043500000160014000390000001102000029000000000021043500000000030000310000000f010000290000001002000029000019c70000013d000000640030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401e00370000000000101043b00000cee0010009c00001c110000213d0000000002030019000000000413004900000cf30040009c00001c110000213d000000640040008c00001c110000413d0000002403e00370000000000303043b001300000003001d00000c7a0030009c00001c110000213d0000004403e00370000000000303043b00000cee0030009c00001c110000213d0000002305300039000000000025004b00001c110000813d000000040530003900000000055e034f000000000505043b001000000005001d00000cee0050009c00001c110000213d000000240330003900000010050000290000000505500210000e00000003001d001200000005001d000f00000035001d0000000f0020006b00001c110000213d0000006503000039000000000503041a000000020050008c0000152f0000613d0000000205000039000000000053041b001100040010003d0000001101e00360000000000101043b000001830440008a00000d080310019700000d0805400197000000000653013f000000000053004b000000000300001900000d0803004041000000000041004b000000000400001900000d080400804100000d080060009c000000000304c019000000000003004b00001c110000c13d000000110110002931e525ed0000040f000d00000001001d0000008001100039000000000101043300000cf70010009c000021d80000813d31e52b030000040f0000000d0100002931e528ff0000040f000000400200043d000c00000002001d00000d120020009c00001e5b0000213d0000000d0500002900000020025000390000000002020433000001600350003900000000030304330000000c06000029000000c004600039000000400040043f0000002004600039000b00000004001d00000000001404350000000000560435000000110100002900000040041000390000000201000367000000000441034f000000000404043b0000008005600039000800000005001d00000000003504350000006003600039000900000003001d00000000002304350000004002600039000d00000002001d0000000000420435000000a002600039000a00000002001d000000000002043500000012020000290000003f0220003900000d0702200197000000400300043d0000000002230019001200000003001d000000000032004b0000000003000039000000010300403900000cee0020009c00001e5b0000213d000000010030019000001e5b0000c13d000000400020043f000000120200002900000010040000290000000002420436001100000002001d0000000f02000029000000000020007c00001c110000213d000000100000006b0000000e040000290000000f0500002900000f500000613d0000001202000029000000000341034f000000000303043b000000200220003900000000003204350000002004400039000000000054004b00000f490000413d000000400100043d001000000001001d00000d3c0010009c00001e5b0000213d0000000d010000290000000001010433000e00000001001d0000000c01000029000000000101043300000010030000290000006002300039000000400020043f0000000001130436000f00000001001d00000cfb010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000100200002900000040032000390000000e0200002900000000002304350000000f0200002900000000001204350000086c01000039000000000201041a000000130020006c0000241d0000a13d000000000010043f000000130100002900000003011000c900000d230110009a000000000101041a000e00000001001d000000400100043d00000020021000390000002004000039000000000042043500000010040000290000000004040433000000400510003900000060060000390000000000650435000000a005100039000000007604043400000000006504350000000005070433000000c006100039000000000056043500000040054000390000000005050433000000e006100039000000000056043500000060054000390000000005050433000001000610003900000000005604350000008005400039000000000505043300000120061000390000000000560435000000a005400039000000000505043300000140061000390000000000560435000000c005400039000000000505043300000160061000390000000000560435000000e00540003900000000050504330000018006100039000000000056043500000100054000390000000005050433000001a00610003900000000005604350000012005400039000000000505043300000c7a05500197000001c00610003900000000005604350000014005400039000000000505043300000c7a05500197000001e0061000390000000000560435000001600440003900000000040404330000020005100039000001800600003900000000006504350000022006100039000000005404043400000000004604350000024006100039000000000004004b00000fc20000613d000000000700001900000000086700190000000009750019000000000909043300000000009804350000002007700039000000000047004b00000fbb0000413d000000000564001900000000000504350000000f050000290000000005050433000000600610003900000000005604350000000003030433000000800510003900000000003504350000001f0340003900000d6c03300197000002200430003900000000004104350000025f0330003900000d6c043001970000000003140019000000000043004b0000000004000039000000010400403900000cee0030009c00001e5b0000213d000000010040019000001e5b0000c13d000000400030043f00000c7a0020009c00000c7a020080410000004002200210000000000101043300000c7a0010009c00000c7a010080410000006001100210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b00000012020000290000000002020433000000000002004b0000100e0000613d0000000003000019001300000003001d000000050230021000000011022000290000000002020433000000000021004b00000ffc0000813d000000000010043f000000200020043f000000000100041400000fff0000013d000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b0000001303000029000000010330003900000012020000290000000002020433000000000023004b00000ff20000413d0000000e0010006c00001ca30000c13d0000000c010000290000000001010433001200000001001d0000012001100039001100000001001d0000000001010433001300000001001d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000130200002900000c7a02200197000000000012004b0000061d0000413d0000000b010000290000000001010433001300000001001d000000000010043f0000087201000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000000101041a000000020010008c00001f350000c13d000000400100043d00000d5a02000041000014ec0000013d000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b00001c110000c13d0000086902000039000000000202041a00000cd80220009a00000c7d022001970000000003000411000000000023004b000015390000c13d0000006502000039000000000302041a000000020030008c0000152f0000613d0000000203000039000000000032041b0000086b02000039000000000302041a00000d0d03300197000000000001004b000000000400001900000d0e0400c041000000000343019f000000000032041b000000800010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d0f011001c70000800d02000039000000010300003900000d1004000041000016410000013d000000240030008c00001c110000413d0000000002000416000000000002004b00001c110000c13d0000000402500370000000000a02043b00000cee00a0009c00001c110000213d00000000040300190000002302a00039000000000032004b00001c110000813d0000000402a00039000000000225034f000000000b02043b00000cee00b0009c00001c110000213d000000240ca000390000000503b002100000000002c30019000000000042004b00001c110000213d0000003f0230003900000d070420019700000cfa0040009c00001e5b0000213d0000008002400039000000400020043f0000008000b0043f00000000000b004b000017770000c13d00000020010000390000000003120436000000800100043d0000000000130435000000400320003900000005041002100000000008340019000000000001004b000017a60000c13d000000000128004900000c7a0010009c00000c7a01008041000000600110021000000c7a0020009c00000c7a020080410000004002200210000000000121019f000031e60001042e0000000001000416000000000001004b00001c110000c13d0000086a01000039000015660000013d000000440030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000002401500370000000000701043b0000000401500370000000000601043b0000086901000039000000000101041a00000cd80110009a00000c7d011001970000000002000411000000000012004b000015390000c13d0000006501000039000000000201041a000000020020008c0000152f0000613d0000000202000039000000000021041b0000086c02000039000000000102041a00000cee0010009c00001e5b0000213d0000000103100039000000000032041b000000000020043f00000003021000c900000d240320009a000000000063041b00000d230220009a000000000072041b000000000200041400000c7a0510019700000c7a0020009c00000c7a02008041000000c00120021000000ce3011001c70000800d02000039000000040300003900000d400400004131e531d60000040f000000010020019000001c110000613d000016440000013d0000000001000416000000000001004b00001c110000c13d00000c5b01000039000015660000013d0000000001000416000000000001004b00001c110000c13d0000000001000412001f00000001001d001e00600000003d0000800501000039000000440300003900000000040004150000001f0440008a000014fc0000013d000000640030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000002401500370000000000101043b00000cee0010009c00001c110000213d00000000040300190000002302100039000000000032004b00001c110000813d001200040010003d0000001202500360000000000202043b001300000002001d00000cee0020009c00001c110000213d0000002401100039001000000001001d001100130010002d000000110040006b00001c110000213d0000004401500370000000000101043b00000cee0010009c00001c110000213d0000002302100039000000000042004b00001c110000813d0000000402100039000000000225034f000000000202043b000f00000002001d00000cee0020009c00001c110000213d0000002401100039000e00000001001d0000000f01100029000000000041004b00001c110000213d00000cfb010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000201043b0000004001000039000000a00010043f0000001303000029000000e00030043f00000d6c043001980000001f0530018f00000100034000390000001201000029001200200010003d00000002010003670000001206100360000011260000613d0000010007000039000000000806034f000000008908043c0000000007970436000000000037004b000011220000c13d000000000005004b000011330000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000130400002900000100034000390000000000030435000000c00020043f0000001f0240003900000d6c022001970000009f0320003900000d6c033001970000006002200039000000800020043f00000cfa0030009c00001e5b0000213d0000008003300039000000400030043f0000000401100370000000000101043b000d00000001001d00000c7a0020009c00000c7a020080410000006001200210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000121019f00000cfc011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b0000000d0010006c00001b040000c13d0000001301000029000000200010008c00001c110000413d00000002010003670000001202100360000000000202043b00000cee0020009c00001c110000213d000000100d2000290000001102d0006900000cf30020009c00001c110000213d000001800020008c00001c110000413d000000400200043d00000d110020009c00001e5b0000213d0000018003200039000000400030043f0000000003d1034f000000000303043b00000000033204360000002004d00039000000000441034f000000000404043b00000000004304350000004004d00039000000000441034f000000000504043b000000400420003900000000005404350000006005d00039000000000551034f000000000605043b000000600520003900000000006504350000008006d00039000000000661034f000000000706043b00000080062000390000000000760435000000a007d00039000000000771034f000000000807043b000000a0072000390000000000870435000000c008d00039000000000881034f000000000908043b000000c0082000390000000000980435000000e009d00039000000000991034f000000000a09043b000000e0092000390000000000a90435000001000ad00039000000000ba1034f000001000a200039000000000b0b043b0000000000ba0435000001200cd00039000000000bc1034f000000000e0b043b00000c7a00e0009c00001c110000213d000001200b2000390000000000eb0435000000200ec00039000000000ce1034f000000000f0c043b00000c7a00f0009c00001c110000213d000001400c20003900130000000c001d0000000000fc0435000000200ee00039000000000ee1034f000000000e0e043b00000cee00e0009c00001c110000213d000000000fde00190000001f0df000390000001100d0006c00001c110000813d000000000df1034f000000000c0d043b00120000000c001d00000cee00c0009c00001e5b0000213d000000120c0000290000001f0dc0003900000d6c0dd001970000003f0dd0003900000d6c0dd00197000000400c00043d000000000edc001900100000000c001d0000000000ce004b000000000d000039000000010d00403900000cee00e0009c00001e5b0000213d0000000100d0019000001e5b0000c13d000000200df000390000004000e0043f000000120c000029000000100e000029000000000ece0436000d0000000e001d000000000edc00190000001100e0006c00001c110000213d000c000000d10353000000120d00002900000d6c0ed001980011001f00d00193000b0000000e001d0000000d0fe00029000011d30000613d0000000c0e00035f0000000d0d00002900000000ec0e043c000000000dcd04360000000000fd004b000011cf0000c13d000000110000006b000011e20000613d0000000b0d0000290000000c0cd0035f000000110d000029000000030dd00210000000000e0f0433000000000ede01cf000000000ede022f000000000c0c043b000001000dd00089000000000cdc022f000000000cdc01cf000000000cec019f0000000000cf04350000000d0d000029000000120cd0002900000000000c0435000001600f200039000000100c0000290000000000cf04350000000f0c0000290000002000c0008c00001c110000413d000000400d00043d00000d2700d0009c00001e5b0000213d000000200cd000390000004000c0043f0000000e01100360000000000e01043b0000000000ed0435000000400d00043d0000002001d0003900000d280c000041001100000001001d0000000000c10435000000240cd000390000006001000039001200000001001d00000000001c04350000000002020433000000840cd0003900000000002c04350000000002030433000000a403d0003900000000002304350000000002040433000000c403d0003900000000002304350000000002050433000000e403d00039000000000023043500000000020604330000010403d00039000000000023043500000000020704330000012403d00039000000000023043500000000020804330000014403d00039000000000023043500000000020904330000016403d00039000000000023043500000000020a04330000018403d00039000000000023043500000000020b043300000c7a02200197000001a403d0003900000000002304350000001301000029000000000201043300000c7a02200197000001c403d00039000000000023043500000000020f0433000001e403d00039000001800400003900000000004304350000020403d000390000000042020434000000000023043500000000030004110000022405d00039000000000002004b000012330000613d000000000600001900000000075600190000000008640019000000000808043300000000008704350000002006600039000000000026004b0000122c0000413d000000000452001900000000000404350000006404d0003900000000003404350000004403d000390000000000e304350000001f0220003900000d6c02200197000002040320003900000000003d0435000002430220003900000d6c032001970000000002d30019000000000032004b0000000003000039000000010300403900000cee0020009c00001e5b0000213d000000010030019000001e5b0000c13d000000400020043f00000000040d043300000000030004140000000002000410000000040020008c000020280000c13d000000010100003100000000020000190000203a0000013d0000000001000416000000000001004b00001c110000c13d0000800b0100003900000004030000390000000004000415000000200440008a000000050440021000000cef0200004131e531b80000040f000000800010043f00000cf201000041000031e60001042e0000000001000416000000000001004b00001c110000c13d0000086b01000039000000000101041a000000c001100270000014ff0000013d000000440030008c00001c110000413d0000000401700370000000000101043b001300000001001d00000c7d0010009c00001c110000213d0000002401700370000000000201043b00000cee0020009c00001c110000213d00000000040300190000002301200039000000000031004b00001c110000813d0000000403200039000000000137034f000000000101043b00000cee0010009c00001e5b0000213d0000001f0510003900000d6c055001970000003f0550003900000d6c0550019700000cfa0050009c00001e5b0000213d00000024022000390000008005500039000000400050043f000000800010043f0000000002210019000000000042004b00001c110000213d0000002002300039000000000327034f00000d6c041001980000001f0510018f000000a002400039000012910000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b0000128d0000c13d000000000005004b0000129e0000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a001100039000000000001043500000d17010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000c7d011001970000000002000410000000000012004b000004150000613d00000d3402000041000000000202041a00000c7d02200197000000000012004b000016490000c13d0000086901000039000000000101041a00000cd80110009a00000c7d011001970000000002000411000000000012004b00001afb0000c13d0000000001000415001100000001001d00000d3701000041000000000101041a000000ff0010019000001b070000c13d000000400200043d00000d3801000041001200000002001d000000000012043500000000010004140000001302000029000000040020008c00001b220000c13d0000000005000415000000190550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900001b500000013d000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b000000000010043f0000087201000039000000200010043f0000004002000039000000000100001931e531a30000040f000000000101041a000000800010043f00000cf201000041000031e60001042e000001040030008c00001c110000413d000000000b05034f0000000401500370000000000201043b00000c7d0020009c00001c110000213d00000000040300190000002401b00370000000000301043b00000c7d0030009c00001c110000213d0000008401b00370000000000601043b00000d2f0060019800000d3001000041000000000100601900000d3105600197000000000151019f000000000016004b00001c110000c13d000000a401b00370000000000701043b00000c7a0070009c00001c110000213d000000c401b00370000000000501043b00000cee0050009c00001c110000213d0000002301500039000000000041004b00001c110000813d000000040850003900000000018b034f000000000101043b00000d6b0010009c00001e5b0000813d0000001f0a10003900000d6c0aa001970000003f0aa0003900000d6c0aa0019700000cfa00a0009c00001e5b0000213d0000002405500039000000800aa000390000004000a0043f000000800010043f0000000005510019000000000045004b00001c110000213d0000002004800039000000000d0b034f00000000054b034f00000d6c081001980000001f0910018f000000a004800039000013250000613d000000a00a000039000000000b05034f00000000bc0b043c000000000aca043600000000004a004b000013210000c13d000000000009004b000013320000613d000000000585034f0000000308900210000000000904043300000000098901cf000000000989022f000000000505043b0000010008800089000000000585022f00000000058501cf000000000595019f0000000000540435000000a00110003900000000000104350000006501000039000000000101041a000000020010008c000018ed0000613d00000002010000390000006504000039000000000014041b0000086b01000039000000000101041a00000cf10010019800001a130000c13d0000004401d00370000000000401043b0000006401d00370000000000501043b0000000001000411000000800800003931e5299d0000040f000016440000013d000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000501043b0000086901000039000000000101041a00000cd80110009a00000c7d011001970000000002000411000000000012004b000015390000c13d0000006501000039000000000201041a000000020020008c0000152f0000613d0000000202000039000000000021041b0000086c01000039000000000201041a000000000052004b0000241d0000a13d000000000010043f00000003015000c900000d230210009a000000000002041b00000d240110009a000000000001041b000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000ce3011001c70000800d02000039000000020300003900000d2504000041000016410000013d000000440030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401d00370000000000101043b00000cee0010009c00001c110000213d00000000040300190000000402100039000000000923004900000cf30090009c00001c110000213d000001800090008c00001c110000413d00000000012d034f000000000101043b00000c7d0010009c00001c110000213d000000200520003900000000035d034f000000000303043b00000c7d0030009c00001c110000213d000000200650003900000000056d034f000000000505043b00000c7d0050009c00001c110000213d000000200660003900000000076d034f000000000707043b00000c7d0070009c00001c110000213d000000200660003900000000086d034f000000000a08043b00000c7d00a0009c00001c110000213d000000800860003900000000068d034f000000000606043b00000c7a0060009c00001c110000213d000000200b8000390000000008bd034f000000000808043b00000c7a0080009c00001c110000213d000000200cb00039000000000bcd034f000000000b0b043b00000c7a00b0009c00001c110000213d0012002000c0003d00130000000d0353000000120dd00360000000000d0d043b0000001f0990008a00000d080ed0019700000d080f900197000000000cfe013f0000000000fe004b000000000e00001900000d080e00404100000000009d004b000000000900001900000d080900804100000d0800c0009c000000000e09c01900000000000e004b000000130c00035f00001c110000c13d00000000092d001900000000029c034f000000000202043b00000cee0020009c00001c110000213d000000000c240049000000200d90003900000d0809c0019700000d080ed00197000000000f9e013f00000000009e004b000000130e00035f000000000900001900000d08090040410000000000cd004b000000000c00001900000d080c00204100000d0800f0009c00000000090cc019000000000009004b00001c110000c13d0000020009000039000000400090043f000000800010043f000000a00030043f000000c00050043f000000e00070043f0000010000a0043f0000001203000029000000c00130008a00000000011e034f000000000101043b000001200010043f000000a00130008a00000000011e034f000000800330008a00000000033e034f000000000101043b000001400010043f0000001f0120003900000d6c011001970000003f0110003900000d6c01100197000000000303043b000001600030043f000001800060043f000001a00080043f000001c000b0043f00000cf40010009c00001e5b0000213d0000020001100039000000400010043f000002000020043f0000000001d20019000000000041004b00001c110000213d0000000003de034f00000d6c042001980000001f0520018f0000022001400039000013fb0000613d0000022006000039000000000703034f000000007807043c0000000006860436000000000016004b000013f70000c13d000000000005004b000014080000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000031043500000220012000390000000000010435000001e00090043f000000130100035f0000002401100370000000000101043b001300000001001d0000006501000039000000000101041a000000020010008c000018ed0000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000cf50010019800001b1f0000c13d000001c00100043d001200000001001d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000120200002900000c7a02200197000000000101043b00000c7a01100197000000000012004b000014330000413d000000c00100043d00000c7d0010009c000021d80000213d0000000002000411000000000021004b00001bd50000c13d000000400400043d00000020024000390000004001000039001000000002001d00000000001204350000006001400039000000800200043d00000000002104350000008001400039000000a00200043d0000000000210435000000a001400039000000c00200043d0000000000210435000000c001400039000000e00200043d0000000000210435000000e001400039000001000200043d00000000002104350000010001400039000001200200043d00000000002104350000012001400039000001400200043d00000000002104350000014001400039000001600200043d00000000002104350000016001400039000001800200043d0000000000210435000001a00100043d00000c7a0110019700000180024000390000000000120435000001c00100043d00000c7a01100197000001a0024000390000000000120435000001c0014000390000018002000039000001e00300043d0000000000210435000001e00240003900000000160304340000000000620435001200000004001d0000020002400039000000000006004b0000146e0000613d000000000300001900000000042300190000000005310019000000000505043300000000005404350000002003300039000000000063004b000014670000413d001100000006001d0000000001260019000000000001043500000cfb010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000012040000290000004002400039000000000012043500000011010000290000001f0110003900000d6c01100197000001e00210003900000000002404350000021f0110003900000d6c021001970000000001420019000000000021004b0000000002000039000000010200403900000cee0010009c00001e5b0000213d000000010020019000001e5b0000c13d000000400010043f000000100100002900000c7a0010009c00000c7a0100804100000040011002100000001202000029000000000202043300000c7a0020009c00000c7a020080410000006002200210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000301034f000000400100043d00000d120010009c00001e5b0000213d000000000203043b000000c003100039000001400400043d000000a00500043d000001e00600043d000000400030043f000000a003100039000000130700002900000000007304350000008003100039000000000063043500000060031000390000000000530435000000400310003900000000004304350000002003100039000000000023043500000080020000390000000000210435000000000200041131e52b970000040f000016440000013d000000440030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000002401b00370000000000201043b0000000401b00370000000000101043b00000cf70010009c000015eb0000813d001200000002001d001300000001001d000000000010043f0000087301000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000000200041100000c7d02200197001100000002001d000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000000101041a000000000001004b000016570000c13d000000400100043d00000d0c02000041000000000021043500000c7a0010009c00000c7a01008041000000400110021000000ce8011001c7000031e7000104300000000001000416000000000001004b00001c110000c13d0000000001000412001700000001001d001600400000003d000080050100003900000044030000390000000004000415000000170440008a000000050440021000000d170200004131e531b80000040f00000c7a01100197000000800010043f00000cf201000041000031e60001042e000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401700370000000000101043b001300000001001d00000c7d0010009c00001c110000213d0000086901000039000000000101041a00000cd80110009a00000c7d011001970000000002000411000000000012004b000015390000c13d31e529850000040f000000130100002931e530470000040f000016440000013d000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b00001c110000c13d0000086902000039000000000202041a00000cd80220009a00000c7d022001970000000003000411000000000023004b000015390000c13d0000006502000039000000000302041a000000020030008c0000162e0000c13d00000c8001000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f00000d5c01000041000000c40010043f00000d4e01000041000031e70001043000000c8001000041000000800010043f0000002001000039000000840010043f0000001801000039000000a40010043f00000d3501000041000000c40010043f00000d4e01000041000031e700010430000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b0000086c02000039000000000202041a000000000021004b00001c110000813d31e526810000040f000000000201041a0000000101100039000000000101041a000000400300043d00000020043000390000000000140435000000000023043500000c7a0030009c00000c7a03008041000000400130021000000ced011001c7000031e60001042e0000000001000416000000000001004b00001c110000c13d00000cfd01000041000000800010043f00000cf201000041000031e60001042e0000000001000416000000000001004b00001c110000c13d00000c5a01000039000000000101041a00000c7d01100197000000800010043f00000cf201000041000031e60001042e000001840030008c00001c110000413d0000000401500370000000000101043b001300000001001d00000c7d0010009c00001c110000213d0000002401500370000000000101043b001200000001001d00000c7d0010009c00001c110000213d0000004401500370000000000101043b001100000001001d00000c7d0010009c00001c110000213d0000006401500370000000000101043b001000000001001d00000c7d0010009c00001c110000213d000000e401500370000000000101043b000f00000001001d00000c7d0010009c00001c110000213d0000010401500370000000000101043b000e00000001001d00000c7a0010009c00001c110000213d0000012401500370000000000101043b000d00000001001d00000c7a0010009c00001c110000213d0000014401500370000000000101043b000c00000001001d00000c7a0010009c00001c110000213d0000016401500370000000000101043b00000cee0010009c00001c110000213d0000000002030019000000040110003931e525d30000040f0000000203000367000000c404300370000000000704043b000000a404300370000000000604043b0000008403300370000000000503043b000000000c010019000000000d02001900000013010000290000001202000029000000110300002900000010040000290000000f080000290000000e090000290000000d0a0000290000000c0b00002931e5268f0000040f0000000001000019000031e60001042e000000840030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b001300000001001d00000c7a0010009c00001c110000213d0000002401500370000000000101043b001200000001001d00000c7d0010009c00001c110000213d0000004401500370000000000101043b001100000001001d00000c7d0010009c00001c110000213d0000006401500370000000000101043b001000000001001d00000c7d0010009c00001c110000213d0000000001000415000000150110008a000f000500100218000000000200041a000eff00002001940000169f0000c13d0000000001000415000000140110008a000f000500100218000000ff002001900000169f0000c13d00000d6d0120019700000001021001bf00000d6e0120019700000100021001bf000f00000000001d000000000020041b00000c5a01000039000000000301041a00000cdd033001970000800a033001bf000000000031041b000000400100043d0000ff0000200190000017da0000c13d000000640210003900000cea030000410000000000320435000000440210003900000ceb03000041000000000032043500000024021000390000002b0300003900000a1f0000013d000000800200003900000cf801000041000000000012043500000c7a0020009c00000c7a02008041000000400120021000000ce8011001c7000031e700010430000000640130003900000d32040000410000000000410435000000440130003900000d3304000041000000000041043500000024013000390000003804000039000000000041043500000c8001000041000000000013043500000004013000390000002003000039000000000031043500000c81012001c7000031e70001043000000d3402000041000000000202041a00000c7d02200197000000000012004b000016490000c13d000000400300043d0000086901000039000000000101041a00000cd80110009a00000c7d011001970000000002000411000000000012004b000016bf0000c13d001200000003001d00000d270030009c00001e5b0000213d00000012010000290000002002100039000f00000002001d000000400020043f00000000000104350000000001000415001000000001001d00000d3701000041000000000101041a000000ff00100190000018cc0000c13d000000400200043d00000d3801000041001100000002001d000000000012043500000000010004140000001302000029000000040020008c000019020000c13d00000000050004150000001b0550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000019300000013d0000000203000039000000000032041b0000086b02000039000000000302041a00000d2a03300197000000000001004b000000000400001900000d2b0400c041000000000343019f000000000032041b000000800010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d0f011001c70000800d02000039000000010300003900000d2c0400004131e531d60000040f000000010020019000001c110000613d00000001010000390000006502000039000000000012041b0000000001000019000031e60001042e000000400100043d000000640210003900000d42030000410000000000320435000000440210003900000d4303000041000000000032043500000024021000390000002c0300003900000a1f0000013d00000d4801000041000000800010043f00000cf901000041000031e700010430001000000001001d0000001301000029000000000010043f0000087301000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b0000001102000029000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000000001041b000000400200043d000000120100002900000c7d0010009c000015ec0000213d000000200120003900000d0a0300004100000000003104350000004401200039000000100300002900000000003104350000002401200039000000120300002900000000003104350000004401000039000000000012043500000cfa0020009c00001e5b0000213d0000008001200039000000400010043f000000130100002931e530960000040f000000400100043d0000001002000029000000000021043500000c7a0010009c00000c7a010080410000004001100210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000c82011001c70000800d02000039000000040300003900000d0b0400004100000013050000290000001206000029000000000700041131e531d60000040f000000010020019000001c110000613d000000870000013d000d00000002001d00000cd901000041000000000010044300000000010004100000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b000017cd0000c13d0000000d01000029000000ff0110018f000000010010008c0000000f010000290000000501100270000000000100003f000000010100603f000017d00000c13d000000000200041a00000d6d0120019700000001021001bf0000000e0000006b000015d60000613d000f00010000003d000015d90000013d000000440130003900000d3502000041000000000021043500000024013000390000001802000039000000000021043500000c8001000041000000000013043500000004013000390000002002000039000000000021043500000c7a0030009c00000c7a03008041000000400130021000000d36011001c7000031e700010430000000600f0000390000000002000019000000a0052000390000000000f504350000002002200039000000000032004b000016d10000413d000000200c00008a0000000005000019000f0000000d001d000000110340006a001300000005001d00120005005002180000001202d0002900000000022b034f000000000202043b000000430330008a00000d080530019700000d0806200197000000000756013f000000000056004b000000000500001900000d0805004041000000000032004b000000000300001900000d080300804100000d080070009c000000000503c019000000000005004b00001c110000c13d000000000e0400190000000003d2001900000000023b034f000000000402043b00000cee0040009c00001c110000213d00000000054e0049000000200330003900000d080650019700000d0807300197000000000867013f000000000067004b000000000600001900000d0806004041000000000053004b000000000500001900000d080500204100000d080080009c000000000605c019000000000006004b00001c110000c13d00000000063b034f0000000007c40170000000400300043d00000000057300190000170d0000613d000000000806034f0000000009030019000000008a08043c0000000009a90436000000000059004b000017090000c13d0000001f084001900000171a0000613d000000000676034f0000000307800210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f00000000006504350000000005430019000000000005043500000000050004140000000002000410000000040020008c000017270000c13d0000000105000031000000010200003900000000040e0019000000000005004b00000000030f0019000017400000c13d000017660000013d00000c7a0040009c00000c7a04008041000000600140021000000c7a0030009c00000c7a030080410000004003300210000000000113019f00000c7a0050009c00000c7a05008041000000c003500210000000000113019f31e531e00000040f000000600f0000390000000f0d000029000000200c00008a0000000004000031000000020b000367000000010220018f0003000000010355000000600310027000010c7a0030019d00000c7a05300197000000000005004b00000000030f0019000017660000613d00000cee0050009c00001e5b0000213d0000001f035000390000000003c3016f0000003f033000390000000006c3016f000000400300043d0000000006630019000000000036004b0000000007000039000000010700403900000cee0060009c00001e5b0000213d000000010070019000001e5b0000c13d000000400060043f00000000085304360000000007c501700000000006780019000017590000613d000000000901034f000000009a09043c0000000008a80436000000000068004b000017550000c13d0000001f05500190000017660000613d000000000771034f0000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000000000002004b000019ce0000613d000000800200043d0000001305000029000000000052004b0000241d0000a13d0000001202000029000000a0022000390000000000320435000000800200043d000000000052004b0000241d0000a13d0000000105500039000000100050006c000016d90000413d000000400200043d0000064f0000013d00000d120040009c00001e5b0000213d000000600d00003900000000040000190000004005200039000000400050043f00000020052000390000000000d504350000000000020435000000a00540003900000000002504350000002004400039000000000034004b000018290000813d000000400200043d00000ce00020009c0000177b0000a13d00001e5b0000013d00000080040000390000000006000019000017940000013d0000001f0980003900000d6c099001970000000008780019000000000008043500000000077900190000000106600039000000000016004b000006580000813d0000000008270049000000400880008a00000000038304360000002004400039000000000804043300000000980804340000000007870436000000000008004b0000178c0000613d000000000a000019000000000b7a0019000000000ca90019000000000c0c04330000000000cb0435000000200aa0003900000000008a004b0000179e0000413d0000178c0000013d000000800400003900000040050000390000000007000019000017b20000013d0000001f0a90003900000d6c0aa001970000000009890019000000000009043500000000088a00190000000107700039000000000017004b000010910000813d0000000009280049000000400990008a00000000039304360000002004400039000000000904043300000000a9090434000000000009004b0000000009000039000000010900c0390000000009980436000000000a0a04330000000000590435000000400b80003900000000a90a043400000000009b04350000006008800039000000000009004b000017aa0000613d000000000b000019000000000c8b0019000000000dba0019000000000d0d04330000000000dc0435000000200bb0003900000000009b004b000017c50000413d000017aa0000013d0000000f010000290000000501100270000000000100003f000000400100043d000000640210003900000cdb030000410000000000320435000000440210003900000cdc03000041000000000032043500000024021000390000002e0300003900000a1f0000013d0000001302000029000000c00220021000000cde022001970000086b03000039000000000403041a00000cdf04400197000000000224019f000000000023041b00000ce00010009c00001e5b0000213d0000004002100039000000400020043f0000000902000039000000000221043600000ce1030000410000000000320435000000400300043d001300000003001d00000ce00030009c00001e5b0000213d00000013040000290000004003400039000000400030043f0000000503000039000000000434043600000ce203000041000e00000004001d000000000034043500000c7a0020009c00000c7a020080410000004002200210000000000101043300000c7a0010009c00000c7a010080410000006001100210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d0000000e0200002900000c7a0020009c00000c7a0200804100000040022002100000001303000029000000000303043300000c7a0030009c00000c7a030080410000006003300210000000000223019f000000000101043b001300000001001d000000000100041400000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b0000047f020000390000001303000029000000000032041b0000048002000039000000000012041b000000000100041a0000ff000010019000001bb70000c13d000000400100043d000015e20000013d000000200e00008a000000000f000410000000000300001900110000000a001d00100000000b001d000f0000000c001d000018380000013d000000010220018f000000120300002900000000022304360000000000420435000000130300002900000001033000390000000000b3004b00001b020000813d000000800200043d000000000032004b0000241d0000a13d001300000003001d00000005023002100000000004c200190000000203000367000000000443034f000000000504043b00000000040000310000000006a40049000000430660008a00000d080760019700000d0808500197000000000978013f000000000078004b000000000700001900000d0807004041000000000065004b000000000600001900000d080600804100000d080090009c000000000706c019000000000007004b00001c110000c13d000000a0022000390000000002020433001200000002001d0000000005c50019000000000253034f000000000202043b00000cee0020009c00001c110000213d0000000006240049000000200450003900000d080560019700000d0807400197000000000857013f000000000057004b000000000500001900000d0805004041000000000064004b000000000600001900000d080600204100000d080080009c000000000506c019000000000005004b00001c110000c13d000000000543034f0000000006e20170000000400300043d0000000004630019000018730000613d000000000705034f0000000008030019000000007907043c0000000008980436000000000048004b0000186f0000c13d0000001f07200190000018800000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000004230019000000000004043500000000040004140000000400f0008c0000188b0000c13d00000001030000310000000102000039000000000003004b00000000040d0019000018a50000c13d000018300000013d00000c7a0020009c00000c7a02008041000000600120021000000c7a0030009c00000c7a030080410000004002300210000000000112019f00000c7a0040009c00000c7a04008041000000c002400210000000000112019f00000000020f001931e531e00000040f000000000f000410000000200e00008a000000600d0000390000000f0c000029000000100b000029000000110a0000290003000000010355000000600310027000010c7a0030019d00000c7a03300197000000000003004b00000000040d0019000018300000613d00000cee0030009c00001e5b0000213d0000001f043000390000000004e4016f0000003f044000390000000005e4016f000000400400043d0000000005540019000000000045004b0000000006000039000000010600403900000cee0050009c00001e5b0000213d000000010060019000001e5b0000c13d000000400050043f00000000073404360000000006e301700000000005670019000018be0000613d000000000801034f000000008908043c0000000007970436000000000057004b000018ba0000c13d0000001f03300190000018300000613d000000000661034f0000000303300210000000000705043300000000073701cf000000000737022f000000000606043b0000010003300089000000000636022f00000000033601cf000000000373019f0000000000350435000018300000013d00000cd901000041000000000010044300000013010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001af00000c13d000000400100043d000000640210003900000d45030000410000000000320435000000440210003900000d4603000041000000000032043500000024021000390000002d0300003900000a1f0000013d000000400100043d00000d4902000041000014ec0000013d0000006501000039000000000101041a000000020010008c000019840000c13d000000400100043d000000440210003900000d5c03000041000000000032043500000024021000390000001f03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000d36011001c7000031e70001043000000d1401000041000000800010043f00000cf901000041000031e700010430000000110200002900000c7a0020009c00000c7a02008041000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000ce8011001c7000000130200002931e531db0000040f000000600310027000000c7a03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000011057000290000191c0000613d000000000801034f0000001109000029000000008a08043c0000000009a90436000000000059004b000019180000c13d000000000006004b000019290000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000000050004150000001a0550008a0000000505500210000000010020019000001b9b0000613d0000001f01400039000000600210018f0000001101200029000000000021004b0000000002000039000000010200403900000cee0010009c00001e5b0000213d000000010020019000001e5b0000c13d000000400010043f000000200030008c00001c110000413d000000110200002900000000020204330000000503500270000000000302001f00000d340020009c00001bab0000c13d00000cd901000041000000000010044300000013010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b000018dc0000613d00000d3401000041000000000201041a00000cdd022001970000001305000029000000000252019f000000000021041b000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000ce3011001c70000800d02000039000000020300003900000d3b0400004131e531d60000040f000000010020019000001c110000613d00000012010000290000000001010433000000000001004b00001af50000613d000000400100043d001100000001001d00000d3c0010009c00001e5b0000213d00000011030000290000006001300039000000400010043f000000400130003900000d3d020000410000000000210435000000200130003900000d3e020000410000000000210435000000270100003900000000001304350000001201000029000000000201043300000000010004140000001303000029000000040030008c00001c130000c13d0000000102000039000000010400003100001c260000013d00000cf801000041000000800010043f00000cf901000041000031e70001043000000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000cf10010019800001a130000c13d000000c00110027000000c7a01100197000e00000001001d31e528f40000040f0000086b03000039000000000203041a00000cdf02200197000000c00110021000000cde01100197000000000112019f000000000013041b31e5257f0000040f00000002020003670000000403200370000000000303043b0000000004010019000d00000001001d00000000013104360000002403200370000000000303043b00000000003104350000004401200370000000000101043b000000400340003900000000001304350000006401200370000000000101043b000000600340003900000000001304350000008401200370000000000101043b00000080034000390000000000130435000000a401200370000000000101043b000000a0034000390000000000130435000000c401200370000000000101043b000000c0034000390000000000130435000000e401200370000000000101043b000000e002400039000000000012043500000100014000390000000e02000029000000000021043500000120014000390000000f02000029000000000021043500000140014000390000001302000029000000000021043500000160014000390000001202000029000000000021043500000000030000310000001001000029000000110200002931e5258b0000040f0000000d0300002900000180023000390000000000120435000000000103001931e52e850000040f000016440000013d0000000001030433000000440010008c00001c110000413d0000000401300039000000000101043300000cf30010009c00001c110000213d000000200010008c00001c110000413d0000002402300039000000000302043300000cee0030009c00001c110000213d000000000421001900000000012300190000001f02100039000000000042004b000000000300001900000d080300804100000d080220019700000d0805400197000000000652013f000000000052004b000000000200001900000d080200404100000d080060009c000000000203c019000000000002004b00001c110000c13d000000003101043400000cee0010009c00001e5b0000213d0000001f021000390000000002c2016f0000003f022000390000000005c2016f000000400200043d0000000005520019000000000025004b0000000006000039000000010600403900000cee0050009c00001e5b0000213d000000010060019000001e5b0000c13d000000400050043f00000000051204360000000006310019000000000046004b00001c110000213d000000000001004b00001a0a0000613d000000000400001900000000065400190000000007340019000000000707043300000000007604350000002004400039000000000014004b00001a030000413d0000000001150019000000000001043500000c8001000041000000400300043d001300000003001d0000000000130435000000040130003931e528c80000040f00001ba10000013d000000400100043d00000d1402000041000014ec0000013d0000000002000031000000120100002931e525ed0000040f31e528ff0000040f000f00000001001d000000000010043f0000087201000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000000101041a000000000001004b00001bb40000c13d0000000f01000029000000000010043f0000087201000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b0000000102000039000000000021041b00000002020003670000001001200360000000000101043b001000000001001d00000c7a0010009c00001c110000213d0000001101200360000000000101043b000f00000001001d00000c7a0010009c00001c110000213d0000001101000029001100200010003d0000001101200360000000000101043b0000000003000031000000130430006a000000230440008a00000d080540019700000d0806100197000000000756013f000000000056004b000000000500001900000d0805004041000000000041004b000000000400001900000d080400804100000d080070009c000000000504c019000000000005004b00001c110000c13d0000001204100029000000000142034f000000000101043b00000cee0010009c00001c110000213d0000000005130049000000200640003900000d080450019700000d0807600197000000000847013f000000000047004b000000000400001900000d0804004041000000000056004b000000000500001900000d080500204100000d080080009c000000000405c019000000000004004b00001c110000c13d0000001f0410003900000d6c044001970000003f0440003900000d6c05400197000000400400043d0000000005540019000000000045004b0000000008000039000000010800403900000cee0050009c00001e5b0000213d000000010080019000001e5b0000c13d000000400050043f00000000051404360000000008610019000000000038004b00001c110000213d000000000662034f00000d6c071001980000001f0810018f000000000375001900001a8b0000613d000000000906034f000000000a050019000000009b09043c000000000aba043600000000003a004b00001a870000c13d000000000008004b00001a980000613d000000000676034f0000000307800210000000000803043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000630435000000000115001900000000000104350000000003040433000000000003004b000000000100001900001ab10000613d00000c7a0050009c00000c7a05008041000000400150021000000c7a0030009c00000c7a030080410000006002300210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d0000000202000367000000000101043b000000110b000029000000a003b0008a000000000332034f000000c004b0008a000000000442034f000000e005b0008a000000000752034f0000010005b0008a000000000852034f0000006005b0008a000000000652034f0000008005b0008a0000012009b0008a000001600ab0008a000001400bb0008a000000000bb2034f000000000aa2034f000000000992034f000000000252034f000000000502043b000000000606043b000000000208043b000000000707043b000000000404043b000000000303043b000000000809043b00000000090a043b000000000a0b043b000000400b00043d000001200cb0003900000000001c04350000010001b000390000000000a10435000000e001b000390000000000910435000000c001b000390000000000810435000000a001b000390000000f0800002900000000008104350000008001b00039000000100800002900000000008104350000006001b0003900000000003104350000004001b0003900000000004104350000002001b00039000000000071043500000000002b043500000c7a00b0009c00000c7a0b0080410000004001b00210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000d4b011001c70000800d02000039000000030300003900000d4c04000041000016410000013d00000d3401000041000000000201041a00000cdd0220019700000013022001af000000000021041b00000000010004150000001002000029000000000112004900000000010000020000000001000019000031e60001042e000000400100043d000000440210003900000d3503000041000000000032043500000024021000390000001803000039000018f30000013d000000400200043d000010880000013d000000400100043d00000d2602000041000014ec0000013d00000cd901000041000000000010044300000013010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b000018dc0000613d00000d3401000041000000000201041a00000cdd0220019700000013022001af000000000021041b0000000001000415000000110200002900001af70000013d000000400100043d00000d4802000041000014ec0000013d000000120200002900000c7a0020009c00000c7a02008041000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000ce8011001c7000000130200002931e531db0000040f000000600310027000000c7a03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000120570002900001b3c0000613d000000000801034f0000001209000029000000008a08043c0000000009a90436000000000059004b00001b380000c13d000000000006004b00001b490000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000180550008a0000000505500210000000010020019000001b9b0000613d0000001f01400039000000600210018f0000001201200029000000000021004b0000000002000039000000010200403900000cee0010009c00001e5b0000213d000000010020019000001e5b0000c13d000000400010043f000000200030008c00001c110000413d000000120200002900000000020204330000000503500270000000000302001f00000d340020009c00001bab0000c13d00000cd901000041000000000010044300000013010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b000018dc0000613d00000d3401000041000000000201041a00000cdd022001970000001305000029000000000252019f000000000021041b000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000ce3011001c70000800d02000039000000020300003900000d3b0400004131e531d60000040f000000010020019000001c110000613d000000400100043d001200000001001d00000d3c0010009c00001e5b0000213d00000012030000290000006001300039000000400010043f000000400130003900000d3d020000410000000000210435000000200130003900000d3e02000041000000000021043500000027010000390000000000130435000000800200043d00000000010004140000001303000029000000040030008c00001ca60000c13d0000000102000039000000010400003100001cb50000013d000000400200043d001300000002001d00000c80010000410000000000120435000000040120003931e52e780000040f0000001302000029000000000121004900000c7a0010009c00000c7a01008041000000600110021000000c7a0020009c00000c7a020080410000004002200210000000000121019f000031e700010430000000640210003900000d39030000410000000000320435000000440210003900000d3a0300004100000000003204350000002402100039000000290300003900000a1f0000013d000000400100043d00000d4a02000041000014ec0000013d00000001020000390000006501000039000000000021041b000000110000006b00001bbf0000c13d000000400100043d00000ce902000041000014ec0000013d0000086901000039000000000201041a00000cdd022001970000001105000029000000000252019f000000000021041b000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000ce3011001c70000800d02000039000000020300003900000ce40400004131e531d60000040f000000010020019000001c110000613d000000100000006b00001bd80000c13d000000400100043d00000ce702000041000014ec0000013d000000400100043d00000d4d02000041000014ec0000013d0000086a01000039000000000201041a00000cdd022001970000001005000029000000000252019f000000000021041b000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000ce3011001c70000800d02000039000000020300003900000ce50400004131e531d60000040f000000010020019000001c110000613d00000c5b01000039000000000201041a00000cdd032001970000001205000029000000000353019f000000000031041b000000000100041400000c7d0620019700000c7a0010009c00000c7a01008041000000c00110021000000ce3011001c70000800d02000039000000030300003900000ce60400004131e531d60000040f000000010020019000001c110000613d0000000f0000006b000000870000c13d000000000200041a00000d6e01200197000000000010041b000000400100043d0000000103000039000000000031043500000c7a0010009c00000c7a010080410000004001100210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000c82011001c70000800d0200003900000c830400004131e531d60000040f0000000100200190000000870000c13d0000000001000019000031e7000104300000000f0300002900000c7a0030009c00000c7a03008041000000400330021000000c7a0020009c00000c7a020080410000006002200210000000000232019f00000c7a0010009c00000c7a01008041000000c001100210000000000112019f000000130200002931e531e00000040f000000010220018f0003000000010355000000600110027000010c7a0010019d00000c7a04100197000000000004004b00001c360000c13d000000600100003900000080030000390000000001010433000000000002004b00001c8a0000c13d000000000001004b00001cc50000c13d000000400200043d001300000002001d00000c800100004100000000001204350000000401200039000000110200002900001a110000013d00000cee0040009c00001e5b0000213d0000001f0140003900000d6c011001970000003f0110003900000d6c03100197000000400100043d0000000003310019000000000013004b0000000006000039000000010600403900000cee0030009c00001e5b0000213d000000010060019000001e5b0000c13d000000400030043f000000000341043600000d6c054001980000001f0640018f0000000004530019000000030700036700001c520000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00001c4e0000c13d000000000006004b00001c2a0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500001c2a0000013d00000011010000290000000001010433000f00000001001d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d0000000f0200002900000c7a02200197000000000101043b000e00000001001d000f00000021005300001c870000413d00000d170100004100000000001004430000000001000412000000040010044300000040010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000c7a011001970000000f0010006b00001f170000a13d000000400100043d00000d2102000041000014ec0000013d000000000001004b00001af50000c13d00000cd901000041000000000010044300000013010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001af50000c13d000000400100043d000000440210003900000d4403000041000000000032043500000024021000390000001d03000039000018f30000013d000000400100043d00000d5f02000041000014ec0000013d00000c7a0020009c00000c7a02008041000000600220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000d3f011001c7000000130200002931e531e00000040f000000010220018f0003000000010355000000600110027000010c7a0010019d00000c7a04100197000000000004004b00001ccd0000c13d000000600100003900000080030000390000000001010433000000000002004b00001d7b0000c13d000000000001004b00001cc50000c13d000000400200043d001300000002001d00000c800100004100000000001204350000000401200039000000120200002900001a110000013d00000c7a0030009c00000c7a03008041000000400230021000000c7a0010009c00000c7a010080410000006001100210000000000121019f000031e70001043000000cee0040009c00001e5b0000213d0000001f0140003900000d6c011001970000003f0110003900000d6c03100197000000400100043d0000000003310019000000000013004b0000000005000039000000010500403900000cee0030009c00001e5b0000213d000000010050019000001e5b0000c13d000000400030043f000000000341043600000d6c054001980000001f0640018f0000000004530019000000030700036700001ce90000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00001ce50000c13d000000000006004b00001cb90000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500001cb90000013d00000009020000290000006002200039000000000202043300000007030000290000000003030433000000400400043d0000006005400039000000000015043500000040014000390000000000310435000000f8012002700000002002400039000000000012043500000003010000290000000000140435000000000000043f00000c7a0040009c00000c7a040080410000004001400210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000d04011001c7000000010200003931e531db0000040f000000600310027000000c7a03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200440019000001d200000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b00001d1c0000c13d000000000005004b00001d2d0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000001e610000613d000000000100043d00000c7d0010019800000000010060190000078d0000613d000000130110014f00000c7d0010019800001db00000613d0000078d0000013d00000009020000290000006002200039000000000202043300000007030000290000000003030433000000400400043d0000006005400039000000000015043500000040014000390000000000310435000000f8012002700000002002400039000000000012043500000003010000290000000000140435000000000000043f00000c7a0040009c00000c7a040080410000004001400210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000d04011001c7000000010200003931e531db0000040f000000600310027000000c7a03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200440019000001d620000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b00001d5e0000c13d000000000005004b00001d6f0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000001e6d0000613d000000000100043d00000c7d0010019800000000010060190000096d0000613d000000130110014f00000c7d0010019800001eba0000613d0000096d0000013d000000000001004b00001b1c0000c13d00000cd901000041000000000010044300000013010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001b1c0000c13d00001c9c0000013d00000c7a0010009c00000c7a01008041000000400110021000000c7a0030009c00000c7a030080410000006003300210000000000113019f00000c7a0020009c00000c7a02008041000000c002200210000000000121019f000000130200002931e531db0000040f000000010220018f0003000000010355000000600110027000010c7a0010019d00000c7a04100197000000000004004b00001e2f0000c13d00000060010000390000008003000039000000000002004b00001e2c0000613d0000000001010433000000200010008c00001e2c0000413d00000cf30010009c00001c110000213d000000200010008c00001c110000413d000000000103043300000d050010009c00001e2c0000c13d000000400100043d00000080021000390000000f03000029000000000032043500000040021000390000008003000039000000000032043500000020021000390000001003000029000000000032043500000011020000290000000000210435000000a003100039000000080430002900000002020003670000000e05200360000000080000006b00001dc80000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b00001dc40000c13d0000000b0000006b00001dd60000613d00000008055003600000000b060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000f0430002900000000000404350000000a033000290000000004130049000000600510003900000000004504350000000d0400002900000000034304360000000c042003600000000402300029000000040000006b00001de80000613d000000000504034f0000000006030019000000005705043c0000000006760436000000000026004b00001de40000c13d000000130500002900000c7d06500197000000060000006b00001df80000613d000000040440036000000006050000290000000305500210000000000702043300000000075701cf000000000757022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000474019f00000000004204350000000d0230002900000000000204350000000502100069000000000232001900000c7a0020009c00000c7a02008041000000600220021000000c7a0010009c00000c7a010080410000004001100210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c70000800d02000039000000030300003900000d0604000041000000120500002931e531d60000040f0000000100200190000000870000c13d00001c110000013d00000c7a0010009c00000c7a01008041000000400110021000000c7a0030009c00000c7a030080410000006003300210000000000113019f00000c7a0020009c00000c7a02008041000000c002200210000000000121019f000000130200002931e531db0000040f000000010220018f0003000000010355000000600110027000010c7a0010019d00000c7a04100197000000000004004b00001e590000c13d00000060010000390000008003000039000000000002004b00001e2c0000613d0000000001010433000000200010008c00001eb30000813d000000400100043d00000d2e02000041000014ec0000013d00000cee0040009c00001e5b0000213d0000001f0140003900000d6c011001970000003f0110003900000d6c03100197000000400100043d0000000003310019000000000013004b0000000005000039000000010500403900000cee0030009c00001e5b0000213d000000010050019000001e5b0000c13d000000400030043f000000000341043600000d6c054001980000001f0640018f0000000004530019000000030700036700001e4b0000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00001e470000c13d000000000006004b00001da40000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500001da40000013d00000cee0040009c00001e8b0000a13d00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e7000104300000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e680000c13d00001e780000013d0000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e740000c13d000000000005004b00001e850000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c7a0020009c00000c7a020080410000004002200210000000000112019f000031e7000104300000001f0140003900000d6c011001970000003f0110003900000d6c03100197000000400100043d0000000003310019000000000013004b0000000005000039000000010500403900000cee0030009c00001e5b0000213d000000010050019000001e5b0000c13d000000400030043f000000000341043600000d6c054001980000001f0640018f0000000004530019000000030700036700001ea50000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00001ea10000c13d000000000006004b00001e270000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500001e270000013d00000cf30010009c00001c110000213d000000200010008c00001c110000413d000000000103043300000d050010009c00001e2c0000c13d000000400100043d00000080021000390000000f03000029000000000032043500000040021000390000008003000039000000000032043500000020021000390000001103000029000000000032043500000010020000290000000000210435000000a003100039000000080430002900000002020003670000000e05200360000000080000006b00001ed20000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b00001ece0000c13d0000000b0000006b00001ee00000613d00000008055003600000000b060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000f0430002900000000000404350000000a033000290000000004130049000000600510003900000000004504350000000d0400002900000000034304360000000c042003600000000402300029000000040000006b00001ef20000613d000000000504034f0000000006030019000000005705043c0000000006760436000000000026004b00001eee0000c13d000000060000006b00001f000000613d000000040440036000000006050000290000000305500210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004204350000000d0230002900000000000204350000000502100069000000000232001900000c7a0020009c00000c7a02008041000000600220021000000c7a0010009c00000c7a010080410000004001100210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c70000800d02000039000000030300003900000d060400004100000012050000290000001306000029000016410000013d00000004010000290000000001010433000f00000001001d00000d170100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000c7a011001970000000e0010002a000009de0000413d0000000f0200002900000c7a022001970000000e01100029000000000012004b00001fe30000a13d000000400100043d00000d2002000041000014ec0000013d0000001301000029000000000010043f0000087201000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b0000000202000039000000000021041b000000120200002900000020012000390000000001010433000500000001001d0000000001020433000600000001001d00000040012000390000000001010433000700000001001d00000100012000390000000001010433000400000001001d000000e0012000390000000001010433000300000001001d0000000a010000290000000001010433000c00000001001d000000c0012000390000000001010433000e00000001001d000000a0012000390000000001010433000f00000001001d0000008001200039000200000001001d0000000001010433001000000001001d00000060012000390000000001010433000b00000001001d00000140012000390000000001010433000a00000001001d00000011010000290000000001010433001100000001001d000001600120003900000000010104330000000012010434000000000002004b001300000000001d00001f830000613d00000c7a0020009c00000c7a02008041000000600220021000000c7a0010009c00000c7a010080410000004001100210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b001300000001001d00000009010000290000000001010433001200000001001d000000080100002900000000010104330000000023010434000000000003004b000000000100001900001f9e0000613d00000c7a0030009c00000c7a03008041000000600130021000000c7a0020009c00000c7a020080410000004002200210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000400200043d00000cfa0020009c00001e5b0000213d0000000a0300002900000c7a05300197000000110300002900000c7a063001970000000d0300002900000000070304330000008003200039000000400030043f000000600320003900000002040000390000000000430435000000400420003900000000007404350000002007200039000000000017043500000012010000290000000000120435000000400100043d000001400810003900000013090000290000000000980435000001200810003900000005090000290000000000980435000001000810003900000006090000290000000000980435000000e00810003900000007090000290000000000980435000000c0081000390000000000580435000000a005100039000000000065043500000080051000390000000c06000029000000000065043500000060051000390000000e06000029000000000065043500000040051000390000000f0600002900000000006504350000002005100039000000100600002900000000006504350000000b0500002900000000005104350000000002020433000001600510003900000000002504350000000002070433000001800510003900000000002504350000000002040433000001a00410003900000000002404350000000002030433000000030020008c0000213f0000413d00000d5901000041000000000010043f0000002101000039000000040010043f00000d5301000041000031e7000104300000000301000029000000000101043300000c7a01100198000f00000000001d0000204a0000613d00000d190010009c000020420000813d0000000e0200002900000c7a022001970000000001210019000f00000001001d00000c7a0010009c000009de0000213d000020430000013d000000400100043d00000d5e02000041000014ec0000013d00000d5401000041000000000010044300000000010004100000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c70000800a0200003931e531db0000040f0000000100200190000024850000613d000000000101043b000f00000001001d00000cd901000041000000000010044300000012010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001c110000613d000000400200043d00000d1c01000041000e00000002001d000000000012043500000000010004140000001202000029000000040020008c000021e60000613d0000000e0200002900000c7a0020009c00000c7a02008041000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f0000000f0000006b000021db0000c13d00000ce8011001c70000001202000029000021e00000013d000000110100002900000c7a0010009c00000c7a01008041000000400110021000000c7a0040009c00000c7a040080410000006004400210000000000114019f00000c7a0030009c00000c7a03008041000000c003300210000000000113019f31e531e00000040f000000010220015f0003000000010355000000600110027000010c7a0010019d00000c7a01100197000000000001004b000020990000c13d0000000100200190000000870000613d000000400200043d001300000002001d00000d290100004100001cc10000013d000f00000001001d00000002010000290000000001010433000000000001004b0000204a0000c13d000000400100043d00000d1a02000041000014ec0000013d00000013010000290000000001010433000e00000001001d00000d170100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000c7d011001970000000e0010006b000020c40000c13d0000000001000416000000000001004b000020c70000613d000000080100002900000000010104330000000002000416000000000012004b0000213c0000c13d00000cd90100004100000000001004430000000e010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001c110000613d000000400200043d00000d1c01000041000c00000002001d000000000012043500000000010004140000000e02000029000000040020008c000020930000613d0000000c0200002900000c7a0020009c00000c7a02008041000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000d1d011001c7000080090200003900000000030004160000000e04000029000000000500001931e531d60000040f000000600310027000010c7a0030019d000300000001035500000001002001900000227a0000613d0000000c0100002900000cee0010009c00001e5b0000213d0000000c01000029000000400010043f000020e40000013d00000cee0010009c00001e5b0000213d0000001f0310003900000d6c033001970000003f0330003900000d6c03300197000000400400043d0000000003340019001200000004001d000000000043004b0000000004000039000000010400403900000cee0030009c00001e5b0000213d000000010040019000001e5b0000c13d000000400030043f0000001203000029000000000613043600000d6c031001980000001f0410018f00000000013600190000000305000367000020b60000613d000000000705034f000000007807043c0000000006860436000000000016004b000020b20000c13d000000000004004b0000203c0000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003104350000203c0000013d0000000001000416000000000001004b0000213c0000c13d0000001301000029000000000101043300000c7d0010009c000021d80000213d00000008020000290000000003020433000000400200043d000000200420003900000d1e05000041000000000054043500000064042000390000000000340435000000000300041000000c7d0330019700000044042000390000000000340435000000000300041100000c7d03300197000000240420003900000000003404350000006403000039000000000032043500000d000020009c00001e5b0000213d000000a003200039000000400030043f31e530960000040f000000400100043d000c00000001001d0000000501000029000000000701043300000001010000290000000006010433000000120100002900000000050104330000001001000029000000000101043300000009020000290000000002020433000000080300002900000000030304330000000704000029000000000404043300000011080000290000000008080433000000040900002900000000090904330000000d0a000029000000000a0a0433000000020b000029000000000b0b0433000000130c000029000000000c0c04330000000c0e0000290000000000ce0435000001200ce00039000001400d0000390000000000dc0435000001000ce000390000000000bc0435000000e00be000390000000000ab0435000000c00ae000390000000f0b0000290000000000ba043500000c7a09900197000000a00ae0003900000000009a043500000c7a088001970000008009e0003900000000008904350000006008e0003900000000004804350000004004e0003900000000003404350000002003e0003900000000002304350000014002e00039000000003101043400000000001204350000016002e00039000000000001004b000021220000613d000000000400001900000000082400190000000009430019000000000909043300000000009804350000002004400039000000000014004b0000211b0000413d0000001f0310003900000d6c0330019700000000012100190000000000010435000001600130003900000c7a0010009c00000c7a0100804100000060011002100000000c0200002900000c7a0020009c00000c7a020080410000004002200210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c70000800d02000039000000040300003900000d1f0400004131e531d60000040f000000010020019000001c110000613d000016440000013d000000400100043d00000d1b02000041000014ec0000013d000001c003100039000000000023043500000c7a0010009c00000c7a010080410000004001100210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000d50011001c70000800d02000039000000040300003900000d510400004100000003050000290000000406000029000000000700001931e531d60000040f000000010020019000001c110000613d00000002010000290000000001010433001200000001001d00000c7d0010009c000021d80000213d00000009010000290000000001010433001100000001001d00000c7d0010009c000021d80000213d0000000d010000290000000001010433001000000001001d00000d170100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000c7d01100197000000120010006b000021fc0000c13d00000cd901000041000000000010044300000011010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000d170200004100000000002004430000000002000412000000040020044300000020020000390000002400200443000000000001004b000022980000c13d000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000cd902000041000000000020044300000c7d01100197001300000001001d0000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001c110000613d000000400200043d00000d52010000410000000000120435000f00000002001d00000004012000390000001002000029000000000021043500000000010004140000001302000029000000040020008c000021bf0000613d0000000f0200002900000c7a0020009c00000c7a02008041000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000d53011001c7000000130200002931e531d60000040f000000600310027000010c7a0030019d00030000000103550000000100200190000024a80000613d0000000f0100002900000cee0010009c00001e5b0000213d0000000f01000029000000400010043f00000d5401000041000000000010044300000000010004100000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c70000800a0200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000100010006c000024b50000813d000000400100043d000000440210003900000d580300004100001c9f0000013d000000400100043d00000cf802000041000014ec0000013d00000d1d011001c700008009020000390000000f030000290000001204000029000000000500001931e531d60000040f0003000000010355000000600310027000010c7a0030019d0000000100200190000021ec0000613d0000000e0100002900000cee0010009c00001e5b0000213d0000000e01000029000000400010043f000002410000013d00000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021f40000c13d00001e780000013d000000400100043d00000d6202000041000014ec0000013d000000400200043d000000200120003900000d0a0300004100000000003104350000004401200039000000100300002900000000003104350000002401200039000000110300002900000000003104350000004401000039000000000012043500000cfa0020009c00001e5b0000213d0000008001200039000000400010043f000000120100002931e530960000040f00000008010000290000000001010433000f00000001001d0000000021010434001300000002001d000000000001004b000016440000613d00000cd901000041000000000010044300000011010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b000016440000613d00000cd901000041000000000010044300000011010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001c110000613d000000400300043d000000640130003900000080020000390000000000210435000000000100041100000c7d011001970000004402300039000000000012043500000024013000390000001002000029000000000021043500000d5701000041000000000013043500000004013000390000001202000029000000000021043500000084023000390000000f0100002900000000010104330000000000120435001200000003001d000000a402300039000000000001004b000022550000613d000000000300001900000000042300190000001305300029000000000505043300000000005404350000002003300039000000000013004b0000224e0000413d0000000002210019000000000002043500000000020004140000001103000029000000040030008c000022710000613d0000001f0110003900000d6c01100197000000a40110003900000c7a0010009c00000c7a010080410000006001100210000000120300002900000c7a0030009c00000c7a030080410000004003300210000000000131019f00000c7a0020009c00000c7a02008041000000c002200210000000000112019f000000110200002931e531d60000040f000000600310027000010c7a0030019d00030000000103550000000100200190000024bc0000613d000000120100002900000cee0010009c00001e5b0000213d0000001201000029000000400010043f000016440000013d000000400100043d00000d6302000041000014ec0000013d00000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000022820000c13d00001e780000013d000000400200043d00000d64010000410000000000120435000000000100041000000c7d01100197001200000002001d0000000402200039000000000012043500000000010004140000001002000029000000040020008c000023390000c13d0000000103000031000000200030008c00000020040000390000000004034019000023640000013d000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000400200043d000000200320003900000d0a0400004100000000004304350000004403200039000000100400002900000000004304350000002403200039000000110400002900000000004304350000004403000039000000000032043500000cfa0020009c00001e5b0000213d0000008003200039000000400030043f00000c7d011001970000220d0000013d00000d170100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000cd902000041000000000020044300000c7d01100197000000100010006b0000242f0000c13d00000010010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001c110000613d000000400200043d00000d52010000410000000000120435001200000002001d00000004012000390000000602000029000000000021043500000000010004140000001002000029000000040020008c000022f20000613d000000120200002900000c7a0020009c00000c7a02008041000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000d53011001c7000000100200002931e531d60000040f000000600310027000010c7a0030019d00030000000103550000000100200190000024c90000613d000000120100002900000cee0010009c00001e5b0000213d0000001201000029000000400010043f0000086a01000039000000000101041a001100000001001d00000c5a01000039000000000101041a00000cd902000041000000000020044300000c7d01100197001200000001001d0000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001c110000613d000000110100002900000c7d01100197000000400300043d00000d67020000410000000000230435001100000003001d0000000402300039000000000012043500000000010004140000001202000029000000040020008c000024650000613d000000110200002900000c7a0020009c00000c7a02008041000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000d68011001c7000080090200003900000006030000290000001204000029000000000500001931e531d60000040f000000600310027000010c7a0030019d00030000000103550000000100200190000024650000c13d00000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023340000c13d00001e780000013d000000120200002900000c7a0020009c00000c7a02008041000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000d53011001c7000000100200002931e531db0000040f000000600310027000000c7a03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000001205700029000023530000613d000000000801034f0000001209000029000000008a08043c0000000009a90436000000000059004b0000234f0000c13d000000000006004b000023600000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000024230000613d0000001f01400039000000600210018f0000001201200029000000000021004b0000000002000039000000010200403900000cee0010009c00001e5b0000213d000000010020019000001e5b0000c13d000000400010043f000000200030008c00001c110000413d00000012010000290000000001010433000800000001001d000700000000001d001200000000001d001100000000001d0000237d0000013d00000012020000290000000102200039001200000002001d0000000d0020006c000003090000813d0000000f010000290000000001010433000000120010006c0000241d0000a13d000000120100002900000005021002100000000c01200029000e00000001001d0000000001010433000000000001004b000023780000613d000000110010002a000009de0000413d0000001104100029001100000004001d000000080040006c000024d60000213d0000000b030000290000000003030433000000120030006c0000241d0000a13d0000000902200029000a00000002001d0000000003020433000000400200043d00000044042000390000000000140435000000200120003900000d0a04000041000000000041043500000c7d03300197000000240420003900000000003404350000004403000039000000000032043500000cfa0020009c00001e5b0000213d0000008003200039000000400030043f000000000302043300000000020004140000001004000029000000040040008c000023ad0000c13d0000000001010433000000000010043f0000000103000031000023d90000013d00000c7a0010009c00000c7a01008041000000400110021000000c7a0030009c00000c7a030080410000006003300210000000000113019f00000c7a0020009c00000c7a02008041000000c002200210000000000121019f000000100200002931e531d60000040f000000600310027000000c7a03300197000000200030008c000000200500003900000000050340190000002004500190000023c70000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000023c30000c13d0000001f05500190000023d40000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000023ee0000613d000000000100043d000000000003004b000023de0000613d000000010010008c000023780000613d000023ee0000013d00000cd901000041000000000010044300000010010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b000023780000c13d0000000f010000290000000001010433000000120010006c0000241d0000a13d0000000e010000290000000001010433000e00000001001d0000001001000029000000000010043f0000087301000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d0000000b020000290000000002020433000000120020006c0000241d0000a13d000000000101043b0000000a02000029000000000202043300000c7d02200197000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000000201041a0000000e0020002a000009de0000413d0000000e02200029000000000021041b000700010000003d000023780000013d00000d5901000041000000000010043f0000003201000039000000040010043f00000d5301000041000031e7000104300000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000242a0000c13d00001e780000013d0000086a01000039000000000101041a001100000001001d00000c5b01000039000000000101041a00000c7d01100197001200000001001d0000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001c110000613d000000110100002900000c7d01100197000000400400043d00000044024000390000000603000029000000000032043500000024024000390000001003000029000000000032043500000d66020000410000000000240435001100000004001d0000000402400039000000000012043500000000010004140000001202000029000000040020008c000024650000613d000000110200002900000c7a0020009c00000c7a02008041000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000d36011001c7000000120200002931e531d60000040f000000600310027000010c7a0030019d00030000000103550000000100200190000024d90000613d000000110100002900000cee0010009c00001e5b0000213d000000040100002900000c7a061001970000001103000029000000400030043f000000060100002900000000001304350000000001000411001200000001001d00000c7d011001970000002002300039000000000012043500000c7a0030009c00000c7a030080410000004001300210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000d09011001c70000800d02000039000000040300003900000d69040000410000000505000029000000100700002931e531d60000040f000000010020019000001c110000613d0000030d0000013d000000000001042f0000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000248d0000c13d00001e780000013d00000c7a0010009c00000c7a01008041000000400110021000000c7a0030009c00000c7a030080410000006003300210000000000113019f00000c7a0020009c00000c7a02008041000000c002200210000000000121019f000000070200002931e531db0000040f000000010220018f0003000000010355000000600110027000010c7a0010019d00000c7a03100197000000000003004b000024e60000c13d0000006001000039000025100000013d00000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000024b00000c13d00001e780000013d00000000010004140000001102000029000000040020008c000025210000c13d00000001020000390000000101000031000025320000013d00000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000024c40000c13d00001e780000013d00000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000024d10000c13d00001e780000013d000000400100043d00000d6502000041000014ec0000013d00000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000024e10000c13d00001e780000013d00000cee0030009c00001e5b0000213d0000001f0130003900000d6c011001970000003f0110003900000d6c04100197000000400100043d0000000004410019000000000014004b0000000005000039000000010500403900000cee0040009c00001e5b0000213d000000010050019000001e5b0000c13d000000400040043f000000000631043600000d6c043001980000001f0530018f001000000006001d00000000034600190000000306000367000025030000613d000000000706034f0000001008000029000000007907043c0000000008980436000000000038004b000024ff0000c13d000000000005004b000025100000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000000002004b00001e2c0000613d0000000001010433000000200010008c00001e2c0000413d00000cf30010009c00001c110000213d000000200010008c00001c110000413d0000001001000029000000000101043300000d050010009c00001e2c0000c13d00000013010000290000000b0200002931e52b970000040f000016440000013d00000c7a0010009c00000c7a01008041000000c001100210000000100000006b000025280000c13d00000011020000290000252d0000013d00000ce3011001c7000080090200003900000010030000290000001104000029000000000500001931e531d60000040f0003000000010355000000600110027000010c7a0010019d00000c7a01100197000000000001004b0000255c0000613d00000cee0010009c00001e5b0000213d0000001f0310003900000d6c033001970000003f0330003900000d6c04300197000000400300043d0000000004430019000000000034004b0000000005000039000000010500403900000cee0040009c00001e5b0000213d000000010050019000001e5b0000c13d000000400040043f000000000613043600000d6c031001980000001f0410018f000000000136001900000003050003670000254f0000613d000000000705034f000000007807043c0000000006860436000000000016004b0000254b0000c13d000000000004004b0000255c0000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000031043500000001002001900000220e0000c13d000000400100043d000000640210003900000d55030000410000000000320435000000440210003900000d5603000041000000000032043500000024021000390000003a0300003900000a1f0000013d00000d6f0010009c0000256d0000813d0000004001100039000000400010043f000000000001042d00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e700010430000000400100043d00000d700010009c000025790000813d000000c002100039000000400020043f000000000001042d00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e700010430000000400100043d00000d710010009c000025850000813d000001a002100039000000400020043f000000000001042d00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e70001043000000d6b0020009c000025bb0000813d00000000040100190000001f0120003900000d6c011001970000003f0110003900000d6c05100197000000400100043d0000000005510019000000000015004b0000000007000039000000010700403900000cee0050009c000025bb0000213d0000000100700190000025bb0000c13d000000400050043f00000000052104360000000007420019000000000037004b000025c10000213d00000d6c062001980000001f0720018f00000002044003670000000003650019000025ab0000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b000025a70000c13d000000000007004b000025b80000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e7000104300000000001000019000031e70001043000000c7d02200197000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f0000000100200190000025d10000613d000000000101043b000000000001042d0000000001000019000031e7000104300000001f03100039000000000023004b000000000400001900000d080400404100000d080520019700000d0803300197000000000653013f000000000053004b000000000300001900000d080300204100000d080060009c000000000304c019000000000003004b000025eb0000613d0000000203100367000000000303043b00000cee0030009c000025eb0000213d00000020011000390000000004310019000000000024004b000025eb0000213d0000000002030019000000000001042d0000000001000019000031e7000104300000000003010019000000000112004900000cf30010009c000026790000213d0000017f0010008c000026790000a13d000000400100043d00000d720010009c0000267b0000813d0000018004100039000000400040043f0000000204000367000000000534034f000000000505043b00000000055104360000002006300039000000000664034f000000000606043b00000000006504350000004005300039000000000554034f000000000505043b000000400610003900000000005604350000006005300039000000000554034f000000000505043b000000600610003900000000005604350000008005300039000000000554034f000000000505043b00000080061000390000000000560435000000a005300039000000000554034f000000000505043b000000a0061000390000000000560435000000c005300039000000000554034f000000000505043b000000c0061000390000000000560435000000e005300039000000000554034f000000000505043b000000e00610003900000000005604350000010005300039000000000554034f0000010006100039000000000505043b00000000005604350000012005300039000000000654034f000000000606043b00000c7a0060009c000026790000213d000001200710003900000000006704350000002005500039000000000654034f000000000606043b00000c7a0060009c000026790000213d000001400710003900000000006704350000002005500039000000000554034f000000000505043b00000cee0050009c000026790000213d00000000063500190000001f03600039000000000023004b000000000500001900000d080500804100000d080330019700000d0807200197000000000873013f000000000073004b000000000300001900000d080300404100000d080080009c000000000305c019000000000003004b000026790000c13d000000000364034f000000000303043b00000cee0030009c0000267b0000213d0000001f0530003900000d6c055001970000003f0550003900000d6c08500197000000400500043d0000000008850019000000000058004b0000000009000039000000010900403900000cee0080009c0000267b0000213d00000001009001900000267b0000c13d0000002009600039000000400080043f00000000063504360000000008930019000000000028004b000026790000213d000000000494034f00000d6c073001980000001f0830018f0000000002760019000026670000613d000000000904034f000000000a060019000000009b09043c000000000aba043600000000002a004b000026630000c13d000000000008004b000026740000613d000000000474034f0000000307800210000000000802043300000000087801cf000000000878022f000000000404043b0000010007700089000000000474022f00000000047401cf000000000484019f00000000004204350000000002360019000000000002043500000160021000390000000000520435000000000001042d0000000001000019000031e70001043000000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e7000104300000086c02000039000000000302041a000000000013004b000026890000a13d000000000020043f00000003011000c900000d230110009a000000000001042d00000d5901000041000000000010043f0000003201000039000000040010043f00000d5301000041000031e700010430000f000000000002000800000002001d000000650e00003900000000020e041a000000020020008c0000285d0000613d00070000000c001d000000020200003900000000002e041b0000086b0c000039000000000f0c041a00000cf100f001980000286e0000c13d000000c00ef0027000000c7a0ee0019700000c7a00e0009c000028570000613d00000cdf0ff00197000000c002e0021000000d730220009a00000cde022001970000000002f2019f00000000002c041b000000400200043d000e00000002001d00000d710020009c0000284b0000813d0000000e0c000029000001a002c00039000000400020043f00000c7a02b00197000001600bc0003900000000002b043500000c7a02a00197000001400ac00039000b0000000a001d00000000002a043500000c7a029001970000012009c00039000c00000009001d00000000002904350000010002c00039000600000002001d0000000000e2043500000c7d02800197000000e008c00039000900000008001d0000000000280435000000c002c00039000d00000002001d0000000000720435000000a002c00039000500000002001d00000000006204350000008002c00039000a00000002001d000000000052043500000c7d024001970000006004c00039000400000004001d000000000024043500000c7d023001970000004003c00039000f00000003001d000000000023043500000c7d0110019700000000021c0436000000080100002900000c7d01100197000300000002001d000000000012043500000cee00d0009c0000284b0000213d0000001f01d0003900000d6c011001970000003f0110003900000d6c02100197000000400100043d0000000002210019000000000012004b0000000003000039000000010300403900000cee0020009c0000284b0000213d00000001003001900000284b0000c13d00080000000b001d000000400020043f0000000002d10436000000070600002900000000046d0019000000000040007c000028490000213d00000d6c04d001980000001f05d0018f00000002066003670000000003420019000026f70000613d000000000706034f0000000008020019000000007907043c0000000008980436000000000038004b000026f30000c13d000000000005004b000027040000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000002d2001900000000000204350000000e020000290000018003200039000100000003001d0000000000130435000000000102043300000cf70010009c000028510000813d0000000f01000029000000000101043300000c7d0010009c000028510000213d000000000010043f0000086d01000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f0000000100200190000028490000613d000000000101043b0000000d020000290000000002020433000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f0000000100200190000028490000613d000000000101043b000000000101041a000000ff00100190000028710000613d0000000c010000290000000001010433000700000001001d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000028480000613d000000070200002900000c7a02200197000000000101043b000200000001001d0007000000210053000028540000413d00000d170100004100000000001004430000000001000412000000040010044300000040010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000028480000613d000000000101043b00000c7a01100197000000070010006b000028540000213d0000000b010000290000000001010433000700000001001d00000d170100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000028480000613d000000000101043b00000c7a011001970000000203000029000000000031001a000028570000413d000000070200002900000c7a022001970000000001310019000000000012004b0000000801000029000028740000213d000000000101043300000c7a02100198000027840000613d00000d190020009c0000277c0000813d00000c7a01300197000000000212001900000c7a0020009c000028570000213d000700000002001d00000009010000290000000001010433000000000001004b000027850000c13d000000400100043d00000d1a02000041000028790000013d000700000000001d0000000f010000290000000001010433000800000001001d00000d170100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000028480000613d0000000002000416000000000101043b00000c7d011001970000000803000029000000000013004b000027d10000c13d000000000002004b000027d30000613d0000000a010000290000000001010433000000000012004b000028770000c13d00000cd90100004100000000001004430000000400300443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000028480000613d0000000804000029000000000101043b000000000001004b000028490000613d000000400e00043d00000d1c0100004100000000001e04350000000001000414000000040040008c000027cd0000613d00000c7a00e0009c00000c7a0200004100000000020e4019000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000d1d011001c700008009020000390000000003000416000000000500001900080000000e001d31e531d60000040f000000080e000029000000600310027000010c7a0030019d000300000001035500000001002001900000287f0000613d00000cee00e0009c0000284b0000213d0000004000e0043f000027ef0000013d000000000002004b000028770000c13d0000000f01000029000000000101043300000c7d0010009c000028510000213d0000000a020000290000000003020433000000400200043d000000200420003900000d1e05000041000000000054043500000064042000390000000000340435000000000300041000000c7d0330019700000044042000390000000000340435000000000300041100000c7d03300197000000240420003900000000003404350000006403000039000000000032043500000d000020009c0000284b0000213d000000a003200039000000400030043f31e530960000040f000000400e00043d0000000602000029000000050400002900000004030000290000000e01000029000000000701043300000000060204330000000d0100002900000000050104330000000101000029000000000101043300000000020304330000000a03000029000000000303043300000000040404330000000c0800002900000000080804330000000b090000290000000009090433000000030a000029000000000a0a0433000000090b000029000000000b0b04330000000f0c000029000000000c0c04330000000000ce0435000001200ce00039000001400d0000390000000000dc0435000001000ce000390000000000bc0435000000e00be000390000000000ab0435000000c00ae00039000000070b0000290000000000ba043500000c7a09900197000000a00ae0003900000000009a043500000c7a088001970000008009e0003900000000008904350000006008e0003900000000004804350000004004e0003900000000003404350000002003e0003900000000002304350000014002e00039000000003101043400000000001204350000016002e00039000000000001004b0000282c0000613d000000000400001900000000082400190000000009430019000000000909043300000000009804350000002004400039000000000014004b000028250000413d0000001f0310003900000d6c0330019700000000012100190000000000010435000001600130003900000c7a0010009c00000c7a01008041000000600110021000000c7a00e0009c00000c7a0e0080410000004002e00210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c70000800d02000039000000040300003900000d1f0400004131e531d60000040f0000000100200190000028490000613d00000001010000390000006502000039000000000012041b000000000001042d000000000001042f0000000001000019000031e70001043000000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e700010430000000400100043d00000cf802000041000028790000013d000000400100043d00000d2102000041000028790000013d00000d5901000041000000000010043f0000001101000039000000040010043f00000d5301000041000031e700010430000000400100043d000000440210003900000d5c03000041000000000032043500000024021000390000001f03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000d36011001c7000031e700010430000000400100043d00000d1402000041000028790000013d000000400100043d00000d2202000041000028790000013d000000400100043d00000d2002000041000028790000013d000000400100043d00000d1b02000041000000000021043500000c7a0010009c00000c7a01008041000000400110021000000ce8011001c7000031e70001043000000c7a033001970000001f0530018f00000c7c06300198000000400200043d00000000046200190000288b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000028870000c13d000000000005004b000028980000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c7a0020009c00000c7a020080410000004002200210000000000112019f000031e700010430000000400400043d00000054054000390000000000350435000000600310021000000020014000390000000000310435000000340340003900000000002304350000005402000039000000000024043500000d740040009c000028c00000813d0000008002400039000000400020043f00000c7a0010009c00000c7a010080410000004001100210000000000204043300000c7a0020009c00000c7a020080410000006002200210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f0000000100200190000028c60000613d000000000101043b000000000001042d00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e7000104300000000001000019000031e70001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000028d70000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b000028d00000413d000000000312001900000000000304350000001f0220003900000d6c022001970000000001120019000000000001042d000000000001004b000028e00000613d000000000001042d000000400100043d000000640210003900000cea030000410000000000320435000000440210003900000ceb03000041000000000032043500000024021000390000002b03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000c81011001c7000031e70001043000000c7a0110019700000c7a0010009c000028f90000613d0000000101100039000000000001042d00000d5901000041000000000010043f0000001101000039000000040010043f00000d5301000041000031e7000104300003000000000002000000400500043d00000020035000390000004002000039000100000003001d000000000023043500000060025000390000000043010434000000000032043500000000020404330000008003500039000000000023043500000040021000390000000002020433000000a003500039000000000023043500000060021000390000000002020433000000c003500039000000000023043500000080021000390000000002020433000000e0035000390000000000230435000000a002100039000000000202043300000100035000390000000000230435000000c002100039000000000202043300000120035000390000000000230435000000e00210003900000000020204330000014003500039000000000023043500000100021000390000000002020433000001600350003900000000002304350000012002100039000000000202043300000c7a02200197000001800350003900000000002304350000014002100039000000000202043300000c7a02200197000001a003500039000000000023043500000160011000390000000001010433000001c00250003900000180030000390000000000320435000001e00250003900000000160104340000000000620435000300000005001d0000020002500039000000000006004b000029450000613d000000000300001900000000042300190000000005310019000000000505043300000000005404350000002003300039000000000063004b0000293e0000413d0000000001260019000000000001043500000cfb010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b02000039000200000006001d31e531db0000040f00000001002001900000297c0000613d000000000101043b00000003040000290000004002400039000000000012043500000002010000290000001f0110003900000d6c01100197000001e00310003900000000003404350000021f0110003900000d6c021001970000000001420019000000000021004b0000000002000039000000010200403900000cee0010009c0000297d0000213d00000001002001900000297d0000c13d000000400010043f000000010100002900000c7a0010009c00000c7a010080410000004001100210000000000204043300000c7a0020009c00000c7a020080410000006002200210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f0000000100200190000029830000613d000000000101043b000000000001042d000000000001042f00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e7000104300000000001000019000031e7000104300000006501000039000000000201041a000000020020008c0000298c0000613d0000000202000039000000000021041b000000000001042d000000400100043d000000440210003900000d5c03000041000000000032043500000024021000390000001f03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000d36011001c7000031e700010430000a000000000002000500000008001d000600000007001d000700000006001d000800000005001d000a00000004001d000300000002001d000400000001001d00000c7d01300197000900000001001d000000000010043f0000086d01000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000002ac20000613d000000000101043b0000000802000029000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000002ac20000613d000000000101043b000000000101041a000000ff0010019000002aca0000613d000000070200002900000d310120019700000d2f0020019800000d30020000410000000002006019000000000312019f00000d0801300197000000010200008a00000d080010009c000000000200c0190000000101200210000000ff02300270000000000112019f000000ff0000008b0000000001036019000000000213013f000000000112004900000d750010009c0000000a0100002900002acd0000813d000200000003001d00000d760010009c00002ad00000813d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f000000010020019000002ac10000613d000000060200002900060c7a0020019b000000000101043b000000060110006c000700000001001d00002ac40000413d00000d170100004100000000001004430000000001000412000000040010044300000040010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f000000010020019000002ac10000613d000000000101043b00000c7a01100197000000070010006b00002ad30000213d0000086b01000039000000000201041a000000c00320027000000c7a0330019700000c7a0030009c00002ac40000613d00000cdf02200197000700000003001d000000c00330021000000d730330009a00000cde03300197000000000223019f000000000021041b00000d170100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f000000010020019000002ac10000613d000000000101043b00000c7d01100197000000090010006b00002a4c0000c13d0000000001000416000000000001004b00002a4c0000613d0000000a0010006c00002adc0000c13d00000cd901000041000000000010044300000009010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f000000010020019000002ac10000613d000000000101043b000000000001004b00002ac20000613d000000400500043d00000d1c01000041000000000015043500000000010004140000000902000029000000040020008c0000000a0300002900002a6f0000613d00000c7a0050009c000100000005001d00000c7a020000410000000002054019000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f000000000003004b00002a650000613d00000d1d011001c700008009020000390000000904000029000000000500001900002a670000013d000000400200043d000000200120003900000d1e03000041000000000031043500000064012000390000000a030000290000000000310435000000000100041000000c7d0110019700000044032000390000000000130435000000000100041100000c7d01100197000000240320003900000000001304350000006401000039000000000012043500000d770020009c00002ad60000813d000000a001200039000000400010043f000000090100002931e530960000040f0000000a0300002900002a720000013d00000ce8011001c7000000090200002931e531d60000040f0003000000010355000000600410027000010c7a0040019d00000001002001900000000a03000029000000010500002900002ae40000613d00000cee0050009c00002ad60000213d000000400050043f0000000706000029000000020100002900000d780110009900000000023100a9000000000003004b00002a7b0000613d0000000a032000fa000000000031004b00002ac40000c13d000000400100043d000001200310003900000140040000390000000000430435000000030300002900000c7d03300197000000e0041000390000000000340435000000a00310003900000c7a04000041000000000043043500000080031000390000000604000029000000000043043500000d780220012a0000006003100039000000000023043500000040021000390000000a0300002900000000003204350000000902000029000000000221043600000100031000390000000000030435000000c0031000390000000000030435000000000002043500000140031000390000000502000029000000004202043400000000002304350000016003100039000000040500002900000c7d07500197000000000002004b00002aa70000613d000000000500001900000000093500190000000008540019000000000808043300000000008904350000002005500039000000000025004b00002aa00000413d0000001f0420003900000d6c0440019700000000023200190000000000020435000001600240003900000c7a0020009c00000c7a02008041000000600220021000000c7a0010009c00000c7a010080410000004001100210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c70000800d02000039000000040300003900000d1f04000041000000080500002931e531d60000040f000000010020019000002ac20000613d000000000001042d000000000001042f0000000001000019000031e70001043000000d5901000041000000000010043f0000001101000039000000040010043f00000d5301000041000031e700010430000000400100043d00000d220200004100002ade0000013d000000400100043d00000d7a0200004100002ade0000013d000000400100043d00000d790200004100002ade0000013d000000400100043d00000d210200004100002ade0000013d00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e700010430000000400100043d00000d1b02000041000000000021043500000c7a0010009c00000c7a01008041000000400110021000000ce8011001c7000031e70001043000000c7a034001970000001f0530018f00000c7c06300198000000400200043d000000000462001900002af00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002aec0000c13d000000000005004b00002afd0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c7a0020009c00000c7a020080410000004002200210000000000112019f000031e7000104300003000000000002000300000001001d00000d170100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f000000010020019000002b6f0000613d000000000101043b00000c7d02100197000000030100002900000c7d01100197000300000002001d000000000021004b00002b6e0000c13d00000d5401000041000000000010044300000000010004100000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c70000800a0200003931e531db0000040f000000010020019000002b6f0000613d000000000101043b000000000001004b00002b6e0000613d00000d5401000041000000000010044300000000010004100000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c70000800a0200003931e531db0000040f000000010020019000002b6f0000613d000000000101043b000200000001001d00000cd901000041000000000010044300000003010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f000000010020019000002b6f0000613d000000000101043b000000000001004b00002b700000613d000000400400043d00000d1c01000041000000000014043500000000010004140000000302000029000000040020008c00002b6b0000613d00000c7a0040009c000100000004001d00000c7a020000410000000002044019000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f0000000203000029000000000003004b00002b620000613d00000d1d011001c700008009020000390000000304000029000000000500001900002b640000013d00000ce8011001c7000000030200002931e531d60000040f0003000000010355000000600310027000010c7a0030019d0000000100200190000000010400002900002b780000613d00000d6b0040009c00002b720000813d000000400040043f000000000001042d000000000001042f0000000001000019000031e70001043000000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e70001043000000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900002b840000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002b800000c13d000000000005004b00002b910000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c7a0020009c00000c7a020080410000004002200210000000000112019f000031e7000104300014000000000002000f00000002001d001400000001001d0000000021010434001200000002001d001100000001001d0000012001100039001000000001001d0000000001010433001300000001001d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f000000010020019000002e200000613d000000000101043b000000130200002900000c7a02200197000000000012004b00002e2a0000413d00000012010000290000000001010433001300000001001d000000000010043f0000087201000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000002e1e0000613d000000000101043b000000000101041a001200000001001d0000001301000029000000000010043f0000087201000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f0000001203000029000000010030008c00000000030000390000000103006039001200000003001d000000010020019000002e1e0000613d00000872030000390000001302000029000000000101043b000000000101041a000000020010008c00002e2d0000613d000000000020043f000000200030043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000002e1e0000613d000000000101043b0000000202000039000000000021041b000000110200002900000020012000390000000001010433000800000001001d0000000001020433000a00000001001d00000040012000390000000001010433000b00000001001d00000100012000390000000001010433000600000001001d000000e0012000390000000001010433000500000001001d0000001401000029000000a0011000390000000001010433000c00000001001d000000c0012000390000000001010433000d00000001001d000000a0012000390000000001010433000e00000001001d0000008001200039000400000001001d0000000001010433001300000001001d00000060012000390000000001010433000900000001001d00000140012000390000000001010433000700000001001d00000010010000290000000001010433001000000001001d000001600120003900000000010104330000000012010434000000000002004b00002c270000613d00000c7a0020009c00000c7a02008041000000600220021000000c7a0010009c00000c7a010080410000004001100210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000002e1e0000613d000000000901043b00002c280000013d000000000900001900000014010000290000006002100039001100000002001d00000000080204330000008001100039000300000001001d00000000010104330000000012010434000000000002004b00002c4c0000613d000100000008001d000200000009001d00000c7a0020009c00000c7a02008041000000600220021000000c7a0010009c00000c7a010080410000004001100210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000002e1e0000613d000000000101043b00000002090000290000000108000029000000400200043d00000d740020009c00002c500000413d00002e210000013d0000000001000019000000400200043d00000d740020009c00002e210000813d000000070300002900000c7a05300197000000100300002900000c7a0630019700000014030000290000004003300039001000000003001d00000000070304330000008003200039000000400030043f00000060032000390000001204000029000000000043043500000040042000390000000000740435000000200720003900000000001704350000000000820435000000400100043d0000014008100039000000000098043500000120081000390000000809000029000000000098043500000100081000390000000a090000290000000000980435000000e0081000390000000b090000290000000000980435000000c0081000390000000000580435000000a005100039000000000065043500000080051000390000000c06000029000000000065043500000060051000390000000d06000029000000000065043500000040051000390000000e060000290000000000650435000000200510003900000013060000290000000000650435000000090500002900000000005104350000000002020433000001600510003900000000002504350000000002070433000001800510003900000000002504350000000002040433000001a00410003900000000002404350000000002030433000000030020008c00002e350000813d000001c003100039000000000023043500000c7a0010009c00000c7a010080410000004001100210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000d50011001c70000800d02000039000000040300003900000d5104000041000000050500002900000006060000290000000f0700002931e531d60000040f000000010020019000002e1e0000613d00000004010000290000000001010433001300000001001d00000cf70010009c00002e270000813d00000011010000290000000001010433001400000001001d00000c7d0010009c00002e270000213d00000010010000290000000001010433001200000001001d00000d170100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f000000010020019000002e200000613d000000000301043b000000400200043d000000200120003900000d1e040000410000000000410435000000000100041100000c7d041001970000002401200039001100000004001d00000000004104350000006401200039000000440420003900000c7d03300197000000130030006b000000640300003900002d0a0000c13d000000000500041000000c7d05500197000000000054043500000012040000290000000000410435000000000032043500000d000020009c00002e210000213d000000a001200039000000400010043f000000130100002931e530960000040f00000cd901000041000000000010044300000014010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f000000010020019000002e200000613d000000000101043b00000d170200004100000000002004430000000002000412000000040020044300000020020000390000002400200443000000000001004b00002d7c0000613d000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f000000010020019000002e200000613d000000000101043b000000400200043d000000200320003900000d0a0400004100000000004304350000004403200039000000120400002900000000004304350000002403200039000000140400002900000000004304350000004403000039000000000032043500000cfa0020009c00002e210000213d0000008003200039000000400030043f00000c7d0110019700002d140000013d0000001405000029000000000054043500000012040000290000000000410435000000000032043500000d000020009c00002e210000213d000000a001200039000000400010043f000000130100002931e530960000040f00000003010000290000000001010433000f00000001001d0000000021010434001000000002001d000000000001004b000000140200002900002d7b0000613d00000cd90100004100000000001004430000000400200443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f000000010020019000002e200000613d000000000101043b000000000001004b000000140200002900002d7b0000613d00000cd90100004100000000001004430000000400200443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f000000010020019000002e200000613d000000000101043b000000000001004b00002e1e0000613d000000400700043d00000064017000390000008002000039000000000021043500000044017000390000001102000029000000000021043500000024017000390000001202000029000000000021043500000d5701000041000000000017043500000004017000390000001302000029000000000021043500000084027000390000000f0100002900000000010104330000000000120435000000a402700039000000000001004b000000100600002900002d5b0000613d000000000300001900000000042300190000000005360019000000000505043300000000005404350000002003300039000000000013004b00002d540000413d0000000002210019000000000002043500000000040004140000001402000029000000040020008c00002d780000613d0000001f0110003900000d6c01100197000000a40110003900000c7a0010009c00000c7a01008041000000600110021000000c7a0070009c00000c7a0300004100000000030740190000004003300210000000000131019f00000c7a0040009c00000c7a04008041000000c003400210000000000113019f001400000007001d31e531d60000040f0000001407000029000000600310027000010c7a0030019d0003000000010355000000010020019000002e3b0000613d00000cee0070009c00002e210000213d000000400070043f000000000001042d000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f000000010020019000002e200000613d000000000101043b00000cd902000041000000000020044300000c7d01100197001000000001001d0000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f000000010020019000002e200000613d000000000101043b000000000001004b00002e1e0000613d000000400400043d00000d5201000041000000000014043500000004014000390000001202000029000000000021043500000000010004140000001002000029000000040020008c00002db20000613d00000c7a0040009c00000c7a030000410000000003044019000000400330021000000c7a0010009c00000c7a01008041000000c001100210000000000131019f00000d53011001c7001000000004001d31e531d60000040f0000001004000029000000600310027000010c7a0030019d0003000000010355000000010020019000002e590000613d00000cee0040009c000000000200041000002e210000213d000000400040043f00000d540100004100000000001004430000000400200443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c70000800a0200003931e531db0000040f000000010020019000002e200000613d000000000101043b0000001203000029000000000031004b00002e480000413d00000000010004140000001404000029000000040040008c00002dcf0000c13d00000001020000390000000101000031000000000001004b00002de00000c13d00002e080000013d00000c7a0010009c00000c7a01008041000000c001100210000000000003004b00002dd80000613d00000ce3011001c70000800902000039000000000500001900002dd90000013d000000000204001931e531d60000040f0003000000010355000000600110027000010c7a0010019d00000c7a01100197000000000001004b00002e080000613d00000cee0010009c00002e210000213d0000001f0410003900000d6c044001970000003f0440003900000d6c05400197000000400400043d0000000005540019000000000045004b0000000006000039000000010600403900000cee0050009c00002e210000213d000000010060019000002e210000c13d000000400050043f000000000614043600000d6c031001980000001f0410018f0000000001360019000000030500036700002dfb0000613d000000000705034f000000007807043c0000000006860436000000000016004b00002df70000c13d000000000004004b00002e080000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000010020019000002d150000c13d000000400100043d000000640210003900000d55030000410000000000320435000000440210003900000d5603000041000000000032043500000024021000390000003a03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000c81011001c7000031e7000104300000000001000019000031e700010430000000000001042f00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e700010430000000400100043d00000cf80200004100002e2f0000013d000000400100043d00000d5b0200004100002e2f0000013d000000400100043d00000d5a02000041000000000021043500000c7a0010009c00000c7a01008041000000400110021000000ce8011001c7000031e70001043000000d5901000041000000000010043f0000002101000039000000040010043f00000d5301000041000031e70001043000000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900002e650000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e430000c13d00002e650000013d000000400100043d000000440210003900000d5803000041000000000032043500000024021000390000001d03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000d36011001c7000031e70001043000000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900002e650000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e610000c13d000000000005004b00002e720000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c7a0020009c00000c7a020080410000004002200210000000000112019f000031e700010430000000600210003900000d7b030000410000000000320435000000400210003900000d7c03000041000000000032043500000020021000390000002e030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000a0000000000020000000032010434000600000003001d00000cf70020009c00002fd50000813d0000004002100039000900000002001d000000000202043300000c7d0020009c00002fd50000213d000a00000001001d000000000020043f0000086d01000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000002fd30000613d000000000101043b0000000a02000029000000c002200039000500000002001d0000000002020433000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000002fd30000613d000000000101043b000000000101041a000000ff001001900000000a0100002900002fdb0000613d0000012001100039000400000001001d0000000001010433000800000001001d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f000000010020019000002fd20000613d000000080200002900000c7a02200197000000000101043b000700000001001d000800000021005300002fd80000413d00000d170100004100000000001004430000000001000412000000040010044300000040010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f000000010020019000002fd20000613d000000000101043b00000c7a01100197000000080010006b00002fd80000213d0000000a010000290000014001100039000300000001001d0000000001010433000800000001001d00000d170100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f000000010020019000002fd20000613d000000000101043b00000c7a011001970000000704000029000000000041001a0000000a0300002900002fef0000413d000000080200002900000c7a022001970000000001410019000000000012004b00002fde0000213d0000016001300039000000000101043300000c7a02100198000000e003300039000200000003001d00002f0b0000613d00000d190020009c00002f040000813d00000c7a01400197000000000212001900000c7a0020009c00002fef0000213d000700000002001d0000000001030433000000000001004b00002f0c0000c13d000000400100043d00000d1a0200004100002fe90000013d000700000000001d00000009010000290000000001010433000800000001001d00000d170100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f000000010020019000002fd20000613d0000000004000416000000000101043b00000c7d011001970000000803000029000000000013004b00002f5c0000c13d000000000004004b0000000a0200002900002f5f0000613d0000008001200039000100000001001d0000000001010433000000000014004b00002fe70000c13d00000cd90100004100000000001004430000000400300443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f000000010020019000002fd20000613d0000000804000029000000000101043b000000000001004b00002fd30000613d000000400e00043d00000d1c0100004100000000001e04350000000001000414000000040040008c00002f560000613d00000c7a00e0009c00000c7a0200004100000000020e4019000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000d1d011001c700008009020000390000000003000416000000000500001900080000000e001d31e531d60000040f000000080e000029000000600310027000010c7a0030019d0003000000010355000000010020019000002ff50000613d00000cee00e0009c0000000a07000029000000010300002900002fe10000213d0000004000e0043f00002f7e0000013d000000000004004b0000000a0200002900002fe70000c13d0000000901000029000000000101043300000c7d0010009c00002fd50000213d00000080062000390000000003060433000000400200043d000000200420003900000d1e05000041000000000054043500000064042000390000000000340435000000000300041000000c7d0330019700000044042000390000000000340435000000000300041100000c7d03300197000000240420003900000000003404350000006403000039000000000032043500000d770020009c00002fe10000813d000000a003200039000000400030043f000100000006001d31e530960000040f00000001030000290000000a07000029000000400e00043d000000050100002900000000050104330000010001700039000000000601043300000180017000390000000001010433000000600270003900000000020204330000000003030433000000a00470003900000000040404330000000408000029000000000808043300000003090000290000000009090433000000060a000029000000000a0a04330000000007070433000000020b000029000000000b0b0433000000090c000029000000000c0c04330000000000ce0435000001200ce00039000001400d0000390000000000dc0435000001000ce000390000000000bc0435000000e00be000390000000000ab0435000000c00ae00039000000070b0000290000000000ba043500000c7a09900197000000a00ae0003900000000009a043500000c7a088001970000008009e0003900000000008904350000006008e0003900000000004804350000004004e0003900000000003404350000002003e0003900000000002304350000014002e00039000000003101043400000000001204350000016002e00039000000000001004b00002fb90000613d000000000400001900000000082400190000000009430019000000000909043300000000009804350000002004400039000000000014004b00002fb20000413d0000001f0310003900000d6c0330019700000000012100190000000000010435000001600130003900000c7a0010009c00000c7a01008041000000600110021000000c7a00e0009c00000c7a0e0080410000004002e00210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c70000800d02000039000000040300003900000d1f0400004131e531d60000040f000000010020019000002fd30000613d000000000001042d000000000001042f0000000001000019000031e700010430000000400100043d00000cf80200004100002fe90000013d000000400100043d00000d210200004100002fe90000013d000000400100043d00000d220200004100002fe90000013d000000400100043d00000d200200004100002fe90000013d00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e700010430000000400100043d00000d1b02000041000000000021043500000c7a0010009c00000c7a01008041000000400110021000000ce8011001c7000031e70001043000000d5901000041000000000010043f0000001101000039000000040010043f00000d5301000041000031e70001043000000c7a033001970000001f0530018f00000c7c06300198000000400200043d0000000004620019000030010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002ffd0000c13d000000000005004b0000300e0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c7a0020009c00000c7a020080410000004002200210000000000112019f000031e700010430000000000100041a0000ff0000100190000030180000613d000000000001042d000000400100043d000000640210003900000cea030000410000000000320435000000440210003900000ceb03000041000000000032043500000024021000390000002b03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000c81011001c7000031e700010430000000000100041a0000ff0000100190000030330000613d00000001010000390000006502000039000000000012041b000000000001042d000000400100043d000000640210003900000cea030000410000000000320435000000440210003900000ceb03000041000000000032043500000024021000390000002b03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000c81011001c7000031e70001043000000c7d051001980000305a0000613d0000086901000039000000000201041a00000cdd02200197000000000252019f000000000021041b000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000ce3011001c70000800d02000039000000020300003900000ce40400004131e531d60000040f0000000100200190000030620000613d000000000001042d000000400100043d00000ce902000041000000000021043500000c7a0010009c00000c7a01008041000000400110021000000ce8011001c7000031e7000104300000000001000019000031e70001043000000c7d05100198000030770000613d0000086a01000039000000000201041a00000cdd02200197000000000252019f000000000021041b000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000ce3011001c70000800d02000039000000020300003900000ce50400004131e531d60000040f00000001002001900000307f0000613d000000000001042d000000400100043d00000ce702000041000000000021043500000c7a0010009c00000c7a01008041000000400110021000000ce8011001c7000031e7000104300000000001000019000031e70001043000000c7d0510019700000c5b01000039000000000201041a00000cdd03200197000000000353019f000000000031041b000000000100041400000c7d0620019700000c7a0010009c00000c7a01008041000000c00110021000000ce3011001c70000800d02000039000000030300003900000ce60400004131e531d60000040f0000000100200190000030940000613d000000000001042d0000000001000019000031e7000104300004000000000002000000400400043d00000d6f0040009c000031590000813d00000c7d051001970000004001400039000000400010043f000000200140003900000d7d0300004100000000003104350000002001000039000000000014043500000000230204340000000001000414000000040050008c000030d10000c13d00000001010000320000310c0000613d00000cee0010009c000031590000213d0000001f0310003900000d6c033001970000003f0330003900000d6c03300197000000400a00043d00000000033a00190000000000a3004b0000000004000039000000010400403900000cee0030009c000031590000213d0000000100400190000031590000c13d000000400030043f00000000051a043600000d6c021001980000001f0310018f00000000012500190000000304000367000030c30000613d000000000604034f000000006706043c0000000005750436000000000015004b000030bf0000c13d000000000003004b0000310d0000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f00000000002104350000310d0000013d000200000004001d00000c7a0030009c00000c7a03008041000000600330021000000c7a0020009c00000c7a020080410000004002200210000000000223019f00000c7a0010009c00000c7a01008041000000c001100210000000000112019f000100000005001d000000000205001931e531d60000040f0003000000010355000000600310027000010c7a0030019d00000c7a04300198000031240000613d0000001f0340003900000c7b033001970000003f0330003900000d7e03300197000000400a00043d00000000033a00190000000000a3004b0000000005000039000000010500403900000cee0030009c000031590000213d0000000100500190000031590000c13d000000400030043f0000001f0540018f00000000034a043600000c7c064001980000000004630019000030fe0000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000048004b000030fa0000c13d000000000005004b000031260000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000031260000013d000000600a0000390000000002000415000000040220008a000000050220021000000000010a0433000000000001004b0000312e0000c13d00020000000a001d00000cd901000041000000000010044300000004010000390000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000031880000613d0000000002000415000000040220008a000031410000013d000000600a000039000000800300003900000000010a04330000000100200190000031750000613d0000000002000415000000030220008a0000000502200210000000000001004b000031310000613d000000050220027000000000020a001f0000314b0000013d00020000000a001d00000cd901000041000000000010044300000001010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000031880000613d0000000002000415000000030220008a0000000502200210000000000101043b000000000001004b000000020a000029000031890000613d00000000010a0433000000050220027000000000020a001f000000000001004b000031580000613d00000cf30010009c0000315f0000213d000000200010008c0000315f0000413d0000002001a000390000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000315f0000c13d000000000001004b000031610000613d000000000001042d00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e7000104300000000001000019000031e700010430000000400100043d000000640210003900000d7f030000410000000000320435000000440210003900000d8003000041000000000032043500000024021000390000002a03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000c81011001c7000031e700010430000000000001004b0000319a0000c13d000000400200043d000100000002001d00000c800100004100000000001204350000000401200039000000020200002931e528c80000040f0000000102000029000000000121004900000c7a0010009c00000c7a01008041000000600110021000000c7a0020009c00000c7a020080410000004002200210000000000121019f000031e700010430000000000001042f000000400100043d000000440210003900000d4403000041000000000032043500000024021000390000001d03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000d36011001c7000031e70001043000000c7a0030009c00000c7a03008041000000400230021000000c7a0010009c00000c7a010080410000006001100210000000000121019f000031e700010430000000000001042f00000c7a0010009c00000c7a01008041000000400110021000000c7a0020009c00000c7a020080410000006002200210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f0000000100200190000031b60000613d000000000101043b000000000001042d0000000001000019000031e70001043000000000050100190000000000200443000000050030008c000031c60000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b000031be0000413d00000c7a0030009c00000c7a030080410000006001300210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000d81011001c7000000000205001931e531db0000040f0000000100200190000031d50000613d000000000101043b000000000001042d000000000001042f000031d9002104210000000102000039000000000001042d0000000002000019000000000001042d000031de002104230000000102000039000000000001042d0000000002000019000000000001042d000031e3002104250000000102000039000000000001042d0000000002000019000000000001042d000031e500000432000031e60001042e000031e70001043000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff616c697a696e6700000000000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320696e69746908c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000000000000000000000002000000000000000000000000000000000000200000000000000000000000007f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249800000002000000000000000000000000000001400000010000000000000000000000000000000000000000000000000000000000000000000000000082e2c43e00000000000000000000000000000000000000000000000000000000bb3e04b400000000000000000000000000000000000000000000000000000000de7eba7700000000000000000000000000000000000000000000000000000000ee2a53f700000000000000000000000000000000000000000000000000000000fb6bf74b00000000000000000000000000000000000000000000000000000000fb6bf74c00000000000000000000000000000000000000000000000000000000fc8a584f00000000000000000000000000000000000000000000000000000000ee2a53f800000000000000000000000000000000000000000000000000000000f79f29ed00000000000000000000000000000000000000000000000000000000e322921000000000000000000000000000000000000000000000000000000000e322921100000000000000000000000000000000000000000000000000000000ea86bd4600000000000000000000000000000000000000000000000000000000de7eba7800000000000000000000000000000000000000000000000000000000deff4b2400000000000000000000000000000000000000000000000000000000ceb4c98600000000000000000000000000000000000000000000000000000000dda5211200000000000000000000000000000000000000000000000000000000dda5211300000000000000000000000000000000000000000000000000000000ddd224f100000000000000000000000000000000000000000000000000000000ceb4c98700000000000000000000000000000000000000000000000000000000d7e1583a00000000000000000000000000000000000000000000000000000000bb3e04b500000000000000000000000000000000000000000000000000000000c35c83fc00000000000000000000000000000000000000000000000000000000cd44141f00000000000000000000000000000000000000000000000000000000a1244c6600000000000000000000000000000000000000000000000000000000ad5425c500000000000000000000000000000000000000000000000000000000b370b7f400000000000000000000000000000000000000000000000000000000b370b7f500000000000000000000000000000000000000000000000000000000babb6aac00000000000000000000000000000000000000000000000000000000ad5425c600000000000000000000000000000000000000000000000000000000adb5a6a600000000000000000000000000000000000000000000000000000000a1244c6700000000000000000000000000000000000000000000000000000000a18a096e00000000000000000000000000000000000000000000000000000000ac9650d80000000000000000000000000000000000000000000000000000000097943aa80000000000000000000000000000000000000000000000000000000099cc29670000000000000000000000000000000000000000000000000000000099cc2968000000000000000000000000000000000000000000000000000000009a8a05920000000000000000000000000000000000000000000000000000000097943aa900000000000000000000000000000000000000000000000000000000979f2bc20000000000000000000000000000000000000000000000000000000082e2c43f000000000000000000000000000000000000000000000000000000008a7860ce000000000000000000000000000000000000000000000000000000008b15788e00000000000000000000000000000000000000000000000000000000493a4f830000000000000000000000000000000000000000000000000000000057f6dcb700000000000000000000000000000000000000000000000000000000738b62e4000000000000000000000000000000000000000000000000000000007b939231000000000000000000000000000000000000000000000000000000007b939232000000000000000000000000000000000000000000000000000000007ef413e100000000000000000000000000000000000000000000000000000000738b62e5000000000000000000000000000000000000000000000000000000007aef642c00000000000000000000000000000000000000000000000000000000670fa8ab00000000000000000000000000000000000000000000000000000000670fa8ac000000000000000000000000000000000000000000000000000000006bbbcd2e0000000000000000000000000000000000000000000000000000000057f6dcb8000000000000000000000000000000000000000000000000000000006068d6cb000000000000000000000000000000000000000000000000000000005285e05700000000000000000000000000000000000000000000000000000000541f4f1300000000000000000000000000000000000000000000000000000000541f4f1400000000000000000000000000000000000000000000000000000000577f51f8000000000000000000000000000000000000000000000000000000005285e0580000000000000000000000000000000000000000000000000000000052d1902d00000000000000000000000000000000000000000000000000000000493a4f84000000000000000000000000000000000000000000000000000000004f1ef286000000000000000000000000000000000000000000000000000000005249fef10000000000000000000000000000000000000000000000000000000029cb924c0000000000000000000000000000000000000000000000000000000033a84fef00000000000000000000000000000000000000000000000000000000437b911500000000000000000000000000000000000000000000000000000000437b911600000000000000000000000000000000000000000000000000000000490e49ef0000000000000000000000000000000000000000000000000000000033a84ff0000000000000000000000000000000000000000000000000000000003659cfe60000000000000000000000000000000000000000000000000000000029cb924d000000000000000000000000000000000000000000000000000000002e378115000000000000000000000000000000000000000000000000000000002e63e59a0000000000000000000000000000000000000000000000000000000017fcb39a000000000000000000000000000000000000000000000000000000001fab657b000000000000000000000000000000000000000000000000000000001fab657c00000000000000000000000000000000000000000000000000000000272751c70000000000000000000000000000000000000000000000000000000017fcb39b000000000000000000000000000000000000000000000000000000001b3d555900000000000000000000000000000000000000000000000000000000079bd2c7000000000000000000000000000000000000000000000000000000001186ec330000000000000000000000000000000000000000000000000000000015348e44ffffffffffffffffffffffffeeeeffffffffffffffffffffffffffffffffeeef1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000647920696e697469616c697a6564000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c726561ffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffff000000000000000000000000000000000000000000000000ffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf4143524f53532d56320000000000000000000000000000000000000000000000312e302e300000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000a9e8c42c9e7fca7f62755189a16b2f5314d43d8fb24e91ba54e6d65f9314e849a73e8909f8616742d7fe701153d82666f7b7cd480552e23ebb05d358c22fd04eab9987862d7dab8c2bf2f09eb3ad7b6c1961c86fe3e9e7d3ef50dc98995d72d4b6061256000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000ba97b39d000000000000000000000000000000000000000000000000000000006e697469616c697a696e67000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206900000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000000ff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000008000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000fffffffffffffdff000000ff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c097ce7bc90715b34b9f10000000000000000000000000000000010000000000000000000000000000000000000000f3d81dae000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f9a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b0200000000000000000000000000000000000000000000a000000000000000008d1994e2bbbd77564cdca06dd819e7ee2a5efa06c80dcb59a4a7b6e39edc538f000000000000000000000000000000000000000000000000ffffffffffffff1fc2f8787176b8ac6bf7215b4adcc1e069bf4ab82d9ab1df05a57a91d425935b6e000000000000000000000000000000000000000000000000ffffffffffffff5f190100000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000420000000000000000000000007fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a000000000000000000000000000000000000000800000000000000000000000001626ba7e0000000000000000000000000000000000000000000000000000000045e04bc8f121ba11466985789ca2822a91109f31bb8ac85504a37b7eaf873c267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000040000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000006c172ea51018fb2eb2118f3f8a507c4df71eb519b8c0052834dc3c920182fef4d950afdc00000000000000000000000000000000000000000000000000000000ffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000010000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000200000008000000000000000002d5b62420992e5a4afce0e77742636ca2608ef58289fd2e1baa5161ef6e7e41e000000000000000000000000000000000000000000000000fffffffffffffe7f000000000000000000000000000000000000000000000000ffffffffffffff3f000000000000000000000000000000000000000000000000fffffffffffffdbf5a65d188000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000054000000a00000000000000000000000000000000000000000000000000000000000000000fffffffffffffe5f310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e02000002000000000000000000000000000000440000000000000000000000000000000000000000000000000000000000000000000000000000000001e13381495d907f000000000000000000000000000000000000000000000000000000006452a35d00000000000000000000000000000000000000000000000000000000d0e30db000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000400000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000032ed1a409ef04c7b0227189c3a103dc5ac10e775a15b785dcc510201f7c25ad3582e388900000000000000000000000000000000000000000000000000000000f722177f000000000000000000000000000000000000000000000000000000002a58c4f3000000000000000000000000000000000000000000000000000000008e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b38e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b27c1af0646963afc3343245b103731965735a893347bfa0d58a5dc77a77ae691c1e191e8e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdfdeff4b2400000000000000000000000000000000000000000000000000000000b8fe37a700000000000000000000000000000000000000000000000000000000ffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000010000000000000000000000000000000000000000000000000000000000e88463c2f254e2b070013a2dc7ee1e099f9bc00534cbdf03af551dc26ae492199c6dfd61d811b9950a4f2b9adf46357b717c816d22c420d0bde8f2360148f7cd938a1821000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000007fffffffffffffff6c6564207468726f7567682064656c656761746563616c6c0000000000000000555550535570677261646561626c653a206d757374206e6f742062652063616c360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc4f4e4c595f434f554e544552504152545f47415445574159000000000000000000000000000000000000000000000000000000640000000000000000000000004910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914352d1902d000000000000000000000000000000000000000000000000000000006961626c6555554944000000000000000000000000000000000000000000000045524331393637557067726164653a20756e737570706f727465642070726f78bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b000000000000000000000000000000000000000000000000ffffffffffffff9f206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c0000000000000000000000000000000000000000000000a00000000000000000c86ba04c55bc5eb2f2876b91c438849a296dbec7b08751c3074d92e04f0a77af0000000000000000000000000000000000000000000000000000000001e133806163746976652070726f7879000000000000000000000000000000000000000046756e6374696f6e206d7573742062652063616c6c6564207468726f75676820416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006f74206120636f6e747261637400000000000000000000000000000000000000455243313936373a206e657720696d706c656d656e746174696f6e206973206e64656c656761746563616c6c00000000000000000000000000000000000000007b21f8aa0000000000000000000000000000000000000000000000000000000009deb9ec00000000000000000000000000000000000000000000000000000000012f9e440000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000001400000000000000000000000003cee3e290f36226751cd0b3321b213890fe9c768e922f267fa6111836ce05c32c3a9b9d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000008000000000000000000a21fdd43d0ad0c62689ee7230a47309a050755bcc52eba00310add65297692a02000000000000000000000000000000000001e000000000000000000000000044b559f101f8fbcc8a0ea43fa91a05a729a5ea6e14a7c75aa7503746901372082e1a7d4d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f396563697069656e74206d61792068617665207265766572746564000000000000416464726573733a20756e61626c6520746f2073656e642076616c75652c20723a5be8cb00000000000000000000000000000000000000000000000000000000416464726573733a20696e73756666696369656e742062616c616e63650000004e487b71000000000000000000000000000000000000000000000000000000008f260c6000000000000000000000000000000000000000000000000000000000d642b7d9000000000000000000000000000000000000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c00000000000000000000000000000000000000000000000000fffffffffffffebf7a47c9a200000000000000000000000000000000000000000000000000000000b05e92fa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff8e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b1954476d900000000000000000000000000000000000000000000000000000000cd298b380000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000005bb5506200000000000000000000000000000000000000000000000000000000d9caed120000000000000000000000000000000000000000000000000000000051cff8d9000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000024000000000000000000000000fa7fa7cf6d7dde5f9be65a67e6a1a747e7aa864dcd2d793353c722d80fbbb357f4ad92585b1bc117fbdd644990adf0827bc4c95baeae8a23322af807b6d0020e0000000000000000000000000000000000000000000000010000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff000000000000000000000000000000000000000000000000ffffffffffffffc0000000000000000000000000000000000000000000000000ffffffffffffff40000000000000000000000000000000000000000000000000fffffffffffffe60000000000000000000000000000000000000000000000000fffffffffffffe80ffffffffffffffff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff8000000000000000000000000000000000000000000000000006f05b59d3b200000000000000000000000000000000000000c097ce7bc90715b34b9f1000000001000000000000000000000000000000000000000000000000ffffffffffffff600000000000000000000000000000000000000000000000000de0b6b3a7640000c45b6b5200000000000000000000000000000000000000000000000000000000a13c425c000000000000000000000000000000000000000000000000000000006f6e206973206e6f74205555505300000000000000000000000000000000000045524331393637557067726164653a206e657720696d706c656d656e746174695361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656400000000000000000000000000000000000000000000000000000003ffffffe06f742073756363656564000000000000000000000000000000000000000000005361666545524332303a204552433230206f7065726174696f6e20646964206e020000020000000000000000000000000000000000000000000000000000000042a2b5463dda076a5a5c0f181f14228cbc519fa423e534f3a6713d46502724f6",
- "deployedBytecode": "0x00040000000000020020000000000002000000000501034f000000600110027000000c7a0010019d00000c7a03100197000300000035035500020000000503550000000100200190000000260000c13d0000008001000039000000400010043f000000040030008c000000850000413d000000000135034f000000000205043b000000e00420027000000c850040009c000000890000213d00000caf0040009c000001520000a13d00000cb00040009c000003b30000a13d00000cb10040009c000004270000213d00000cb70040009c000009a00000213d00000cba0040009c000014f20000613d00000cbb0040009c00001c110000c13d0000000001000416000000000001004b00001c110000c13d0000086b01000039000000000101041a00000cf10010019800000a9d0000013d0000000001000416000000000001004b00001c110000c13d00000000040300190000001f0130003900000c7b011001970000010001100039000000400010043f0000001f0230018f00000c7c033001980000010001300039000000000805034f000000390000613d0000010005000039000000000608034f000000006706043c0000000005750436000000000015004b000000350000c13d000000000002004b000000460000613d000000000338034f0000000302200210000000000501043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f0000000000210435000000600040008c00001c110000413d000001000300043d00000c7d0030009c00001c110000213d000001200100043d00000c7a0010009c00001c110000213d000001400200043d00000c7a0020009c00001c110000213d00000c7d033001970000000004000410000000800040043f000000a00030043f000000c00010043f000000e00020043f000000000500041a0000ff000050019000000a160000c13d000000ff0650018f000000ff0060008c000000750000613d000000ff015001bf000000000010041b000000ff01000039000000400200043d000000000012043500000c7a0020009c00000c7a020080410000004001200210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000c82011001c70000800d02000039000000010300003900000c830400004131e531d60000040f000000010020019000001c110000613d000000e00200043d000000c00100043d000000a00300043d000000800400043d0000014000000443000001600040044300000020040000390000018000400443000001a0003004430000004003000039000001c000300443000001e00010044300000060010000390000020000100443000002200020044300000100004004430000000401000039000001200010044300000c8401000041000031e60001042e000000000003004b00001c110000c13d0000000001000019000031e60001042e00000c860040009c000003580000a13d00000c870040009c000003da0000a13d00000c880040009c0000048b0000213d00000c8e0040009c000009aa0000213d000000000705034f00000c910040009c000015030000613d00000c920040009c00001c110000c13d0000000006030019000000640030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401700370000000000101043b00000cee0010009c00001c110000213d0000000402100039000000000126004900000cf30010009c00001c110000213d000001800010008c00001c110000413d0000020001000039000000400010043f000000000327034f000000000303043b000000800030043f0000002003200039000000000337034f000000000303043b000000a00030043f0000004003200039000000000337034f000000000303043b000000c00030043f0000006003200039000000000337034f000000000303043b000000e00030043f0000008003200039000000000337034f000000000303043b000001000030043f000000a003200039000000000337034f000000000303043b000001200030043f000000c003200039000000000337034f000000000303043b000001400030043f000000e003200039000000000337034f000000000303043b000001600030043f0000010003200039000000000337034f000000000303043b000001800030043f0000012003200039000000000537034f000000000505043b00000c7a0050009c00001c110000213d000001a00050043f0000002003300039000000000537034f000000000505043b00000c7a0050009c00001c110000213d000001c00050043f0000002003300039000000000337034f000000000303043b00000cee0030009c00001c110000213d00000000032300190000001f02300039000000000062004b00001c110000813d000000000237034f000000000202043b00000cee0020009c00001e5b0000213d00000000040600190000001f0620003900000d6c066001970000003f0660003900000d6c0660019700000cf40060009c00001e5b0000213d00000020033000390000020006600039000000400060043f000002000020043f0000000006320019000000000046004b00001c110000213d000000000437034f00000d6c052001980000001f0620018f0000022003500039000000fd0000613d0000022007000039000000000804034f000000008908043c0000000007970436000000000037004b000000f90000c13d000000000006004b0000010a0000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f000000000043043500000220022000390000000000020435000001e00010043f0000006501000039000000000101041a000000020010008c000018ed0000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000cf50010019800001b1f0000c13d000001c00100043d001300000001001d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000130200002900000c7a02200197000000000101043b00000c7a01100197000000000012004b000001310000413d000000c00100043d00000c7d0010009c000021d80000213d0000000002000411000000000021004b00001bd50000c13d000000800100003931e528ff0000040f001300000001001d000001400100043d001200000001001d000000a00100043d001100000001001d000001e00100043d001000000001001d31e525730000040f0000008002100039000000100300002900000000003204350000006002100039000000110300002900000000003204350000004002100039000000120300002900000000003204350000002002100039000000130300002900000000003204350000008002000039000000000021043500000002020003670000002403200370000000000303043b000000a00410003900000000003404350000004402200370000000000202043b31e52b970000040f000016440000013d00000cc50040009c000003f00000213d00000ccf0040009c000004e60000a13d00000cd00040009c000007cb0000213d00000cd30040009c00000aa20000613d00000cd40040009c00001c110000c13d0000000009030019000000640030008c00001c110000413d000000000a05034f0000000401500370000000000101043b001300000001001d00000c7a0010009c00001c110000213d0000002401a00370000000000101043b00000cee0010009c00001c110000213d000000000219004900000cf30020009c00001c110000213d000000c40020008c00001c110000413d0000014002000039000000400020043f000000040310003900000000033a034f000000000303043b000000800030043f000000240310003900000000033a034f000000000303043b000000a00030043f000000440310003900000000053a034f000000000505043b00000cee0050009c00001c110000213d00000000051500190000002306500039000000000096004b00001c110000813d000000040650003900000000066a034f000000000706043b00000cee0070009c00001e5b0000213d00000005067002100000003f0860003900000d070880019700000d5d0080009c00001e5b0000213d0000014008800039000000400080043f000001400070043f00000024055000390000000006560019000000000096004b00001c110000213d000000000007004b00000000040a034f0000019c0000613d000000000754034f000000000707043b000000200220003900000000007204350000002005500039000000000065004b000001950000413d0000014002000039000000c00020043f0000002002300039000000000324034f000000000303043b00000c7a0030009c00001c110000213d000000e00030043f000000200220003900000000032a034f000000000303043b00000c7d0030009c00001c110000213d000001000030043f000000200220003900000000022a034f000000000202043b00000cee0020009c00001c110000213d00000000021200190000002301200039000000000091004b000000000300001900000d080300804100000d0801100197000000000001004b000000000500001900000d080500404100000d080010009c000000000503c019000000000005004b00001c110000c13d000000040120003900000000011a034f000000000301043b00000cee0030009c00001e5b0000213d00000005053002100000003f0150003900000d0706100197000000400100043d0000000006610019000000000016004b0000000007000039000000010700403900000cee0060009c00001e5b0000213d000000010070019000001e5b0000c13d000000400060043f000000000031043500000024022000390000000003250019000000000093004b00001c110000213d000000000032004b000001df0000813d000000000501001900000000062a034f000000000606043b00000c7d0060009c00001c110000213d000000200550003900000000006504350000002002200039000000000032004b000001d60000413d000001200010043f0000004401a00370000000000101043b00000cee0010009c00001c110000213d0000002302100039000000000092004b000000000300001900000d080300804100000d0802200197000000000002004b000000000500001900000d080500404100000d080020009c000000000503c019000000000005004b00001c110000c13d000000040210003900000000022a034f000000000202043b00000cee0020009c00001e5b0000213d00000005032002100000003f0530003900000d0705500197000000400600043d0000000005560019001100000006001d000000000065004b0000000006000039000000010600403900000cee0050009c00001e5b0000213d000000010060019000001e5b0000c13d0000002401100039000000400050043f00000011050000290000000005250436001000000005001d0000000003130019000000000093004b00001c110000213d000000000002004b000002140000613d000000110200002900000000041a034f000000000404043b000000200220003900000000004204350000002001100039000000000031004b0000020d0000413d0000006501000039000000000201041a000000020020008c000018ed0000613d0000000202000039000000000021041b000001000100043d001200000001001d00000d170100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000120200002900120c7d0020019b000000000101043b00000c7d01100197000000120010006b000002410000c13d00000d5401000041000000000010044300000000010004100000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c70000800a0200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001ff40000c13d000000a00100043d001200000001001d00000cfb010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000120010006b00001ff10000c13d0000086c01000039000000000101041a000000130010006c0000241d0000a13d0000086c01000039000000000010043f000000130100002900000003011000c9000e00000001001d00000d240110009a000000000101041a000f00000001001d000000400100043d0000002002100039000000200300003900000000003204350000004003100039000000800400043d00000000004304350000006003100039000000a00400043d00000000004304350000008003100039000000c005000039000000c00400043d00000000005304350000010003100039000000000504043300000000005304350000012003100039000000000005004b000002780000613d00000000060000190000002004400039000000000704043300000000037304360000000106600039000000000056004b000002720000413d000000e00400043d00000c7a04400197000000a0051000390000000000450435000001000400043d00000c7d04400197000000c00510003900000000004504350000000004130049000000400540008a000000e006100039000001200400043d000000000056043500000000050404330000000003530436000000000005004b000002910000613d00000000060000190000002004400039000000000704043300000c7d0770019700000000037304360000000106600039000000000056004b0000028a0000413d0000000003130049000000200430008a00000000004104350000001f0330003900000d6c043001970000000003140019000000000043004b0000000004000039000000010400403900000cee0030009c00001e5b0000213d000000010040019000001e5b0000c13d000000400030043f00000c7a0020009c00000c7a020080410000004002200210000000000101043300000c7a0010009c00000c7a010080410000006001100210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b00000011020000290000000002020433000000000002004b000002d30000613d001200000000001d0000001202000029000000050220021000000010022000290000000002020433000000000021004b000002c10000813d000000000010043f000000200020043f0000000001000414000002c40000013d000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b0000001203000029001200010030003d00000011020000290000000002020433000000120020006b000002b70000413d0000000f0010006c00001ca30000c13d0000086c01000039000000000101041a000000130010006c0000241d0000a13d000000e00100043d001200000001001d000000080110027000000d6001100197000000000010043f0000000e0100002900000d610110009a000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d0000001202000029000000ff0220018f000000010220020f000000000101043b000000000301041a0000000000230170000021f90000c13d000000000223019f000000000021041b000000c00100043d000f00000001001d0000000012010434000c00000001001d000001200100043d000b00000001001d0000000031010434000900000003001d000d00000002001d000000000021004b000022770000c13d000000800100043d000600000001001d000000a00100043d000500000001001d000001000100043d00100c7d0010019b000000e00100043d000400000001001d0000000d0000006b000700000000001d000022870000c13d000000060000006b000022b40000c13d0000000001000411001200000001001d000000400100043d0000002004100039000001200200043d000000a00500043d000000e00300043d000001000800043d000000c00600043d000000800700043d000000c00900003900000000009404350000000000710435000000c00410003900000000070604330000000000740435000000e00410003900000c7d08800197000000000007004b000003260000613d00000000090000190000002006600039000000000a0604330000000004a404360000000109900039000000000079004b000003200000413d000000130600002900000c7a0660019700000c7a073001970000000003140049000000600910003900000000003904350000004003100039000000000083043500000000080204330000000003840436000000000008004b0000033a0000613d00000000040000190000002002200039000000000902043300000c7d0990019700000000039304360000000104400039000000000084004b000003330000413d000000120200002900000c7d02200197000000a0041000390000000000240435000000070000006b0000000002000039000000010200c03900000080041000390000000000240435000000000213004900000c7a0020009c00000c7a02008041000000600220021000000c7a0010009c00000c7a010080410000004001100210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c70000800d02000039000000040300003900000d6a0400004131e531d60000040f000000010020019000001c110000613d000016440000013d00000c9c0040009c000004190000213d00000ca60040009c000004ed0000a13d00000ca70040009c000008230000213d00000caa0040009c00000ab00000613d00000cab0040009c00001c110000c13d000000640030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b001300000001001d00000c7a0010009c00001c110000213d0000002401500370000000000101043b001200000001001d00000c7d0010009c00001c110000213d0000004401500370000000000101043b001100000001001d00000c7d0010009c00001c110000213d000000000100041a0000000801100270000000ff0110018f31e528dd0000040f0000001301000029000000c00110021000000cde011001970000086b02000039000000000302041a00000cdf03300197000000000113019f000000000012041b000000400100043d001300000001001d31e525680000040f00000ce10100004100000013020000290000002003200039000f00000003001d000000000013043500000009010000390000000000120435000000400100043d001000000001001d31e525680000040f00000ce20100004100000010020000290000002003200039000e00000003001d000000000013043500000005010000390000000000120435000000000100041a0000000801100270000000ff0110018f000d00000001001d31e528dd0000040f0000000d0100002931e528dd0000040f000000130100002900000000020104330000000f0100002931e531a30000040f00000010020000290000000002020433001300000001001d0000000e0100002931e531a30000040f0000047f020000390000001303000029000000000032041b0000048002000039000000000012041b31e530140000040f31e5302c0000040f000000120100002931e530470000040f000000110100002931e530640000040f0000000001000019000031e60001042e00000cbc0040009c000004a90000a13d00000cbd0040009c0000065a0000213d00000cc00040009c00000a2a0000613d00000cc10040009c00001c110000c13d0000000001000416000000000001004b00001c110000c13d00000d17010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000400300043d00000c7a0030009c00000c7a0200004100000000020340190000004002200210000000000101043b00000c7d011001970000000004000410000000000014004b000015f30000c13d00000d3401000041000000000013043500000cec012001c7000031e60001042e00000c930040009c000004cb0000a13d00000c940040009c000007c00000213d00000c970040009c00000a2f0000613d00000c980040009c00001c110000c13d0000000002030019000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b00000cee0010009c00001c110000213d000000040110003931e525ed0000040f31e528ff0000040f000009f60000013d00000cc60040009c000005dd0000a13d00000cc70040009c000008310000213d00000cca0040009c00000e510000613d00000ccb0040009c00001c110000c13d000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b001300000001001d00000c7d0010009c00001c110000213d00000d17010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000c7d011001970000000002000410000000000012004b000016030000c13d000000400100043d000000640210003900000d47030000410000164c0000013d00000c9d0040009c000006200000a13d00000c9e0040009c0000083c0000213d00000ca10040009c00000e580000613d00000ca20040009c00001c110000c13d000000440030008c00001c110000413d0000000001000416000000000001004b000004960000613d00001c110000013d00000cb20040009c000009e40000213d00000cb50040009c000015180000613d00000cb60040009c00001c110000c13d000001640030008c00001c110000413d0000000401500370000000000101043b001300000001001d00000c7d0010009c00001c110000213d0000002401500370000000000101043b001200000001001d00000c7d0010009c00001c110000213d0000004401500370000000000101043b001100000001001d00000c7d0010009c00001c110000213d0000006401500370000000000101043b001000000001001d00000c7d0010009c00001c110000213d000000e401500370000000000101043b000f00000001001d00000c7d0010009c00001c110000213d0000010401500370000000000101043b000e00000001001d00000c7a0010009c00001c110000213d0000012401500370000000000101043b000d00000001001d00000c7a0010009c00001c110000213d0000014401500370000000000101043b00000cee0010009c00001c110000213d0000002302100039000000000032004b00001c110000813d0000000402100039000000000225034f000000000202043b000c00000002001d00000cee0020009c00001c110000213d0000002402100039000b00000002001d0000000c01200029000000000031004b00001c110000213d0000008401500370000000000101043b000a00000001001d000000a401500370000000000101043b000900000001001d000000c401500370000000000101043b000800000001001d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000c7a091001970000000e0a90002900000c7a00a0009c000009de0000213d00000013010000290000001202000029000000110300002900000010040000290000000a05000029000000090600002900000008070000290000000f080000290000000d0b0000290000000b0c0000290000000c0d00002931e5268f0000040f0000000001000019000031e60001042e00000c890040009c000009fd0000213d00000c8c0040009c000015430000613d00000c8d0040009c00001c110000c13d000000440030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b00000c7d0010009c00001c110000213d0000002402500370000000000202043b001300000002001d00000c7d0020009c00001c110000213d000000000010043f0000087301000039000000200010043f0000004002000039000000000100001931e531a30000040f000000130200002931e525c30000040f000000000101041a000009f60000013d00000cc20040009c0000109f0000613d000000000705034f00000cc30040009c000012640000613d00000cc40040009c00001c110000c13d000000440030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401700370000000000101043b00000c7d0010009c00001c110000213d000000000010043f0000086d01000039000000200010043f00000040020000390000000001000019001300000007035331e531a30000040f000000130200035f0000002402200370000000000202043b000000000020043f000000200010043f0000000001000019000000400200003931e531a30000040f000000000101041a000000ff0010019000000a9d0000013d00000c990040009c000010ce0000613d00000c9a0040009c000012d50000613d00000c9b0040009c00001c110000c13d000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b001300000001001d00000c7d0010009c00001c110000213d0000086901000039000000000101041a00000cd80110009a00000c7d011001970000000002000411000000000012004b000015390000c13d31e529850000040f000000130100002931e530810000040f000016440000013d00000cd50040009c000010d30000613d00000cd60040009c000012e60000613d00000cd70040009c000009a40000613d00001c110000013d00000cac0040009c000010de0000613d00000cad0040009c000013470000613d00000cae0040009c00001c110000c13d000001a40030008c00001c110000413d0000012401500370000000000101043b001300000001001d00000c7a0010009c00001c110000213d0000014401500370000000000101043b001200000001001d00000c7a0010009c00001c110000213d0000016401500370000000000101043b001100000001001d00000c7a0010009c00001c110000213d0000018401500370000000000101043b00000cee0010009c00001c110000213d0000002302100039000000000032004b00001c110000813d000f00040010003d0000000f02500360000000000202043b001000000002001d00000cee0020009c00001c110000213d0000001001100029000e00240010003d0000000e0030006b00001c110000213d0000000401500370000000000101043b000d00000001001d0000002401500370000000000101043b000c00000001001d0000004401500370000000000101043b000b00000001001d0000006401500370000000000101043b000a00000001001d0000008401500370000000000101043b000900000001001d000000a401500370000000000101043b000800000001001d000000c401500370000000000101043b000700000001001d000000e401500370000000000101043b000600000001001d0000010401500370000000000101043b0000006502000039000000000302041a000000020030008c0000152f0000613d0000000203000039000000000032041b0000086b02000039000000000202041a00000cf100200198000018fe0000c13d00000000020004110000006002200210000000a00020043f0000000d02000029000000b40020043f000000d40010043f0000005401000039000000800010043f0000010001000039000000400010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d15011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000400200043d000500000002001d00000d160020009c00001e5b0000213d000000000101043b0000000503000029000001a002300039000000400020043f0000016002300039000300000002001d000000110400002900000000004204350000014002300039000400000002001d000000120400002900000000004204350000012002300039001100000002001d000000130400002900000000004204350000010002300039000100000002001d0000000000120435000000e001300039000200000001001d00000006020000290000000000210435000000c001300039001200000001001d00000007020000290000000000210435000000a001300039000700000001001d000000080200002900000000002104350000008001300039000800000001001d000000090200002900000000002104350000006001300039000900000001001d0000000a0200002900000000002104350000004001300039001300000001001d0000000b0200002900000000002104350000000d010000290000000001130436000d00000001001d0000000c02000029000000000021043500000010010000290000001f0110003900000d6c011001970000003f0110003900000d6c02100197000000400100043d0000000002210019000000000012004b0000000003000039000000010300403900000cee0020009c00001e5b0000213d000000010030019000001e5b0000c13d000000400020043f000000100200002900000000022104360000000e04000029000000000040007c00001c110000213d000000100500002900000d6c045001980000001f0550018f00000000034200190000000f0600002900000020066000390000000206600367000005a20000613d000000000706034f0000000008020019000000007907043c0000000008980436000000000038004b0000059e0000c13d000000000005004b000005af0000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000001002200029000000000002043500000005020000290000018003200039001000000003001d0000000000130435000000000102043300000c7d0010009c000021d80000213d0000001301000029000000000101043300000c7d0010009c000021d80000213d000000000010043f0000086d01000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b00000012020000290000000002020433000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000000101041a000000ff0010019000001c600000c13d000000400100043d00000d2202000041000014ec0000013d00000ccc0040009c000012500000613d000000000d05034f00000ccd0040009c0000136e0000613d00000cce0040009c00001c110000c13d000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401d00370000000000101043b001300000001001d00000cee0010009c00001c110000213d0000001301000029001200040010003d000000120130006a00000cf30010009c00001c110000213d000001800010008c00001c110000413d0000006501000039000000000201041a000000020020008c0000152f0000613d0000000202000039000000000021041b0000086b01000039000000000101041a00000cf500100198000016530000c13d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d0000001302000029001101440020003d00000002020003670000001103200360000000000101043b000000000303043b00000c7a0030009c00001c110000213d00000c7a01100197000000000013004b000018e60000813d000000110300002900100020003000920000001002200360000000000202043b00000c7a0020009c00001c110000213d000000000012004b00001a160000813d000000400100043d00000d5b02000041000014ec0000013d00000ca30040009c0000125d0000613d000000000b05034f00000ca40040009c000014be0000613d00000ca50040009c00001c110000c13d0000000005030019000000240030008c00001c110000413d0000000002000416000000000002004b00001c110000c13d0000000402b00370000000000202043b001100000002001d00000cee0020009c00001c110000213d00000011020000290000002302200039000000000052004b00001c110000813d0000001102000029000000040220003900000000022b034f000000000202043b001000000002001d00000cee0020009c00001c110000213d0000001102000029000000240d200039000000100200002900000005032002100000000002d30019000000000052004b00001c110000213d0000003f0230003900000d070220019700000cfa0020009c00001e5b0000213d00000000040500190000008002200039000000400020043f0000001005000029000000800050043f000000000005004b000016cf0000c13d00000020010000390000000003120436000000800100043d0000000000130435000000400320003900000005041002100000000007340019000000000001004b000017890000c13d0000000001270049000010920000013d000000000c05034f00000cbe0040009c00000a360000613d00000cbf0040009c00001c110000c13d0000000006030019000000c40030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401c00370000000000101043b001300000001001d00000c7d0010009c00001c110000213d0000004401c00370000000000101043b001100000001001d0000002401c00370000000000101043b001200000001001d0000006401c00370000000000101043b001000000001001d00000c7d0010009c00001c110000213d0000008401c00370000000000101043b00000cee0010009c00001c110000213d0000002302100039000000000062004b00001c110000813d000000040210003900000000032c034f000000000303043b000f00000003001d00000cee0030009c00001c110000213d0000002403100039000e00000003001d0000000f01300029000000000061004b00001c110000213d000000a401c00370000000000301043b00000cee0030009c00001c110000213d0000002301300039000000000061004b00001c110000813d000000040130003900000000051c034f000000000505043b000d00000005001d00000cee0050009c00001c110000213d0000002405300039000c00000005001d0000000d03500029000000000063004b00001c110000213d0000000f030000290000001f0330003900000d6c03300197000a00000003001d0000003f0330003900000d6c0330019700000cfa0030009c00001e5b0000213d0000008003300039000000400030043f000000200220003900000000070c034f00000000032c034f0000000f02000029000000800020043f00000d6c04200198000b001f00200193000800000004001d000000a002400039000006b30000613d000000a004000039000000000503034f000000005605043c0000000004640436000000000024004b000006af0000c13d0000000b0000006b000006c10000613d00000008033003600000000b040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000f02000029000000a00220003900000000000204350000000d020000290000001f0220003900000d6c02200197000500000002001d0000003f0220003900000d6c02200197000000400300043d0000000002230019000900000003001d000000000032004b0000000003000039000000010300403900000cee0020009c00001e5b0000213d000000010030019000001e5b0000c13d000000400020043f0000002001100039000000000217034f0000000d010000290000000903000029000000000413043600000d6c031001980006001f00100193000400000003001d000700000004001d0000000001340019000006e60000613d000000000302034f0000000704000029000000003503043c0000000004540436000000000014004b000006e20000c13d000000060000006b000006f40000613d000000040220036000000006030000290000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f000000000021043500000007020000290000000d012000290000000000010435000000800100043d00000c7a0010009c00000c7a010080410000006001100210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000121019f00000cfc011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000200000001001d000000400300043d000000400130003900000012020000290000000000210435000300000003001d000000200230003900000d2d01000041000100000002001d000000000012043500000cfb010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000301043b0000000304000029000000c00140003900000002020000290000000000210435000000a001400039000000100200002900000000002104350000008001400039000000110200002900000000002104350000006001400039000200000003001d0000000000310435000000c001000039000000000014043500000cfe0040009c00001e5b0000213d0000000302000029000000e001200039000000400010043f000000010100002900000c7a0010009c00000c7a010080410000004001100210000000000202043300000c7a0020009c00000c7a020080410000006002200210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000300000001001d0000047f01000039000000000201041a0000048001000039000000000301041a000000400100043d0000008004100039000000020500002900000000005404350000006004100039000000000034043500000040031000390000000000230435000000200210003900000cff0300004100000000003204350000008003000039000000000031043500000d000010009c00001e5b0000213d000000a003100039000000400030043f00000c7a0020009c00000c7a020080410000004002200210000000000101043300000c7a0010009c00000c7a010080410000006001100210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000400200043d00000022032000390000000304000029000000000043043500000d010300004100000000003204350000000203200039000000000013043500000c7a0020009c00000c7a020080410000004001200210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000121019f00000d02011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000300000001001d00000009010000290000000001010433000000410010008c0000078d0000c13d00000009010000290000004001100039000000000101043300000d030010009c00001cf70000a13d000000400200043d000000440120003900000040030000390000000000310435000000200120003900000d0503000041000000000031043500000024032000390000000304000029000000000043043500000009030000290000000003030433000000640420003900000000003404350000008404200039000000000003004b0000000708000029000007a70000613d000000000500001900000000064500190000000007850019000000000707043300000000007604350000002005500039000000000035004b000007a00000413d000000000443001900000000000404350000001f0330003900000d6c0330019700000064043000390000000000420435000000a30330003900000d6c043001970000000003240019000000000043004b0000000004000039000000010400403900000cee0030009c00001e5b0000213d000000010040019000001e5b0000c13d000000400030043f000000000302043300000000020004140000001304000029000000040040008c00001d8e0000c13d0000000102000039000000010400003100001da00000013d00000c950040009c00000a970000613d00000c960040009c00001c110000c13d0000000001000416000000000001004b00001c110000c13d00000cf601000041000000800010043f00000cf201000041000031e60001042e000000000e05034f00000cd10040009c00000ec40000613d00000cd20040009c00001c110000c13d000000640030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401e00370000000000101043b001300000001001d00000c7d0010009c00001c110000213d0000004401e00370000000000201043b000000000002004b0000000001000039000000010100c039001200000002001d000000000012004b00001c110000c13d0000086901000039000000000101041a00000cd80110009a00000c7d011001970000000002000411000000000012004b000015390000c13d0000002401e00370000000000301043b0000006501000039000000000201041a000000020020008c0000152f0000613d001100000003001d0000000202000039000000000021041b0000001301000029000000000010043f0000086d01000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b0000001102000029000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000000201041a00000d6d022001970000001203000029000000000232019f000000000021041b000000400100043d000000000031043500000c7a0010009c00000c7a010080410000004001100210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000c82011001c70000800d02000039000000030300003900000d4f0400004100000013050000290000001106000029000016410000013d00000ca80040009c0000103d0000613d00000ca90040009c00001c110000c13d0000000001000416000000000001004b00001c110000c13d0000800b0100003900000004030000390000000004000415000000200440008a000000050440021000000cfb02000041000012590000013d00000cc80040009c000010680000613d00000cc90040009c00001c110000c13d0000000001000416000000000001004b00001c110000c13d00000d4101000041000000800010043f00000cf201000041000031e60001042e00000c9f0040009c0000109a0000613d00000ca00040009c00001c110000c13d0000000006030019000000c40030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d000000000e05034f0000006401e00370000000000101043b001100000001001d0000004401e00370000000000101043b001000000001001d0000002401e00370000000000101043b001200000001001d0000000401e00370000000000101043b001300000001001d0000008401e00370000000000101043b00000cee0010009c00001c110000213d0000002302100039000000000062004b00001c110000813d000000040210003900000000032e034f000000000303043b000f00000003001d00000cee0030009c00001c110000213d0000002403100039000e00000003001d0000000f01300029000000000061004b00001c110000213d000000a401e00370000000000301043b00000cee0030009c00001c110000213d0000002301300039000000000061004b00001c110000813d000000040130003900000000051e034f000000000505043b000d00000005001d00000cee0050009c00001c110000213d0000002405300039000c00000005001d0000000d03500029000000000063004b00001c110000213d0000006503000039000000000403041a000000020040008c0000152f0000613d0000000204000039000000000043041b000000130300002900000cf70030009c000019800000813d0000000f030000290000001f0330003900000d6c03300197000a00000003001d0000003f0330003900000d6c0330019700000cfa0030009c00001e5b0000213d0000008003300039000000400030043f000000200220003900000000032e034f0000000f02000029000000800020043f00000d6c04200198000b001f00200193000800000004001d000000a002400039000008990000613d000000a004000039000000000503034f000000005605043c0000000004640436000000000024004b000008950000c13d0000000b0000006b000008a70000613d00000008033003600000000b040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000f02000029000000a00220003900000000000204350000000d020000290000001f0220003900000d6c02200197000500000002001d0000003f0220003900000d6c02200197000000400300043d0000000002230019000900000003001d000000000032004b0000000003000039000000010300403900000cee0020009c00001e5b0000213d000000010030019000001e5b0000c13d000000400020043f000000200110003900000000021e034f0000000d010000290000000903000029000000000413043600000d6c031001980006001f00100193000400000003001d000700000004001d0000000001340019000008cc0000613d000000000302034f0000000704000029000000003503043c0000000004540436000000000014004b000008c80000c13d000000060000006b000008da0000613d000000040220036000000006030000290000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f000000000021043500000007020000290000000d01200029000000000001043500000cfb010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000101043b000300000001001d000000800100043d00000c7a0010009c00000c7a010080410000006001100210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000121019f00000cfc011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000201043b000000400100043d000000c0031000390000000000230435000000a00210003900000011030000290000000000320435000000800210003900000010030000290000000000320435000000600210003900000003030000290000000000320435000000400210003900000012030000290000000000320435000000200210003900000cfd030000410000000000320435000000c003000039000000000031043500000cfe0010009c00001e5b0000213d000000e003100039000000400030043f00000c7a0020009c00000c7a020080410000004002200210000000000101043300000c7a0010009c00000c7a010080410000006001100210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000200000001001d0000047f01000039000000000201041a0000048001000039000000000301041a000000400100043d0000008004100039000000030500002900000000005404350000006004100039000000000034043500000040031000390000000000230435000000200210003900000cff0300004100000000003204350000008003000039000000000031043500000d000010009c00001e5b0000213d000000a003100039000000400030043f00000c7a0020009c00000c7a020080410000004002200210000000000101043300000c7a0010009c00000c7a010080410000006001100210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000400200043d00000022032000390000000204000029000000000043043500000d010300004100000000003204350000000203200039000000000013043500000c7a0020009c00000c7a020080410000004001200210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000121019f00000d02011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000300000001001d00000009010000290000000001010433000000410010008c0000096d0000c13d00000009010000290000004001100039000000000101043300000d030010009c00001d390000a13d000000400200043d000000440120003900000040030000390000000000310435000000200120003900000d0503000041000000000031043500000024032000390000000304000029000000000043043500000009030000290000000003030433000000640420003900000000003404350000008404200039000000000003004b0000000708000029000009870000613d000000000500001900000000064500190000000007850019000000000707043300000000007604350000002005500039000000000035004b000009800000413d000000000443001900000000000404350000001f0330003900000d6c0330019700000064043000390000000000420435000000a30330003900000d6c043001970000000003240019000000000043004b0000000004000039000000010400403900000cee0030009c00001e5b0000213d000000010040019000001e5b0000c13d000000400030043f000000000302043300000000020004140000001304000029000000040040008c00001e110000c13d0000000102000039000000010400003100001e230000013d00000cb80040009c0000155b0000613d00000cb90040009c00001c110000c13d0000000001000416000000000001004b00001c110000c13d000000800000043f00000cf201000041000031e60001042e00000c8f0040009c000015620000613d00000c900040009c00001c110000c13d000001640030008c00001c110000413d0000010401500370000000000101043b001300000001001d00000c7a0010009c00001c110000213d0000012401500370000000000101043b001200000001001d00000c7a0010009c00001c110000213d0000014401500370000000000101043b00000cee0010009c00001c110000213d0000002302100039000000000032004b00001c110000813d0000000402100039000000000225034f000000000202043b001100000002001d00000cee0020009c00001c110000213d0000002402100039001000000002001d0000001101200029000000000031004b00001c110000213d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000c7a01100197000f00000001001d0000001301100029001300000001001d00000c7a0010009c000018e90000a13d00000d5901000041000000000010043f0000001101000039000000040010043f00000d5301000041000031e70001043000000cb30040009c0000156b0000613d00000cb40040009c00001c110000c13d000000640030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b00000c7d0010009c00001c110000213d0000002402500370000000000202043b0000004403500370000000000303043b31e5289e0000040f000000400200043d000000000012043500000c7a0020009c00000c7a02008041000000400120021000000cec011001c7000031e60001042e00000c8a0040009c000015b00000613d00000c8b0040009c00001c110000c13d000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b001300000001001d00000c7d0010009c00001c110000213d0000086901000039000000000101041a00000cd80110009a00000c7d011001970000000002000411000000000012004b000015390000c13d31e529850000040f000000130100002931e530640000040f000016440000013d000000400100043d000000640210003900000c7e030000410000000000320435000000440210003900000c7f03000041000000000032043500000024021000390000002703000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000c81011001c7000031e7000104300000000001000416000000000001004b00001c110000c13d0000086901000039000015660000013d0000000001000416000000000001004b00001c110000c13d00000c7a01000041000000800010043f00000cf201000041000031e60001042e000001240030008c00001c110000413d0000000401c00370000000000101043b00000c7d0010009c00001c110000213d0000002402c00370000000000202043b00000c7d0020009c00001c110000213d00000000040300190000004403c00370000000000303043b00000c7d0030009c00001c110000213d000000a405c00370000000000605043b00000d2f0060019800000d3005000041000000000500601900000d3107600197000000000575019f000000000056004b00001c110000c13d000000c405c00370000000000705043b00000c7a0070009c00001c110000213d000000e405c00370000000000805043b00000cee0080009c00001c110000213d0000002305800039000000000045004b00001c110000813d000000040980003900000000059c034f000000000505043b00000cee0050009c00001e5b0000213d0000001f0b50003900000d6c0bb001970000003f0bb0003900000d6c0bb0019700000cfa00b0009c00001e5b0000213d0000002408800039000000800bb000390000004000b0043f000000800050043f0000000008850019000000000048004b00001c110000213d0000002004900039000000000f0c034f00000000084c034f00000d6c095001980000001f0a50018f000000a00490003900000a780000613d000000a00b000039000000000c08034f00000000cd0c043c000000000bdb043600000000004b004b00000a740000c13d00000000000a004b00000a850000613d000000000898034f0000000309a00210000000000a040433000000000a9a01cf000000000a9a022f000000000808043b0000010009900089000000000898022f00000000089801cf0000000008a8019f0000000000840435000000a00450003900000000000404350000006504000039000000000404041a000000020040008c000018ed0000613d00000002040000390000006505000039000000000045041b0000086b04000039000000000404041a00000cf10040019800001a130000c13d0000006404f00370000000000404043b0000008405f00370000000000505043b000013440000013d0000000001000416000000000001004b00001c110000c13d0000086b01000039000000000101041a00000cf5001001980000000001000039000000010100c039000000800010043f00000cf201000041000031e60001042e0000000001000416000000000001004b00001c110000c13d0000000001000412001d00000001001d001c00200000003d0000800501000039000000440300003900000000040004150000001d0440008a000000050440021000000d170200004131e531b80000040f000015670000013d000000e40030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b001300000001001d00000cee0010009c00001c110000213d00000000040300190000001301000029001200040010003d000000120130006a00000cf30010009c00001c110000213d000001800010008c00001c110000413d000000a401500370000000000101043b00000cee0010009c00001c110000213d0000002302100039000000000042004b00001c110000813d0000000402100039000000000225034f000000000202043b001100000002001d00000cee0020009c00001c110000213d0000002402100039001000000002001d000f00110020002d0000000f0040006b00001c110000213d000000c401500370000000000101043b00000cee0010009c00001c110000213d0000002302100039000000000042004b00001c110000813d0000000402100039000000000225034f000000000202043b000e00000002001d00000cee0020009c00001c110000213d0000002402100039000d00000002001d000c000e0020002d0000000c0040006b00001c110000213d0000002401500370000000000101043b000800000001001d0000004401500370000000000101043b000b00000001001d0000006401500370000000000101043b000a00000001001d0000008401500370000000000101043b000900000001001d0000006501000039000000000101041a000000020010008c0000152f0000613d00000002010000390000006503000039000000000013041b0000086b01000039000000000101041a00000cf500100198000016530000c13d0000001301000029000601440010003d0000000601500360000000000101043b000700000001001d00000c7a0010009c00001c110000213d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000c7a01100197000000070010006b00000b1c0000413d000000130100002900000044011000390000000201100367000000000101043b00000c7d0010009c000021d80000213d0000000002000411000000000021004b00001bd50000c13d000000000c0000310000001201c0006a00000cf30010009c00001c110000213d000001800010008c00001c110000413d000000400100043d00000d110010009c00001e5b0000213d0000018002100039000000400020043f000000060b0000290000014002b0008a000000020d00036700000000022d034f000000000202043b00000000022104360000012003b0008a00000000033d034f000000000303043b00000000003204350000010003b0008a00000000033d034f000000000403043b00000040031000390000000000430435000000e004b0008a00000000044d034f000000000504043b00000060041000390000000000540435000000c005b0008a00000000055d034f000000000605043b00000080051000390000000000650435000000a006b0008a00000000066d034f000000000706043b000000a00610003900000000007604350000008007b0008a00000000077d034f000000000807043b000000c00710003900000000008704350000006008b0008a00000000088d034f000000000908043b000000e00810003900000000009804350000004009b0008a000000000a9d034f0000010009100039000000000a0a043b0000000000a90435000000200bb0008a000000000abd034f000000000e0a043b00000c7a00e0009c00001c110000213d000001200a10003900130000000a001d0000000000ea0435000000200eb00039000000000bed034f000000000f0b043b00000c7a00f0009c00001c110000213d000001400a10003900070000000a001d0000000000fa0435000000200ee00039000000000eed034f000000000e0e043b00000cee00e0009c00001c110000213d000000120ae0002900060000000a001d0000001f0ea000390000000000ce004b000000000b00001900000d080b00804100000d080ee0019700000d080fc00197000000000afe013f0000000000fe004b000000000e00001900000d080e00404100000d0800a0009c000000000e0bc01900000000000e004b00001c110000c13d000000060ad00360000000000a0a043b00000cee00a0009c00001e5b0000213d000000000f0a00190000001f0aa0003900000d6c0aa001970000003f0aa0003900000d6c0aa00197000000400b00043d000000000eab001900050000000b001d0000000000be004b000000000a000039000000010a00403900000cee00e0009c00001e5b0000213d0000000100a0019000001e5b0000c13d000000060a000029000000200ba000390000004000e0043f000000050e000029000000000efe043600060000000e001d000000000abf00190000000000ca004b00001c110000213d0003000000bd035300000d6c0bf001980004001f00f00193000000060cb0002900000ba00000613d000000030e00035f000000060d00002900000000ea0e043c000000000dad04360000000000cd004b00000b9c0000c13d000000040000006b00000bae0000613d000000030ab0035f000000040b000029000000030bb00210000000000d0c0433000000000dbd01cf000000000dbd022f000000000a0a043b000001000bb00089000000000aba022f000000000aba01cf000000000ada019f0000000000ac0435000000060af0002900000000000a0435000001600c100039000000050a0000290000000000ac0435000000400b00043d000000200db00039000000400a00003900060000000d001d0000000000ad04350000000001010433000000600ab0003900000000001a043500000000010204330000008002b0003900000000001204350000000001030433000000a002b0003900000000001204350000000001040433000000c002b0003900000000001204350000000001050433000000e002b00039000000000012043500000000010604330000010002b00039000000000012043500000000010704330000012002b00039000000000012043500000000010804330000014002b00039000000000012043500000000010904330000016002b0003900000000001204350000001301000029000000000101043300000c7a011001970000018002b0003900000000001204350000000701000029000000000101043300000c7a01100197000001a002b00039000000000012043500000000010c0433000001c002b0003900000180030000390000000000320435000001e002b000390000000016010434000000000062043500130000000b001d0000020002b00039000000000006004b00000bf00000613d000000000300001900000000042300190000000005310019000000000505043300000000005404350000002003300039000000000063004b00000be90000413d000700000006001d0000000001260019000000000001043500000cfb010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000013040000290000004002400039000000000012043500000007010000290000001f0110003900000d6c01100197000001e00210003900000000002404350000021f0110003900000d6c021001970000000001420019000000000021004b0000000002000039000000010200403900000cee0010009c00001e5b0000213d000000010020019000001e5b0000c13d000000400010043f000000060100002900000c7a0010009c00000c7a0100804100000040011002100000001302000029000000000202043300000c7a0020009c00000c7a020080410000006002200210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000301043b000000400100043d001300000001001d00000d120010009c00001e5b0000213d0000001301000029000000c004100039000000400040043f0000000001000031000000120210006a00000cf30020009c00001c110000213d000001800020008c00001c110000413d000000130200002900000d130020009c00001e5b0000213d00000013070000290000024002700039000000400020043f00000002020003670000001208000029000000000582034f000000000505043b000700000005001d00000000005404350000002005800039000000000552034f000000000505043b000000e00670003900000000005604350000004005800039000000000552034f000000000505043b000001000670003900000000005604350000006005800039000000000552034f000000000505043b000001200670003900000000005604350000008005800039000000000552034f000000000505043b00000140067000390000000000560435000000a005800039000000000552034f000000000505043b00000160067000390000000000560435000000c005800039000000000552034f000000000505043b00000180067000390000000000560435000000e005800039000000000552034f000000000605043b000001a005700039000600000006001d00000000006504350000010005800039000000000552034f000001c006700039000000000505043b000500000005001d00000000005604350000012005800039000000000652034f000000000606043b00000c7a0060009c00001c110000213d0000001307000029000001e00770003900000000006704350000002005500039000000000652034f000000000606043b00000c7a0060009c00001c110000213d0000001307000029000002000770003900000000006704350000002005500039000000000552034f000000000505043b00000cee0050009c00001c110000213d00000012075000290000001f05700039000000000015004b000000000600001900000d080600804100000d080550019700000d0808100197000000000985013f000000000085004b000000000500001900000d080500404100000d080090009c000000000506c019000000000005004b00001c110000c13d000000000572034f000000000605043b00000cee0060009c00001e5b0000213d0000001f0560003900000d6c055001970000003f0550003900000d6c08500197000000400500043d0000000008850019000000000058004b0000000009000039000000010900403900000cee0080009c00001e5b0000213d000000010090019000001e5b0000c13d0000002009700039000000400080043f00000000076504360000000008960019000000000018004b00001c110000213d000000000992034f00000d6c0a6001980000001f0b60018f0000000008a7001900000cb00000613d000000000c09034f000000000d07001900000000ce0c043c000000000ded043600000000008d004b00000cac0000c13d00000000000b004b00000cbd0000613d0000000009a9034f000000030ab00210000000000b080433000000000bab01cf000000000bab022f000000000909043b000001000aa000890000000009a9022f0000000009a901cf0000000009b9019f000000000098043500000000066700190000000000060435000000130700002900000060067000390000000908000029000000000086043500000040067000390000000a0800002900000000008604350000002006700039000000000036043500000000004704350000022003700039000000000053043500000011030000290000001f0330003900000d6c033001970000003f0330003900000d6c04300197000000400300043d0000000005430019000000000035004b0000000006000039000000010600403900000cee0050009c00001e5b0000213d000000010060019000001e5b0000c13d000000400050043f000000110500002900000000075304360000000f0010006b00001c110000213d0000001005200360000000110800002900000d6c098001980000001f0680018f000000000a97001900000ce90000613d000000000805034f000000008b08043c0000000007b704360000000000a7004b00000ce50000c13d000000000006004b000000000795034f000000030860021000000cf60000613d000000000b0a0433000000000b8b01cf000000000b8b022f000000000c07043b000001000d800089000000000cdc022f000000000cdc01cf000000000bbc019f0000000000ba0435000000110a000029000000200aa00039000000000ba3001900000000000b0435000000130c000029000000a00bc00039000000080d0000290000000000db0435000000800bc0003900000000003b0435000000070300002900000c7d0030009c000021d80000213d000000400300043d0000000004430019000000000034004b000000000b000039000000010b00403900000cee0040009c00001e5b0000213d0000000100b0019000001e5b0000c13d000000400040043f00000011040000290000000004430436000000000b940019000000000009004b00000d170000613d0000000009040019000000005c05043c0000000009c904360000000000b9004b00000d130000c13d000000000006004b00000d220000613d00000000050b043300000000058501cf000000000585022f000000000607043b0000010007800089000000000676022f00000000067601cf000000000556019f00000000005b04350000000005a3001900000000000504350000000e050000290000001f0550003900000d6c055001970000003f0550003900000d6c05500197000000400600043d0000000005560019001100000006001d000000000065004b0000000006000039000000010600403900000cee0050009c00001e5b0000213d000000010060019000001e5b0000c13d000000400050043f0000000e0500002900000011060000290000000005560436001200000005001d0000000c0010006b00001c110000213d0000000d022003600000000e0600002900000d6c056001980000001f0660018f000000120150002900000d460000613d000000000702034f0000001208000029000000007907043c0000000008980436000000000018004b00000d420000c13d000000000006004b00000d530000613d000000000252034f0000000305600210000000000601043300000000065601cf000000000656022f000000000202043b0000010005500089000000000252022f00000000025201cf000000000262019f000000000021043500000012020000290000000e01200029000000000001043500000c7a0040009c00000c7a040080410000004001400210000000000203043300000c7a0020009c00000c7a020080410000006002200210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000201043b000000400100043d000000c0031000390000000000230435000000a0021000390000000903000029000000000032043500000080021000390000000a030000290000000000320435000000600210003900000006030000290000000000320435000000400210003900000005030000290000000000320435000000200210003900000cfd030000410000000000320435000000c003000039000000000031043500000cfe0010009c00001e5b0000213d000000e003100039000000400030043f00000c7a0020009c00000c7a020080410000004002200210000000000101043300000c7a0010009c00000c7a010080410000006001100210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000f00000001001d0000047f01000039000000000201041a0000048001000039000000000301041a000000400100043d0000008004100039000000060500002900000000005404350000006004100039000000000034043500000040031000390000000000230435000000200210003900000cff0300004100000000003204350000008003000039001000000003001d000000000031043500000d000010009c00001e5b0000213d000000a003100039000000400030043f00000c7a0020009c00000c7a020080410000004002200210000000000101043300000c7a0010009c00000c7a010080410000006001100210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000400200043d00000022032000390000000f04000029000000000043043500000d010300004100000000003204350000000203200039000000000013043500000c7a0020009c00000c7a020080410000004001200210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000121019f00000d02011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000f00000001001d00000011010000290000000001010433000000410010008c00000e1f0000c13d00000011010000290000004001100039000000000101043300000d030010009c00000e1f0000213d00000011020000290000006002200039000000000202043300000012030000290000000003030433000000400400043d0000006005400039000000000015043500000040014000390000000000310435000000f801200270000000200240003900000000001204350000000f010000290000000000140435000000000000043f00000c7a0040009c00000c7a040080410000004001400210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000d04011001c7000000010200003931e531db0000040f000000600310027000000c7a03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200440019000000e070000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b00000e030000c13d000000000005004b00000e140000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000024860000613d000000000100043d00000c7d00100198000000000100601900000e1f0000613d000000070110014f00000c7d001001980000251d0000613d000000400200043d000000440120003900000040030000390000000000310435000000200120003900000d0503000041000000000031043500000024032000390000000f04000029000000000043043500000011030000290000000003030433000000640420003900000000003404350000008404200039000000000003004b00000e380000613d000000000500001900000000064500190000001207500029000000000707043300000000007604350000002005500039000000000035004b00000e310000413d000000000443001900000000000404350000001f0330003900000d6c0330019700000064043000390000000000420435000000a30330003900000d6c043001970000000003240019000000000043004b0000000004000039000000010400403900000cee0030009c00001e5b0000213d000000010040019000001e5b0000c13d000000400030043f000000000302043300000000020004140000000704000029000000040040008c000024920000c13d00000001020000390000000103000031000024a40000013d0000000001000416000000000001004b00001c110000c13d00000d2d01000041000000800010043f00000cf201000041000031e60001042e000001840030008c00001c110000413d0000010401500370000000000101043b001300000001001d00000c7a0010009c00001c110000213d0000012401500370000000000101043b001200000001001d00000c7a0010009c00001c110000213d0000014401500370000000000101043b001100000001001d00000c7a0010009c00001c110000213d0000016401500370000000000101043b00000cee0010009c00001c110000213d00000000040300190000002302100039000000000032004b00001c110000813d0000000402100039000000000225034f000000000202043b001000000002001d00000cee0020009c00001c110000213d0000002402100039000f00000002001d0000001001200029000000000041004b00001c110000213d0000006501000039000000000101041a000000020010008c0000152f0000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000cf100100198000018fe0000c13d000000c00110027000000c7a01100197000e00000001001d31e528f40000040f0000086b03000039000000000203041a00000cdf02200197000000c00110021000000cde01100197000000000112019f000000000013041b31e5257f0000040f00000002020003670000000403200370000000000303043b0000000004010019000d00000001001d00000000013104360000002403200370000000000303043b00000000003104350000004401200370000000000101043b000000400340003900000000001304350000006401200370000000000101043b000000600340003900000000001304350000008401200370000000000101043b00000080034000390000000000130435000000a401200370000000000101043b000000a0034000390000000000130435000000c401200370000000000101043b000000c0034000390000000000130435000000e401200370000000000101043b000000e002400039000000000012043500000100014000390000000e02000029000000000021043500000120014000390000001302000029000000000021043500000140014000390000001202000029000000000021043500000160014000390000001102000029000000000021043500000000030000310000000f010000290000001002000029000019c70000013d000000640030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401e00370000000000101043b00000cee0010009c00001c110000213d0000000002030019000000000413004900000cf30040009c00001c110000213d000000640040008c00001c110000413d0000002403e00370000000000303043b001300000003001d00000c7a0030009c00001c110000213d0000004403e00370000000000303043b00000cee0030009c00001c110000213d0000002305300039000000000025004b00001c110000813d000000040530003900000000055e034f000000000505043b001000000005001d00000cee0050009c00001c110000213d000000240330003900000010050000290000000505500210000e00000003001d001200000005001d000f00000035001d0000000f0020006b00001c110000213d0000006503000039000000000503041a000000020050008c0000152f0000613d0000000205000039000000000053041b001100040010003d0000001101e00360000000000101043b000001830440008a00000d080310019700000d0805400197000000000653013f000000000053004b000000000300001900000d0803004041000000000041004b000000000400001900000d080400804100000d080060009c000000000304c019000000000003004b00001c110000c13d000000110110002931e525ed0000040f000d00000001001d0000008001100039000000000101043300000cf70010009c000021d80000813d31e52b030000040f0000000d0100002931e528ff0000040f000000400200043d000c00000002001d00000d120020009c00001e5b0000213d0000000d0500002900000020025000390000000002020433000001600350003900000000030304330000000c06000029000000c004600039000000400040043f0000002004600039000b00000004001d00000000001404350000000000560435000000110100002900000040041000390000000201000367000000000441034f000000000404043b0000008005600039000800000005001d00000000003504350000006003600039000900000003001d00000000002304350000004002600039000d00000002001d0000000000420435000000a002600039000a00000002001d000000000002043500000012020000290000003f0220003900000d0702200197000000400300043d0000000002230019001200000003001d000000000032004b0000000003000039000000010300403900000cee0020009c00001e5b0000213d000000010030019000001e5b0000c13d000000400020043f000000120200002900000010040000290000000002420436001100000002001d0000000f02000029000000000020007c00001c110000213d000000100000006b0000000e040000290000000f0500002900000f500000613d0000001202000029000000000341034f000000000303043b000000200220003900000000003204350000002004400039000000000054004b00000f490000413d000000400100043d001000000001001d00000d3c0010009c00001e5b0000213d0000000d010000290000000001010433000e00000001001d0000000c01000029000000000101043300000010030000290000006002300039000000400020043f0000000001130436000f00000001001d00000cfb010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000100200002900000040032000390000000e0200002900000000002304350000000f0200002900000000001204350000086c01000039000000000201041a000000130020006c0000241d0000a13d000000000010043f000000130100002900000003011000c900000d230110009a000000000101041a000e00000001001d000000400100043d00000020021000390000002004000039000000000042043500000010040000290000000004040433000000400510003900000060060000390000000000650435000000a005100039000000007604043400000000006504350000000005070433000000c006100039000000000056043500000040054000390000000005050433000000e006100039000000000056043500000060054000390000000005050433000001000610003900000000005604350000008005400039000000000505043300000120061000390000000000560435000000a005400039000000000505043300000140061000390000000000560435000000c005400039000000000505043300000160061000390000000000560435000000e00540003900000000050504330000018006100039000000000056043500000100054000390000000005050433000001a00610003900000000005604350000012005400039000000000505043300000c7a05500197000001c00610003900000000005604350000014005400039000000000505043300000c7a05500197000001e0061000390000000000560435000001600440003900000000040404330000020005100039000001800600003900000000006504350000022006100039000000005404043400000000004604350000024006100039000000000004004b00000fc20000613d000000000700001900000000086700190000000009750019000000000909043300000000009804350000002007700039000000000047004b00000fbb0000413d000000000564001900000000000504350000000f050000290000000005050433000000600610003900000000005604350000000003030433000000800510003900000000003504350000001f0340003900000d6c03300197000002200430003900000000004104350000025f0330003900000d6c043001970000000003140019000000000043004b0000000004000039000000010400403900000cee0030009c00001e5b0000213d000000010040019000001e5b0000c13d000000400030043f00000c7a0020009c00000c7a020080410000004002200210000000000101043300000c7a0010009c00000c7a010080410000006001100210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b00000012020000290000000002020433000000000002004b0000100e0000613d0000000003000019001300000003001d000000050230021000000011022000290000000002020433000000000021004b00000ffc0000813d000000000010043f000000200020043f000000000100041400000fff0000013d000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b0000001303000029000000010330003900000012020000290000000002020433000000000023004b00000ff20000413d0000000e0010006c00001ca30000c13d0000000c010000290000000001010433001200000001001d0000012001100039001100000001001d0000000001010433001300000001001d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000130200002900000c7a02200197000000000012004b0000061d0000413d0000000b010000290000000001010433001300000001001d000000000010043f0000087201000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000000101041a000000020010008c00001f350000c13d000000400100043d00000d5a02000041000014ec0000013d000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b00001c110000c13d0000086902000039000000000202041a00000cd80220009a00000c7d022001970000000003000411000000000023004b000015390000c13d0000006502000039000000000302041a000000020030008c0000152f0000613d0000000203000039000000000032041b0000086b02000039000000000302041a00000d0d03300197000000000001004b000000000400001900000d0e0400c041000000000343019f000000000032041b000000800010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d0f011001c70000800d02000039000000010300003900000d1004000041000016410000013d000000240030008c00001c110000413d0000000002000416000000000002004b00001c110000c13d0000000402500370000000000a02043b00000cee00a0009c00001c110000213d00000000040300190000002302a00039000000000032004b00001c110000813d0000000402a00039000000000225034f000000000b02043b00000cee00b0009c00001c110000213d000000240ca000390000000503b002100000000002c30019000000000042004b00001c110000213d0000003f0230003900000d070420019700000cfa0040009c00001e5b0000213d0000008002400039000000400020043f0000008000b0043f00000000000b004b000017770000c13d00000020010000390000000003120436000000800100043d0000000000130435000000400320003900000005041002100000000008340019000000000001004b000017a60000c13d000000000128004900000c7a0010009c00000c7a01008041000000600110021000000c7a0020009c00000c7a020080410000004002200210000000000121019f000031e60001042e0000000001000416000000000001004b00001c110000c13d0000086a01000039000015660000013d000000440030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000002401500370000000000701043b0000000401500370000000000601043b0000086901000039000000000101041a00000cd80110009a00000c7d011001970000000002000411000000000012004b000015390000c13d0000006501000039000000000201041a000000020020008c0000152f0000613d0000000202000039000000000021041b0000086c02000039000000000102041a00000cee0010009c00001e5b0000213d0000000103100039000000000032041b000000000020043f00000003021000c900000d240320009a000000000063041b00000d230220009a000000000072041b000000000200041400000c7a0510019700000c7a0020009c00000c7a02008041000000c00120021000000ce3011001c70000800d02000039000000040300003900000d400400004131e531d60000040f000000010020019000001c110000613d000016440000013d0000000001000416000000000001004b00001c110000c13d00000c5b01000039000015660000013d0000000001000416000000000001004b00001c110000c13d0000000001000412001f00000001001d001e00600000003d0000800501000039000000440300003900000000040004150000001f0440008a000014fc0000013d000000640030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000002401500370000000000101043b00000cee0010009c00001c110000213d00000000040300190000002302100039000000000032004b00001c110000813d001200040010003d0000001202500360000000000202043b001300000002001d00000cee0020009c00001c110000213d0000002401100039001000000001001d001100130010002d000000110040006b00001c110000213d0000004401500370000000000101043b00000cee0010009c00001c110000213d0000002302100039000000000042004b00001c110000813d0000000402100039000000000225034f000000000202043b000f00000002001d00000cee0020009c00001c110000213d0000002401100039000e00000001001d0000000f01100029000000000041004b00001c110000213d00000cfb010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000201043b0000004001000039000000a00010043f0000001303000029000000e00030043f00000d6c043001980000001f0530018f00000100034000390000001201000029001200200010003d00000002010003670000001206100360000011260000613d0000010007000039000000000806034f000000008908043c0000000007970436000000000037004b000011220000c13d000000000005004b000011330000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000130400002900000100034000390000000000030435000000c00020043f0000001f0240003900000d6c022001970000009f0320003900000d6c033001970000006002200039000000800020043f00000cfa0030009c00001e5b0000213d0000008003300039000000400030043f0000000401100370000000000101043b000d00000001001d00000c7a0020009c00000c7a020080410000006001200210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000121019f00000cfc011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b0000000d0010006c00001b040000c13d0000001301000029000000200010008c00001c110000413d00000002010003670000001202100360000000000202043b00000cee0020009c00001c110000213d000000100d2000290000001102d0006900000cf30020009c00001c110000213d000001800020008c00001c110000413d000000400200043d00000d110020009c00001e5b0000213d0000018003200039000000400030043f0000000003d1034f000000000303043b00000000033204360000002004d00039000000000441034f000000000404043b00000000004304350000004004d00039000000000441034f000000000504043b000000400420003900000000005404350000006005d00039000000000551034f000000000605043b000000600520003900000000006504350000008006d00039000000000661034f000000000706043b00000080062000390000000000760435000000a007d00039000000000771034f000000000807043b000000a0072000390000000000870435000000c008d00039000000000881034f000000000908043b000000c0082000390000000000980435000000e009d00039000000000991034f000000000a09043b000000e0092000390000000000a90435000001000ad00039000000000ba1034f000001000a200039000000000b0b043b0000000000ba0435000001200cd00039000000000bc1034f000000000e0b043b00000c7a00e0009c00001c110000213d000001200b2000390000000000eb0435000000200ec00039000000000ce1034f000000000f0c043b00000c7a00f0009c00001c110000213d000001400c20003900130000000c001d0000000000fc0435000000200ee00039000000000ee1034f000000000e0e043b00000cee00e0009c00001c110000213d000000000fde00190000001f0df000390000001100d0006c00001c110000813d000000000df1034f000000000c0d043b00120000000c001d00000cee00c0009c00001e5b0000213d000000120c0000290000001f0dc0003900000d6c0dd001970000003f0dd0003900000d6c0dd00197000000400c00043d000000000edc001900100000000c001d0000000000ce004b000000000d000039000000010d00403900000cee00e0009c00001e5b0000213d0000000100d0019000001e5b0000c13d000000200df000390000004000e0043f000000120c000029000000100e000029000000000ece0436000d0000000e001d000000000edc00190000001100e0006c00001c110000213d000c000000d10353000000120d00002900000d6c0ed001980011001f00d00193000b0000000e001d0000000d0fe00029000011d30000613d0000000c0e00035f0000000d0d00002900000000ec0e043c000000000dcd04360000000000fd004b000011cf0000c13d000000110000006b000011e20000613d0000000b0d0000290000000c0cd0035f000000110d000029000000030dd00210000000000e0f0433000000000ede01cf000000000ede022f000000000c0c043b000001000dd00089000000000cdc022f000000000cdc01cf000000000cec019f0000000000cf04350000000d0d000029000000120cd0002900000000000c0435000001600f200039000000100c0000290000000000cf04350000000f0c0000290000002000c0008c00001c110000413d000000400d00043d00000d2700d0009c00001e5b0000213d000000200cd000390000004000c0043f0000000e01100360000000000e01043b0000000000ed0435000000400d00043d0000002001d0003900000d280c000041001100000001001d0000000000c10435000000240cd000390000006001000039001200000001001d00000000001c04350000000002020433000000840cd0003900000000002c04350000000002030433000000a403d0003900000000002304350000000002040433000000c403d0003900000000002304350000000002050433000000e403d00039000000000023043500000000020604330000010403d00039000000000023043500000000020704330000012403d00039000000000023043500000000020804330000014403d00039000000000023043500000000020904330000016403d00039000000000023043500000000020a04330000018403d00039000000000023043500000000020b043300000c7a02200197000001a403d0003900000000002304350000001301000029000000000201043300000c7a02200197000001c403d00039000000000023043500000000020f0433000001e403d00039000001800400003900000000004304350000020403d000390000000042020434000000000023043500000000030004110000022405d00039000000000002004b000012330000613d000000000600001900000000075600190000000008640019000000000808043300000000008704350000002006600039000000000026004b0000122c0000413d000000000452001900000000000404350000006404d0003900000000003404350000004403d000390000000000e304350000001f0220003900000d6c02200197000002040320003900000000003d0435000002430220003900000d6c032001970000000002d30019000000000032004b0000000003000039000000010300403900000cee0020009c00001e5b0000213d000000010030019000001e5b0000c13d000000400020043f00000000040d043300000000030004140000000002000410000000040020008c000020280000c13d000000010100003100000000020000190000203a0000013d0000000001000416000000000001004b00001c110000c13d0000800b0100003900000004030000390000000004000415000000200440008a000000050440021000000cef0200004131e531b80000040f000000800010043f00000cf201000041000031e60001042e0000000001000416000000000001004b00001c110000c13d0000086b01000039000000000101041a000000c001100270000014ff0000013d000000440030008c00001c110000413d0000000401700370000000000101043b001300000001001d00000c7d0010009c00001c110000213d0000002401700370000000000201043b00000cee0020009c00001c110000213d00000000040300190000002301200039000000000031004b00001c110000813d0000000403200039000000000137034f000000000101043b00000cee0010009c00001e5b0000213d0000001f0510003900000d6c055001970000003f0550003900000d6c0550019700000cfa0050009c00001e5b0000213d00000024022000390000008005500039000000400050043f000000800010043f0000000002210019000000000042004b00001c110000213d0000002002300039000000000327034f00000d6c041001980000001f0510018f000000a002400039000012910000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b0000128d0000c13d000000000005004b0000129e0000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a001100039000000000001043500000d17010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000c7d011001970000000002000410000000000012004b000004150000613d00000d3402000041000000000202041a00000c7d02200197000000000012004b000016490000c13d0000086901000039000000000101041a00000cd80110009a00000c7d011001970000000002000411000000000012004b00001afb0000c13d0000000001000415001100000001001d00000d3701000041000000000101041a000000ff0010019000001b070000c13d000000400200043d00000d3801000041001200000002001d000000000012043500000000010004140000001302000029000000040020008c00001b220000c13d0000000005000415000000190550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900001b500000013d000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b000000000010043f0000087201000039000000200010043f0000004002000039000000000100001931e531a30000040f000000000101041a000000800010043f00000cf201000041000031e60001042e000001040030008c00001c110000413d000000000b05034f0000000401500370000000000201043b00000c7d0020009c00001c110000213d00000000040300190000002401b00370000000000301043b00000c7d0030009c00001c110000213d0000008401b00370000000000601043b00000d2f0060019800000d3001000041000000000100601900000d3105600197000000000151019f000000000016004b00001c110000c13d000000a401b00370000000000701043b00000c7a0070009c00001c110000213d000000c401b00370000000000501043b00000cee0050009c00001c110000213d0000002301500039000000000041004b00001c110000813d000000040850003900000000018b034f000000000101043b00000d6b0010009c00001e5b0000813d0000001f0a10003900000d6c0aa001970000003f0aa0003900000d6c0aa0019700000cfa00a0009c00001e5b0000213d0000002405500039000000800aa000390000004000a0043f000000800010043f0000000005510019000000000045004b00001c110000213d0000002004800039000000000d0b034f00000000054b034f00000d6c081001980000001f0910018f000000a004800039000013250000613d000000a00a000039000000000b05034f00000000bc0b043c000000000aca043600000000004a004b000013210000c13d000000000009004b000013320000613d000000000585034f0000000308900210000000000904043300000000098901cf000000000989022f000000000505043b0000010008800089000000000585022f00000000058501cf000000000595019f0000000000540435000000a00110003900000000000104350000006501000039000000000101041a000000020010008c000018ed0000613d00000002010000390000006504000039000000000014041b0000086b01000039000000000101041a00000cf10010019800001a130000c13d0000004401d00370000000000401043b0000006401d00370000000000501043b0000000001000411000000800800003931e5299d0000040f000016440000013d000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000501043b0000086901000039000000000101041a00000cd80110009a00000c7d011001970000000002000411000000000012004b000015390000c13d0000006501000039000000000201041a000000020020008c0000152f0000613d0000000202000039000000000021041b0000086c01000039000000000201041a000000000052004b0000241d0000a13d000000000010043f00000003015000c900000d230210009a000000000002041b00000d240110009a000000000001041b000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000ce3011001c70000800d02000039000000020300003900000d2504000041000016410000013d000000440030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401d00370000000000101043b00000cee0010009c00001c110000213d00000000040300190000000402100039000000000923004900000cf30090009c00001c110000213d000001800090008c00001c110000413d00000000012d034f000000000101043b00000c7d0010009c00001c110000213d000000200520003900000000035d034f000000000303043b00000c7d0030009c00001c110000213d000000200650003900000000056d034f000000000505043b00000c7d0050009c00001c110000213d000000200660003900000000076d034f000000000707043b00000c7d0070009c00001c110000213d000000200660003900000000086d034f000000000a08043b00000c7d00a0009c00001c110000213d000000800860003900000000068d034f000000000606043b00000c7a0060009c00001c110000213d000000200b8000390000000008bd034f000000000808043b00000c7a0080009c00001c110000213d000000200cb00039000000000bcd034f000000000b0b043b00000c7a00b0009c00001c110000213d0012002000c0003d00130000000d0353000000120dd00360000000000d0d043b0000001f0990008a00000d080ed0019700000d080f900197000000000cfe013f0000000000fe004b000000000e00001900000d080e00404100000000009d004b000000000900001900000d080900804100000d0800c0009c000000000e09c01900000000000e004b000000130c00035f00001c110000c13d00000000092d001900000000029c034f000000000202043b00000cee0020009c00001c110000213d000000000c240049000000200d90003900000d0809c0019700000d080ed00197000000000f9e013f00000000009e004b000000130e00035f000000000900001900000d08090040410000000000cd004b000000000c00001900000d080c00204100000d0800f0009c00000000090cc019000000000009004b00001c110000c13d0000020009000039000000400090043f000000800010043f000000a00030043f000000c00050043f000000e00070043f0000010000a0043f0000001203000029000000c00130008a00000000011e034f000000000101043b000001200010043f000000a00130008a00000000011e034f000000800330008a00000000033e034f000000000101043b000001400010043f0000001f0120003900000d6c011001970000003f0110003900000d6c01100197000000000303043b000001600030043f000001800060043f000001a00080043f000001c000b0043f00000cf40010009c00001e5b0000213d0000020001100039000000400010043f000002000020043f0000000001d20019000000000041004b00001c110000213d0000000003de034f00000d6c042001980000001f0520018f0000022001400039000013fb0000613d0000022006000039000000000703034f000000007807043c0000000006860436000000000016004b000013f70000c13d000000000005004b000014080000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000031043500000220012000390000000000010435000001e00090043f000000130100035f0000002401100370000000000101043b001300000001001d0000006501000039000000000101041a000000020010008c000018ed0000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000cf50010019800001b1f0000c13d000001c00100043d001200000001001d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000120200002900000c7a02200197000000000101043b00000c7a01100197000000000012004b000014330000413d000000c00100043d00000c7d0010009c000021d80000213d0000000002000411000000000021004b00001bd50000c13d000000400400043d00000020024000390000004001000039001000000002001d00000000001204350000006001400039000000800200043d00000000002104350000008001400039000000a00200043d0000000000210435000000a001400039000000c00200043d0000000000210435000000c001400039000000e00200043d0000000000210435000000e001400039000001000200043d00000000002104350000010001400039000001200200043d00000000002104350000012001400039000001400200043d00000000002104350000014001400039000001600200043d00000000002104350000016001400039000001800200043d0000000000210435000001a00100043d00000c7a0110019700000180024000390000000000120435000001c00100043d00000c7a01100197000001a0024000390000000000120435000001c0014000390000018002000039000001e00300043d0000000000210435000001e00240003900000000160304340000000000620435001200000004001d0000020002400039000000000006004b0000146e0000613d000000000300001900000000042300190000000005310019000000000505043300000000005404350000002003300039000000000063004b000014670000413d001100000006001d0000000001260019000000000001043500000cfb010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000012040000290000004002400039000000000012043500000011010000290000001f0110003900000d6c01100197000001e00210003900000000002404350000021f0110003900000d6c021001970000000001420019000000000021004b0000000002000039000000010200403900000cee0010009c00001e5b0000213d000000010020019000001e5b0000c13d000000400010043f000000100100002900000c7a0010009c00000c7a0100804100000040011002100000001202000029000000000202043300000c7a0020009c00000c7a020080410000006002200210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000301034f000000400100043d00000d120010009c00001e5b0000213d000000000203043b000000c003100039000001400400043d000000a00500043d000001e00600043d000000400030043f000000a003100039000000130700002900000000007304350000008003100039000000000063043500000060031000390000000000530435000000400310003900000000004304350000002003100039000000000023043500000080020000390000000000210435000000000200041131e52b970000040f000016440000013d000000440030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000002401b00370000000000201043b0000000401b00370000000000101043b00000cf70010009c000015eb0000813d001200000002001d001300000001001d000000000010043f0000087301000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000000200041100000c7d02200197001100000002001d000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000000101041a000000000001004b000016570000c13d000000400100043d00000d0c02000041000000000021043500000c7a0010009c00000c7a01008041000000400110021000000ce8011001c7000031e7000104300000000001000416000000000001004b00001c110000c13d0000000001000412001700000001001d001600400000003d000080050100003900000044030000390000000004000415000000170440008a000000050440021000000d170200004131e531b80000040f00000c7a01100197000000800010043f00000cf201000041000031e60001042e000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401700370000000000101043b001300000001001d00000c7d0010009c00001c110000213d0000086901000039000000000101041a00000cd80110009a00000c7d011001970000000002000411000000000012004b000015390000c13d31e529850000040f000000130100002931e530470000040f000016440000013d000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b00001c110000c13d0000086902000039000000000202041a00000cd80220009a00000c7d022001970000000003000411000000000023004b000015390000c13d0000006502000039000000000302041a000000020030008c0000162e0000c13d00000c8001000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f00000d5c01000041000000c40010043f00000d4e01000041000031e70001043000000c8001000041000000800010043f0000002001000039000000840010043f0000001801000039000000a40010043f00000d3501000041000000c40010043f00000d4e01000041000031e700010430000000240030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b0000086c02000039000000000202041a000000000021004b00001c110000813d31e526810000040f000000000201041a0000000101100039000000000101041a000000400300043d00000020043000390000000000140435000000000023043500000c7a0030009c00000c7a03008041000000400130021000000ced011001c7000031e60001042e0000000001000416000000000001004b00001c110000c13d00000cfd01000041000000800010043f00000cf201000041000031e60001042e0000000001000416000000000001004b00001c110000c13d00000c5a01000039000000000101041a00000c7d01100197000000800010043f00000cf201000041000031e60001042e000001840030008c00001c110000413d0000000401500370000000000101043b001300000001001d00000c7d0010009c00001c110000213d0000002401500370000000000101043b001200000001001d00000c7d0010009c00001c110000213d0000004401500370000000000101043b001100000001001d00000c7d0010009c00001c110000213d0000006401500370000000000101043b001000000001001d00000c7d0010009c00001c110000213d000000e401500370000000000101043b000f00000001001d00000c7d0010009c00001c110000213d0000010401500370000000000101043b000e00000001001d00000c7a0010009c00001c110000213d0000012401500370000000000101043b000d00000001001d00000c7a0010009c00001c110000213d0000014401500370000000000101043b000c00000001001d00000c7a0010009c00001c110000213d0000016401500370000000000101043b00000cee0010009c00001c110000213d0000000002030019000000040110003931e525d30000040f0000000203000367000000c404300370000000000704043b000000a404300370000000000604043b0000008403300370000000000503043b000000000c010019000000000d02001900000013010000290000001202000029000000110300002900000010040000290000000f080000290000000e090000290000000d0a0000290000000c0b00002931e5268f0000040f0000000001000019000031e60001042e000000840030008c00001c110000413d0000000001000416000000000001004b00001c110000c13d0000000401500370000000000101043b001300000001001d00000c7a0010009c00001c110000213d0000002401500370000000000101043b001200000001001d00000c7d0010009c00001c110000213d0000004401500370000000000101043b001100000001001d00000c7d0010009c00001c110000213d0000006401500370000000000101043b001000000001001d00000c7d0010009c00001c110000213d0000000001000415000000150110008a000f000500100218000000000200041a000eff00002001940000169f0000c13d0000000001000415000000140110008a000f000500100218000000ff002001900000169f0000c13d00000d6d0120019700000001021001bf00000d6e0120019700000100021001bf000f00000000001d000000000020041b00000c5a01000039000000000301041a00000cdd033001970000800a033001bf000000000031041b000000400100043d0000ff0000200190000017da0000c13d000000640210003900000cea030000410000000000320435000000440210003900000ceb03000041000000000032043500000024021000390000002b0300003900000a1f0000013d000000800200003900000cf801000041000000000012043500000c7a0020009c00000c7a02008041000000400120021000000ce8011001c7000031e700010430000000640130003900000d32040000410000000000410435000000440130003900000d3304000041000000000041043500000024013000390000003804000039000000000041043500000c8001000041000000000013043500000004013000390000002003000039000000000031043500000c81012001c7000031e70001043000000d3402000041000000000202041a00000c7d02200197000000000012004b000016490000c13d000000400300043d0000086901000039000000000101041a00000cd80110009a00000c7d011001970000000002000411000000000012004b000016bf0000c13d001200000003001d00000d270030009c00001e5b0000213d00000012010000290000002002100039000f00000002001d000000400020043f00000000000104350000000001000415001000000001001d00000d3701000041000000000101041a000000ff00100190000018cc0000c13d000000400200043d00000d3801000041001100000002001d000000000012043500000000010004140000001302000029000000040020008c000019020000c13d00000000050004150000001b0550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000019300000013d0000000203000039000000000032041b0000086b02000039000000000302041a00000d2a03300197000000000001004b000000000400001900000d2b0400c041000000000343019f000000000032041b000000800010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d0f011001c70000800d02000039000000010300003900000d2c0400004131e531d60000040f000000010020019000001c110000613d00000001010000390000006502000039000000000012041b0000000001000019000031e60001042e000000400100043d000000640210003900000d42030000410000000000320435000000440210003900000d4303000041000000000032043500000024021000390000002c0300003900000a1f0000013d00000d4801000041000000800010043f00000cf901000041000031e700010430001000000001001d0000001301000029000000000010043f0000087301000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b0000001102000029000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000000001041b000000400200043d000000120100002900000c7d0010009c000015ec0000213d000000200120003900000d0a0300004100000000003104350000004401200039000000100300002900000000003104350000002401200039000000120300002900000000003104350000004401000039000000000012043500000cfa0020009c00001e5b0000213d0000008001200039000000400010043f000000130100002931e530960000040f000000400100043d0000001002000029000000000021043500000c7a0010009c00000c7a010080410000004001100210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000c82011001c70000800d02000039000000040300003900000d0b0400004100000013050000290000001206000029000000000700041131e531d60000040f000000010020019000001c110000613d000000870000013d000d00000002001d00000cd901000041000000000010044300000000010004100000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b000017cd0000c13d0000000d01000029000000ff0110018f000000010010008c0000000f010000290000000501100270000000000100003f000000010100603f000017d00000c13d000000000200041a00000d6d0120019700000001021001bf0000000e0000006b000015d60000613d000f00010000003d000015d90000013d000000440130003900000d3502000041000000000021043500000024013000390000001802000039000000000021043500000c8001000041000000000013043500000004013000390000002002000039000000000021043500000c7a0030009c00000c7a03008041000000400130021000000d36011001c7000031e700010430000000600f0000390000000002000019000000a0052000390000000000f504350000002002200039000000000032004b000016d10000413d000000200c00008a0000000005000019000f0000000d001d000000110340006a001300000005001d00120005005002180000001202d0002900000000022b034f000000000202043b000000430330008a00000d080530019700000d0806200197000000000756013f000000000056004b000000000500001900000d0805004041000000000032004b000000000300001900000d080300804100000d080070009c000000000503c019000000000005004b00001c110000c13d000000000e0400190000000003d2001900000000023b034f000000000402043b00000cee0040009c00001c110000213d00000000054e0049000000200330003900000d080650019700000d0807300197000000000867013f000000000067004b000000000600001900000d0806004041000000000053004b000000000500001900000d080500204100000d080080009c000000000605c019000000000006004b00001c110000c13d00000000063b034f0000000007c40170000000400300043d00000000057300190000170d0000613d000000000806034f0000000009030019000000008a08043c0000000009a90436000000000059004b000017090000c13d0000001f084001900000171a0000613d000000000676034f0000000307800210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f00000000006504350000000005430019000000000005043500000000050004140000000002000410000000040020008c000017270000c13d0000000105000031000000010200003900000000040e0019000000000005004b00000000030f0019000017400000c13d000017660000013d00000c7a0040009c00000c7a04008041000000600140021000000c7a0030009c00000c7a030080410000004003300210000000000113019f00000c7a0050009c00000c7a05008041000000c003500210000000000113019f31e531e00000040f000000600f0000390000000f0d000029000000200c00008a0000000004000031000000020b000367000000010220018f0003000000010355000000600310027000010c7a0030019d00000c7a05300197000000000005004b00000000030f0019000017660000613d00000cee0050009c00001e5b0000213d0000001f035000390000000003c3016f0000003f033000390000000006c3016f000000400300043d0000000006630019000000000036004b0000000007000039000000010700403900000cee0060009c00001e5b0000213d000000010070019000001e5b0000c13d000000400060043f00000000085304360000000007c501700000000006780019000017590000613d000000000901034f000000009a09043c0000000008a80436000000000068004b000017550000c13d0000001f05500190000017660000613d000000000771034f0000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000000000002004b000019ce0000613d000000800200043d0000001305000029000000000052004b0000241d0000a13d0000001202000029000000a0022000390000000000320435000000800200043d000000000052004b0000241d0000a13d0000000105500039000000100050006c000016d90000413d000000400200043d0000064f0000013d00000d120040009c00001e5b0000213d000000600d00003900000000040000190000004005200039000000400050043f00000020052000390000000000d504350000000000020435000000a00540003900000000002504350000002004400039000000000034004b000018290000813d000000400200043d00000ce00020009c0000177b0000a13d00001e5b0000013d00000080040000390000000006000019000017940000013d0000001f0980003900000d6c099001970000000008780019000000000008043500000000077900190000000106600039000000000016004b000006580000813d0000000008270049000000400880008a00000000038304360000002004400039000000000804043300000000980804340000000007870436000000000008004b0000178c0000613d000000000a000019000000000b7a0019000000000ca90019000000000c0c04330000000000cb0435000000200aa0003900000000008a004b0000179e0000413d0000178c0000013d000000800400003900000040050000390000000007000019000017b20000013d0000001f0a90003900000d6c0aa001970000000009890019000000000009043500000000088a00190000000107700039000000000017004b000010910000813d0000000009280049000000400990008a00000000039304360000002004400039000000000904043300000000a9090434000000000009004b0000000009000039000000010900c0390000000009980436000000000a0a04330000000000590435000000400b80003900000000a90a043400000000009b04350000006008800039000000000009004b000017aa0000613d000000000b000019000000000c8b0019000000000dba0019000000000d0d04330000000000dc0435000000200bb0003900000000009b004b000017c50000413d000017aa0000013d0000000f010000290000000501100270000000000100003f000000400100043d000000640210003900000cdb030000410000000000320435000000440210003900000cdc03000041000000000032043500000024021000390000002e0300003900000a1f0000013d0000001302000029000000c00220021000000cde022001970000086b03000039000000000403041a00000cdf04400197000000000224019f000000000023041b00000ce00010009c00001e5b0000213d0000004002100039000000400020043f0000000902000039000000000221043600000ce1030000410000000000320435000000400300043d001300000003001d00000ce00030009c00001e5b0000213d00000013040000290000004003400039000000400030043f0000000503000039000000000434043600000ce203000041000e00000004001d000000000034043500000c7a0020009c00000c7a020080410000004002200210000000000101043300000c7a0010009c00000c7a010080410000006001100210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d0000000e0200002900000c7a0020009c00000c7a0200804100000040022002100000001303000029000000000303043300000c7a0030009c00000c7a030080410000006003300210000000000223019f000000000101043b001300000001001d000000000100041400000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b0000047f020000390000001303000029000000000032041b0000048002000039000000000012041b000000000100041a0000ff000010019000001bb70000c13d000000400100043d000015e20000013d000000200e00008a000000000f000410000000000300001900110000000a001d00100000000b001d000f0000000c001d000018380000013d000000010220018f000000120300002900000000022304360000000000420435000000130300002900000001033000390000000000b3004b00001b020000813d000000800200043d000000000032004b0000241d0000a13d001300000003001d00000005023002100000000004c200190000000203000367000000000443034f000000000504043b00000000040000310000000006a40049000000430660008a00000d080760019700000d0808500197000000000978013f000000000078004b000000000700001900000d0807004041000000000065004b000000000600001900000d080600804100000d080090009c000000000706c019000000000007004b00001c110000c13d000000a0022000390000000002020433001200000002001d0000000005c50019000000000253034f000000000202043b00000cee0020009c00001c110000213d0000000006240049000000200450003900000d080560019700000d0807400197000000000857013f000000000057004b000000000500001900000d0805004041000000000064004b000000000600001900000d080600204100000d080080009c000000000506c019000000000005004b00001c110000c13d000000000543034f0000000006e20170000000400300043d0000000004630019000018730000613d000000000705034f0000000008030019000000007907043c0000000008980436000000000048004b0000186f0000c13d0000001f07200190000018800000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000004230019000000000004043500000000040004140000000400f0008c0000188b0000c13d00000001030000310000000102000039000000000003004b00000000040d0019000018a50000c13d000018300000013d00000c7a0020009c00000c7a02008041000000600120021000000c7a0030009c00000c7a030080410000004002300210000000000112019f00000c7a0040009c00000c7a04008041000000c002400210000000000112019f00000000020f001931e531e00000040f000000000f000410000000200e00008a000000600d0000390000000f0c000029000000100b000029000000110a0000290003000000010355000000600310027000010c7a0030019d00000c7a03300197000000000003004b00000000040d0019000018300000613d00000cee0030009c00001e5b0000213d0000001f043000390000000004e4016f0000003f044000390000000005e4016f000000400400043d0000000005540019000000000045004b0000000006000039000000010600403900000cee0050009c00001e5b0000213d000000010060019000001e5b0000c13d000000400050043f00000000073404360000000006e301700000000005670019000018be0000613d000000000801034f000000008908043c0000000007970436000000000057004b000018ba0000c13d0000001f03300190000018300000613d000000000661034f0000000303300210000000000705043300000000073701cf000000000737022f000000000606043b0000010003300089000000000636022f00000000033601cf000000000373019f0000000000350435000018300000013d00000cd901000041000000000010044300000013010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001af00000c13d000000400100043d000000640210003900000d45030000410000000000320435000000440210003900000d4603000041000000000032043500000024021000390000002d0300003900000a1f0000013d000000400100043d00000d4902000041000014ec0000013d0000006501000039000000000101041a000000020010008c000019840000c13d000000400100043d000000440210003900000d5c03000041000000000032043500000024021000390000001f03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000d36011001c7000031e70001043000000d1401000041000000800010043f00000cf901000041000031e700010430000000110200002900000c7a0020009c00000c7a02008041000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000ce8011001c7000000130200002931e531db0000040f000000600310027000000c7a03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000011057000290000191c0000613d000000000801034f0000001109000029000000008a08043c0000000009a90436000000000059004b000019180000c13d000000000006004b000019290000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000000050004150000001a0550008a0000000505500210000000010020019000001b9b0000613d0000001f01400039000000600210018f0000001101200029000000000021004b0000000002000039000000010200403900000cee0010009c00001e5b0000213d000000010020019000001e5b0000c13d000000400010043f000000200030008c00001c110000413d000000110200002900000000020204330000000503500270000000000302001f00000d340020009c00001bab0000c13d00000cd901000041000000000010044300000013010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b000018dc0000613d00000d3401000041000000000201041a00000cdd022001970000001305000029000000000252019f000000000021041b000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000ce3011001c70000800d02000039000000020300003900000d3b0400004131e531d60000040f000000010020019000001c110000613d00000012010000290000000001010433000000000001004b00001af50000613d000000400100043d001100000001001d00000d3c0010009c00001e5b0000213d00000011030000290000006001300039000000400010043f000000400130003900000d3d020000410000000000210435000000200130003900000d3e020000410000000000210435000000270100003900000000001304350000001201000029000000000201043300000000010004140000001303000029000000040030008c00001c130000c13d0000000102000039000000010400003100001c260000013d00000cf801000041000000800010043f00000cf901000041000031e70001043000000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000cf10010019800001a130000c13d000000c00110027000000c7a01100197000e00000001001d31e528f40000040f0000086b03000039000000000203041a00000cdf02200197000000c00110021000000cde01100197000000000112019f000000000013041b31e5257f0000040f00000002020003670000000403200370000000000303043b0000000004010019000d00000001001d00000000013104360000002403200370000000000303043b00000000003104350000004401200370000000000101043b000000400340003900000000001304350000006401200370000000000101043b000000600340003900000000001304350000008401200370000000000101043b00000080034000390000000000130435000000a401200370000000000101043b000000a0034000390000000000130435000000c401200370000000000101043b000000c0034000390000000000130435000000e401200370000000000101043b000000e002400039000000000012043500000100014000390000000e02000029000000000021043500000120014000390000000f02000029000000000021043500000140014000390000001302000029000000000021043500000160014000390000001202000029000000000021043500000000030000310000001001000029000000110200002931e5258b0000040f0000000d0300002900000180023000390000000000120435000000000103001931e52e850000040f000016440000013d0000000001030433000000440010008c00001c110000413d0000000401300039000000000101043300000cf30010009c00001c110000213d000000200010008c00001c110000413d0000002402300039000000000302043300000cee0030009c00001c110000213d000000000421001900000000012300190000001f02100039000000000042004b000000000300001900000d080300804100000d080220019700000d0805400197000000000652013f000000000052004b000000000200001900000d080200404100000d080060009c000000000203c019000000000002004b00001c110000c13d000000003101043400000cee0010009c00001e5b0000213d0000001f021000390000000002c2016f0000003f022000390000000005c2016f000000400200043d0000000005520019000000000025004b0000000006000039000000010600403900000cee0050009c00001e5b0000213d000000010060019000001e5b0000c13d000000400050043f00000000051204360000000006310019000000000046004b00001c110000213d000000000001004b00001a0a0000613d000000000400001900000000065400190000000007340019000000000707043300000000007604350000002004400039000000000014004b00001a030000413d0000000001150019000000000001043500000c8001000041000000400300043d001300000003001d0000000000130435000000040130003931e528c80000040f00001ba10000013d000000400100043d00000d1402000041000014ec0000013d0000000002000031000000120100002931e525ed0000040f31e528ff0000040f000f00000001001d000000000010043f0000087201000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000000101041a000000000001004b00001bb40000c13d0000000f01000029000000000010043f0000087201000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b0000000102000039000000000021041b00000002020003670000001001200360000000000101043b001000000001001d00000c7a0010009c00001c110000213d0000001101200360000000000101043b000f00000001001d00000c7a0010009c00001c110000213d0000001101000029001100200010003d0000001101200360000000000101043b0000000003000031000000130430006a000000230440008a00000d080540019700000d0806100197000000000756013f000000000056004b000000000500001900000d0805004041000000000041004b000000000400001900000d080400804100000d080070009c000000000504c019000000000005004b00001c110000c13d0000001204100029000000000142034f000000000101043b00000cee0010009c00001c110000213d0000000005130049000000200640003900000d080450019700000d0807600197000000000847013f000000000047004b000000000400001900000d0804004041000000000056004b000000000500001900000d080500204100000d080080009c000000000405c019000000000004004b00001c110000c13d0000001f0410003900000d6c044001970000003f0440003900000d6c05400197000000400400043d0000000005540019000000000045004b0000000008000039000000010800403900000cee0050009c00001e5b0000213d000000010080019000001e5b0000c13d000000400050043f00000000051404360000000008610019000000000038004b00001c110000213d000000000662034f00000d6c071001980000001f0810018f000000000375001900001a8b0000613d000000000906034f000000000a050019000000009b09043c000000000aba043600000000003a004b00001a870000c13d000000000008004b00001a980000613d000000000676034f0000000307800210000000000803043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000630435000000000115001900000000000104350000000003040433000000000003004b000000000100001900001ab10000613d00000c7a0050009c00000c7a05008041000000400150021000000c7a0030009c00000c7a030080410000006002300210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d0000000202000367000000000101043b000000110b000029000000a003b0008a000000000332034f000000c004b0008a000000000442034f000000e005b0008a000000000752034f0000010005b0008a000000000852034f0000006005b0008a000000000652034f0000008005b0008a0000012009b0008a000001600ab0008a000001400bb0008a000000000bb2034f000000000aa2034f000000000992034f000000000252034f000000000502043b000000000606043b000000000208043b000000000707043b000000000404043b000000000303043b000000000809043b00000000090a043b000000000a0b043b000000400b00043d000001200cb0003900000000001c04350000010001b000390000000000a10435000000e001b000390000000000910435000000c001b000390000000000810435000000a001b000390000000f0800002900000000008104350000008001b00039000000100800002900000000008104350000006001b0003900000000003104350000004001b0003900000000004104350000002001b00039000000000071043500000000002b043500000c7a00b0009c00000c7a0b0080410000004001b00210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000d4b011001c70000800d02000039000000030300003900000d4c04000041000016410000013d00000d3401000041000000000201041a00000cdd0220019700000013022001af000000000021041b00000000010004150000001002000029000000000112004900000000010000020000000001000019000031e60001042e000000400100043d000000440210003900000d3503000041000000000032043500000024021000390000001803000039000018f30000013d000000400200043d000010880000013d000000400100043d00000d2602000041000014ec0000013d00000cd901000041000000000010044300000013010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b000018dc0000613d00000d3401000041000000000201041a00000cdd0220019700000013022001af000000000021041b0000000001000415000000110200002900001af70000013d000000400100043d00000d4802000041000014ec0000013d000000120200002900000c7a0020009c00000c7a02008041000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000ce8011001c7000000130200002931e531db0000040f000000600310027000000c7a03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000120570002900001b3c0000613d000000000801034f0000001209000029000000008a08043c0000000009a90436000000000059004b00001b380000c13d000000000006004b00001b490000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000180550008a0000000505500210000000010020019000001b9b0000613d0000001f01400039000000600210018f0000001201200029000000000021004b0000000002000039000000010200403900000cee0010009c00001e5b0000213d000000010020019000001e5b0000c13d000000400010043f000000200030008c00001c110000413d000000120200002900000000020204330000000503500270000000000302001f00000d340020009c00001bab0000c13d00000cd901000041000000000010044300000013010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b000018dc0000613d00000d3401000041000000000201041a00000cdd022001970000001305000029000000000252019f000000000021041b000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000ce3011001c70000800d02000039000000020300003900000d3b0400004131e531d60000040f000000010020019000001c110000613d000000400100043d001200000001001d00000d3c0010009c00001e5b0000213d00000012030000290000006001300039000000400010043f000000400130003900000d3d020000410000000000210435000000200130003900000d3e02000041000000000021043500000027010000390000000000130435000000800200043d00000000010004140000001303000029000000040030008c00001ca60000c13d0000000102000039000000010400003100001cb50000013d000000400200043d001300000002001d00000c80010000410000000000120435000000040120003931e52e780000040f0000001302000029000000000121004900000c7a0010009c00000c7a01008041000000600110021000000c7a0020009c00000c7a020080410000004002200210000000000121019f000031e700010430000000640210003900000d39030000410000000000320435000000440210003900000d3a0300004100000000003204350000002402100039000000290300003900000a1f0000013d000000400100043d00000d4a02000041000014ec0000013d00000001020000390000006501000039000000000021041b000000110000006b00001bbf0000c13d000000400100043d00000ce902000041000014ec0000013d0000086901000039000000000201041a00000cdd022001970000001105000029000000000252019f000000000021041b000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000ce3011001c70000800d02000039000000020300003900000ce40400004131e531d60000040f000000010020019000001c110000613d000000100000006b00001bd80000c13d000000400100043d00000ce702000041000014ec0000013d000000400100043d00000d4d02000041000014ec0000013d0000086a01000039000000000201041a00000cdd022001970000001005000029000000000252019f000000000021041b000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000ce3011001c70000800d02000039000000020300003900000ce50400004131e531d60000040f000000010020019000001c110000613d00000c5b01000039000000000201041a00000cdd032001970000001205000029000000000353019f000000000031041b000000000100041400000c7d0620019700000c7a0010009c00000c7a01008041000000c00110021000000ce3011001c70000800d02000039000000030300003900000ce60400004131e531d60000040f000000010020019000001c110000613d0000000f0000006b000000870000c13d000000000200041a00000d6e01200197000000000010041b000000400100043d0000000103000039000000000031043500000c7a0010009c00000c7a010080410000004001100210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000c82011001c70000800d0200003900000c830400004131e531d60000040f0000000100200190000000870000c13d0000000001000019000031e7000104300000000f0300002900000c7a0030009c00000c7a03008041000000400330021000000c7a0020009c00000c7a020080410000006002200210000000000232019f00000c7a0010009c00000c7a01008041000000c001100210000000000112019f000000130200002931e531e00000040f000000010220018f0003000000010355000000600110027000010c7a0010019d00000c7a04100197000000000004004b00001c360000c13d000000600100003900000080030000390000000001010433000000000002004b00001c8a0000c13d000000000001004b00001cc50000c13d000000400200043d001300000002001d00000c800100004100000000001204350000000401200039000000110200002900001a110000013d00000cee0040009c00001e5b0000213d0000001f0140003900000d6c011001970000003f0110003900000d6c03100197000000400100043d0000000003310019000000000013004b0000000006000039000000010600403900000cee0030009c00001e5b0000213d000000010060019000001e5b0000c13d000000400030043f000000000341043600000d6c054001980000001f0640018f0000000004530019000000030700036700001c520000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00001c4e0000c13d000000000006004b00001c2a0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500001c2a0000013d00000011010000290000000001010433000f00000001001d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000024850000613d0000000f0200002900000c7a02200197000000000101043b000e00000001001d000f00000021005300001c870000413d00000d170100004100000000001004430000000001000412000000040010044300000040010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000c7a011001970000000f0010006b00001f170000a13d000000400100043d00000d2102000041000014ec0000013d000000000001004b00001af50000c13d00000cd901000041000000000010044300000013010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001af50000c13d000000400100043d000000440210003900000d4403000041000000000032043500000024021000390000001d03000039000018f30000013d000000400100043d00000d5f02000041000014ec0000013d00000c7a0020009c00000c7a02008041000000600220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000d3f011001c7000000130200002931e531e00000040f000000010220018f0003000000010355000000600110027000010c7a0010019d00000c7a04100197000000000004004b00001ccd0000c13d000000600100003900000080030000390000000001010433000000000002004b00001d7b0000c13d000000000001004b00001cc50000c13d000000400200043d001300000002001d00000c800100004100000000001204350000000401200039000000120200002900001a110000013d00000c7a0030009c00000c7a03008041000000400230021000000c7a0010009c00000c7a010080410000006001100210000000000121019f000031e70001043000000cee0040009c00001e5b0000213d0000001f0140003900000d6c011001970000003f0110003900000d6c03100197000000400100043d0000000003310019000000000013004b0000000005000039000000010500403900000cee0030009c00001e5b0000213d000000010050019000001e5b0000c13d000000400030043f000000000341043600000d6c054001980000001f0640018f0000000004530019000000030700036700001ce90000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00001ce50000c13d000000000006004b00001cb90000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500001cb90000013d00000009020000290000006002200039000000000202043300000007030000290000000003030433000000400400043d0000006005400039000000000015043500000040014000390000000000310435000000f8012002700000002002400039000000000012043500000003010000290000000000140435000000000000043f00000c7a0040009c00000c7a040080410000004001400210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000d04011001c7000000010200003931e531db0000040f000000600310027000000c7a03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200440019000001d200000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b00001d1c0000c13d000000000005004b00001d2d0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000001e610000613d000000000100043d00000c7d0010019800000000010060190000078d0000613d000000130110014f00000c7d0010019800001db00000613d0000078d0000013d00000009020000290000006002200039000000000202043300000007030000290000000003030433000000400400043d0000006005400039000000000015043500000040014000390000000000310435000000f8012002700000002002400039000000000012043500000003010000290000000000140435000000000000043f00000c7a0040009c00000c7a040080410000004001400210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000d04011001c7000000010200003931e531db0000040f000000600310027000000c7a03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200440019000001d620000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b00001d5e0000c13d000000000005004b00001d6f0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000001e6d0000613d000000000100043d00000c7d0010019800000000010060190000096d0000613d000000130110014f00000c7d0010019800001eba0000613d0000096d0000013d000000000001004b00001b1c0000c13d00000cd901000041000000000010044300000013010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001b1c0000c13d00001c9c0000013d00000c7a0010009c00000c7a01008041000000400110021000000c7a0030009c00000c7a030080410000006003300210000000000113019f00000c7a0020009c00000c7a02008041000000c002200210000000000121019f000000130200002931e531db0000040f000000010220018f0003000000010355000000600110027000010c7a0010019d00000c7a04100197000000000004004b00001e2f0000c13d00000060010000390000008003000039000000000002004b00001e2c0000613d0000000001010433000000200010008c00001e2c0000413d00000cf30010009c00001c110000213d000000200010008c00001c110000413d000000000103043300000d050010009c00001e2c0000c13d000000400100043d00000080021000390000000f03000029000000000032043500000040021000390000008003000039000000000032043500000020021000390000001003000029000000000032043500000011020000290000000000210435000000a003100039000000080430002900000002020003670000000e05200360000000080000006b00001dc80000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b00001dc40000c13d0000000b0000006b00001dd60000613d00000008055003600000000b060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000f0430002900000000000404350000000a033000290000000004130049000000600510003900000000004504350000000d0400002900000000034304360000000c042003600000000402300029000000040000006b00001de80000613d000000000504034f0000000006030019000000005705043c0000000006760436000000000026004b00001de40000c13d000000130500002900000c7d06500197000000060000006b00001df80000613d000000040440036000000006050000290000000305500210000000000702043300000000075701cf000000000757022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000474019f00000000004204350000000d0230002900000000000204350000000502100069000000000232001900000c7a0020009c00000c7a02008041000000600220021000000c7a0010009c00000c7a010080410000004001100210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c70000800d02000039000000030300003900000d0604000041000000120500002931e531d60000040f0000000100200190000000870000c13d00001c110000013d00000c7a0010009c00000c7a01008041000000400110021000000c7a0030009c00000c7a030080410000006003300210000000000113019f00000c7a0020009c00000c7a02008041000000c002200210000000000121019f000000130200002931e531db0000040f000000010220018f0003000000010355000000600110027000010c7a0010019d00000c7a04100197000000000004004b00001e590000c13d00000060010000390000008003000039000000000002004b00001e2c0000613d0000000001010433000000200010008c00001eb30000813d000000400100043d00000d2e02000041000014ec0000013d00000cee0040009c00001e5b0000213d0000001f0140003900000d6c011001970000003f0110003900000d6c03100197000000400100043d0000000003310019000000000013004b0000000005000039000000010500403900000cee0030009c00001e5b0000213d000000010050019000001e5b0000c13d000000400030043f000000000341043600000d6c054001980000001f0640018f0000000004530019000000030700036700001e4b0000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00001e470000c13d000000000006004b00001da40000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500001da40000013d00000cee0040009c00001e8b0000a13d00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e7000104300000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e680000c13d00001e780000013d0000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e740000c13d000000000005004b00001e850000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c7a0020009c00000c7a020080410000004002200210000000000112019f000031e7000104300000001f0140003900000d6c011001970000003f0110003900000d6c03100197000000400100043d0000000003310019000000000013004b0000000005000039000000010500403900000cee0030009c00001e5b0000213d000000010050019000001e5b0000c13d000000400030043f000000000341043600000d6c054001980000001f0640018f0000000004530019000000030700036700001ea50000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00001ea10000c13d000000000006004b00001e270000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000054043500001e270000013d00000cf30010009c00001c110000213d000000200010008c00001c110000413d000000000103043300000d050010009c00001e2c0000c13d000000400100043d00000080021000390000000f03000029000000000032043500000040021000390000008003000039000000000032043500000020021000390000001103000029000000000032043500000010020000290000000000210435000000a003100039000000080430002900000002020003670000000e05200360000000080000006b00001ed20000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b00001ece0000c13d0000000b0000006b00001ee00000613d00000008055003600000000b060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000f0430002900000000000404350000000a033000290000000004130049000000600510003900000000004504350000000d0400002900000000034304360000000c042003600000000402300029000000040000006b00001ef20000613d000000000504034f0000000006030019000000005705043c0000000006760436000000000026004b00001eee0000c13d000000060000006b00001f000000613d000000040440036000000006050000290000000305500210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004204350000000d0230002900000000000204350000000502100069000000000232001900000c7a0020009c00000c7a02008041000000600220021000000c7a0010009c00000c7a010080410000004001100210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c70000800d02000039000000030300003900000d060400004100000012050000290000001306000029000016410000013d00000004010000290000000001010433000f00000001001d00000d170100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000c7a011001970000000e0010002a000009de0000413d0000000f0200002900000c7a022001970000000e01100029000000000012004b00001fe30000a13d000000400100043d00000d2002000041000014ec0000013d0000001301000029000000000010043f0000087201000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b0000000202000039000000000021041b000000120200002900000020012000390000000001010433000500000001001d0000000001020433000600000001001d00000040012000390000000001010433000700000001001d00000100012000390000000001010433000400000001001d000000e0012000390000000001010433000300000001001d0000000a010000290000000001010433000c00000001001d000000c0012000390000000001010433000e00000001001d000000a0012000390000000001010433000f00000001001d0000008001200039000200000001001d0000000001010433001000000001001d00000060012000390000000001010433000b00000001001d00000140012000390000000001010433000a00000001001d00000011010000290000000001010433001100000001001d000001600120003900000000010104330000000012010434000000000002004b001300000000001d00001f830000613d00000c7a0020009c00000c7a02008041000000600220021000000c7a0010009c00000c7a010080410000004001100210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b001300000001001d00000009010000290000000001010433001200000001001d000000080100002900000000010104330000000023010434000000000003004b000000000100001900001f9e0000613d00000c7a0030009c00000c7a03008041000000600130021000000c7a0020009c00000c7a020080410000004002200210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000400200043d00000cfa0020009c00001e5b0000213d0000000a0300002900000c7a05300197000000110300002900000c7a063001970000000d0300002900000000070304330000008003200039000000400030043f000000600320003900000002040000390000000000430435000000400420003900000000007404350000002007200039000000000017043500000012010000290000000000120435000000400100043d000001400810003900000013090000290000000000980435000001200810003900000005090000290000000000980435000001000810003900000006090000290000000000980435000000e00810003900000007090000290000000000980435000000c0081000390000000000580435000000a005100039000000000065043500000080051000390000000c06000029000000000065043500000060051000390000000e06000029000000000065043500000040051000390000000f0600002900000000006504350000002005100039000000100600002900000000006504350000000b0500002900000000005104350000000002020433000001600510003900000000002504350000000002070433000001800510003900000000002504350000000002040433000001a00410003900000000002404350000000002030433000000030020008c0000213f0000413d00000d5901000041000000000010043f0000002101000039000000040010043f00000d5301000041000031e7000104300000000301000029000000000101043300000c7a01100198000f00000000001d0000204a0000613d00000d190010009c000020420000813d0000000e0200002900000c7a022001970000000001210019000f00000001001d00000c7a0010009c000009de0000213d000020430000013d000000400100043d00000d5e02000041000014ec0000013d00000d5401000041000000000010044300000000010004100000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c70000800a0200003931e531db0000040f0000000100200190000024850000613d000000000101043b000f00000001001d00000cd901000041000000000010044300000012010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001c110000613d000000400200043d00000d1c01000041000e00000002001d000000000012043500000000010004140000001202000029000000040020008c000021e60000613d0000000e0200002900000c7a0020009c00000c7a02008041000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f0000000f0000006b000021db0000c13d00000ce8011001c70000001202000029000021e00000013d000000110100002900000c7a0010009c00000c7a01008041000000400110021000000c7a0040009c00000c7a040080410000006004400210000000000114019f00000c7a0030009c00000c7a03008041000000c003300210000000000113019f31e531e00000040f000000010220015f0003000000010355000000600110027000010c7a0010019d00000c7a01100197000000000001004b000020990000c13d0000000100200190000000870000613d000000400200043d001300000002001d00000d290100004100001cc10000013d000f00000001001d00000002010000290000000001010433000000000001004b0000204a0000c13d000000400100043d00000d1a02000041000014ec0000013d00000013010000290000000001010433000e00000001001d00000d170100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000c7d011001970000000e0010006b000020c40000c13d0000000001000416000000000001004b000020c70000613d000000080100002900000000010104330000000002000416000000000012004b0000213c0000c13d00000cd90100004100000000001004430000000e010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001c110000613d000000400200043d00000d1c01000041000c00000002001d000000000012043500000000010004140000000e02000029000000040020008c000020930000613d0000000c0200002900000c7a0020009c00000c7a02008041000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000d1d011001c7000080090200003900000000030004160000000e04000029000000000500001931e531d60000040f000000600310027000010c7a0030019d000300000001035500000001002001900000227a0000613d0000000c0100002900000cee0010009c00001e5b0000213d0000000c01000029000000400010043f000020e40000013d00000cee0010009c00001e5b0000213d0000001f0310003900000d6c033001970000003f0330003900000d6c03300197000000400400043d0000000003340019001200000004001d000000000043004b0000000004000039000000010400403900000cee0030009c00001e5b0000213d000000010040019000001e5b0000c13d000000400030043f0000001203000029000000000613043600000d6c031001980000001f0410018f00000000013600190000000305000367000020b60000613d000000000705034f000000007807043c0000000006860436000000000016004b000020b20000c13d000000000004004b0000203c0000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003104350000203c0000013d0000000001000416000000000001004b0000213c0000c13d0000001301000029000000000101043300000c7d0010009c000021d80000213d00000008020000290000000003020433000000400200043d000000200420003900000d1e05000041000000000054043500000064042000390000000000340435000000000300041000000c7d0330019700000044042000390000000000340435000000000300041100000c7d03300197000000240420003900000000003404350000006403000039000000000032043500000d000020009c00001e5b0000213d000000a003200039000000400030043f31e530960000040f000000400100043d000c00000001001d0000000501000029000000000701043300000001010000290000000006010433000000120100002900000000050104330000001001000029000000000101043300000009020000290000000002020433000000080300002900000000030304330000000704000029000000000404043300000011080000290000000008080433000000040900002900000000090904330000000d0a000029000000000a0a0433000000020b000029000000000b0b0433000000130c000029000000000c0c04330000000c0e0000290000000000ce0435000001200ce00039000001400d0000390000000000dc0435000001000ce000390000000000bc0435000000e00be000390000000000ab0435000000c00ae000390000000f0b0000290000000000ba043500000c7a09900197000000a00ae0003900000000009a043500000c7a088001970000008009e0003900000000008904350000006008e0003900000000004804350000004004e0003900000000003404350000002003e0003900000000002304350000014002e00039000000003101043400000000001204350000016002e00039000000000001004b000021220000613d000000000400001900000000082400190000000009430019000000000909043300000000009804350000002004400039000000000014004b0000211b0000413d0000001f0310003900000d6c0330019700000000012100190000000000010435000001600130003900000c7a0010009c00000c7a0100804100000060011002100000000c0200002900000c7a0020009c00000c7a020080410000004002200210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c70000800d02000039000000040300003900000d1f0400004131e531d60000040f000000010020019000001c110000613d000016440000013d000000400100043d00000d1b02000041000014ec0000013d000001c003100039000000000023043500000c7a0010009c00000c7a010080410000004001100210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000d50011001c70000800d02000039000000040300003900000d510400004100000003050000290000000406000029000000000700001931e531d60000040f000000010020019000001c110000613d00000002010000290000000001010433001200000001001d00000c7d0010009c000021d80000213d00000009010000290000000001010433001100000001001d00000c7d0010009c000021d80000213d0000000d010000290000000001010433001000000001001d00000d170100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000c7d01100197000000120010006b000021fc0000c13d00000cd901000041000000000010044300000011010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000d170200004100000000002004430000000002000412000000040020044300000020020000390000002400200443000000000001004b000022980000c13d000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000cd902000041000000000020044300000c7d01100197001300000001001d0000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001c110000613d000000400200043d00000d52010000410000000000120435000f00000002001d00000004012000390000001002000029000000000021043500000000010004140000001302000029000000040020008c000021bf0000613d0000000f0200002900000c7a0020009c00000c7a02008041000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000d53011001c7000000130200002931e531d60000040f000000600310027000010c7a0030019d00030000000103550000000100200190000024a80000613d0000000f0100002900000cee0010009c00001e5b0000213d0000000f01000029000000400010043f00000d5401000041000000000010044300000000010004100000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c70000800a0200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000100010006c000024b50000813d000000400100043d000000440210003900000d580300004100001c9f0000013d000000400100043d00000cf802000041000014ec0000013d00000d1d011001c700008009020000390000000f030000290000001204000029000000000500001931e531d60000040f0003000000010355000000600310027000010c7a0030019d0000000100200190000021ec0000613d0000000e0100002900000cee0010009c00001e5b0000213d0000000e01000029000000400010043f000002410000013d00000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021f40000c13d00001e780000013d000000400100043d00000d6202000041000014ec0000013d000000400200043d000000200120003900000d0a0300004100000000003104350000004401200039000000100300002900000000003104350000002401200039000000110300002900000000003104350000004401000039000000000012043500000cfa0020009c00001e5b0000213d0000008001200039000000400010043f000000120100002931e530960000040f00000008010000290000000001010433000f00000001001d0000000021010434001300000002001d000000000001004b000016440000613d00000cd901000041000000000010044300000011010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b000016440000613d00000cd901000041000000000010044300000011010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001c110000613d000000400300043d000000640130003900000080020000390000000000210435000000000100041100000c7d011001970000004402300039000000000012043500000024013000390000001002000029000000000021043500000d5701000041000000000013043500000004013000390000001202000029000000000021043500000084023000390000000f0100002900000000010104330000000000120435001200000003001d000000a402300039000000000001004b000022550000613d000000000300001900000000042300190000001305300029000000000505043300000000005404350000002003300039000000000013004b0000224e0000413d0000000002210019000000000002043500000000020004140000001103000029000000040030008c000022710000613d0000001f0110003900000d6c01100197000000a40110003900000c7a0010009c00000c7a010080410000006001100210000000120300002900000c7a0030009c00000c7a030080410000004003300210000000000131019f00000c7a0020009c00000c7a02008041000000c002200210000000000112019f000000110200002931e531d60000040f000000600310027000010c7a0030019d00030000000103550000000100200190000024bc0000613d000000120100002900000cee0010009c00001e5b0000213d0000001201000029000000400010043f000016440000013d000000400100043d00000d6302000041000014ec0000013d00000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000022820000c13d00001e780000013d000000400200043d00000d64010000410000000000120435000000000100041000000c7d01100197001200000002001d0000000402200039000000000012043500000000010004140000001002000029000000040020008c000023390000c13d0000000103000031000000200030008c00000020040000390000000004034019000023640000013d000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000400200043d000000200320003900000d0a0400004100000000004304350000004403200039000000100400002900000000004304350000002403200039000000110400002900000000004304350000004403000039000000000032043500000cfa0020009c00001e5b0000213d0000008003200039000000400030043f00000c7d011001970000220d0000013d00000d170100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000024850000613d000000000101043b00000cd902000041000000000020044300000c7d01100197000000100010006b0000242f0000c13d00000010010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001c110000613d000000400200043d00000d52010000410000000000120435001200000002001d00000004012000390000000602000029000000000021043500000000010004140000001002000029000000040020008c000022f20000613d000000120200002900000c7a0020009c00000c7a02008041000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000d53011001c7000000100200002931e531d60000040f000000600310027000010c7a0030019d00030000000103550000000100200190000024c90000613d000000120100002900000cee0010009c00001e5b0000213d0000001201000029000000400010043f0000086a01000039000000000101041a001100000001001d00000c5a01000039000000000101041a00000cd902000041000000000020044300000c7d01100197001200000001001d0000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001c110000613d000000110100002900000c7d01100197000000400300043d00000d67020000410000000000230435001100000003001d0000000402300039000000000012043500000000010004140000001202000029000000040020008c000024650000613d000000110200002900000c7a0020009c00000c7a02008041000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000d68011001c7000080090200003900000006030000290000001204000029000000000500001931e531d60000040f000000600310027000010c7a0030019d00030000000103550000000100200190000024650000c13d00000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023340000c13d00001e780000013d000000120200002900000c7a0020009c00000c7a02008041000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000d53011001c7000000100200002931e531db0000040f000000600310027000000c7a03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000001205700029000023530000613d000000000801034f0000001209000029000000008a08043c0000000009a90436000000000059004b0000234f0000c13d000000000006004b000023600000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000024230000613d0000001f01400039000000600210018f0000001201200029000000000021004b0000000002000039000000010200403900000cee0010009c00001e5b0000213d000000010020019000001e5b0000c13d000000400010043f000000200030008c00001c110000413d00000012010000290000000001010433000800000001001d000700000000001d001200000000001d001100000000001d0000237d0000013d00000012020000290000000102200039001200000002001d0000000d0020006c000003090000813d0000000f010000290000000001010433000000120010006c0000241d0000a13d000000120100002900000005021002100000000c01200029000e00000001001d0000000001010433000000000001004b000023780000613d000000110010002a000009de0000413d0000001104100029001100000004001d000000080040006c000024d60000213d0000000b030000290000000003030433000000120030006c0000241d0000a13d0000000902200029000a00000002001d0000000003020433000000400200043d00000044042000390000000000140435000000200120003900000d0a04000041000000000041043500000c7d03300197000000240420003900000000003404350000004403000039000000000032043500000cfa0020009c00001e5b0000213d0000008003200039000000400030043f000000000302043300000000020004140000001004000029000000040040008c000023ad0000c13d0000000001010433000000000010043f0000000103000031000023d90000013d00000c7a0010009c00000c7a01008041000000400110021000000c7a0030009c00000c7a030080410000006003300210000000000113019f00000c7a0020009c00000c7a02008041000000c002200210000000000121019f000000100200002931e531d60000040f000000600310027000000c7a03300197000000200030008c000000200500003900000000050340190000002004500190000023c70000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000023c30000c13d0000001f05500190000023d40000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000023ee0000613d000000000100043d000000000003004b000023de0000613d000000010010008c000023780000613d000023ee0000013d00000cd901000041000000000010044300000010010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b000023780000c13d0000000f010000290000000001010433000000120010006c0000241d0000a13d0000000e010000290000000001010433000e00000001001d0000001001000029000000000010043f0000087301000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d0000000b020000290000000002020433000000120020006c0000241d0000a13d000000000101043b0000000a02000029000000000202043300000c7d02200197000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000001c110000613d000000000101043b000000000201041a0000000e0020002a000009de0000413d0000000e02200029000000000021041b000700010000003d000023780000013d00000d5901000041000000000010043f0000003201000039000000040010043f00000d5301000041000031e7000104300000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000242a0000c13d00001e780000013d0000086a01000039000000000101041a001100000001001d00000c5b01000039000000000101041a00000c7d01100197001200000001001d0000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000024850000613d000000000101043b000000000001004b00001c110000613d000000110100002900000c7d01100197000000400400043d00000044024000390000000603000029000000000032043500000024024000390000001003000029000000000032043500000d66020000410000000000240435001100000004001d0000000402400039000000000012043500000000010004140000001202000029000000040020008c000024650000613d000000110200002900000c7a0020009c00000c7a02008041000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000d36011001c7000000120200002931e531d60000040f000000600310027000010c7a0030019d00030000000103550000000100200190000024d90000613d000000110100002900000cee0010009c00001e5b0000213d000000040100002900000c7a061001970000001103000029000000400030043f000000060100002900000000001304350000000001000411001200000001001d00000c7d011001970000002002300039000000000012043500000c7a0030009c00000c7a030080410000004001300210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000d09011001c70000800d02000039000000040300003900000d69040000410000000505000029000000100700002931e531d60000040f000000010020019000001c110000613d0000030d0000013d000000000001042f0000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000248d0000c13d00001e780000013d00000c7a0010009c00000c7a01008041000000400110021000000c7a0030009c00000c7a030080410000006003300210000000000113019f00000c7a0020009c00000c7a02008041000000c002200210000000000121019f000000070200002931e531db0000040f000000010220018f0003000000010355000000600110027000010c7a0010019d00000c7a03100197000000000003004b000024e60000c13d0000006001000039000025100000013d00000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000024b00000c13d00001e780000013d00000000010004140000001102000029000000040020008c000025210000c13d00000001020000390000000101000031000025320000013d00000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000024c40000c13d00001e780000013d00000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000024d10000c13d00001e780000013d000000400100043d00000d6502000041000014ec0000013d00000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900001e780000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000024e10000c13d00001e780000013d00000cee0030009c00001e5b0000213d0000001f0130003900000d6c011001970000003f0110003900000d6c04100197000000400100043d0000000004410019000000000014004b0000000005000039000000010500403900000cee0040009c00001e5b0000213d000000010050019000001e5b0000c13d000000400040043f000000000631043600000d6c043001980000001f0530018f001000000006001d00000000034600190000000306000367000025030000613d000000000706034f0000001008000029000000007907043c0000000008980436000000000038004b000024ff0000c13d000000000005004b000025100000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000000002004b00001e2c0000613d0000000001010433000000200010008c00001e2c0000413d00000cf30010009c00001c110000213d000000200010008c00001c110000413d0000001001000029000000000101043300000d050010009c00001e2c0000c13d00000013010000290000000b0200002931e52b970000040f000016440000013d00000c7a0010009c00000c7a01008041000000c001100210000000100000006b000025280000c13d00000011020000290000252d0000013d00000ce3011001c7000080090200003900000010030000290000001104000029000000000500001931e531d60000040f0003000000010355000000600110027000010c7a0010019d00000c7a01100197000000000001004b0000255c0000613d00000cee0010009c00001e5b0000213d0000001f0310003900000d6c033001970000003f0330003900000d6c04300197000000400300043d0000000004430019000000000034004b0000000005000039000000010500403900000cee0040009c00001e5b0000213d000000010050019000001e5b0000c13d000000400040043f000000000613043600000d6c031001980000001f0410018f000000000136001900000003050003670000254f0000613d000000000705034f000000007807043c0000000006860436000000000016004b0000254b0000c13d000000000004004b0000255c0000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000031043500000001002001900000220e0000c13d000000400100043d000000640210003900000d55030000410000000000320435000000440210003900000d5603000041000000000032043500000024021000390000003a0300003900000a1f0000013d00000d6f0010009c0000256d0000813d0000004001100039000000400010043f000000000001042d00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e700010430000000400100043d00000d700010009c000025790000813d000000c002100039000000400020043f000000000001042d00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e700010430000000400100043d00000d710010009c000025850000813d000001a002100039000000400020043f000000000001042d00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e70001043000000d6b0020009c000025bb0000813d00000000040100190000001f0120003900000d6c011001970000003f0110003900000d6c05100197000000400100043d0000000005510019000000000015004b0000000007000039000000010700403900000cee0050009c000025bb0000213d0000000100700190000025bb0000c13d000000400050043f00000000052104360000000007420019000000000037004b000025c10000213d00000d6c062001980000001f0720018f00000002044003670000000003650019000025ab0000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b000025a70000c13d000000000007004b000025b80000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e7000104300000000001000019000031e70001043000000c7d02200197000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f0000000100200190000025d10000613d000000000101043b000000000001042d0000000001000019000031e7000104300000001f03100039000000000023004b000000000400001900000d080400404100000d080520019700000d0803300197000000000653013f000000000053004b000000000300001900000d080300204100000d080060009c000000000304c019000000000003004b000025eb0000613d0000000203100367000000000303043b00000cee0030009c000025eb0000213d00000020011000390000000004310019000000000024004b000025eb0000213d0000000002030019000000000001042d0000000001000019000031e7000104300000000003010019000000000112004900000cf30010009c000026790000213d0000017f0010008c000026790000a13d000000400100043d00000d720010009c0000267b0000813d0000018004100039000000400040043f0000000204000367000000000534034f000000000505043b00000000055104360000002006300039000000000664034f000000000606043b00000000006504350000004005300039000000000554034f000000000505043b000000400610003900000000005604350000006005300039000000000554034f000000000505043b000000600610003900000000005604350000008005300039000000000554034f000000000505043b00000080061000390000000000560435000000a005300039000000000554034f000000000505043b000000a0061000390000000000560435000000c005300039000000000554034f000000000505043b000000c0061000390000000000560435000000e005300039000000000554034f000000000505043b000000e00610003900000000005604350000010005300039000000000554034f0000010006100039000000000505043b00000000005604350000012005300039000000000654034f000000000606043b00000c7a0060009c000026790000213d000001200710003900000000006704350000002005500039000000000654034f000000000606043b00000c7a0060009c000026790000213d000001400710003900000000006704350000002005500039000000000554034f000000000505043b00000cee0050009c000026790000213d00000000063500190000001f03600039000000000023004b000000000500001900000d080500804100000d080330019700000d0807200197000000000873013f000000000073004b000000000300001900000d080300404100000d080080009c000000000305c019000000000003004b000026790000c13d000000000364034f000000000303043b00000cee0030009c0000267b0000213d0000001f0530003900000d6c055001970000003f0550003900000d6c08500197000000400500043d0000000008850019000000000058004b0000000009000039000000010900403900000cee0080009c0000267b0000213d00000001009001900000267b0000c13d0000002009600039000000400080043f00000000063504360000000008930019000000000028004b000026790000213d000000000494034f00000d6c073001980000001f0830018f0000000002760019000026670000613d000000000904034f000000000a060019000000009b09043c000000000aba043600000000002a004b000026630000c13d000000000008004b000026740000613d000000000474034f0000000307800210000000000802043300000000087801cf000000000878022f000000000404043b0000010007700089000000000474022f00000000047401cf000000000484019f00000000004204350000000002360019000000000002043500000160021000390000000000520435000000000001042d0000000001000019000031e70001043000000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e7000104300000086c02000039000000000302041a000000000013004b000026890000a13d000000000020043f00000003011000c900000d230110009a000000000001042d00000d5901000041000000000010043f0000003201000039000000040010043f00000d5301000041000031e700010430000f000000000002000800000002001d000000650e00003900000000020e041a000000020020008c0000285d0000613d00070000000c001d000000020200003900000000002e041b0000086b0c000039000000000f0c041a00000cf100f001980000286e0000c13d000000c00ef0027000000c7a0ee0019700000c7a00e0009c000028570000613d00000cdf0ff00197000000c002e0021000000d730220009a00000cde022001970000000002f2019f00000000002c041b000000400200043d000e00000002001d00000d710020009c0000284b0000813d0000000e0c000029000001a002c00039000000400020043f00000c7a02b00197000001600bc0003900000000002b043500000c7a02a00197000001400ac00039000b0000000a001d00000000002a043500000c7a029001970000012009c00039000c00000009001d00000000002904350000010002c00039000600000002001d0000000000e2043500000c7d02800197000000e008c00039000900000008001d0000000000280435000000c002c00039000d00000002001d0000000000720435000000a002c00039000500000002001d00000000006204350000008002c00039000a00000002001d000000000052043500000c7d024001970000006004c00039000400000004001d000000000024043500000c7d023001970000004003c00039000f00000003001d000000000023043500000c7d0110019700000000021c0436000000080100002900000c7d01100197000300000002001d000000000012043500000cee00d0009c0000284b0000213d0000001f01d0003900000d6c011001970000003f0110003900000d6c02100197000000400100043d0000000002210019000000000012004b0000000003000039000000010300403900000cee0020009c0000284b0000213d00000001003001900000284b0000c13d00080000000b001d000000400020043f0000000002d10436000000070600002900000000046d0019000000000040007c000028490000213d00000d6c04d001980000001f05d0018f00000002066003670000000003420019000026f70000613d000000000706034f0000000008020019000000007907043c0000000008980436000000000038004b000026f30000c13d000000000005004b000027040000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000002d2001900000000000204350000000e020000290000018003200039000100000003001d0000000000130435000000000102043300000cf70010009c000028510000813d0000000f01000029000000000101043300000c7d0010009c000028510000213d000000000010043f0000086d01000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f0000000100200190000028490000613d000000000101043b0000000d020000290000000002020433000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f0000000100200190000028490000613d000000000101043b000000000101041a000000ff00100190000028710000613d0000000c010000290000000001010433000700000001001d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f0000000100200190000028480000613d000000070200002900000c7a02200197000000000101043b000200000001001d0007000000210053000028540000413d00000d170100004100000000001004430000000001000412000000040010044300000040010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000028480000613d000000000101043b00000c7a01100197000000070010006b000028540000213d0000000b010000290000000001010433000700000001001d00000d170100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000028480000613d000000000101043b00000c7a011001970000000203000029000000000031001a000028570000413d000000070200002900000c7a022001970000000001310019000000000012004b0000000801000029000028740000213d000000000101043300000c7a02100198000027840000613d00000d190020009c0000277c0000813d00000c7a01300197000000000212001900000c7a0020009c000028570000213d000700000002001d00000009010000290000000001010433000000000001004b000027850000c13d000000400100043d00000d1a02000041000028790000013d000700000000001d0000000f010000290000000001010433000800000001001d00000d170100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f0000000100200190000028480000613d0000000002000416000000000101043b00000c7d011001970000000803000029000000000013004b000027d10000c13d000000000002004b000027d30000613d0000000a010000290000000001010433000000000012004b000028770000c13d00000cd90100004100000000001004430000000400300443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000028480000613d0000000804000029000000000101043b000000000001004b000028490000613d000000400e00043d00000d1c0100004100000000001e04350000000001000414000000040040008c000027cd0000613d00000c7a00e0009c00000c7a0200004100000000020e4019000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000d1d011001c700008009020000390000000003000416000000000500001900080000000e001d31e531d60000040f000000080e000029000000600310027000010c7a0030019d000300000001035500000001002001900000287f0000613d00000cee00e0009c0000284b0000213d0000004000e0043f000027ef0000013d000000000002004b000028770000c13d0000000f01000029000000000101043300000c7d0010009c000028510000213d0000000a020000290000000003020433000000400200043d000000200420003900000d1e05000041000000000054043500000064042000390000000000340435000000000300041000000c7d0330019700000044042000390000000000340435000000000300041100000c7d03300197000000240420003900000000003404350000006403000039000000000032043500000d000020009c0000284b0000213d000000a003200039000000400030043f31e530960000040f000000400e00043d0000000602000029000000050400002900000004030000290000000e01000029000000000701043300000000060204330000000d0100002900000000050104330000000101000029000000000101043300000000020304330000000a03000029000000000303043300000000040404330000000c0800002900000000080804330000000b090000290000000009090433000000030a000029000000000a0a0433000000090b000029000000000b0b04330000000f0c000029000000000c0c04330000000000ce0435000001200ce00039000001400d0000390000000000dc0435000001000ce000390000000000bc0435000000e00be000390000000000ab0435000000c00ae00039000000070b0000290000000000ba043500000c7a09900197000000a00ae0003900000000009a043500000c7a088001970000008009e0003900000000008904350000006008e0003900000000004804350000004004e0003900000000003404350000002003e0003900000000002304350000014002e00039000000003101043400000000001204350000016002e00039000000000001004b0000282c0000613d000000000400001900000000082400190000000009430019000000000909043300000000009804350000002004400039000000000014004b000028250000413d0000001f0310003900000d6c0330019700000000012100190000000000010435000001600130003900000c7a0010009c00000c7a01008041000000600110021000000c7a00e0009c00000c7a0e0080410000004002e00210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c70000800d02000039000000040300003900000d1f0400004131e531d60000040f0000000100200190000028490000613d00000001010000390000006502000039000000000012041b000000000001042d000000000001042f0000000001000019000031e70001043000000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e700010430000000400100043d00000cf802000041000028790000013d000000400100043d00000d2102000041000028790000013d00000d5901000041000000000010043f0000001101000039000000040010043f00000d5301000041000031e700010430000000400100043d000000440210003900000d5c03000041000000000032043500000024021000390000001f03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000d36011001c7000031e700010430000000400100043d00000d1402000041000028790000013d000000400100043d00000d2202000041000028790000013d000000400100043d00000d2002000041000028790000013d000000400100043d00000d1b02000041000000000021043500000c7a0010009c00000c7a01008041000000400110021000000ce8011001c7000031e70001043000000c7a033001970000001f0530018f00000c7c06300198000000400200043d00000000046200190000288b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000028870000c13d000000000005004b000028980000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c7a0020009c00000c7a020080410000004002200210000000000112019f000031e700010430000000400400043d00000054054000390000000000350435000000600310021000000020014000390000000000310435000000340340003900000000002304350000005402000039000000000024043500000d740040009c000028c00000813d0000008002400039000000400020043f00000c7a0010009c00000c7a010080410000004001100210000000000204043300000c7a0020009c00000c7a020080410000006002200210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f0000000100200190000028c60000613d000000000101043b000000000001042d00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e7000104300000000001000019000031e70001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000028d70000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b000028d00000413d000000000312001900000000000304350000001f0220003900000d6c022001970000000001120019000000000001042d000000000001004b000028e00000613d000000000001042d000000400100043d000000640210003900000cea030000410000000000320435000000440210003900000ceb03000041000000000032043500000024021000390000002b03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000c81011001c7000031e70001043000000c7a0110019700000c7a0010009c000028f90000613d0000000101100039000000000001042d00000d5901000041000000000010043f0000001101000039000000040010043f00000d5301000041000031e7000104300003000000000002000000400500043d00000020035000390000004002000039000100000003001d000000000023043500000060025000390000000043010434000000000032043500000000020404330000008003500039000000000023043500000040021000390000000002020433000000a003500039000000000023043500000060021000390000000002020433000000c003500039000000000023043500000080021000390000000002020433000000e0035000390000000000230435000000a002100039000000000202043300000100035000390000000000230435000000c002100039000000000202043300000120035000390000000000230435000000e00210003900000000020204330000014003500039000000000023043500000100021000390000000002020433000001600350003900000000002304350000012002100039000000000202043300000c7a02200197000001800350003900000000002304350000014002100039000000000202043300000c7a02200197000001a003500039000000000023043500000160011000390000000001010433000001c00250003900000180030000390000000000320435000001e00250003900000000160104340000000000620435000300000005001d0000020002500039000000000006004b000029450000613d000000000300001900000000042300190000000005310019000000000505043300000000005404350000002003300039000000000063004b0000293e0000413d0000000001260019000000000001043500000cfb010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b02000039000200000006001d31e531db0000040f00000001002001900000297c0000613d000000000101043b00000003040000290000004002400039000000000012043500000002010000290000001f0110003900000d6c01100197000001e00310003900000000003404350000021f0110003900000d6c021001970000000001420019000000000021004b0000000002000039000000010200403900000cee0010009c0000297d0000213d00000001002001900000297d0000c13d000000400010043f000000010100002900000c7a0010009c00000c7a010080410000004001100210000000000204043300000c7a0020009c00000c7a020080410000006002200210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f0000000100200190000029830000613d000000000101043b000000000001042d000000000001042f00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e7000104300000000001000019000031e7000104300000006501000039000000000201041a000000020020008c0000298c0000613d0000000202000039000000000021041b000000000001042d000000400100043d000000440210003900000d5c03000041000000000032043500000024021000390000001f03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000d36011001c7000031e700010430000a000000000002000500000008001d000600000007001d000700000006001d000800000005001d000a00000004001d000300000002001d000400000001001d00000c7d01300197000900000001001d000000000010043f0000086d01000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000002ac20000613d000000000101043b0000000802000029000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000002ac20000613d000000000101043b000000000101041a000000ff0010019000002aca0000613d000000070200002900000d310120019700000d2f0020019800000d30020000410000000002006019000000000312019f00000d0801300197000000010200008a00000d080010009c000000000200c0190000000101200210000000ff02300270000000000112019f000000ff0000008b0000000001036019000000000213013f000000000112004900000d750010009c0000000a0100002900002acd0000813d000200000003001d00000d760010009c00002ad00000813d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f000000010020019000002ac10000613d000000060200002900060c7a0020019b000000000101043b000000060110006c000700000001001d00002ac40000413d00000d170100004100000000001004430000000001000412000000040010044300000040010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f000000010020019000002ac10000613d000000000101043b00000c7a01100197000000070010006b00002ad30000213d0000086b01000039000000000201041a000000c00320027000000c7a0330019700000c7a0030009c00002ac40000613d00000cdf02200197000700000003001d000000c00330021000000d730330009a00000cde03300197000000000223019f000000000021041b00000d170100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f000000010020019000002ac10000613d000000000101043b00000c7d01100197000000090010006b00002a4c0000c13d0000000001000416000000000001004b00002a4c0000613d0000000a0010006c00002adc0000c13d00000cd901000041000000000010044300000009010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f000000010020019000002ac10000613d000000000101043b000000000001004b00002ac20000613d000000400500043d00000d1c01000041000000000015043500000000010004140000000902000029000000040020008c0000000a0300002900002a6f0000613d00000c7a0050009c000100000005001d00000c7a020000410000000002054019000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f000000000003004b00002a650000613d00000d1d011001c700008009020000390000000904000029000000000500001900002a670000013d000000400200043d000000200120003900000d1e03000041000000000031043500000064012000390000000a030000290000000000310435000000000100041000000c7d0110019700000044032000390000000000130435000000000100041100000c7d01100197000000240320003900000000001304350000006401000039000000000012043500000d770020009c00002ad60000813d000000a001200039000000400010043f000000090100002931e530960000040f0000000a0300002900002a720000013d00000ce8011001c7000000090200002931e531d60000040f0003000000010355000000600410027000010c7a0040019d00000001002001900000000a03000029000000010500002900002ae40000613d00000cee0050009c00002ad60000213d000000400050043f0000000706000029000000020100002900000d780110009900000000023100a9000000000003004b00002a7b0000613d0000000a032000fa000000000031004b00002ac40000c13d000000400100043d000001200310003900000140040000390000000000430435000000030300002900000c7d03300197000000e0041000390000000000340435000000a00310003900000c7a04000041000000000043043500000080031000390000000604000029000000000043043500000d780220012a0000006003100039000000000023043500000040021000390000000a0300002900000000003204350000000902000029000000000221043600000100031000390000000000030435000000c0031000390000000000030435000000000002043500000140031000390000000502000029000000004202043400000000002304350000016003100039000000040500002900000c7d07500197000000000002004b00002aa70000613d000000000500001900000000093500190000000008540019000000000808043300000000008904350000002005500039000000000025004b00002aa00000413d0000001f0420003900000d6c0440019700000000023200190000000000020435000001600240003900000c7a0020009c00000c7a02008041000000600220021000000c7a0010009c00000c7a010080410000004001100210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c70000800d02000039000000040300003900000d1f04000041000000080500002931e531d60000040f000000010020019000002ac20000613d000000000001042d000000000001042f0000000001000019000031e70001043000000d5901000041000000000010043f0000001101000039000000040010043f00000d5301000041000031e700010430000000400100043d00000d220200004100002ade0000013d000000400100043d00000d7a0200004100002ade0000013d000000400100043d00000d790200004100002ade0000013d000000400100043d00000d210200004100002ade0000013d00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e700010430000000400100043d00000d1b02000041000000000021043500000c7a0010009c00000c7a01008041000000400110021000000ce8011001c7000031e70001043000000c7a034001970000001f0530018f00000c7c06300198000000400200043d000000000462001900002af00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002aec0000c13d000000000005004b00002afd0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c7a0020009c00000c7a020080410000004002200210000000000112019f000031e7000104300003000000000002000300000001001d00000d170100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f000000010020019000002b6f0000613d000000000101043b00000c7d02100197000000030100002900000c7d01100197000300000002001d000000000021004b00002b6e0000c13d00000d5401000041000000000010044300000000010004100000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c70000800a0200003931e531db0000040f000000010020019000002b6f0000613d000000000101043b000000000001004b00002b6e0000613d00000d5401000041000000000010044300000000010004100000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c70000800a0200003931e531db0000040f000000010020019000002b6f0000613d000000000101043b000200000001001d00000cd901000041000000000010044300000003010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f000000010020019000002b6f0000613d000000000101043b000000000001004b00002b700000613d000000400400043d00000d1c01000041000000000014043500000000010004140000000302000029000000040020008c00002b6b0000613d00000c7a0040009c000100000004001d00000c7a020000410000000002044019000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f0000000203000029000000000003004b00002b620000613d00000d1d011001c700008009020000390000000304000029000000000500001900002b640000013d00000ce8011001c7000000030200002931e531d60000040f0003000000010355000000600310027000010c7a0030019d0000000100200190000000010400002900002b780000613d00000d6b0040009c00002b720000813d000000400040043f000000000001042d000000000001042f0000000001000019000031e70001043000000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e70001043000000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900002b840000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002b800000c13d000000000005004b00002b910000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c7a0020009c00000c7a020080410000004002200210000000000112019f000031e7000104300014000000000002000f00000002001d001400000001001d0000000021010434001200000002001d001100000001001d0000012001100039001000000001001d0000000001010433001300000001001d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f000000010020019000002e200000613d000000000101043b000000130200002900000c7a02200197000000000012004b00002e2a0000413d00000012010000290000000001010433001300000001001d000000000010043f0000087201000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000002e1e0000613d000000000101043b000000000101041a001200000001001d0000001301000029000000000010043f0000087201000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f0000001203000029000000010030008c00000000030000390000000103006039001200000003001d000000010020019000002e1e0000613d00000872030000390000001302000029000000000101043b000000000101041a000000020010008c00002e2d0000613d000000000020043f000000200030043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000002e1e0000613d000000000101043b0000000202000039000000000021041b000000110200002900000020012000390000000001010433000800000001001d0000000001020433000a00000001001d00000040012000390000000001010433000b00000001001d00000100012000390000000001010433000600000001001d000000e0012000390000000001010433000500000001001d0000001401000029000000a0011000390000000001010433000c00000001001d000000c0012000390000000001010433000d00000001001d000000a0012000390000000001010433000e00000001001d0000008001200039000400000001001d0000000001010433001300000001001d00000060012000390000000001010433000900000001001d00000140012000390000000001010433000700000001001d00000010010000290000000001010433001000000001001d000001600120003900000000010104330000000012010434000000000002004b00002c270000613d00000c7a0020009c00000c7a02008041000000600220021000000c7a0010009c00000c7a010080410000004001100210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000002e1e0000613d000000000901043b00002c280000013d000000000900001900000014010000290000006002100039001100000002001d00000000080204330000008001100039000300000001001d00000000010104330000000012010434000000000002004b00002c4c0000613d000100000008001d000200000009001d00000c7a0020009c00000c7a02008041000000600220021000000c7a0010009c00000c7a010080410000004001100210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f000000010020019000002e1e0000613d000000000101043b00000002090000290000000108000029000000400200043d00000d740020009c00002c500000413d00002e210000013d0000000001000019000000400200043d00000d740020009c00002e210000813d000000070300002900000c7a05300197000000100300002900000c7a0630019700000014030000290000004003300039001000000003001d00000000070304330000008003200039000000400030043f00000060032000390000001204000029000000000043043500000040042000390000000000740435000000200720003900000000001704350000000000820435000000400100043d0000014008100039000000000098043500000120081000390000000809000029000000000098043500000100081000390000000a090000290000000000980435000000e0081000390000000b090000290000000000980435000000c0081000390000000000580435000000a005100039000000000065043500000080051000390000000c06000029000000000065043500000060051000390000000d06000029000000000065043500000040051000390000000e060000290000000000650435000000200510003900000013060000290000000000650435000000090500002900000000005104350000000002020433000001600510003900000000002504350000000002070433000001800510003900000000002504350000000002040433000001a00410003900000000002404350000000002030433000000030020008c00002e350000813d000001c003100039000000000023043500000c7a0010009c00000c7a010080410000004001100210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000d50011001c70000800d02000039000000040300003900000d5104000041000000050500002900000006060000290000000f0700002931e531d60000040f000000010020019000002e1e0000613d00000004010000290000000001010433001300000001001d00000cf70010009c00002e270000813d00000011010000290000000001010433001400000001001d00000c7d0010009c00002e270000213d00000010010000290000000001010433001200000001001d00000d170100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f000000010020019000002e200000613d000000000301043b000000400200043d000000200120003900000d1e040000410000000000410435000000000100041100000c7d041001970000002401200039001100000004001d00000000004104350000006401200039000000440420003900000c7d03300197000000130030006b000000640300003900002d0a0000c13d000000000500041000000c7d05500197000000000054043500000012040000290000000000410435000000000032043500000d000020009c00002e210000213d000000a001200039000000400010043f000000130100002931e530960000040f00000cd901000041000000000010044300000014010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f000000010020019000002e200000613d000000000101043b00000d170200004100000000002004430000000002000412000000040020044300000020020000390000002400200443000000000001004b00002d7c0000613d000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f000000010020019000002e200000613d000000000101043b000000400200043d000000200320003900000d0a0400004100000000004304350000004403200039000000120400002900000000004304350000002403200039000000140400002900000000004304350000004403000039000000000032043500000cfa0020009c00002e210000213d0000008003200039000000400030043f00000c7d0110019700002d140000013d0000001405000029000000000054043500000012040000290000000000410435000000000032043500000d000020009c00002e210000213d000000a001200039000000400010043f000000130100002931e530960000040f00000003010000290000000001010433000f00000001001d0000000021010434001000000002001d000000000001004b000000140200002900002d7b0000613d00000cd90100004100000000001004430000000400200443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f000000010020019000002e200000613d000000000101043b000000000001004b000000140200002900002d7b0000613d00000cd90100004100000000001004430000000400200443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f000000010020019000002e200000613d000000000101043b000000000001004b00002e1e0000613d000000400700043d00000064017000390000008002000039000000000021043500000044017000390000001102000029000000000021043500000024017000390000001202000029000000000021043500000d5701000041000000000017043500000004017000390000001302000029000000000021043500000084027000390000000f0100002900000000010104330000000000120435000000a402700039000000000001004b000000100600002900002d5b0000613d000000000300001900000000042300190000000005360019000000000505043300000000005404350000002003300039000000000013004b00002d540000413d0000000002210019000000000002043500000000040004140000001402000029000000040020008c00002d780000613d0000001f0110003900000d6c01100197000000a40110003900000c7a0010009c00000c7a01008041000000600110021000000c7a0070009c00000c7a0300004100000000030740190000004003300210000000000131019f00000c7a0040009c00000c7a04008041000000c003400210000000000113019f001400000007001d31e531d60000040f0000001407000029000000600310027000010c7a0030019d0003000000010355000000010020019000002e3b0000613d00000cee0070009c00002e210000213d000000400070043f000000000001042d000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f000000010020019000002e200000613d000000000101043b00000cd902000041000000000020044300000c7d01100197001000000001001d0000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f000000010020019000002e200000613d000000000101043b000000000001004b00002e1e0000613d000000400400043d00000d5201000041000000000014043500000004014000390000001202000029000000000021043500000000010004140000001002000029000000040020008c00002db20000613d00000c7a0040009c00000c7a030000410000000003044019000000400330021000000c7a0010009c00000c7a01008041000000c001100210000000000131019f00000d53011001c7001000000004001d31e531d60000040f0000001004000029000000600310027000010c7a0030019d0003000000010355000000010020019000002e590000613d00000cee0040009c000000000200041000002e210000213d000000400040043f00000d540100004100000000001004430000000400200443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c70000800a0200003931e531db0000040f000000010020019000002e200000613d000000000101043b0000001203000029000000000031004b00002e480000413d00000000010004140000001404000029000000040040008c00002dcf0000c13d00000001020000390000000101000031000000000001004b00002de00000c13d00002e080000013d00000c7a0010009c00000c7a01008041000000c001100210000000000003004b00002dd80000613d00000ce3011001c70000800902000039000000000500001900002dd90000013d000000000204001931e531d60000040f0003000000010355000000600110027000010c7a0010019d00000c7a01100197000000000001004b00002e080000613d00000cee0010009c00002e210000213d0000001f0410003900000d6c044001970000003f0440003900000d6c05400197000000400400043d0000000005540019000000000045004b0000000006000039000000010600403900000cee0050009c00002e210000213d000000010060019000002e210000c13d000000400050043f000000000614043600000d6c031001980000001f0410018f0000000001360019000000030500036700002dfb0000613d000000000705034f000000007807043c0000000006860436000000000016004b00002df70000c13d000000000004004b00002e080000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000010020019000002d150000c13d000000400100043d000000640210003900000d55030000410000000000320435000000440210003900000d5603000041000000000032043500000024021000390000003a03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000c81011001c7000031e7000104300000000001000019000031e700010430000000000001042f00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e700010430000000400100043d00000cf80200004100002e2f0000013d000000400100043d00000d5b0200004100002e2f0000013d000000400100043d00000d5a02000041000000000021043500000c7a0010009c00000c7a01008041000000400110021000000ce8011001c7000031e70001043000000d5901000041000000000010043f0000002101000039000000040010043f00000d5301000041000031e70001043000000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900002e650000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e430000c13d00002e650000013d000000400100043d000000440210003900000d5803000041000000000032043500000024021000390000001d03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000d36011001c7000031e70001043000000c7a033001970000001f0530018f00000c7c06300198000000400200043d000000000462001900002e650000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e610000c13d000000000005004b00002e720000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c7a0020009c00000c7a020080410000004002200210000000000112019f000031e700010430000000600210003900000d7b030000410000000000320435000000400210003900000d7c03000041000000000032043500000020021000390000002e030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000a0000000000020000000032010434000600000003001d00000cf70020009c00002fd50000813d0000004002100039000900000002001d000000000202043300000c7d0020009c00002fd50000213d000a00000001001d000000000020043f0000086d01000039000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000002fd30000613d000000000101043b0000000a02000029000000c002200039000500000002001d0000000002020433000000000020043f000000200010043f000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d09011001c7000080100200003931e531db0000040f000000010020019000002fd30000613d000000000101043b000000000101041a000000ff001001900000000a0100002900002fdb0000613d0000012001100039000400000001001d0000000001010433000800000001001d00000cef010000410000000000100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cf0011001c70000800b0200003931e531db0000040f000000010020019000002fd20000613d000000080200002900000c7a02200197000000000101043b000700000001001d000800000021005300002fd80000413d00000d170100004100000000001004430000000001000412000000040010044300000040010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f000000010020019000002fd20000613d000000000101043b00000c7a01100197000000080010006b00002fd80000213d0000000a010000290000014001100039000300000001001d0000000001010433000800000001001d00000d170100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f000000010020019000002fd20000613d000000000101043b00000c7a011001970000000704000029000000000041001a0000000a0300002900002fef0000413d000000080200002900000c7a022001970000000001410019000000000012004b00002fde0000213d0000016001300039000000000101043300000c7a02100198000000e003300039000200000003001d00002f0b0000613d00000d190020009c00002f040000813d00000c7a01400197000000000212001900000c7a0020009c00002fef0000213d000700000002001d0000000001030433000000000001004b00002f0c0000c13d000000400100043d00000d1a0200004100002fe90000013d000700000000001d00000009010000290000000001010433000800000001001d00000d170100004100000000001004430000000001000412000000040010044300000020010000390000002400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000d18011001c7000080050200003931e531db0000040f000000010020019000002fd20000613d0000000004000416000000000101043b00000c7d011001970000000803000029000000000013004b00002f5c0000c13d000000000004004b0000000a0200002900002f5f0000613d0000008001200039000100000001001d0000000001010433000000000014004b00002fe70000c13d00000cd90100004100000000001004430000000400300443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f000000010020019000002fd20000613d0000000804000029000000000101043b000000000001004b00002fd30000613d000000400e00043d00000d1c0100004100000000001e04350000000001000414000000040040008c00002f560000613d00000c7a00e0009c00000c7a0200004100000000020e4019000000400220021000000c7a0010009c00000c7a01008041000000c001100210000000000121019f00000d1d011001c700008009020000390000000003000416000000000500001900080000000e001d31e531d60000040f000000080e000029000000600310027000010c7a0030019d0003000000010355000000010020019000002ff50000613d00000cee00e0009c0000000a07000029000000010300002900002fe10000213d0000004000e0043f00002f7e0000013d000000000004004b0000000a0200002900002fe70000c13d0000000901000029000000000101043300000c7d0010009c00002fd50000213d00000080062000390000000003060433000000400200043d000000200420003900000d1e05000041000000000054043500000064042000390000000000340435000000000300041000000c7d0330019700000044042000390000000000340435000000000300041100000c7d03300197000000240420003900000000003404350000006403000039000000000032043500000d770020009c00002fe10000813d000000a003200039000000400030043f000100000006001d31e530960000040f00000001030000290000000a07000029000000400e00043d000000050100002900000000050104330000010001700039000000000601043300000180017000390000000001010433000000600270003900000000020204330000000003030433000000a00470003900000000040404330000000408000029000000000808043300000003090000290000000009090433000000060a000029000000000a0a04330000000007070433000000020b000029000000000b0b0433000000090c000029000000000c0c04330000000000ce0435000001200ce00039000001400d0000390000000000dc0435000001000ce000390000000000bc0435000000e00be000390000000000ab0435000000c00ae00039000000070b0000290000000000ba043500000c7a09900197000000a00ae0003900000000009a043500000c7a088001970000008009e0003900000000008904350000006008e0003900000000004804350000004004e0003900000000003404350000002003e0003900000000002304350000014002e00039000000003101043400000000001204350000016002e00039000000000001004b00002fb90000613d000000000400001900000000082400190000000009430019000000000909043300000000009804350000002004400039000000000014004b00002fb20000413d0000001f0310003900000d6c0330019700000000012100190000000000010435000001600130003900000c7a0010009c00000c7a01008041000000600110021000000c7a00e0009c00000c7a0e0080410000004002e00210000000000121019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c70000800d02000039000000040300003900000d1f0400004131e531d60000040f000000010020019000002fd30000613d000000000001042d000000000001042f0000000001000019000031e700010430000000400100043d00000cf80200004100002fe90000013d000000400100043d00000d210200004100002fe90000013d000000400100043d00000d220200004100002fe90000013d000000400100043d00000d200200004100002fe90000013d00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e700010430000000400100043d00000d1b02000041000000000021043500000c7a0010009c00000c7a01008041000000400110021000000ce8011001c7000031e70001043000000d5901000041000000000010043f0000001101000039000000040010043f00000d5301000041000031e70001043000000c7a033001970000001f0530018f00000c7c06300198000000400200043d0000000004620019000030010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002ffd0000c13d000000000005004b0000300e0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c7a0020009c00000c7a020080410000004002200210000000000112019f000031e700010430000000000100041a0000ff0000100190000030180000613d000000000001042d000000400100043d000000640210003900000cea030000410000000000320435000000440210003900000ceb03000041000000000032043500000024021000390000002b03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000c81011001c7000031e700010430000000000100041a0000ff0000100190000030330000613d00000001010000390000006502000039000000000012041b000000000001042d000000400100043d000000640210003900000cea030000410000000000320435000000440210003900000ceb03000041000000000032043500000024021000390000002b03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000c81011001c7000031e70001043000000c7d051001980000305a0000613d0000086901000039000000000201041a00000cdd02200197000000000252019f000000000021041b000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000ce3011001c70000800d02000039000000020300003900000ce40400004131e531d60000040f0000000100200190000030620000613d000000000001042d000000400100043d00000ce902000041000000000021043500000c7a0010009c00000c7a01008041000000400110021000000ce8011001c7000031e7000104300000000001000019000031e70001043000000c7d05100198000030770000613d0000086a01000039000000000201041a00000cdd02200197000000000252019f000000000021041b000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000ce3011001c70000800d02000039000000020300003900000ce50400004131e531d60000040f00000001002001900000307f0000613d000000000001042d000000400100043d00000ce702000041000000000021043500000c7a0010009c00000c7a01008041000000400110021000000ce8011001c7000031e7000104300000000001000019000031e70001043000000c7d0510019700000c5b01000039000000000201041a00000cdd03200197000000000353019f000000000031041b000000000100041400000c7d0620019700000c7a0010009c00000c7a01008041000000c00110021000000ce3011001c70000800d02000039000000030300003900000ce60400004131e531d60000040f0000000100200190000030940000613d000000000001042d0000000001000019000031e7000104300004000000000002000000400400043d00000d6f0040009c000031590000813d00000c7d051001970000004001400039000000400010043f000000200140003900000d7d0300004100000000003104350000002001000039000000000014043500000000230204340000000001000414000000040050008c000030d10000c13d00000001010000320000310c0000613d00000cee0010009c000031590000213d0000001f0310003900000d6c033001970000003f0330003900000d6c03300197000000400a00043d00000000033a00190000000000a3004b0000000004000039000000010400403900000cee0030009c000031590000213d0000000100400190000031590000c13d000000400030043f00000000051a043600000d6c021001980000001f0310018f00000000012500190000000304000367000030c30000613d000000000604034f000000006706043c0000000005750436000000000015004b000030bf0000c13d000000000003004b0000310d0000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f00000000002104350000310d0000013d000200000004001d00000c7a0030009c00000c7a03008041000000600330021000000c7a0020009c00000c7a020080410000004002200210000000000223019f00000c7a0010009c00000c7a01008041000000c001100210000000000112019f000100000005001d000000000205001931e531d60000040f0003000000010355000000600310027000010c7a0030019d00000c7a04300198000031240000613d0000001f0340003900000c7b033001970000003f0330003900000d7e03300197000000400a00043d00000000033a00190000000000a3004b0000000005000039000000010500403900000cee0030009c000031590000213d0000000100500190000031590000c13d000000400030043f0000001f0540018f00000000034a043600000c7c064001980000000004630019000030fe0000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000048004b000030fa0000c13d000000000005004b000031260000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000031260000013d000000600a0000390000000002000415000000040220008a000000050220021000000000010a0433000000000001004b0000312e0000c13d00020000000a001d00000cd901000041000000000010044300000004010000390000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000031880000613d0000000002000415000000040220008a000031410000013d000000600a000039000000800300003900000000010a04330000000100200190000031750000613d0000000002000415000000030220008a0000000502200210000000000001004b000031310000613d000000050220027000000000020a001f0000314b0000013d00020000000a001d00000cd901000041000000000010044300000001010000290000000400100443000000000100041400000c7a0010009c00000c7a01008041000000c00110021000000cda011001c7000080020200003931e531db0000040f0000000100200190000031880000613d0000000002000415000000030220008a0000000502200210000000000101043b000000000001004b000000020a000029000031890000613d00000000010a0433000000050220027000000000020a001f000000000001004b000031580000613d00000cf30010009c0000315f0000213d000000200010008c0000315f0000413d0000002001a000390000000001010433000000000001004b0000000002000039000000010200c039000000000021004b0000315f0000c13d000000000001004b000031610000613d000000000001042d00000d5901000041000000000010043f0000004101000039000000040010043f00000d5301000041000031e7000104300000000001000019000031e700010430000000400100043d000000640210003900000d7f030000410000000000320435000000440210003900000d8003000041000000000032043500000024021000390000002a03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000c81011001c7000031e700010430000000000001004b0000319a0000c13d000000400200043d000100000002001d00000c800100004100000000001204350000000401200039000000020200002931e528c80000040f0000000102000029000000000121004900000c7a0010009c00000c7a01008041000000600110021000000c7a0020009c00000c7a020080410000004002200210000000000121019f000031e700010430000000000001042f000000400100043d000000440210003900000d4403000041000000000032043500000024021000390000001d03000039000000000032043500000c8002000041000000000021043500000004021000390000002003000039000000000032043500000c7a0010009c00000c7a01008041000000400110021000000d36011001c7000031e70001043000000c7a0030009c00000c7a03008041000000400230021000000c7a0010009c00000c7a010080410000006001100210000000000121019f000031e700010430000000000001042f00000c7a0010009c00000c7a01008041000000400110021000000c7a0020009c00000c7a020080410000006002200210000000000112019f000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000ce3011001c7000080100200003931e531db0000040f0000000100200190000031b60000613d000000000101043b000000000001042d0000000001000019000031e70001043000000000050100190000000000200443000000050030008c000031c60000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b000031be0000413d00000c7a0030009c00000c7a030080410000006001300210000000000200041400000c7a0020009c00000c7a02008041000000c002200210000000000112019f00000d81011001c7000000000205001931e531db0000040f0000000100200190000031d50000613d000000000101043b000000000001042d000000000001042f000031d9002104210000000102000039000000000001042d0000000002000019000000000001042d000031de002104230000000102000039000000000001042d0000000002000019000000000001042d000031e3002104250000000102000039000000000001042d0000000002000019000000000001042d000031e500000432000031e60001042e000031e70001043000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff616c697a696e6700000000000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320696e69746908c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000000000000000000000002000000000000000000000000000000000000200000000000000000000000007f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249800000002000000000000000000000000000001400000010000000000000000000000000000000000000000000000000000000000000000000000000082e2c43e00000000000000000000000000000000000000000000000000000000bb3e04b400000000000000000000000000000000000000000000000000000000de7eba7700000000000000000000000000000000000000000000000000000000ee2a53f700000000000000000000000000000000000000000000000000000000fb6bf74b00000000000000000000000000000000000000000000000000000000fb6bf74c00000000000000000000000000000000000000000000000000000000fc8a584f00000000000000000000000000000000000000000000000000000000ee2a53f800000000000000000000000000000000000000000000000000000000f79f29ed00000000000000000000000000000000000000000000000000000000e322921000000000000000000000000000000000000000000000000000000000e322921100000000000000000000000000000000000000000000000000000000ea86bd4600000000000000000000000000000000000000000000000000000000de7eba7800000000000000000000000000000000000000000000000000000000deff4b2400000000000000000000000000000000000000000000000000000000ceb4c98600000000000000000000000000000000000000000000000000000000dda5211200000000000000000000000000000000000000000000000000000000dda5211300000000000000000000000000000000000000000000000000000000ddd224f100000000000000000000000000000000000000000000000000000000ceb4c98700000000000000000000000000000000000000000000000000000000d7e1583a00000000000000000000000000000000000000000000000000000000bb3e04b500000000000000000000000000000000000000000000000000000000c35c83fc00000000000000000000000000000000000000000000000000000000cd44141f00000000000000000000000000000000000000000000000000000000a1244c6600000000000000000000000000000000000000000000000000000000ad5425c500000000000000000000000000000000000000000000000000000000b370b7f400000000000000000000000000000000000000000000000000000000b370b7f500000000000000000000000000000000000000000000000000000000babb6aac00000000000000000000000000000000000000000000000000000000ad5425c600000000000000000000000000000000000000000000000000000000adb5a6a600000000000000000000000000000000000000000000000000000000a1244c6700000000000000000000000000000000000000000000000000000000a18a096e00000000000000000000000000000000000000000000000000000000ac9650d80000000000000000000000000000000000000000000000000000000097943aa80000000000000000000000000000000000000000000000000000000099cc29670000000000000000000000000000000000000000000000000000000099cc2968000000000000000000000000000000000000000000000000000000009a8a05920000000000000000000000000000000000000000000000000000000097943aa900000000000000000000000000000000000000000000000000000000979f2bc20000000000000000000000000000000000000000000000000000000082e2c43f000000000000000000000000000000000000000000000000000000008a7860ce000000000000000000000000000000000000000000000000000000008b15788e00000000000000000000000000000000000000000000000000000000493a4f830000000000000000000000000000000000000000000000000000000057f6dcb700000000000000000000000000000000000000000000000000000000738b62e4000000000000000000000000000000000000000000000000000000007b939231000000000000000000000000000000000000000000000000000000007b939232000000000000000000000000000000000000000000000000000000007ef413e100000000000000000000000000000000000000000000000000000000738b62e5000000000000000000000000000000000000000000000000000000007aef642c00000000000000000000000000000000000000000000000000000000670fa8ab00000000000000000000000000000000000000000000000000000000670fa8ac000000000000000000000000000000000000000000000000000000006bbbcd2e0000000000000000000000000000000000000000000000000000000057f6dcb8000000000000000000000000000000000000000000000000000000006068d6cb000000000000000000000000000000000000000000000000000000005285e05700000000000000000000000000000000000000000000000000000000541f4f1300000000000000000000000000000000000000000000000000000000541f4f1400000000000000000000000000000000000000000000000000000000577f51f8000000000000000000000000000000000000000000000000000000005285e0580000000000000000000000000000000000000000000000000000000052d1902d00000000000000000000000000000000000000000000000000000000493a4f84000000000000000000000000000000000000000000000000000000004f1ef286000000000000000000000000000000000000000000000000000000005249fef10000000000000000000000000000000000000000000000000000000029cb924c0000000000000000000000000000000000000000000000000000000033a84fef00000000000000000000000000000000000000000000000000000000437b911500000000000000000000000000000000000000000000000000000000437b911600000000000000000000000000000000000000000000000000000000490e49ef0000000000000000000000000000000000000000000000000000000033a84ff0000000000000000000000000000000000000000000000000000000003659cfe60000000000000000000000000000000000000000000000000000000029cb924d000000000000000000000000000000000000000000000000000000002e378115000000000000000000000000000000000000000000000000000000002e63e59a0000000000000000000000000000000000000000000000000000000017fcb39a000000000000000000000000000000000000000000000000000000001fab657b000000000000000000000000000000000000000000000000000000001fab657c00000000000000000000000000000000000000000000000000000000272751c70000000000000000000000000000000000000000000000000000000017fcb39b000000000000000000000000000000000000000000000000000000001b3d555900000000000000000000000000000000000000000000000000000000079bd2c7000000000000000000000000000000000000000000000000000000001186ec330000000000000000000000000000000000000000000000000000000015348e44ffffffffffffffffffffffffeeeeffffffffffffffffffffffffffffffffeeef1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000647920696e697469616c697a6564000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c726561ffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffff000000000000000000000000000000000000000000000000ffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf4143524f53532d56320000000000000000000000000000000000000000000000312e302e300000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000a9e8c42c9e7fca7f62755189a16b2f5314d43d8fb24e91ba54e6d65f9314e849a73e8909f8616742d7fe701153d82666f7b7cd480552e23ebb05d358c22fd04eab9987862d7dab8c2bf2f09eb3ad7b6c1961c86fe3e9e7d3ef50dc98995d72d4b6061256000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000ba97b39d000000000000000000000000000000000000000000000000000000006e697469616c697a696e67000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206900000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000000ff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000008000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000fffffffffffffdff000000ff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c097ce7bc90715b34b9f10000000000000000000000000000000010000000000000000000000000000000000000000f3d81dae000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f9a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b0200000000000000000000000000000000000000000000a000000000000000008d1994e2bbbd77564cdca06dd819e7ee2a5efa06c80dcb59a4a7b6e39edc538f000000000000000000000000000000000000000000000000ffffffffffffff1fc2f8787176b8ac6bf7215b4adcc1e069bf4ab82d9ab1df05a57a91d425935b6e000000000000000000000000000000000000000000000000ffffffffffffff5f190100000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000420000000000000000000000007fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a000000000000000000000000000000000000000800000000000000000000000001626ba7e0000000000000000000000000000000000000000000000000000000045e04bc8f121ba11466985789ca2822a91109f31bb8ac85504a37b7eaf873c267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe080000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000040000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000006c172ea51018fb2eb2118f3f8a507c4df71eb519b8c0052834dc3c920182fef4d950afdc00000000000000000000000000000000000000000000000000000000ffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000010000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000200000008000000000000000002d5b62420992e5a4afce0e77742636ca2608ef58289fd2e1baa5161ef6e7e41e000000000000000000000000000000000000000000000000fffffffffffffe7f000000000000000000000000000000000000000000000000ffffffffffffff3f000000000000000000000000000000000000000000000000fffffffffffffdbf5a65d188000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000054000000a00000000000000000000000000000000000000000000000000000000000000000fffffffffffffe5f310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e02000002000000000000000000000000000000440000000000000000000000000000000000000000000000000000000000000000000000000000000001e13381495d907f000000000000000000000000000000000000000000000000000000006452a35d00000000000000000000000000000000000000000000000000000000d0e30db000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000400000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000032ed1a409ef04c7b0227189c3a103dc5ac10e775a15b785dcc510201f7c25ad3582e388900000000000000000000000000000000000000000000000000000000f722177f000000000000000000000000000000000000000000000000000000002a58c4f3000000000000000000000000000000000000000000000000000000008e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b38e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b27c1af0646963afc3343245b103731965735a893347bfa0d58a5dc77a77ae691c1e191e8e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdfdeff4b2400000000000000000000000000000000000000000000000000000000b8fe37a700000000000000000000000000000000000000000000000000000000ffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000010000000000000000000000000000000000000000000000000000000000e88463c2f254e2b070013a2dc7ee1e099f9bc00534cbdf03af551dc26ae492199c6dfd61d811b9950a4f2b9adf46357b717c816d22c420d0bde8f2360148f7cd938a1821000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000007fffffffffffffff6c6564207468726f7567682064656c656761746563616c6c0000000000000000555550535570677261646561626c653a206d757374206e6f742062652063616c360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc4f4e4c595f434f554e544552504152545f47415445574159000000000000000000000000000000000000000000000000000000640000000000000000000000004910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914352d1902d000000000000000000000000000000000000000000000000000000006961626c6555554944000000000000000000000000000000000000000000000045524331393637557067726164653a20756e737570706f727465642070726f78bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b000000000000000000000000000000000000000000000000ffffffffffffff9f206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c0000000000000000000000000000000000000000000000a00000000000000000c86ba04c55bc5eb2f2876b91c438849a296dbec7b08751c3074d92e04f0a77af0000000000000000000000000000000000000000000000000000000001e133806163746976652070726f7879000000000000000000000000000000000000000046756e6374696f6e206d7573742062652063616c6c6564207468726f75676820416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006f74206120636f6e747261637400000000000000000000000000000000000000455243313936373a206e657720696d706c656d656e746174696f6e206973206e64656c656761746563616c6c00000000000000000000000000000000000000007b21f8aa0000000000000000000000000000000000000000000000000000000009deb9ec00000000000000000000000000000000000000000000000000000000012f9e440000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000001400000000000000000000000003cee3e290f36226751cd0b3321b213890fe9c768e922f267fa6111836ce05c32c3a9b9d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000008000000000000000000a21fdd43d0ad0c62689ee7230a47309a050755bcc52eba00310add65297692a02000000000000000000000000000000000001e000000000000000000000000044b559f101f8fbcc8a0ea43fa91a05a729a5ea6e14a7c75aa7503746901372082e1a7d4d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f396563697069656e74206d61792068617665207265766572746564000000000000416464726573733a20756e61626c6520746f2073656e642076616c75652c20723a5be8cb00000000000000000000000000000000000000000000000000000000416464726573733a20696e73756666696369656e742062616c616e63650000004e487b71000000000000000000000000000000000000000000000000000000008f260c6000000000000000000000000000000000000000000000000000000000d642b7d9000000000000000000000000000000000000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c00000000000000000000000000000000000000000000000000fffffffffffffebf7a47c9a200000000000000000000000000000000000000000000000000000000b05e92fa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff8e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b1954476d900000000000000000000000000000000000000000000000000000000cd298b380000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000005bb5506200000000000000000000000000000000000000000000000000000000d9caed120000000000000000000000000000000000000000000000000000000051cff8d9000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000024000000000000000000000000fa7fa7cf6d7dde5f9be65a67e6a1a747e7aa864dcd2d793353c722d80fbbb357f4ad92585b1bc117fbdd644990adf0827bc4c95baeae8a23322af807b6d0020e0000000000000000000000000000000000000000000000010000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff000000000000000000000000000000000000000000000000ffffffffffffffc0000000000000000000000000000000000000000000000000ffffffffffffff40000000000000000000000000000000000000000000000000fffffffffffffe60000000000000000000000000000000000000000000000000fffffffffffffe80ffffffffffffffff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff8000000000000000000000000000000000000000000000000006f05b59d3b200000000000000000000000000000000000000c097ce7bc90715b34b9f1000000001000000000000000000000000000000000000000000000000ffffffffffffff600000000000000000000000000000000000000000000000000de0b6b3a7640000c45b6b5200000000000000000000000000000000000000000000000000000000a13c425c000000000000000000000000000000000000000000000000000000006f6e206973206e6f74205555505300000000000000000000000000000000000045524331393637557067726164653a206e657720696d706c656d656e746174695361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656400000000000000000000000000000000000000000000000000000003ffffffe06f742073756363656564000000000000000000000000000000000000000000005361666545524332303a204552433230206f7065726174696f6e20646964206e020000020000000000000000000000000000000000000000000000000000000042a2b5463dda076a5a5c0f181f14228cbc519fa423e534f3a6713d46502724f6",
+ "bytecode": "0x000200000000000200300000000000020001000000010355000000600310027000000c660030019d00000c66083001970000000100200190000000a60000c13d0000008002000039000000400020043f000000040080008c000001300000413d000000000201043b000000e00220027000000c770020009c000001340000a13d00000c780020009c000001680000213d00000c910020009c000001a30000a13d00000c920020009c000002e20000a13d00000c930020009c000009310000a13d00000c940020009c00000afb0000613d00000c950020009c00000b2c0000613d00000c960020009c00001e880000c13d000001840080008c00001e880000413d000000e402100370000000000202043b000d00000002001d000000c402100370000000000202043b000e00000002001d000000a402100370000000000202043b000f00000002001d0000008402100370000000000202043b001000000002001d0000006402100370000000000202043b001100000002001d0000004402100370000000000202043b001200000002001d0000002402100370000000000202043b001300000002001d0000000402100370000000000202043b000c00000002001d0000010402100370000000000202043b000b00000002001d00000c660020009c00001e880000213d0000012402100370000000000202043b000a00000002001d00000c660020009c00001e880000213d0000014402100370000000000202043b000900000002001d00000c660020009c00001e880000213d0000016402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000403200039000000000131034f000000000101043b000800000001001d00000c730010009c00001e880000213d0000002402200039000700000002001d0000000801200029000000000081004b00001e880000213d0000000001000415000600000001001d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d000000c00110027000000c6601100197000500000001001d319321a70000040f0000086b03000039000000000203041a00000cde02200197000000c00110021000000cdf01100197000000000112019f000000000013041b31931f1d0000040f0000000003010019000400000001001d00000160011000390000000902000029000000000021043500000140013000390000000a02000029000000000021043500000120013000390000000b020000290000000000210435000001000130003900000005020000290000000000210435000000e0013000390000000d020000290000000000210435000000c0013000390000000e020000290000000000210435000000a0013000390000000f0200002900000000002104350000008001300039000000100200002900000000002104350000006001300039000000110200002900000000002104350000004001300039000000120200002900000000002104350000002001300039000000130200002900000000002104350000000c01000029000000000013043500000000030000310000000701000029000000080200002931931f290000040f0000000403000029000001800230003900000000001204350000000001030019319327c50000040f00000001010000390000006502000039000000000012041b00000000010004150000000602000029000016b30000013d0000020003000039000000400030043f0000000002000416000000000002004b00001e880000c13d0000001f0280003900000c67022001970000020002200039000000400020043f0000001f0480018f00000c68058001980000020002500039000000b80000613d000000000601034f000000006706043c0000000003730436000000000023004b000000b40000c13d000000000004004b000000c50000613d000000000151034f0000000303400210000000000402043300000000043401cf000000000434022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f0000000000120435000000e00080008c00001e880000413d000002000100043d00000c690010009c00001e880000213d000002200600043d00000c690060009c00001e880000213d000002400200043d001300000002001d00000c690020009c00001e880000213d000002800200043d001200000002001d00000c690020009c00001e880000213d000002a00200043d00000c660020009c00001e880000213d000002c00300043d00000c660030009c00001e880000213d00000c6901100197000002600500043d0000000004000410000000800040043f000000c00000043f000000a00000043f000000e00010043f000001000020043f000001200030043f000000000100041a0000ff0000100190000010a90000c13d001000000005001d000000ff0210018f000000ff0020008c001100000006001d000001010000613d000000ff011001bf000000000010041b000000ff01000039000000400200043d000000000012043500000c660020009c00000c66020080410000004001200210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c6e011001c70000800d02000039000000010300003900000c6f04000041319331840000040f0000001106000029000000010020019000001e880000613d000001600060043f0000001201000029000001800010043f000001400000043f0000000402000039000000400100043d000000000421043600000c7003000041000000000034043500000c710010009c00000efc0000813d000000120200002900000c69022001970000004003100039000000400030043f00000c660040009c00000c66040080410000004003400210000000000101043300000c660010009c00000c66010080410000006001100210000000000113019f000000000300041400000c660030009c00000c6603008041000000c003300210000000000113019f001200000002001d319331890000040f000000600310027000000c6605300198000011d90000c13d00000060030000390000008004000039000000110100002900000c69051001970000000100200190000011920000613d0000000001030433000000200010008c000011920000c13d000000000104043300000c69001001980000000001000039000000010100c039000011930000013d000000000008004b00001e880000c13d0000000001000019000031940001042e00000ca90020009c000001890000a13d00000caa0020009c000001ba0000a13d00000cab0020009c000003920000a13d00000cac0020009c0000093c0000a13d00000cad0020009c00000b650000613d00000cae0020009c00000b700000613d00000caf0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b000000010010008c00001e880000213d0000086902000039000000000202041a00000cd90220009a00000c69022001970000000003000411000000000023004b00000f9a0000c13d0000006502000039000000000302041a000000020030008c00000f900000613d0000000203000039000000000032041b0000086b02000039000000000302041a00000d0503300197000000e804100210000000000343019f000000000032041b000000800010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cf2011001c70000800d02000039000000010300003900000d0604000041000007240000013d00000c790020009c000001c90000a13d00000c7a0020009c0000039f0000a13d00000c7b0020009c000009460000a13d00000c7c0020009c00000b7b0000613d00000c7d0020009c00000ae40000613d00000c7e0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b001300000001001d00000c690010009c00001e880000213d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d319322580000040f000000130100002931932a400000040f0000118d0000013d00000cc20020009c000001d60000213d00000cce0020009c000004cb0000213d00000cd40020009c0000099a0000213d00000cd70020009c00000b930000613d00000cd80020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b00000c690010009c00001e880000213d000000000010043f0000087401000039000000200010043f00000040020000390000000001000019319331510000040f000010200000013d00000c9e0020009c000003ac0000213d00000ca40020009c000004f90000213d00000ca70020009c00000b9e0000613d00000ca80020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000000001000412001900000001001d001801200000003d000080050100003900000044030000390000000004000415000000190440008a000000050440021000000cf602000041319331660000040f000000000001004b00000e1e0000013d00000cb70020009c000004990000213d00000cbd0020009c000005470000213d00000cc00020009c00000c0d0000613d00000cc10020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000d2001000041000000800010043f00000ce001000041000031940001042e00000c860020009c000004be0000213d00000c8c0020009c000005ef0000213d00000c8f0020009c00000ae40000613d00000c900020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000086a01000039000010200000013d00000cc30020009c000004d20000213d00000cc90020009c000009a90000213d00000ccc0020009c00000c4b0000613d00000ccd0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d000000000328004900000ced0030009c00001e880000213d000000640030008c00001e880000413d0000002404100370000000000404043b001300000004001d00000c660040009c00001e880000213d0000004404100370000000000404043b00000c730040009c00001e880000213d0000002305400039000000000085004b00001e880000813d0000000405400039000000000551034f000000000505043b001000000005001d00000c730050009c00001e880000213d000000240440003900000010050000290000000505500210000e00000004001d001200000005001d000f00000045001d0000000f0080006b00001e880000213d0000006504000039000000000404041a000000020040008c00000f900000613d00000002050000390000006504000039000000000054041b001100040020003d0000001101100360000000000101043b000001830230008a00000cec0310019700000cec04200197000000000543013f000000000043004b000000000300001900000cec03004041000000000021004b000000000200001900000cec0200804100000cec0050009c000000000302c019000000000003004b00001e880000c13d00000011011000290000000002080019319320230000040f000d00000001001d0000008001100039000000000101043300000d310010009c000018f50000813d319324740000040f0000000d01000029319321b20000040f000000400200043d000c00000002001d00000d210020009c00000efc0000213d000000010200036700000011030000290000004003300039000000000332034f000000000403043b0000000d0800002900000020038000390000000003030433000001600580003900000000050504330000000c07000029000000c006700039000000400060043f0000008006700039000000000056043500000060057000390000000000350435000000400370003900000000004304350000002004700039000b00000004001d00000000001404350000000000870435000000a001700039000000000001043500000012010000290000003f0110003900000cea01100197000000400400043d0000000001140019001200000004001d000000000041004b0000000004000039000000010400403900000c730010009c00000efc0000213d000000010040019000000efc0000c13d000000400010043f000000120100002900000010050000290000000001510436001100000001001d0000000f01000029000000000010007c00001e880000213d000000100000006b0000000e050000290000000f06000029000002670000613d0000001201000029000000000452034f000000000404043b000000200110003900000000004104350000002005500039000000000065004b000002600000413d000000400100043d001000000001001d00000d330010009c00000efc0000213d0000000001030433000e00000001001d0000000c01000029000000000101043300000010030000290000006002300039000000400020043f0000000001130436000f00000001001d00000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000100200002900000040032000390000000e0200002900000000002304350000000f0200002900000000001204350000086c01000039000000000201041a000000130020006c00001a070000a13d000000000010043f000000130100002900000003011000c900000cf80110009a000000000101041a000e00000001001d000000400100043d00000020021000390000002004000039000000000042043500000010040000290000000004040433000000400510003900000060060000390000000000650435000000a005100039000000007604043400000000006504350000000005070433000000c006100039000000000056043500000040054000390000000005050433000000e006100039000000000056043500000060054000390000000005050433000001000610003900000000005604350000008005400039000000000505043300000120061000390000000000560435000000a005400039000000000505043300000140061000390000000000560435000000c005400039000000000505043300000160061000390000000000560435000000e00540003900000000050504330000018006100039000000000056043500000100054000390000000005050433000001a00610003900000000005604350000012005400039000000000505043300000c6605500197000001c00610003900000000005604350000014005400039000000000505043300000c6605500197000001e00610003900000000005604350000016004400039000000000404043300000200051000390000018006000039000000000065043500000220061000390000000075040434000000000056043500000d58095001970000001f0850018f0000024006100039000000000067004b000017d20000813d000000000009004b000002de0000613d000000000b870019000000000a860019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c000002d80000c13d000000000008004b000017e80000613d000000000a060019000017de0000013d00000c990020009c000006fb0000213d00000c9c0020009c00000dfc0000613d00000c9d0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000e40080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d001300040020003d000000130380006a00000ced0030009c00001e880000213d000001800030008c00001e880000413d0000008403100370000000000303043b001200000003001d0000006403100370000000000303043b001100000003001d0000004403100370000000000303043b000f00000003001d0000002403100370000000000303043b001000000003001d000000a403100370000000000303043b00000c730030009c00001e880000213d0000002304300039000000000084004b00001e880000813d0000000404300039000000000441034f000000000404043b000e00000004001d00000c730040009c00001e880000213d0000002404300039000d00000004001d0000000e03400029000000000083004b00001e880000213d000000c403100370000000000303043b00000c730030009c00001e880000213d0000002304300039000000000084004b00001e880000813d0000000404300039000000000441034f000000000404043b000c00000004001d00000c730040009c00001e880000213d0000002404300039000b00000004001d0000000c03400029000000000083004b00001e880000213d0000000003000415000a00000003001d0000006503000039000000000303041a000000020030008c000007660000613d00000002030000390000006504000039000000000034041b0000086b03000039000000000303041a00000ce100300198000011170000c13d000901440020003d0000000901100360000000000101043b000800000001001d00000c660010009c00001e880000213d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c6601100197000000080010006b000016f70000813d00000000020000310000001301000029319320230000040f319321b20000040f000700000001001d31931f110000040f000800000001001d00000000020000310000001301000029319320230000040f0000000804000029000000600240003900000012030000290000000000320435000000400240003900000011030000290000000000320435000000200240003900000007030000290000000000320435000000000014043500000000030000310000000d010000290000000e0200002931931f290000040f0000000804000029000000a00240003900000010030000290000000000320435000000800240003900000000001204350000000901000029000001400210008a0000000101000367000000000321034f000000000303043b001300000003001d00000c690030009c000018f50000213d0000010003200039000000000331034f000000e002200039000000000121034f000000000101043b001000000001001d000000000103043b000900000001001d00000000030000310000000d010000290000000e0200002931931f290000040f000e00000001001d00000000030000310000000b010000290000000c0200002931931f290000040f0000000007010019000000130100002900000009020000290000001003000029000000110400002900000012050000290000000e06000029319326320000040f00000008010000290000000f02000029319325050000040f00000001010000390000006502000039000000000012041b00000000010004150000000a02000029000016b30000013d00000cb20020009c000007250000213d00000cb50020009c00000e070000613d00000cb60020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000086b01000039000000000101041a00000cdd0010019800000e1e0000013d00000c810020009c0000074d0000213d00000c840020009c00000e180000613d00000c850020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000ce201000041000000800010043f00000ce001000041000031940001042e00000c9f0020009c000007770000213d00000ca20020009c00000e230000613d00000ca30020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000402100370000000000202043b001300000002001d0000002402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d001100040020003d0000001103100360000000000303043b001200000003001d00000c730030009c00001e880000213d0000002402200039000f00000002001d001000120020002d000000100080006b00001e880000213d0000004402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d000d00040020003d0000000d01100360000000000101043b000e00000001001d00000c730010009c00001e880000213d0000000e012000290000002401100039000000000081004b00001e880000213d00000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b0000004002000039000000a00020043f0000001204000029000000e00040043f00000d58034001980000001f0440018f000001000230003900000011050000290000002005500039001100000005001d0000000105500367000003fb0000613d0000010006000039000000000705034f000000007807043c0000000006860436000000000026004b000003f70000c13d000000000004004b000004080000613d000000000335034f0000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000120300002900000100023000390000000000020435000000c00010043f0000001f0130003900000ce4021001970000006001200039000000800010043f00000cfb0020009c00000efc0000213d0000009f0220003900000ce4022001970000008002200039000000400020043f00000c660010009c00000c66010080410000006001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000cfc011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000130010006c000016b70000c13d0000001201000029000000200010008c00001e880000413d00000011010000290000000101100367000000000101043b00000c730010009c00001e880000213d0000000f011000290000001002000029319320230000040f00000000020004150000000e03000029000000200030008c00001e880000413d000000400300043d00000cfe0030009c00000efc0000213d0000002004300039000000400040043f0000000d0400002900000020044000390000000104400367000000000404043b00000000004304350000000004000415000000000242004900000000020000020000000004030433000000400200043d001600200020003d001700000002001d00000cff050000410000002003200039000000000053043500000060060000390000002405200039001300000006001d000000000065043500000084052000390000000006010433000000000065043500000020051000390000000005050433000000a406200039000000000056043500000040051000390000000005050433000000c406200039000000000056043500000060051000390000000005050433000000e40620003900000000005604350000008005100039000000000505043300000104062000390000000000560435000000a005100039000000000505043300000124062000390000000000560435000000c005100039000000000505043300000144062000390000000000560435000000e00510003900000000050504330000016406200039000000000056043500000100051000390000000005050433000001840620003900000000005604350000012005100039000000000505043300000c6605500197000001a40620003900000000005604350000014005100039000000000505043300000c6605500197000001c4062000390000000000560435000001600110003900000000010104330000018005000039000001e4062000390000000000560435000002040520003900000000710104340000000000150435000000000500041100000c690550019700000d58091001970000001f0810018f0000022406200039000000000067004b0000175e0000813d000000000009004b000004950000613d000000000b870019000000000a860019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c0000048f0000c13d000000000008004b000017740000613d000000000a0600190000176a0000013d00000cb80020009c000008180000213d00000cbb0020009c00000e330000613d00000cbc0020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000cf6010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000400300043d00000c660030009c00000c660200004100000000020340190000004002200210000000000101043b00000c69011001970000000004000410000000000014004b000010b30000c13d00000d1a01000041000000000013043500000ce3012001c7000031940001042e00000c870020009c0000091f0000213d00000c8a0020009c00000e380000613d00000c8b0020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000c6601000041000000800010043f00000ce001000041000031940001042e00000ccf0020009c00000a9a0000213d00000cd20020009c00000e490000613d00000cd30020009c000009400000613d00001e880000013d00000cc40020009c00000ad90000213d00000cc70020009c00000e540000613d00000cc80020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b001300000001001d00000c690010009c00001e880000213d00000cf6010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c69011001970000000002000410000000000012004b0000111b0000c13d000000400100043d000000640210003900000d29030000410000123a0000013d00000ca50020009c00000e900000613d00000ca60020009c00001e880000c13d000001840080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000002402100370000000000202043b001200000002001d00000c690020009c00001e880000213d0000004402100370000000000202043b001100000002001d00000c690020009c00001e880000213d0000006402100370000000000202043b001000000002001d00000c690020009c00001e880000213d000000c402100370000000000202043b000f00000002001d000000a402100370000000000202043b000e00000002001d0000008402100370000000000202043b000c00000002001d000000e402100370000000000202043b000d00000002001d00000c690020009c00001e880000213d0000010402100370000000000202043b000b00000002001d00000c660020009c00001e880000213d0000012402100370000000000202043b000a00000002001d00000c660020009c00001e880000213d0000014402100370000000000202043b000900000002001d00000c660020009c00001e880000213d0000016401100370000000000101043b00000c730010009c00001e880000213d0000000401100039000000000208001931931fa30000040f000000000c010019000000000d02001900000013010000290000001202000029000000110300002900000010040000290000000c050000290000000e060000290000000f070000290000000d080000290000000b090000290000000a0a000029000000090b000029319320d10000040f0000000001000019000031940001042e00000cbe0020009c00000ee20000613d00000cbf0020009c00001e880000c13d000000440080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000002402100370000000000402043b00000c730040009c00001e880000213d0000002302400039000000000082004b00001e880000813d0000000403400039000000000231034f000000000202043b00000c730020009c00000efc0000213d0000001f0520003900000ce40550019700000ce50050009c00000efc0000213d00000024044000390000003f0550003900000ce4055001970000008005500039000000400050043f000000800020043f0000000004420019000000000084004b00001e880000213d0000002003300039000000000331034f00000d58042001980000001f0520018f000000a001400039000005770000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b000005730000c13d000000000005004b000005840000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a001200039000000000001043500000cf6010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c69011001970000000002000410000000000012004b000004f50000613d00000d1a02000041000000000202041a00000c6902200197000000000012004b000012370000c13d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b000012830000c13d0000000001000415001200000001001d00000d1b01000041000000000101041a000000ff00100190000016bb0000c13d000000400200043d001100000002001d00000d1c01000041000000000012043500000c660020009c00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c75011001c70000001302000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000110b0000290000001105700029000005cb0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000005c70000c13d000000000006004b000005d80000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f00000000001504350000000100200190000015690000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000c730010009c00000efc0000213d000000010020019000000efc0000c13d000000400010043f000000200030008c00001e880000413d00000000020b043300000d1a0020009c000016d30000c13d00000080020000390000000103000039000000130100002931932fc60000040f000016d00000013d00000c8d0020009c00000f020000613d00000c8e0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000c40080008c00001e880000413d0000006402100370000000000202043b001100000002001d0000004402100370000000000202043b001000000002001d0000002402100370000000000202043b001200000002001d0000000402100370000000000202043b001300000002001d0000008402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000403200039000000000431034f000000000404043b000f00000004001d00000c730040009c00001e880000213d0000000f022000290000002402200039000000000082004b00001e880000213d000000a402100370000000000402043b00000c730040009c00001e880000213d0000002302400039000000000082004b00001e880000813d0000000402400039000000000521034f000000000505043b000e00000005001d00000c730050009c00001e880000213d0000000e044000290000002404400039000000000084004b00001e880000213d0000006504000039000000000504041a000000020050008c00000f900000613d0000000205000039000000000054041b000000130400002900000c690040009c000018f50000213d0000000f040000290000001f0440003900000ce404400197000d00000004001d00000ce50040009c00000efc0000213d0000000d040000290000003f0440003900000ce4044001970000008004400039000000400040043f0000000f05000029000000800050043f00000d5806500198000c001f00500193000700200030003d0000000705100360000b00000006001d000000a003600039000006490000613d000000a006000039000000000705034f000000007807043c0000000006860436000000000036004b000006450000c13d0000000c0000006b000006570000613d0000000b055003600000000c060000290000000306600210000000000703043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005304350000000f03000029000000a00330003900000000000304350000000e030000290000001f0330003900000ce403300197000800000003001d0000003f0330003900000ce603300197000000400500043d0000000003350019000a00000005001d000000000053004b0000000005000039000000010500403900000c730030009c00000efc0000213d000000010050019000000efc0000c13d000000400030043f0000000e050000290000000a03000029000000000353043600000d58045001980009001f00500193000500200020003d0000000502100360000600000004001d00000000014300190000067b0000613d000000000402034f0000000005030019000000004604043c0000000005650436000000000015004b000006770000c13d000000090000006b000006890000613d000000060220036000000009040000290000000304400210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002104350000000e01300029000000000001043500000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000301043b000000130100002900000012020000290000001004000029000000110500002900000080060000390000000a07000029319326320000040f000000400100043d00000080021000390000000f03000029000000000032043500000040021000390000008003000039000000000032043500000020021000390000001103000029000000000032043500000010020000290000000000210435000000a0031000390000000b04300029000000010200036700000007052003600000000b0000006b000006b60000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b000006b20000c13d0000000c0000006b000006c40000613d0000000b055003600000000c060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000f0430002900000000000404350000000d033000290000000004130049000000600510003900000000004504350000000e04000029000000000343043600000005042003600000000602300029000000060000006b000006d60000613d000000000504034f0000000006030019000000005705043c0000000006760436000000000026004b000006d20000c13d000000090000006b000006e40000613d000000060440036000000009050000290000000305500210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004204350000000e0230002900000000000204350000000802100069000000000232001900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000ce8011001c70000800d02000039000000030300003900000ce90400004100000012050000290000001306000029000011160000013d00000c9a0020009c00000f150000613d00000c9b0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b000000010010008c00001e880000213d0000086902000039000000000202041a00000cd90220009a00000c69022001970000000003000411000000000023004b00000f9a0000c13d0000006502000039000000000302041a000000020030008c00000f900000613d0000000203000039000000000032041b0000086b02000039000000000302041a00000cf103300197000000e004100210000000000343019f000000000032041b000000800010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cf2011001c70000800d02000039000000010300003900000cf304000041000011160000013d00000cb30020009c00000f5c0000613d00000cb40020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c660020009c00001e880000213d0000002402100370000000000202043b001200000002001d00000c690020009c00001e880000213d0000004401100370000000000101043b001100000001001d00000c690010009c00001e880000213d00000000020004150000001f0220008a0000000502200210000000000300041a000fff0000300194000012000000c13d00000000020004150000001e0220008a0000000502200210000000ff00300190000012000000c13d00000d590130019700000001011001bf00000d5a0110019700000100011001bf000012250000013d00000c820020009c00000f690000613d00000c830020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000401100370000000000101043b00000c730010009c00001e880000213d00000004011000390000000002080019319320230000040f00000001030003670000004402300370000000000402043b0000002402300370000000000502043b0000006502000039000000000302041a000000020030008c000010c30000c13d000000400100043d000000440210003900000d5603000041000000000032043500000024021000390000001f03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c7000031950001043000000ca00020009c00000f7e0000613d00000ca10020009c00001e880000c13d000001a40080008c00001e880000413d0000010402100370000000000202043b000000e403100370000000000303043b000c00000003001d000000c403100370000000000303043b000d00000003001d000000a403100370000000000303043b000e00000003001d0000008403100370000000000303043b000f00000003001d0000006403100370000000000303043b001000000003001d0000004403100370000000000303043b001100000003001d0000002403100370000000000303043b001200000003001d0000000403100370000000000303043b001300000003001d0000012403100370000000000303043b000b00000003001d00000c660030009c00001e880000213d0000014403100370000000000303043b000a00000003001d00000c660030009c00001e880000213d0000016403100370000000000303043b000900000003001d00000c660030009c00001e880000213d0000018403100370000000000303043b00000c730030009c00001e880000213d0000002304300039000000000084004b00001e880000813d0000000404300039000000000141034f000000000101043b000800000001001d00000c730010009c00001e880000213d0000002403300039000700000003001d0000000801300029000000000081004b00001e880000213d0000000001000415000600000001001d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006503000039000000000013041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d000000400100043d0000005403100039000000000023043500000000020004110000006003200210000000200210003900000000003204350000003403100039000000130400002900000000004304350000005403000039000000000031043500000ceb0010009c00000efc0000213d0000008003100039000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000400300043d00000cf70030009c00000efc0000213d0000000002030019000000000101043b0000000004030019000500000002001d000001a002200039000000400020043f00000160023000390000000903000029000000000032043500000140024000390000000a03000029000000000032043500000120024000390000000b03000029000000000032043500000100024000390000000000120435000000e0014000390000000c020000290000000000210435000000c0014000390000000d020000290000000000210435000000a0014000390000000e02000029000000000021043500000080014000390000000f0200002900000000002104350000006001400039000000100200002900000000002104350000004001400039000000110200002900000000002104350000002001400039000000120200002900000000002104350000001301000029000000000014043500000000030000310000000701000029000000080200002931931f290000040f00000005030000290000009c0000013d00000cb90020009c00000fa40000613d00000cba0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000c40080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000004402100370000000000202043b001100000002001d0000002402100370000000000202043b001200000002001d0000006402100370000000000202043b001000000002001d00000c690020009c00001e880000213d0000008402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000404200039000000000341034f000000000303043b000f00000003001d00000c730030009c00001e880000213d0000000f022000290000002402200039000000000082004b00001e880000213d000000a402100370000000000302043b00000c730030009c00001e880000213d0000002302300039000000000082004b00001e880000813d0000000402300039000000000521034f000000000505043b000e00000005001d00000c730050009c00001e880000213d0000000e033000290000002403300039000000000083004b00001e880000213d0000000f030000290000001f0330003900000ce403300197000d00000003001d00000ce50030009c00000efc0000213d0000000d030000290000003f0330003900000ce4033001970000008003300039000000400030043f0000000f05000029000000800050043f00000d5806500198000c001f00500193000700200040003d0000000705100360000b00000006001d000000a0046000390000086d0000613d000000a006000039000000000705034f000000007807043c0000000006860436000000000046004b000008690000c13d0000000c0000006b0000087b0000613d0000000b055003600000000c060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000f04000029000000a00440003900000000000404350000000e040000290000001f0440003900000ce404400197000800000004001d0000003f0440003900000ce604400197000000400500043d0000000004450019000a00000005001d000000000054004b0000000005000039000000010500403900000c730040009c00000efc0000213d000000010050019000000efc0000c13d000000400040043f0000000e050000290000000a04000029000000000454043600000d58035001980009001f00500193000500200020003d0000000502100360000600000003001d00000000013400190000089f0000613d000000000302034f0000000005040019000000003603043c0000000005650436000000000015004b0000089b0000c13d000000090000006b000008ad0000613d000000060220036000000009030000290000000303300210000000000501043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002104350000000e01400029000000000001043500000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000301043b000000800600003900000013010000290000001202000029000000110400002900000010050000290000000a07000029319326320000040f000000400100043d00000080021000390000000f03000029000000000032043500000040021000390000008003000039000000000032043500000020021000390000001003000029000000000032043500000011020000290000000000210435000000a0031000390000000b04300029000000010200036700000007052003600000000b0000006b000008da0000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b000008d60000c13d0000000c0000006b000008e80000613d0000000b055003600000000c060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000f0430002900000000000404350000000d033000290000000004130049000000600510003900000000004504350000000e04000029000000000343043600000005042003600000000602300029000000060000006b000008fa0000613d000000000504034f0000000006030019000000005705043c0000000006760436000000000026004b000008f60000c13d000000090000006b000009080000613d000000060440036000000009050000290000000305500210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004204350000000e0230002900000000000204350000000802100069000000000232001900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000800d02000039000000030300003900000ce904000041000000120500002900000013060000290000127f0000013d00000c880020009c000010060000613d00000c890020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b00000c730010009c00001e880000213d00000004011000390000000002080019319320230000040f319321b20000040f00000af40000013d00000c970020009c0000100b0000613d00000c980020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000086b01000039000000000101041a000000c00110027000000e140000013d00000cb00020009c000010150000613d00000cb10020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d000000800000043f00000ce001000041000031940001042e00000c7f0020009c0000101c0000613d00000c800020009c00001e880000c13d000001640080008c00001e880000413d000000e402100370000000000202043b000c00000002001d000000c402100370000000000202043b000d00000002001d000000a402100370000000000202043b000e00000002001d0000008402100370000000000202043b000f00000002001d0000006402100370000000000202043b001000000002001d0000004402100370000000000202043b001100000002001d0000002402100370000000000202043b001200000002001d0000000402100370000000000202043b000b00000002001d0000010402100370000000000202043b001300000002001d00000c660020009c00001e880000213d0000012402100370000000000202043b000a00000002001d00000c660020009c00001e880000213d0000014402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000403200039000000000131034f000000000101043b000900000001001d00000c730010009c00001e880000213d0000002402200039000800000002001d0000000901200029000000000081004b00001e880000213d0000000001000415000700000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c6602100197000600000002001d0000001301200029001300000001001d00000c660010009c000014fc0000a13d00000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d01000041000031950001043000000cd50020009c000010220000613d00000cd60020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000000001000412002d00000001001d002c00e00000003d0000800501000039000000440300003900000000040004150000002d0440008a000010a20000013d00000cca0020009c000010800000613d00000ccb0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000440080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d0000000404200039000000000948004900000ced0090009c00001e880000213d000001800090008c00001e880000413d000000000241034f0000002403100370000000000303043b001300000003001d000000000202043b00000c690020009c00001e880000213d0000002005400039000000000351034f000000000303043b00000c690030009c00001e880000213d0000002006500039000000000561034f000000000505043b00000c690050009c00001e880000213d0000002007600039000000000671034f000000000606043b00000c690060009c00001e880000213d000000200a7000390000000007a1034f000000000707043b00000c690070009c00001e880000213d000000200ba00039000000000cb1034f000000400ba00039000000000bb1034f000000600da00039000000000dd1034f000000800ea00039000000000fe1034f000000000a0d043b00120000000a001d000000000a0b043b00110000000a001d000000000a0c043b00100000000a001d000000000c0f043b00000c6600c0009c00001e880000213d000000200fe00039000000000ef1034f000000000e0e043b00000c6600e0009c00001e880000213d000000200ff00039000000000af1034f000000000a0a043b000f0000000a001d00000c6600a0009c00001e880000213d000000200af00039000000000aa1034f000000000f0a043b0000001f0990008a00000cec0af0019700000cec0b900197000e000000ba01430000000000ba004b000000000a00001900000cec0a004041000d0000000f001d00000000009f004b000000000900001900000cec090080410000000e0b00002900000cec00b0009c000000000a09c01900000000000a004b00001e880000c13d0000000d09400029000000000491034f000000000404043b000e00000004001d00000c730040009c00001e880000213d0000000e0a80006a000000200f90003900000cec04a0019700000cec09f00197000000000b49013f000000000049004b000000000900001900000cec09004041000d0000000f001d0000000000af004b000000000a00001900000cec0a00204100000cec00b0009c00000000090ac019000000000009004b00001e880000c13d0000020009000039000000400090043f000000800020043f000000a00030043f000000c00050043f000000e00060043f000001000070043f0000001002000029000001200020043f0000001102000029000001400020043f0000001202000029000001600020043f0000018000c0043f000001a000e0043f0000000f02000029000001c00020043f0000000e020000290000001f0220003900000ce40220019700000d2e0020009c00000efc0000213d0000003f0220003900000ce4022001970000020002200039000000400020043f0000000e02000029000002000020043f0000000d02200029000000000082004b00001e880000213d0000000d021003600000000e0400002900000d58034001980000001f0540018f000002200130003900000a470000613d0000022006000039000000000702034f000000007407043c0000000006460436000000000016004b00000a430000c13d000000000005004b00000a540000613d000000000232034f0000000303500210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f00000000002104350000000e0100002900000220011000390000000000010435000001e00090043f0000000001000415001200000001001d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000ce100100198000011170000c13d000001c00100043d001100000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000110200002900000c6602200197000000000101043b00000c6601100197000000000012004b000018ee0000813d0000008001000039319321b20000040f001100000001001d000001400100043d001000000001001d000000a00100043d000f00000001001d000001e00100043d000e00000001001d31931f110000040f000000a0021000390000001303000029000000000032043500000080021000390000000e03000029000000000032043500000060021000390000000f03000029000000000032043500000040021000390000001003000029000000000032043500000020021000390000001103000029000000000032043500000080020000390000000000210435000000000200041100000c6902200197319325050000040f00000001010000390000006502000039000000000012041b000016d00000013d00000cd00020009c0000108d0000613d00000cd10020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000440080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000002401100370000000000101043b001200000001001d00000c690010009c00001e880000213d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d0000006501000039000000000201041a000000020020008c00000f900000613d0000000202000039000000000021041b000000120000006b0000128a0000c13d0000001301000029000000000010043f0000087401000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000201041a00000d0c022001970000001206000029000000000262019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000030300003900000d55040000410000001305000029000011160000013d00000cc50020009c000010980000613d00000cc60020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000d2201000041000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d000000000108001931931f610000040f001300000002001d00000c6901100197000000000010043f0000087301000039000000200010043f00000040020000390000000001000019319331510000040f000000130200002931931eef0000040f000000000101041a000000400200043d000000000012043500000c660020009c00000c6602008041000000400120021000000ce3011001c7000031940001042e0000000002000416000000000002004b00001e880000c13d000000440080008c00001e880000413d0000002402100370000000000202043b0000000401100370000000000101043b00000c690010009c000018f50000213d001200000002001d001300000001001d000000000010043f0000087301000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000200041100000c6902200197001100000002001d000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000101041a001000000001001d000000000001004b0000124b0000c13d00000cf001000041000000000010043f00000c750100004100003195000104300000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000403200039000000000131034f000000000101043b001100000001001d00000c730010009c00001e880000213d0000002403200039000000110100002900000005011002100000000002310019000000000082004b00001e880000213d001000000003001d0000003f0210003900000cea0220019700000ceb0020009c00000efc0000213d0000008002200039000000400020043f0000001102000029000000800020043f000000000002004b00000b590000613d00000060040000390000000002000019000000a00320003900000000004304350000002002200039000000000012004b00000b510000413d000000110000006b0000001007000029000013c50000c13d000000400100043d00000020020000390000000003210436000000800200043d0000000000230435000000400310003900000005042002100000000006430019000000000002004b000012de0000c13d000000000216004900000c430000013d0000000001000416000000000001004b00001e880000c13d0000000001000412001d00000001001d001c00c00000003d0000800501000039000000440300003900000000040004150000001d0440008a00000e110000013d0000000001000416000000000001004b00001e880000c13d0000000001000412001b00000001001d001a00400000003d0000800501000039000000440300003900000000040004150000001b0440008a00000e110000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b0000086c02000039000000000202041a000000000021004b00001e880000813d319320b70000040f000000000201041a0000000101100039000000000101041a000000400300043d00000020043000390000000000140435000000000023043500000c660030009c00000c6603008041000000400130021000000cda011001c7000031940001042e0000000001000416000000000001004b00001e880000c13d0000000001000412002f00000001001d002e00a00000003d0000800501000039000000440300003900000000040004150000002f0440008a00000e110000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000404200039000000000341034f000000000503043b00000c730050009c00001e880000213d00000024032000390000000002350019000000000082004b00001e880000213d0000086906000039000000000606041a00000cd90660009a00000c69066001970000000007000411000000000067004b00000f9a0000c13d0000000006000415001300000006001d0000006507000039000000000607041a000000020060008c000007660000613d0000000206000039000000000067041b000000400050008c00001e880000413d0000002004400039000000000541034f000000000505043b001200000005001d00000c690050009c00001e880000213d0000002004400039000000000441034f000000000404043b00000c730040009c00001e880000213d00000000043400190000001f03400039000000000023004b00001e880000813d000000000341034f000000000303043b00000c730030009c00000efc0000213d0000001f0530003900000ce4055001970000003f0550003900000ce605500197000000400600043d0000000005560019001100000006001d000000000065004b0000000006000039000000010600403900000c730050009c00000efc0000213d000000010060019000000efc0000c13d0000002004400039000000400050043f00000011050000290000000005350436001000000005001d0000000005430019000000000025004b00001e880000213d000000000241034f00000d58043001980000001f0530018f000000100140002900000bf80000613d000000000602034f0000001007000029000000006806043c0000000007870436000000000017004b00000bf40000c13d000000000005004b00000c050000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f000000000021043500000010013000290000000000010435000000120000006b000017010000c13d00000d0401000041000000000010043f00000c750100004100003195000104300000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000402100370000000000202043b001100000002001d00000c730020009c00001e880000213d00000011020000290000002302200039000000000082004b00001e880000813d00000011020000290000000402200039000000000121034f000000000101043b001000000001001d00000c730010009c00001e880000213d0000001101000029000000240a100039000000100100002900000005011002100000000002a10019000000000082004b00001e880000213d0000003f0210003900000cea0320019700000ceb0030009c00000efc0000213d0000008002300039000000400020043f0000001004000029000000800040043f000000000004004b000012c00000c13d000000400100043d0000000002000415001300000002001d00000020020000390000000002210436000000800300043d000000000032043500000040041000390000000502300210000000000a240019000000000003004b0000137e0000c13d00000000020004150000001302200069000000000200000200000000021a004900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000031940001042e000000640080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c660020009c00001e880000213d0000002402100370000000000202043b00000c730020009c00001e880000213d000000000328004900000ced0030009c00001e880000213d000000c40030008c00001e880000413d0000014003000039000000400030043f0000000403200039000000000331034f000000000303043b000000800030043f0000002403200039000000000331034f000000000303043b000000a00030043f0000004403200039000000000431034f000000000404043b00000c730040009c00001e880000213d000000000624001900000000040004150000002305600039000000000085004b00001e880000813d0000000405600039000000000551034f000000000705043b00000c730070009c00000efc0000213d00000005097002100000003f0590003900000cea0a500197000000400500043d000000000aa5001900000000005a004b000000000b000039000000010b00403900000c7300a0009c00000efc0000213d0000000100b0019000000efc0000c13d0000004000a0043f000000000075043500000024066000390000000009960019000000000089004b00001e880000213d000000000007004b00000c900000613d0000000007050019000000000a61034f000000000a0a043b00000020077000390000000000a704350000002006600039000000000096004b00000c890000413d000000000600041500000000046400490000000004000002000000c00050043f0000002003300039000000000431034f000000000404043b00000c660040009c00001e880000213d000000e00040043f0000002003300039000000000431034f000000000404043b00000c690040009c00001e880000213d000001000040043f0000002003300039000000000331034f000000000303043b00000c730030009c00001e880000213d00000000042300190000002302400039000000000082004b000000000300001900000cec0300804100000cec02200197000000000002004b000000000500001900000cec0500404100000cec0020009c000000000503c0190000000002000415000000000005004b00001e880000c13d0000000403400039000000000331034f000000000503043b00000c730050009c00000efc0000213d00000005065002100000003f0360003900000cea07300197000000400300043d0000000007730019000000000037004b0000000009000039000000010900403900000c730070009c00000efc0000213d000000010090019000000efc0000c13d000000400070043f000000000053043500000024044000390000000006640019000000000086004b00001e880000213d000000000005004b00000cd60000613d0000000005030019000000000741034f000000000707043b00000c690070009c00001e880000213d000000200550003900000000007504350000002004400039000000000064004b00000ccd0000413d000000000400041500000000024200490000000002000002000001200030043f0000004402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b000000000400001900000cec0400804100000cec03300197000000000003004b000000000500001900000cec0500404100000cec0030009c000000000504c019000000000005004b00001e880000c13d0000000403200039000000000331034f000000000303043b00000c730030009c00000efc0000213d00000005043002100000003f0540003900000cea05500197000000400600043d0000000005560019001100000006001d000000000065004b0000000006000039000000010600403900000c730050009c00000efc0000213d000000010060019000000efc0000c13d0000002402200039000000400050043f00000011050000290000000005350436001000000005001d0000000004240019000000000084004b00001e880000213d000000000003004b00000d0e0000613d0000001103000029000000000521034f000000000505043b000000200330003900000000005304350000002002200039000000000042004b00000d070000413d0000000001000415000600000001001d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006502000039000000000012041b000001000100043d00000c6901100197319324740000040f000000a00100043d001200000001001d00000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000120010006b000018f90000c13d0000086c01000039000000000101041a000000130010006c00001a070000a13d0000086c01000039000000000010043f000000130100002900000003011000c9000e00000001001d00000cf90110009a000000000101041a000f00000001001d000000400100043d0000002002100039000000200300003900000000003204350000004003100039000000800400043d00000000004304350000006003100039000000a00400043d00000000004304350000008003100039000000c005000039000000c00400043d00000000005304350000010003100039000000000504043300000000005304350000012003100039000000000005004b00000d510000613d00000000060000190000002004400039000000000704043300000000037304360000000106600039000000000056004b00000d4b0000413d000000e00400043d00000c6604400197000000a0051000390000000000450435000001000400043d00000c6904400197000000c00510003900000000004504350000000004130049000000400540008a000000e006100039000001200400043d000000000056043500000000050404330000000003530436000000000005004b00000d6a0000613d00000000060000190000002004400039000000000704043300000c690770019700000000037304360000000106600039000000000056004b00000d630000413d0000000003130049000000200430008a00000000004104350000001f0330003900000d58043001970000000003140019000000000043004b0000000004000039000000010400403900000c730030009c00000efc0000213d000000010040019000000efc0000c13d000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b00000011020000290000000002020433000000000002004b00000dac0000613d001200000000001d0000001202000029000000050220021000000010022000290000000002020433000000000021004b00000d9a0000813d000000000010043f000000200020043f000000000100041400000d9d0000013d000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000001203000029001200010030003d00000011020000290000000002020433000000120020006b00000d900000413d0000000f0010006c000018ea0000c13d0000086c01000039000000000101041a000000130010006c00001a070000a13d000000e00100043d001000000001001d000000080110027000000d3801100197001200000001001d000000000010043f0000000e0100002900000d390110009a001100000001001d000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d0000001002000029000000ff0220018f000000010220020f000000000101043b000000000101041a001000000002001d000f00000001001d0000000000210170000019110000c13d0000001201000029000000000010043f0000001101000029000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d0000000f0300002900000010023001af000000000101043b000000000021041b000001200200043d000000c00300043d0000000001000415000300000001001d001000000003001d0000000013030434000900000001001d000c00000002001d0000000021020434000800000002001d000a00000003001d000000000031004b000019150000c13d000000800100043d000400000001001d000000a00100043d000200000001001d000000e00100043d000100000001001d000001000100043d000d0c690010019b0000000a0000006b000500000000001d000019190000c13d000000040000006b00001a0d0000c13d0000000001000411001200000001001d00001e3c0000013d0000000001000416000000000001004b00001e880000c13d0000000001000412001500000001001d001401000000003d000080050100003900000044030000390000000004000415000000150440008a000010a20000013d0000000001000416000000000001004b00001e880000c13d0000000001000412002300000001001d002200800000003d000080050100003900000044030000390000000004000415000000230440008a000000050440021000000cf602000041319331660000040f00000c6601100197000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d0000086b01000039000000000101041a00000ce1001001980000000001000039000000010100c039000000800010043f00000ce001000041000031940001042e0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000402100370000000000402043b00000c690040009c00001e880000213d0000004402100370000000000302043b0000002401100370000000000201043b0000000001040019319321660000040f00000af40000013d0000000001000416000000000001004b00001e880000c13d0000086901000039000010200000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b000000000010043f0000087201000039000000200010043f00000040020000390000000001000019319331510000040f000000000101041a000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d0000000001000412002b00000001001d002a01600000003d0000800501000039000000440300003900000000040004150000002b0440008a00000f660000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b001300000001001d00000c730010009c00001e880000213d0000001301000029001200040010003d000000120180006a00000ced0010009c00001e880000213d000001800010008c00001e880000413d0000006501000039000000000201041a000000020020008c00000f900000613d0000000202000039000000000021041b0000086b01000039000000000101041a00000ce100100198000011170000c13d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000130200002900000144022000390000000103000367000000000423034f000000000101043b000000000404043b00000c660040009c00001e880000213d00000c6601100197000000000014004b0000154b0000813d00110020002000920000001102300360000000000202043b00000c660020009c00001e880000213d000000000012004b000015c00000813d00000d3501000041000000000010043f00000c75010000410000319500010430000001640080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000002402100370000000000202043b001200000002001d00000c690020009c00001e880000213d0000004402100370000000000202043b001100000002001d00000c690020009c00001e880000213d0000006402100370000000000202043b001000000002001d00000c690020009c00001e880000213d000000c402100370000000000202043b000f00000002001d000000a402100370000000000202043b000e00000002001d0000008402100370000000000202043b000c00000002001d000000e402100370000000000202043b000d00000002001d00000c690020009c00001e880000213d0000010402100370000000000202043b000b00000002001d00000c660020009c00001e880000213d0000012402100370000000000202043b000a00000002001d00000c660020009c00001e880000213d0000014401100370000000000101043b00000c730010009c00001e880000213d0000000401100039000000000208001931931fa30000040f000900000001001d000800000002001d0000800b0100003900000004030000390000000004000415000000300440008a000000050440021000000cdb02000041319331660000040f00000c6601100197000700000001001d0000000b02000029319320c50000040f000000000a01001900000013010000290000001202000029000000110300002900000010040000290000000c050000290000000e060000290000000f070000290000000d0800002900000007090000290000000a0b000029000000090c000029000000080d000029319320d10000040f0000000001000019000031940001042e0000000002000416000000000002004b00001e880000c13d000000440080008c00001e880000413d0000002402100370000000000702043b0000000401100370000000000601043b0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d0000006501000039000000000201041a000000020020008c00000f900000613d0000000202000039000000000021041b0000086c02000039000000000102041a00000c730010009c000011790000a13d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000000001000416000000000001004b00001e880000c13d319320060000040f0000002002000039000000400300043d001300000003001d000000000223043631931f710000040f0000001302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f000031940001042e0000000001000416000000000001004b00001e880000c13d000000000108001931931fbd0000040f001300000001001d001000000002001d001100000003001d000000000100041a0000000801100270000000ff0110018f319321900000040f0000001301000029000000c00110021000000cdf011001970000086b02000039000000000302041a00000cde03300197000000000113019f000000000012041b000000400100043d001300000001001d000000400200003931931eff0000040f00000cf40100004100000013020000290000002003200039000f00000003001d000000000013043500000009010000390000000000120435000000400100043d001200000001001d000000400200003931931eff0000040f00000cf50100004100000012020000290000002003200039000e00000003001d000000000013043500000005010000390000000000120435000000000100041a0000000801100270000000ff0110018f000d00000001001d319321900000040f0000000d01000029319321900000040f000000130100002900000000020104330000000f01000029319331510000040f00000012020000290000000002020433001300000001001d0000000e01000029319331510000040f0000047f020000390000001303000029000000000032041b0000048002000039000000000012041b319329f40000040f31932a0c0000040f000000100100002931932a270000040f000000110100002931932a400000040f0000000001000019000031940001042e0000000001000416000000000001004b00001e880000c13d0000000001000412002100000001001d002000200000003d000080050100003900000044030000390000000004000415000000210440008a000000050440021000000cf602000041000010890000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b001300000001001d00000c690010009c00001e880000213d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d319322580000040f000000130100002931932a270000040f0000118d0000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000501043b0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d0000006501000039000000000201041a000000020020008c000011020000c13d00000c6c01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f00000d5601000041000000c40010043f00000d5101000041000031950001043000000c6c01000041000000800010043f0000002001000039000000840010043f0000001801000039000000a40010043f00000d2501000041000000c40010043f00000d51010000410000319500010430000001240080008c00001e880000413d0000000402100370000000000902043b00000c690090009c00001e880000213d0000002402100370000000000202043b00000c690020009c00001e880000213d0000004403100370000000000303043b00000c690030009c00001e880000213d000000a404100370000000000604043b00000d140060019800000d1504000041000000000400601900000d1605600197000000000754019f0000008404100370000000000504043b0000006404100370000000000404043b000000000076004b00001e880000c13d000000c407100370000000000707043b00000c660070009c00001e880000213d000000e40a100370000000000c0a043b00000c7300c0009c00001e880000213d000000230ac0003900000000008a004b00001e880000813d000000040bc00039000000000ab1034f000000000a0a043b00000c7300a0009c00000efc0000213d0000001f0da0003900000ce40dd0019700000ce500d0009c00000efc0000213d000000240cc000390000003f0dd0003900000ce40dd00197000000800dd000390000004000d0043f0000008000a0043f000000000cca001900000000008c004b00001e880000213d0000002008b00039000000000881034f00000d580ba001980000001f0ca0018f000000a001b0003900000fe80000613d000000a00d000039000000000e08034f00000000ef0e043c000000000dfd043600000000001d004b00000fe40000c13d00000000000c004b00000ff50000613d0000000008b8034f000000030bc00210000000000c010433000000000cbc01cf000000000cbc022f000000000808043b000001000bb000890000000008b8022f0000000008b801cf0000000008c8019f0000000000810435000000a001a0003900000000000104350000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006508000039000000000018041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d00000080080000390000000001090019319322700000040f0000118d0000013d0000000001000416000000000001004b00001e880000c13d00000c5b01000039000010200000013d0000000001000416000000000001004b00001e880000c13d0000800b0100003900000004030000390000000004000415000000300440008a000000050440021000000ce702000041000010890000013d0000000001000416000000000001004b00001e880000c13d00000d0701000041000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d00000c5a01000039000000000101041a000010a50000013d000001040080008c00001e880000413d0000000402100370000000000202043b00000c690020009c00001e880000213d0000002403100370000000000303043b00000c690030009c00001e880000213d0000008404100370000000000604043b00000d140060019800000d1504000041000000000400601900000d1605600197000000000754019f0000006404100370000000000504043b0000004404100370000000000404043b000000000076004b00001e880000c13d000000a407100370000000000707043b00000c660070009c00001e880000213d000000c409100370000000000b09043b00000c7300b0009c00001e880000213d0000002309b00039000000000089004b00001e880000813d000000040ab000390000000009a1034f000000000909043b00000c730090009c00000efc0000213d0000001f0c90003900000ce40cc0019700000ce500c0009c00000efc0000213d000000240bb000390000003f0cc0003900000ce40cc00197000000800cc000390000004000c0043f000000800090043f000000000bb9001900000000008b004b00001e880000213d0000002008a00039000000000881034f00000d580a9001980000001f0b90018f000000a001a00039000010620000613d000000a00c000039000000000d08034f00000000de0d043c000000000cec043600000000001c004b0000105e0000c13d00000000000b004b0000106f0000613d0000000008a8034f000000030ab00210000000000b010433000000000bab01cf000000000bab022f000000000808043b000001000aa000890000000008a8022f0000000008a801cf0000000008b8019f0000000000810435000000a00190003900000000000104350000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006508000039000000000018041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d00000000010004110000008008000039319322700000040f0000118d0000013d0000000001000416000000000001004b00001e880000c13d0000800b0100003900000004030000390000000004000415000000300440008a000000050440021000000cdb02000041319331660000040f000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d0000000001000412002900000001001d002800600000003d000080050100003900000044030000390000000004000415000000290440008a000010a20000013d0000000001000416000000000001004b00001e880000c13d0000000001000412002500000001001d002401400000003d000080050100003900000044030000390000000004000415000000250440008a000000050440021000000cf602000041319331660000040f00000c6901100197000000800010043f00000ce001000041000031940001042e000000400100043d000000640210003900000c6a030000410000000000320435000000440210003900000c6b03000041000000000032043500000024021000390000002703000039000012400000013d000000640130003900000d18040000410000000000410435000000440130003900000d1904000041000000000041043500000024013000390000003804000039000000000041043500000c6c01000041000000000013043500000004013000390000002003000039000000000031043500000c6d012001c700003195000104300000000203000039000000000032041b0000086b02000039000000000202041a00000ce100200198000011170000c13d001000000005001d001100000004001d001300000001001d00000140011000390000000001010433001200000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000120200002900000c6602200197000000000101043b00000c6601100197000000000012004b000012d20000813d0000001301000029319321b20000040f0000001303000029000000c0023000390000000002020433001200000002001d00000020023000390000000002020433000e00000002001d00000160023000390000000002020433000d00000002001d000f00000001001d31931f110000040f000000a0021000390000001003000029000000000032043500000080021000390000000d03000029000000000032043500000060021000390000000e03000029000000000032043500000040021000390000001203000029000000000032043500000020021000390000000f030000290000000000320435000000130200002900000000002104350000001102000029319325050000040f0000118d0000013d0000000202000039000000000021041b0000086c01000039000000000201041a000000000052004b00001a070000a13d000000000010043f00000003015000c900000cf80210009a000000000002041b00000cf90110009a000000000001041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000cfa040000410000118a0000013d00000d2f01000041000000000010043f00000c7501000041000031950001043000000d1a02000041000000000202041a00000c6902200197000000000012004b000012370000c13d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b000012830000c13d000000400100043d001200000001001d00000cfe0010009c00000efc0000213d00000012020000290000002001200039000000400010043f00000000000204350000000001000415001100000001001d00000d1b01000041000000000101041a000000ff001001900000154f0000c13d000000400200043d001000000002001d00000d1c01000041000000000012043500000c660020009c00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c75011001c70000001302000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000100b0000290000001005700029000011550000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000011510000c13d000000000006004b000011620000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f00000000001504350000000100200190000015690000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000c730010009c00000efc0000213d000000010020019000000efc0000c13d000000400010043f000000200030008c00001e880000413d00000000020b043300000d1a0020009c000016d30000c13d00000013010000290000001202000029000000000300001931932fc60000040f000016b10000013d0000000103100039000000000032041b000000000020043f00000003021000c900000cf90320009a000000000063041b00000cf80220009a000000000072041b000000000200041400000c660510019700000c660020009c00000c6602008041000000c00120021000000ce8011001c70000800d02000039000000040300003900000d1f04000041319331840000040f000000010020019000001e880000613d00000001010000390000006502000039000000000012041b0000000001000019000031940001042e0000000001000019000000010110018f000001a00010043f000000000005004b0000001305000029000011a50000613d00000c690050019800000000020000390000000102006039000000120000006b0000000003000039000000010300c039000000000223013f0000000100200190000011a50000613d00000c7401000041000000000010043f00000c75010000410000319500010430000001c00050043f0000001006000029000001e00060043f000000800200043d00000140000004430000016000200443000000a00300043d00000020020000390000018000200443000001a0003004430000004003000039000000c00400043d000001c000300443000001e0004004430000006003000039000000e00400043d000002000030044300000220004004430000008003000039000001000400043d00000240003004430000026000400443000000a003000039000001200400043d0000028000300443000002a000400443000000c003000039000001400400043d000002c000300443000002e000400443000000e003000039000001600400043d000003000030044300000320004004430000010003000039000001800400043d0000034000300443000003600040044300000120030000390000038000300443000003a0001004430000014001000039000003c000100443000003e00050044300000160010000390000040000100443000004200060044300000100002004430000000c01000039000001200010044300000c7601000041000031940001042e0000001f0350003900000c67033001970000003f0330003900000c7204300197000000400300043d0000000004430019000000000034004b0000000006000039000000010600403900000c730040009c00000efc0000213d000000010060019000000efc0000c13d000000400040043f0000001f0650018f000000000453043600000c68075001980000000005740019000011f20000613d000000000801034f0000000009040019000000008a08043c0000000009a90436000000000059004b000011ee0000c13d000000000006004b000001240000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f0000000000150435000001240000013d000e00000003001d001000000002001d00000d0801000041000000000010044300000000010004100000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b0000131b0000c13d0000000e01000029000000ff0110018f000000010010008c00000010010000290000000501100270000000000100003f000000010100603f00000000010004150000131e0000c13d000000000200041500000000012100490000000001000002000000000200041a00000d590120019700000001011001bf0000000f0000006b0000ffff0200608a000000000121616f00000100011061bf000000000010041b00000c5a02000039000000000302041a00000d0c033001970000800a033001bf000000000032041b0000ff0000100190000013280000c13d000000400100043d000000640210003900000d12030000410000000000320435000000440210003900000d1303000041000000000032043500000024021000390000002b03000039000012400000013d000000400100043d000000640210003900000d23030000410000000000320435000000440210003900000d2403000041000000000032043500000024021000390000002c03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c700003195000104300000001301000029000000000010043f0000087301000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000001102000029000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000001041b000000120200002900000c690020009c0000001301000029000018f50000213d000000100300002931932a590000040f000000400100043d0000001002000029000000000021043500000c660010009c00000c66010080410000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c6e011001c70000800d02000039000000040300003900000cef04000041000000130500002900000012060000290000000007000411319331840000040f000000010020019000001e880000613d000001320000013d000000400100043d000000440210003900000d25030000410000000000320435000000240210003900000018030000390000076c0000013d00000d5201000041000000800010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000d53011001c70000001202000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000012a20000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000129e0000c13d000000000006004b000012af0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000014510000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c00001e880000413d000000800100043d00000c690010009c00001e880000213d000000130010006c00000abc0000613d00000d5401000041000000000010043f00000c7501000041000031950001043000000d210030009c00000efc0000213d000000600500003900000000030000190000004004200039000000400040043f000000200420003900000000005404350000000000020435000000a00430003900000000002404350000002003300039000000000013004b0000146f0000813d000000400200043d00000d0d0020009c000012c40000a13d00000efc0000013d00000013010000290000004001100039000000000101043300000c690010009c000018f50000213d0000000002000411000000000021004b000010e00000613d00000d3001000041000000000010043f00000c750100004100003195000104300000000005000019000000800f000039000012f30000013d0000000309900210000000000a0b0433000000000a9a01cf000000000a9a022f00000000080804330000010009900089000000000898022f00000000089801cf0000000008a8019f00000000008b04350000001f0870003900000d58088001970000000007670019000000000007043500000000066800190000000105500039000000000025004b00000b630000813d0000000007160049000000400770008a0000000003730436000000200ff0003900000000070f04330000000087070434000000000676043600000d580a7001970000001f0970018f000000000068004b0000130e0000813d00000000000a004b0000130a0000613d000000000c980019000000000b960019000000200bb0008a000000200cc0008a000000000dab0019000000000eac0019000000000e0e04330000000000ed0435000000200aa0008c000013040000c13d000000000009004b000012eb0000613d000000000b060019000012e10000013d000000000ba6001900000000000a004b000013170000613d000000000c080019000000000d06001900000000ce0c0434000000000ded04360000000000bd004b000013130000c13d000000000009004b000012eb0000613d0000000008a80019000012e10000013d00000010010000290000000501100270000000000100003f000000400100043d000000640210003900000d0a030000410000000000320435000000440210003900000d0b03000041000000000032043500000024021000390000002e03000039000012400000013d0000001301000029000000c0011002100000086b02000039000000000302041a00000cde03300197000000000113019f000000000012041b000000400100043d00000d0d0010009c00000efc0000213d0000004002100039000000400020043f0000000902000039000000000221043600000cf4030000410000000000320435000000400300043d001300000003001d00000d0d0030009c00000efc0000213d00000013040000290000004003400039000000400030043f0000000503000039000000000434043600000cf503000041001000000004001d000000000034043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000100200002900000c660020009c00000c660200804100000040022002100000001303000029000000000303043300000c660030009c00000c66030080410000006003300210000000000223019f000000000101043b001300000001001d000000000100041400000c660010009c00000c6601008041000000c001100210000000000121019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000047f020000390000001303000029000000000032041b0000048002000039000000000012041b000000000100041a0000ff00001001900000122d0000613d00000001020000390000006501000039000000000021041b000000120000006b000016e00000c13d00000d1101000041000000000010043f00000c7501000041000031950001043000000080050000390000000008000019000013940000013d000000000bdb00190000000306c00210000000000a0e0433000000000a6a01cf000000000a6a022f000000000b0b04330000010006600089000000000b6b022f00000000066b01cf0000000006a6019f00000000006e04350000001f0690003900000d580660019700000000092900190000000000090435000000000a2600190000000108800039000000000038004b00000c3f0000813d00000000021a0049000000400220008a0000000004240436000000200550003900000000020504330000000092020434000000000002004b0000000002000039000000010200c03900000000022a04360000000009090433000000400600003900000000006204350000004002a0003900000000b9090434000000000092043500000d580d9001970000001f0c90018f0000006002a0003900000000002b004b000013b90000813d00000000000d004b000013b50000613d000000000acb0019000000000ec20019000000200ee0008a000000200fa0008a000000000ade00190000000006df0019000000000606043300000000006a0435000000200dd0008c000013af0000c13d00000000000c004b0000138c0000613d000000000e020019000013820000013d000000000ed2001900000000000d004b000013c20000613d000000000f0b0019000000000a02001900000000f60f0434000000000a6a04360000000000ea004b000013be0000c13d00000000000c004b000013810000c13d0000138c0000013d0000000009000019000000050a9002100000000001a700190000000101100367000000000101043b000000000200003100000000037200490000001f0330008a00000cec0430019700000cec05100197000000000645013f000000000045004b000000000400001900000cec04004041000000000031004b000000000300001900000cec0300804100000cec0060009c000000000403c019000000000004004b00001e880000c13d00000000037100190000000101300367000000000101043b00000c730010009c00001e880000213d0000000004120049000000200230003900000cec0340019700000cec05200197000000000635013f000000000035004b000000000300001900000cec03004041000000000042004b000000000400001900000cec0400204100000cec0060009c000000000304c019000000000003004b00001e880000c13d00000d58041001980000000105200367000000400200043d0000000003420019000013f90000613d000000000605034f0000000007020019000000006806043c0000000007870436000000000037004b000013f50000c13d00130000000a001d001200000009001d0000001f06100190000014080000613d000000000445034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000003120019000000000003043500000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000000020004103193318e0000040f000000600310027000000c66043001980000006003000039000000130a000029000014410000613d0000001f0340003900000c67033001970000003f0330003900000c7205300197000000400300043d0000000005530019000000000035004b0000000006000039000000010600403900000c730050009c00000efc0000213d000000010060019000000efc0000c13d000000400050043f000000000743043600000c68064001980000000005670019000014340000613d000000000801034f000000008908043c0000000007970436000000000057004b000014300000c13d0000001f04400190000014410000613d000000000161034f0000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f0000000000150435000000010020019000000010070000290000001209000029000015790000613d000000800100043d000000000091004b00001a070000a13d000000a001a000390000000000310435000000800100043d000000000091004b00001a070000a13d0000000109900039000000110090006c000013c60000413d00000b590000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014580000c13d000000000005004b000014690000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c660020009c00000c66020080410000004002200210000000000112019f00003195000104300000000009000019000f0000000a001d000014790000013d000000010120018f00000000011b0436000000000031043500000012090000290000000109900039000000100090006c00000c330000813d000000800100043d000000000091004b00001a070000a13d00000005019002100000000003a100190000000102000367000000000332034f000000000403043b0000000003000031000000110530006a000000430550008a00000cec0650019700000cec07400197000000000867013f000000000067004b000000000600001900000cec06004041000000000054004b000000000500001900000cec0500804100000cec0080009c000000000605c019000000000006004b00001e880000c13d000000a001100039000000000b0104330000000004a40019000000000142034f000000000101043b00000c730010009c00001e880000213d0000000005130049000000200340003900000cec0450019700000cec06300197000000000746013f000000000046004b000000000400001900000cec04004041000000000053004b000000000500001900000cec0500204100000cec0070009c000000000405c019000000000004004b00001e880000c13d000000000432034f00000d5805100198000000400200043d0000000003520019000014b20000613d000000000604034f0000000007020019000000006806043c0000000007870436000000000037004b000014ae0000c13d00130000000b001d001200000009001d0000001f06100190000014c10000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000003120019000000000003043500000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000000020004103193318e0000040f000000600310027000000c660430019800000060030000390000000f0a000029000000130b000029000014720000613d0000001f0340003900000c67033001970000003f0330003900000c7205300197000000400300043d0000000005530019000000000035004b0000000006000039000000010600403900000c730050009c00000efc0000213d000000010060019000000efc0000c13d000000400050043f000000000743043600000c68064001980000000005670019000014ee0000613d000000000801034f000000008908043c0000000007970436000000000057004b000014ea0000c13d0000001f04400190000014720000613d000000000161034f0000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f0000000000150435000014720000013d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d000000c00110027000000c6601100197000500000001001d319321a70000040f0000086b03000039000000000203041a00000cde02200197000000c00110021000000cdf01100197000000000112019f000000000013041b31931f1d0000040f0000000003010019000400000001001d00000160011000390000000a020000290000000000210435000001400130003900000013020000290000000000210435000001200130003900000006020000290000000000210435000001000130003900000005020000290000000000210435000000e0013000390000000c020000290000000000210435000000c0013000390000000d020000290000000000210435000000a0013000390000000e02000029000000000021043500000080013000390000000f0200002900000000002104350000006001300039000000100200002900000000002104350000004001300039000000110200002900000000002104350000002001300039000000120200002900000000002104350000000b01000029000000000013043500000000030000310000000801000029000000090200002931931f290000040f0000000403000029000001800230003900000000001204350000000001030019319327c50000040f00000001010000390000006502000039000000000012041b00000000010004150000000702000029000016b30000013d00000d5701000041000000000010043f00000c7501000041000031950001043000000d2a01000041000000000010043f00000c7501000041000031950001043000000d0801000041000000000010044300000013010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b000016ac0000c13d000000400100043d000000640210003900000d27030000410000000000320435000000440210003900000d2803000041000000000032043500000024021000390000002d03000039000012400000013d000000400200043d001300000002001d00000c6c0100004100000000001204350000000401200039319326250000040f0000001302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f00003195000104300000000001030433000000440010008c00001e880000413d00000004013000390000000002010433000000000100041500000ced0020009c00001e880000213d000000200020008c00001e880000413d0000002403300039000000000403043300000c730040009c00001e880000213d000000000623001900000000023400190000001f03200039000000000063004b000000000400001900000cec0400804100000cec0330019700000cec05600197000000000753013f000000000053004b000000000300001900000cec0300404100000cec0070009c000000000304c019000000000003004b00001e880000c13d000000004302043400000c730030009c00000efc0000213d0000001f0230003900000ce4022001970000003f0220003900000ce605200197000000400200043d0000000005520019000000000025004b0000000007000039000000010700403900000c730050009c00000efc0000213d000000010070019000000efc0000c13d000000400050043f00000000053204360000000007340019000000000067004b00001e880000213d00000d58073001970000001f0630018f000000000054004b000018c80000813d000000000007004b000015bc0000613d00000000096400190000000008650019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000015b60000c13d000000000006004b000018de0000613d0000000008050019000018d40000013d00000000020000310000001201000029319320230000040f319321b20000040f001000000001001d000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000101041a000000000001004b000016dc0000c13d0000001001000029000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000000102000039000000000021041b0000001108000029000000600280008a0000000101000367000000000221034f000000200380008a000000000331034f000000c00480008a000000000441034f000000a00580008a000000000551034f000000800680008a000000000661034f000000000781034f000000400880008a000000000881034f000000000303043b001000000003001d000000000308043b000f00000003001d000000000202043b000b00000002001d000000000206043b000c00000002001d000000000205043b000d00000002001d000000000204043b000e00000002001d000000000207043b000a00000002001d00000c660020009c00001e880000213d00000011020000290000002002200039000000000321034f000000000303043b001100000003001d00000c660030009c00001e880000213d0000002003200039000000000331034f000000000403043b0000000003000031000000130530006a000000230550008a00000cec0650019700000cec07400197000000000867013f000000000067004b000000000600001900000cec06004041000000000054004b000000000500001900000cec0500804100000cec0080009c000000000605c019000001000520008a000000000551034f000001400720008a000000000771034f000001200220008a000000000221034f000000000202043b000800000002001d000000000207043b000900000002001d000000000205043b001300000002001d000000000006004b00001e880000c13d0000001204400029000000000241034f000000000202043b00000c730020009c00001e880000213d0000000005230049000000200640003900000cec0450019700000cec07600197000000000847013f000000000047004b000000000400001900000cec04004041000000000056004b000000000500001900000cec0500204100000cec0080009c000000000405c019000000000004004b00001e880000c13d0000001f0420003900000ce4044001970000003f0440003900000ce605400197000000400400043d0000000005540019000000000045004b0000000007000039000000010700403900000c730050009c00000efc0000213d000000010070019000000efc0000c13d000000400050043f00000000052404360000000007620019000000000037004b00001e880000213d000000000361034f00000d58062001980000001f0720018f00000000016500190000165b0000613d000000000803034f0000000009050019000000008a08043c0000000009a90436000000000019004b000016570000c13d000000000007004b000016680000613d000000000363034f0000000306700210000000000701043300000000076701cf000000000767022f000000000303043b0000010006600089000000000363022f00000000036301cf000000000373019f0000000000310435000000000125001900000000000104350000000001040433000000000001004b0000000002000019000016800000613d00000c660050009c00000c6605008041000000400250021000000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000201043b000000400100043d00000120031000390000000000230435000001000210003900000008030000290000000000320435000000e00210003900000009030000290000000000320435000000c00210003900000013030000290000000000320435000000a0021000390000001103000029000000000032043500000080021000390000000a03000029000000000032043500000060021000390000000b03000029000000000032043500000040021000390000000c03000029000000000032043500000020021000390000000d0300002900000000003204350000000e02000029000000000021043500000c660010009c00000c66010080410000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d2c011001c70000800d02000039000000030300003900000d2d040000410000000f050000290000001006000029000011160000013d00000d1a01000041000000000201041a00000d0c0220019700000013022001af000000000021041b00000000010004150000001102000029000000000112004900000000010000020000000001000019000031940001042e00000cfd01000041000000000010043f00000c7501000041000031950001043000000d0801000041000000000010044300000013010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b0000155f0000613d00000d1a01000041000000000201041a00000d0c0220019700000013022001af000000000021041b00000000010004150000001202000029000016b30000013d000000640210003900000d1d030000410000000000320435000000440210003900000d1e03000041000000000032043500000024021000390000002903000039000012400000013d00000d2b01000041000000000010043f00000c750100004100003195000104300000086901000039000000000201041a00000d0c022001970000001205000029000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d0e04000041319331840000040f000000010020019000001e880000613d000000110000006b000017090000c13d00000d1001000041000000000010043f00000c750100004100003195000104300000000901000029000001000110008a0000000101100367000000000101043b00000c690010009c000018f50000213d0000000002000411000000000021004b000003490000613d000012da0000013d00000011010000290000000001010433000000030010008c0000172e0000213d00000d0301000041000000000010043f00000c750100004100003195000104300000086a01000039000000000201041a00000d0c022001970000001105000029000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d0f04000041319331840000040f000000010020019000001e880000613d0000000f0000006b000001320000c13d000000000200041a00000d5b01200197000000000010041b000000400100043d0000000103000039000000000031043500000c660010009c00000c66010080410000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c6e011001c70000800d0200003900000c6f040000410000091e0000013d000000100200002900000c660020009c00000c6602008041000000400220021000000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f0000001202000029319331840000040f000000600310027000000c6603300198000017a60000c13d000f00600000003d0000000100200190000017ce0000613d000000400100043d0000002002000039000000000321043600000011020000290000000002020433000000000023043500000d58052001970000001f0420018f0000004003100039000000100030006b0000188d0000813d000000000005004b0000175a0000613d00000010074000290000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c000017540000c13d000000000004004b000018a40000613d0000000006030019000018990000013d000000000a960019000000000009004b000017670000613d000000000b070019000000000c06001900000000bd0b0434000000000cdc04360000000000ac004b000017630000c13d000000000008004b000017740000613d0000000007970019000000030880021000000000090a043300000000098901cf000000000989022f00000000070704330000010008800089000000000787022f00000000078701cf000000000797019f00000000007a04350000000006610019000000000006043500000064062000390000000000560435000000440520003900000000004504350000001f0110003900000d580110019700000204041000390000000000420435000002430110003900000d58011001970000000001120019000000000021004b0000000004000039000000010400403900000c730010009c00000efc0000213d000000010040019000000efc0000c13d000000400010043f00000c660030009c00000c66030080410000004001300210000000000202043300000c660020009c00000c66020080410000006002200210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000000020004103193318e0000040f000000600310027000000c6603300198000018650000c13d0000000100200190000001320000c13d000000400200043d001200000002001d00000d000100004100000000001204350000000401200039000000130200002931931fd10000040f0000001202000029000015700000013d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019000f00000005001d000000000054004b0000000005000039000000010500403900000c730040009c00000efc0000213d000000010050019000000efc0000c13d000000400040043f0000001f0430018f0000000f05000029000000000635043600000c68053001980000000003560019000017c00000613d000000000701034f000000007807043c0000000006860436000000000036004b000017bc0000c13d000000000004004b000017410000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000017410000013d00000d0101000041000000000010043f00000c75010000410000319500010430000000000a960019000000000009004b000017db0000613d000000000b070019000000000c06001900000000bd0b0434000000000cdc04360000000000ac004b000017d70000c13d000000000008004b000017e80000613d0000000007970019000000030880021000000000090a043300000000098901cf000000000989022f00000000070704330000010008800089000000000787022f00000000078701cf000000000797019f00000000007a0435000000000665001900000000000604350000000f060000290000000006060433000000600710003900000000006704350000000003030433000000800610003900000000003604350000001f0350003900000d5803300197000002200530003900000000005104350000025f0330003900000d58043001970000000003140019000000000043004b0000000004000039000000010400403900000c730030009c00000efc0000213d000000010040019000000efc0000c13d000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b00000012020000290000000002020433000000000002004b000018340000613d0000000003000019001300000003001d000000050230021000000011022000290000000002020433000000000021004b000018220000813d000000000010043f000000200020043f0000000001000414000018250000013d000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000001303000029000000010330003900000012020000290000000002020433000000000023004b000018180000413d0000000e0010006c000018ea0000c13d0000000001000415001100000001001d0000000c010000290000000001010433001200000001001d00000120011000390000000001010433001300000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000130200002900000c6602200197000000000012004b00000e8c0000413d0000000b010000290000000001010433001300000001001d000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000101041a000000020010008c000018fd0000c13d00000d3401000041000000000010043f00000c750100004100003195000104300000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019001300000005001d000000000054004b0000000005000039000000010500403900000c730040009c00000efc0000213d000000010050019000000efc0000c13d000000400040043f0000001f0430018f0000001305000029000000000635043600000c680530019800000000035600190000187f0000613d000000000701034f000000007807043c0000000006860436000000000036004b0000187b0000c13d000000000004004b0000179b0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000179b0000013d0000000006530019000000000005004b000018960000613d0000001007000029000000000803001900000000790704340000000008980436000000000068004b000018920000c13d000000000004004b000018a40000613d001000100050002d0000000304400210000000000506043300000000054501cf000000000545022f000000100700002900000000070704330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000001f0420003900000d580440019700000000023200190000000000020435000000400240003900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000ce8011001c70000800d02000039000000020300003900000d02040000410000001205000029319331840000040f000000010020019000001e880000613d00000001010000390000006502000039000000000012041b000000000100041500000013011000690000000001000002000000400100043d001300000001001d0000000f0200002931931fd10000040f00000f0b0000013d0000000008750019000000000007004b000018d10000613d0000000009040019000000000a050019000000009b090434000000000aba043600000000008a004b000018cd0000c13d000000000006004b000018de0000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f00000000004804350000000003350019000000000003043500000000030004150000000001310049000000000100000200000c6c01000041000000400300043d001300000003001d0000000000130435000000040130003931931fd10000040f0000156f0000013d00000d3701000041000000000010043f00000c75010000410000319500010430000000c00100043d00000c690010009c000018f50000213d0000000002000411000000000021004b00000a780000613d000012da0000013d00000d3201000041000000000010043f00000c7501000041000031950001043000000d3601000041000000000010043f00000c750100004100003195000104300000001301000029319320130000040f0000000204000039000000000041041b0000000c010000290000001202000029000000000300001931932b1e0000040f00000001030000390000000c01000029000000120200002931932be20000040f00000000010004150000001101100069000000000100000200000065010000390000000102000039000000000021041b0000000001000019000031940001042e00000d3a01000041000000000010043f00000c7501000041000031950001043000000d3b01000041000000000010043f00000c75010000410000319500010430000000400300043d001200000003001d00000d3c010000410000000000130435000000000100041000000c69011001970000000402300039000000000012043500000c660030009c00000c660100004100000000010340190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d3d011001c70000000d02000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000120b00002900000012057000290000193d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000019390000c13d000000000006004b0000194a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001a890000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000c730010009c00000efc0000213d000000010020019000000efc0000c13d000000400010043f000000200030008c00001e880000413d00000000010b0433000700000001001d000500000000001d001200000000001d001100000000001d000019640000013d00000012020000290000000102200039001200000002001d0000000a0020006c00000df70000813d00000010010000290000000001010433000000120010006c00001a070000a13d000000120100002900000005021002100000000901200029000f00000001001d0000000001010433000000000001004b0000195f0000613d000000110010002a000009940000413d0000001104100029001100000004001d000000070040006c00001a950000213d0000000c030000290000000003030433000000120030006c00001a070000a13d0000000802200029000b00000002001d00000000030204330000000002000415000e00000002001d000000400200043d00000044042000390000000000140435000000200120003900000d3e04000041000000000041043500000c6903300197000000240420003900000000003404350000004403000039000000000032043500000ceb0020009c00000efc0000213d0000008003200039000000400030043f00000c660010009c00000c66010080410000004001100210000000000202043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000d02000029319331840000040f000000600310027000000c6603300197000000200030008c000000200500003900000000050340190000002004500190000019a90000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000019a50000c13d0000001f05500190000019b60000613d000000000141034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000019c10000613d000000000003004b000019f30000613d000000000100043d00000000020004150000000e022000690000000002000002000000010010008c0000195f0000613d000019c40000013d00000000010004150000000e01100069000000000100000200000010010000290000000001010433000000120010006c00001a070000a13d0000000f010000290000000001010433000f00000001001d0000000d01000029000000000010043f0000087301000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d0000000c020000290000000002020433000000120020006c00001a070000a13d000000000101043b0000000b02000029000000000202043300000c6902200197000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000201041a0000000f0020002a000009940000413d0000000f02200029000000000021041b000500010000003d0000195f0000013d00000d080100004100000000001004430000000d010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000000020004150000000e022000690000000002000002000000000001004b0000195f0000c13d000019c40000013d00000d3f01000041000000000010043f0000003201000039000000040010043f00000d3d0100004100003195000104300000000001000415000b00000001001d00000cf6010000410000000000100443000000000100041200000004001004430000006001000039001200000001001d0000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c69011001970000000d0010006b00001a990000c13d00000d080100004100000000001004430000000d010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b00001e880000613d000000400300043d00000d4c01000041000000000013043500000004013000390000000402000029000000000021043500000c660030009c001200000003001d00000c660100004100000000010340190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d3d011001c70000000d02000029319331840000040f000000010020019000001af70000613d000000120100002900000c730010009c00000efc0000213d0000001201000029000000400010043f0000086a01000039000000000101041a001200000001001d00000c5a01000039000000000101041a00000d0802000041000000000020044300000c6901100197001100000001001d0000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b00001e880000613d000000120100002900000c6901100197000000400300043d00000d4d0200004100000000002304350000000402300039000000000012043500000c660030009c001200000003001d00000c660100004100000000010340190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d4e011001c70000800902000039000000040300002900000011040000290000000005000019319331840000040f000000010020019000001dc70000c13d00000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900001ed30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001a840000c13d00001ed30000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a900000c13d0000145c0000013d00000d4001000041000000000010043f00000c7501000041000031950001043000000cf601000041000000000010044300000000010004120000000400100443000000e0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000cf60200004100000000002004430000000002000412000000040020044300000c69011001970000000d0010006b00001b040000c13d00000100010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c690010019800001b670000c13d00000cf60100004100000000001004430000000001000412000000040010044300000140010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000201043b0000000001000415000e00000001001d000000400400043d000000440140003900000004030000290000000000310435000000200140003900000d450300004100000000003104350000004403000039000000000034043500000c69032001970000002402400039001100000003001d0000000000320435001000000004001d00000ceb0040009c00000efc0000213d00000010030000290000008002300039000000400020043f00000c660010009c00000c66010080410000004001100210000000000203043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000d02000029319331840000040f000000600310027000000c660430019800001d300000c13d000000800300003900001d580000013d00000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900001ed30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001aff0000c13d00001ed30000013d000000400100043d001100000001001d00000160010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d00000011040000290000002002400039000000000101043b000000000012043500000060014000390000000d030000290000000000310435000000400140003900000d410300004100000000003104350000006001000039000000000014043500000ceb0040009c00000efc0000213d00000011030000290000008001300039000000400010043f00000c660020009c00000c66020080410000004001200210000000000203043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000201043b0000086a01000039000000000101041a000000400300043d00000060043000390000000d05000029000000000054043500000c6901100197000000400430003900000000001404350000002001300039000000040400002900000000004104350000006004000039000000000043043500000ceb0030009c00000efc0000213d0000008005300039000000400050043f00000d4204000041001200000005001d0000000000450435000000a4043000390000004005000039000000000054043500000084043000390000000000240435000000c4043000390000000002030433000000000024043500000d58052001970000001f0420018f000000e403300039000000000031004b00001dce0000813d000000000005004b00001b630000613d00000000074100190000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c00001b5d0000c13d000000000004004b00001de40000613d000000000603001900001dda0000013d0000086a01000039000000000101041a000f00000001001d0000000001000415000a00000001001d00000cf601000041000000000010044300000000010004120000000400100443000000e0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b001200000001001d00000cf60100004100000000001004430000000001000412000000040010044300000100010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b0000000002000415000e00000002001d00000d4302000041000000400400043d000c00000004001d0000000000240435000000000200041000000c69022001970000000403400039000000000023043500000c69021001970000002401400039001100000002001d000000000021043500000c660040009c00000c660100004100000000010440190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f000000120200002900000c690220019700000d44011001c7001000000002001d319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0b0000290000000c0570002900001bb90000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00001bb50000c13d000000000006004b00001bc60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001e8a0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b0000000001000039000000010100403900000c730020009c00000efc0000213d000000010010019000000efc0000c13d000000400020043f000000200030008c00001e880000413d00000000010b0433000000040010002a000009940000413d0000000401100029000000200320003900000d45040000410000000000430435000000440320003900000000001304350000002401200039000000110300002900000000003104350000004401000039000000000012043500000ceb0020009c00000efc0000213d0000008001200039000000400010043f0000001201000029319330970000040f00000000010004150000000e01100069000000000100000200000d4601000041000000400200043d000e00000002001d000000000012043500000c660020009c00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c75011001c70000001102000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000e0b0000290000000e0570002900001c0c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00001c080000c13d000000000006004b00001c190000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001e960000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039001200000002001d00000c730020009c00000efc0000213d000000010010019000000efc0000c13d0000001201000029000000400010043f000000200030008c00001e880000413d00000000020b043300000c690020009c00001e880000213d00000d47010000410000001204000029000000000014043500000004014000390000001003000029000000000031043500000c660040009c00000c660100004100000000010440190000004001100210000000000300041400000c660030009c00000c6603008041000000c003300210000000000113019f00000d3d011001c7319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000120570002900001c4d0000613d000000000801034f0000001209000029000000008a08043c0000000009a90436000000000059004b00001c490000c13d000000000006004b00001c5a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001ea20000613d0000001f01400039000000600110018f000000120110002900000c730010009c00000efc0000213d000000400010043f000000200030008c00001e880000413d00000012010000290000000001010433000900000001001d00000cf60100004100000000001004430000000001000412000000040010044300000120010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d0000000f02000029000c0c690020019b000000000101043b000800000001001d000f00040000002d0000000f02000029000000090020006c00000009010000290000000001024019000e00000001001d000000080000006b00001cce0000613d00000d0801000041000000000010044300000011010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b00001e880000613d000000400200043d00000d4801000041001200000002001d000000000012043500000cf601000041000000000010044300000000010004120000000400100443000000c0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b0000001204000029000000c402400039000007d003000039000000000032043500000064024000390000001003000029000000000032043500000044024000390000000c03000029000000000032043500000004024000390000000e03000029000000000032043500000c660110019700000024024000390000000000120435000000a40140003900000000000104350000008401400039000000000001043500000c660040009c00000c660100004100000000010440190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d49011001c70000001102000029319331840000040f000000010020019000001eae0000613d000000120100002900000c730010009c00000efc0000213d0000001201000029000000400010043f00001d290000013d000000400200043d00000d4a01000041001200000002001d000000000012043500000cf601000041000000000010044300000000010004120000000400100443000000c0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000120400002900000064024000390000001003000029000000000032043500000044024000390000000c03000029000000000032043500000004024000390000000e03000029000000000032043500000c66011001970000002402400039000000000012043500000c660040009c00000c660100004100000000010440190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c6d011001c70000001102000029319331840000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000002006400190000000120560002900001d090000613d000000000701034f0000001208000029000000007907043c0000000008980436000000000058004b00001d050000c13d0000001f0740019000001d160000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000010020019000001ebb0000613d0000001f01400039000000600210018f0000001201200029000000000021004b0000000002000039000000010200403900000c730010009c00000efc0000213d000000010020019000000efc0000c13d000000400010043f000000200030008c00001e880000413d0000001201000029000000000101043300000c730010009c00001e880000213d0000000e02000029000f000f0020007300001c7b0000c13d00000000010004150000000a01100069000000000100000200001e1e0000013d0000001f0340003900000c67033001970000003f0330003900000c7203300197000000400500043d0000000003350019001200000005001d000000000053004b0000000005000039000000010500403900000c730030009c00000efc0000213d000000010050019000000efc0000c13d000000400030043f0000001f0540018f0000001203000029000000000343043600000c6806400198000000000463001900001d4b0000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000048004b00001d470000c13d000000000005004b00001d580000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000010020019000001d810000613d0000000001000415000000270110008a000f00050010021800000012010000290000000001010433000000000001004b00001d6d0000613d00000ced0010009c00001e880000213d000000200010008c00001e880000413d0000000001030433000000010010008c00001e880000213d0000000002000415000000260220008a000f000500200218000000000001004b00001d810000613d00000d080100004100000000001004430000000d010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b0000000f010000290000000501100270000000000100003f000000010100c03f00001d950000c13d000000400200043d000000200120003900000d45030000410000000000310435000000240120003900000011030000290000000000310435000000440100003900000000001204350000004401200039000000000001043500000ceb0020009c00000efc0000213d0000008001200039000000400010043f0000000d01000029319330970000040f0000000d010000290000001002000029319330970000040f00000000010004150000000e0110006900000000010000020000086a01000039000000000101041a001200000001001d00000d0801000041000000000010044300000011010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b00001e880000613d000000120100002900000c6901100197000000400400043d00000044024000390000000403000029000000000032043500000024024000390000000d03000029000000000032043500000d4b0200004100000000002404350000000402400039000000000012043500000c660040009c001200000004001d00000c660100004100000000010440190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d26011001c70000001102000029319331840000040f000000010020019000001ec70000613d000000120100002900000c730010009c00000efc0000213d0000001201000029000000400010043f00001e1e0000013d000000000001042f0000000006530019000000000005004b00001dd70000613d0000000007010019000000000803001900000000790704340000000008980436000000000068004b00001dd30000c13d000000000004004b00001de40000613d00000000015100190000000304400210000000000506043300000000054501cf000000000545022f00000000010104330000010004400089000000000141022f00000000014101cf000000000151019f00000000001604350000001f0120003900000d580110019700000000023200190000000000020435000000640110003900000c660010009c00000c66010080410000006001100210000000120200002900000c660020009c00000c66020080410000004002200210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000d2202000041319331840000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000120570002900001e070000613d000000000801034f0000001209000029000000008a08043c0000000009a90436000000000059004b00001e030000c13d000000000006004b00001e140000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001ee30000613d0000001f01400039000000600110018f000000120110002900000c730010009c00000efc0000213d000000400010043f000000200030008c00001e880000413d000000010100002900000c660610019700000000010004150000000b0110006900000000010000020000000001000411001200000001001d00000c6901100197000000400200043d000000200320003900000000001304350000000401000029000000000012043500000c660020009c00000c66020080410000004001200210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000cee011001c70000800d02000039000000040300003900000d4f0400004100000002050000290000000d07000029319331840000040f000000010020019000001e880000613d000000000100041500000003011000690000000001000002000000400100043d0000002004100039000001200200043d000000a00500043d000000e00300043d000001000600043d000000c00700043d000000800800043d000000c00900003900000000009404350000000000810435000000c00410003900000000080704330000000000840435000000e00410003900000c6906600197000000000008004b00001e580000613d00000000090000190000002007700039000000000a0704330000000004a404360000000109900039000000000089004b00001e520000413d00000c66073001970000000003140049000000600810003900000000003804350000004003100039000000000063043500000000060204330000000003640436000000000006004b00001e6a0000613d00000000040000190000002002200039000000000802043300000c690880019700000000038304360000000104400039000000000064004b00001e630000413d000000120200002900000c6902200197000000a0041000390000000000240435000000050000006b0000000002000039000000010200c03900000080041000390000000000240435000000000213004900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000800d02000039000000040300003900000d50040000410000001306000029319331840000040f0000000100200190000000a00000c13d000000000100001900003195000104300000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e910000c13d0000145c0000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e9d0000c13d0000145c0000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ea90000c13d0000145c0000013d00000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900001ed30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001eb60000c13d00001ed30000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ec20000c13d0000145c0000013d00000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900001ed30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001ecf0000c13d00000c6606600197000000000004004b00001ee10000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000060016002100000146a0000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001eea0000c13d0000145c0000013d00000c6902200197000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001efd0000613d000000000101043b000000000001042d000000000100001900003195000104300000001f0220003900000d58022001970000000001120019000000000021004b0000000002000039000000010200403900000c730010009c00001f0b0000213d000000010020019000001f0b0000c13d000000400010043f000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000400100043d00000ce50010009c00001f170000813d000000c002100039000000400020043f000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000400100043d00000d5c0010009c00001f230000813d000001a002100039000000400020043f000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000d5d0020009c00001f590000813d00000000040100190000001f0120003900000ce4011001970000003f0110003900000ce605100197000000400100043d0000000005510019000000000015004b0000000006000039000000010600403900000c730050009c00001f590000213d000000010060019000001f590000c13d000000400050043f00000000052104360000000006420019000000000036004b00001f5f0000213d00000d58062001980000001f0720018f0000000104400367000000000365001900001f490000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b00001f450000c13d000000000007004b00001f560000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000000001000019000031950001043000000ced0010009c00001f6f0000213d000000430010008c00001f6f0000a13d00000001020003670000000401200370000000000101043b00000c690010009c00001f6f0000213d0000002402200370000000000202043b00000c690020009c00001f6f0000213d000000000001042d000000000100001900003195000104300000000043010434000000000132043600000d58063001970000001f0530018f000000000014004b00001f870000813d000000000006004b00001f830000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00001f7d0000c13d000000000005004b00001f9d0000613d000000000701001900001f930000013d0000000007610019000000000006004b00001f900000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b00001f8c0000c13d000000000005004b00001f9d0000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000431001900000000000404350000001f0330003900000d58023001970000000001210019000000000001042d0000001f03100039000000000023004b000000000400001900000cec0400404100000cec0520019700000cec03300197000000000653013f000000000053004b000000000300001900000cec0300204100000cec0060009c000000000304c019000000000003004b00001fbb0000613d0000000103100367000000000303043b00000c730030009c00001fbb0000213d00000020011000390000000004310019000000000024004b00001fbb0000213d0000000002030019000000000001042d0000000001000019000031950001043000000ced0010009c00001fcf0000213d000000630010008c00001fcf0000a13d00000001030003670000000401300370000000000101043b00000c660010009c00001fcf0000213d0000002402300370000000000202043b00000c690020009c00001fcf0000213d0000004403300370000000000303043b00000c690030009c00001fcf0000213d000000000001042d00000000010000190000319500010430000000200300003900000000033104360000000042020434000000000023043500000d58062001970000001f0520018f0000004001100039000000000014004b00001fea0000813d000000000006004b00001fe60000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00001fe00000c13d000000000005004b000020000000613d000000000701001900001ff60000013d0000000007610019000000000006004b00001ff30000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b00001fef0000c13d000000000005004b000020000000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000412001900000000000404350000001f0220003900000d58022001970000000001120019000000000001042d000000400100043d00000d5e0010009c0000200d0000813d0000002002100039000000400020043f0000000000010435000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f0000000100200190000020210000613d000000000101043b000000000001042d000000000100001900003195000104300000000003010019000000000112004900000ced0010009c000020af0000213d0000017f0010008c000020af0000a13d000000400100043d00000d5f0010009c000020b10000813d0000018004100039000000400040043f0000000104000367000000000534034f000000000505043b00000000055104360000002006300039000000000664034f000000000606043b00000000006504350000004005300039000000000554034f000000000505043b000000400610003900000000005604350000006005300039000000000554034f000000000505043b000000600610003900000000005604350000008005300039000000000554034f000000000505043b00000080061000390000000000560435000000a005300039000000000554034f000000000505043b000000a0061000390000000000560435000000c005300039000000000554034f000000000505043b000000c0061000390000000000560435000000e005300039000000000554034f000000000505043b000000e00610003900000000005604350000010005300039000000000554034f0000010006100039000000000505043b00000000005604350000012005300039000000000654034f000000000606043b00000c660060009c000020af0000213d000001200710003900000000006704350000002005500039000000000654034f000000000606043b00000c660060009c000020af0000213d000001400710003900000000006704350000002005500039000000000554034f000000000505043b00000c730050009c000020af0000213d00000000063500190000001f03600039000000000023004b000000000500001900000cec0500804100000cec0330019700000cec07200197000000000873013f000000000073004b000000000300001900000cec0300404100000cec0080009c000000000305c019000000000003004b000020af0000c13d000000000364034f000000000303043b00000c730030009c000020b10000213d0000001f0530003900000ce4055001970000003f0550003900000ce607500197000000400500043d0000000007750019000000000057004b0000000008000039000000010800403900000c730070009c000020b10000213d0000000100800190000020b10000c13d0000002008600039000000400070043f00000000063504360000000007830019000000000027004b000020af0000213d000000000484034f00000d58073001980000001f0830018f00000000027600190000209d0000613d000000000904034f000000000a060019000000009b09043c000000000aba043600000000002a004b000020990000c13d000000000008004b000020aa0000613d000000000474034f0000000307800210000000000802043300000000087801cf000000000878022f000000000404043b0000010007700089000000000474022f00000000047401cf000000000484019f00000000004204350000000002360019000000000002043500000160021000390000000000520435000000000001042d0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000086c02000039000000000302041a000000000013004b000020bf0000a13d000000000020043f00000003011000c900000cf80110009a000000000001042d00000d3f01000041000000000010043f0000003201000039000000040010043f00000d3d01000041000031950001043000000c660110019700000c6602200197000000000112001900000d600010009c000020cb0000813d000000000001042d00000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d0100004100003195000104300002000000000002000000650e000039000000000f0e041a0000000200f0008c000021490000613d000200000001001d00010000000c001d000000020100003900000000001e041b0000086b01000039000000000e01041a00000cdd00e001980000215a0000c13d000000c00fe0027000000c660ff0019700000c6600f0009c0000215e0000613d00000d610ee00197000000c00cf0021000000d620cc0009a00000cdf0cc00197000000000cec019f0000000000c1041b000000400100043d00000d5c0010009c000021430000813d000001a00c1000390000004000c0043f00000c660bb00197000001600c1000390000000000bc043500000c660aa00197000001400b1000390000000000ab043500000c6609900197000001200a10003900000000009a043500000100091000390000000000f9043500000c6908800197000000e0091000390000000000890435000000c0081000390000000000780435000000a00710003900000000006704350000008006100039000000000056043500000c69044001970000006005100039000000000045043500000c69033001970000004004100039000000000034043500000c690220019700000020031000390000000000230435000000020200002900000c6902200197000000000021043500000c7300d0009c000021430000213d0000001f02d0003900000ce4022001970000003f0220003900000ce603200197000000400200043d0000000003320019000000000023004b0000000004000039000000010400403900000c730030009c000021430000213d0000000100400190000021430000c13d000000400030043f0000000003d20436000000010700002900000000057d0019000000000050007c000021640000213d00000d5805d001980000001f06d0018f000000010770036700000000045300190000212d0000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b000021290000c13d000000000006004b0000213a0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000003d30019000000000003043500000180031000390000000000230435319327c50000040f00000001010000390000006502000039000000000012041b000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000400100043d000000440210003900000d5603000041000000000032043500000024021000390000001f03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c7000031950001043000000d5701000041000000000010043f00000c7501000041000031950001043000000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d01000041000031950001043000000000010000190000319500010430000000400400043d00000054054000390000000000350435000000600310021000000020014000390000000000310435000000340340003900000000002304350000005402000039000000000024043500000d630040009c000021880000813d0000008002400039000000400020043f00000c660010009c00000c66010080410000004001100210000000000204043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f00000001002001900000218e0000613d000000000101043b000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000000010000190000319500010430000000000001004b000021930000613d000000000001042d000000400100043d000000640210003900000d12030000410000000000320435000000440210003900000d1303000041000000000032043500000024021000390000002b03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c660110019700000c660010009c000021ac0000613d0000000101100039000000000001042d00000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d0100004100003195000104300003000000000002000000400500043d00000020035000390000004002000039000100000003001d000000000023043500000060025000390000000043010434000000000032043500000000020404330000008003500039000000000023043500000040021000390000000002020433000000a003500039000000000023043500000060021000390000000002020433000000c003500039000000000023043500000080021000390000000002020433000000e0035000390000000000230435000000a002100039000000000202043300000100035000390000000000230435000000c002100039000000000202043300000120035000390000000000230435000000e00210003900000000020204330000014003500039000000000023043500000100021000390000000002020433000001600350003900000000002304350000012002100039000000000202043300000c6602200197000001800350003900000000002304350000014002100039000000000202043300000c6602200197000001a003500039000000000023043500000160011000390000000001010433000001c00250003900000180030000390000000000320435000001e0035000390000000029010434000000000093043500000d58049001970000001f0390018f000300000005001d0000020001500039000000000012004b000022020000813d000000000004004b000021fe0000613d00000000063200190000000005310019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c000021f80000c13d000000000003004b000022180000613d00000000050100190000220e0000013d0000000005410019000000000004004b0000220b0000613d0000000006020019000000000701001900000000680604340000000007870436000000000057004b000022070000c13d000000000003004b000022180000613d00000000024200190000000303300210000000000405043300000000043401cf000000000434022f00000000020204330000010003300089000000000232022f00000000023201cf000000000242019f00000000002504350000000001190019000000000001043500000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039000200000009001d319331890000040f00000001002001900000224f0000613d000000000101043b00000003030000290000004002300039000000000012043500000002010000290000001f0110003900000d5801100197000001e00210003900000000002304350000021f0110003900000d58021001970000000001320019000000000021004b0000000002000039000000010200403900000c730010009c000022500000213d0000000100200190000022500000c13d000000400010043f000000010100002900000c660010009c00000c66010080410000004001100210000000000203043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f0000000100200190000022560000613d000000000101043b000000000001042d000000000001042f00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000000100001900003195000104300000006501000039000000000201041a000000020020008c0000225f0000613d0000000202000039000000000021041b000000000001042d000000400100043d000000440210003900000d5603000041000000000032043500000024021000390000001f03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c70000319500010430000c00000000000200000d160960019700070d140060019c00000d15060000410000000006006019000000000696019f000800000006001d000000000960c08900000d640090009c000024040000813d000b00000007001d000a00000003001d000300000002001d000400000001001d000500000008001d000600000005001d000c00000004001d00000d650040009c000024080000813d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f0000000100200190000023fb0000613d0000000b0200002900020c660020019b000000000101043b000000020110006c000b00000001001d000023f50000413d00000cf60100004100000000001004430000000001000412000000040010044300000080010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000023fb0000613d000000000101043b00000c66011001970000000b0010006b0000240c0000213d0000086b01000039000000000201041a000000c00320027000000c6603300197000b00000003001d00000c660030009c000023f50000613d00000cde022001970000000b03000029000000c00330021000000d620330009a00000cdf03300197000000000223019f000000000021041b00000cf6010000410000000000100443000000000100041200000004001004430000006001000039000900000001001d0000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000023fb0000613d0000000a02000029000a0c690020019b000000000101043b00000c69031001970000000a0030006b000022fb0000c13d0000000001000416000000000001004b000022fb0000613d0000000c0010006c0000243f0000c13d00000d08010000410000000000100443000900000003001d0000000400300443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000023fb0000613d000000000101043b000000000001004b0000000c03000029000023fc0000613d000000400200043d00000d6701000041000000000012043500000c660020009c000100000002001d00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d68011001c7000080090200003900000009040000290000000005000019319331840000040f0000000100200190000024430000613d000000010100002900000c730010009c000023fe0000213d000000400010043f0000000c050000290000237c0000013d000000400100043d00000064021000390000000c030000290000000000320435000000000200041000000c690220019700000044031000390000000000230435000000200210003900000d69030000410000000000320435000000000300041100000c6903300197000000240410003900000000003404350000006403000039000000000031043500000d6a0010009c000023fe0000813d000000a005100039000000400050043f00000d0d0050009c000023fe0000213d000000e003100039000000400030043f00000020030000390000000000350435000000c00310003900000d6b04000041000000000043043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000a02000029000100000005001d319331840000040f000000600310027000000c66033001980000008009000039000023550000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019000900000005001d000000000054004b0000000005000039000000010500403900000c730040009c000023fe0000213d0000000100500190000023fe0000c13d000000400040043f0000001f0430018f0000000905000029000000000935043600000c68053001980000000003590019000023480000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b000023440000c13d000000000004004b000023550000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000090100002900000000010104330000000100200190000024100000613d000000000001004b0000000c05000029000023730000c13d000100000009001d00000d080100004100000000001004430000000a010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000023fb0000613d000000000101043b000000000001004b000024630000613d00000009010000290000000001010433000000000001004b0000000c0500002900000001090000290000237c0000613d00000ced0010009c000023fc0000213d0000001f0010008c000023fc0000a13d0000000001090433000000010010008c000023fc0000213d000000000001004b000024230000613d0000000001000415000000070000006b000023840000613d000000080200002900000ced0020009c000023840000213d000000080000006b000023f50000c13d000000080200002900000d6e0320009900000000025300a9000000000005004b0000238c0000613d00000000045200d9000000000043004b000023f50000c13d000000000300041500000000013100490000000001000002000000400100043d000001200310003900000140040000390000000000430435000000030300002900000c6903300197000000e0041000390000000000340435000000a00310003900000c6604000041000000000043043500000080031000390000000204000029000000000043043500000d6e0220012a00000060031000390000000000230435000000400210003900000000005204350000000a02000029000000000221043600000100031000390000000000030435000000c003100039000000000003043500000000000204350000014003100039000000050200002900000000520204340000000000230435000000040300002900000c690730019700000d58082001970000001f0620018f0000016004100039000000000045004b000023c40000813d000000000008004b000023c00000613d000000000a6500190000000009640019000000200990008a000000200aa0008a000000000b890019000000000c8a0019000000000c0c04330000000000cb0435000000200880008c000023ba0000c13d000000000006004b000023da0000613d0000000009040019000023d00000013d0000000009840019000000000008004b000023cd0000613d000000000a050019000000000b04001900000000ac0a0434000000000bcb043600000000009b004b000023c90000c13d000000000006004b000023da0000613d00000000058500190000000306600210000000000809043300000000086801cf000000000868022f00000000050504330000010006600089000000000565022f00000000056501cf000000000585019f00000000005904350000001f0520003900000d580350019700000000024200190000000000020435000001600230003900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000ce8011001c70000800d02000039000000040300003900000d6f0400004100000006050000290000000b06000029319331840000040f0000000100200190000023fc0000613d000000000001042d00000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d010000410000319500010430000000000001042f0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000d7301000041000000000010043f00000c7501000041000031950001043000000d7201000041000000000010043f00000c7501000041000031950001043000000d7101000041000000000010043f00000c75010000410000319500010430000000000001004b000024370000c13d000000400200043d000c00000002001d00000c6c0100004100000000001204350000000401200039000000010200002931931fd10000040f0000000c02000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f0000319500010430000000400100043d000000640210003900000d6c030000410000000000320435000000440210003900000d6d03000041000000000032043500000024021000390000002a03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c660090009c00000c6609008041000000400290021000000c660010009c00000c66010080410000006001100210000000000121019f000031950001043000000d6601000041000000000010043f00000c7501000041000031950001043000000060061002700000001f0460018f00000c6805600198000000400200043d00000000035200190000244f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b0000244b0000c13d00000c6606600197000000000004004b0000245d0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c700003195000104300003000000000002000300000001001d00000cf60100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000024fc0000613d000000000101043b00000c6902100197000000030100002900000c6901100197000300000002001d000000000021004b000024d60000c13d00000d7401000041000000000010044300000000010004100000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800a02000039319331890000040f0000000100200190000024fc0000613d000000000101043b000000000001004b000024d60000613d00000d7401000041000000000010044300000000010004100000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800a02000039319331890000040f0000000100200190000024fc0000613d000000000101043b000200000001001d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000024fc0000613d000000000101043b000000000001004b000024fd0000613d000000400200043d00000d6701000041000000000012043500000c660020009c000100000002001d00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f0000000203000029000000000003004b000024d70000613d00000d68011001c7000080090200003900000003040000290000000005000019319331840000040f0000000100200190000024dc0000613d000000010100002900000d5d0010009c000024ff0000813d000000400010043f000000000001042d00000c75011001c70000000302000029319331840000040f0000000100200190000024d20000c13d00000060061002700000001f0460018f00000c6805600198000000400200043d0000000003520019000024e80000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000024e40000c13d00000c6606600197000000000004004b000024f60000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000000000001042f0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300012000000000002000d00000002001d001200000001001d0000000021010434000f00000002001d001000000001001d0000012001100039000e00000001001d0000000001010433001100000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f0000000100200190000026160000613d000000000101043b000000110200002900000c6602200197000000000012004b000026170000413d0000000f010000290000000001010433001100000001001d000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f0000000100200190000026140000613d000000000101043b000000000101041a000f00000001001d0000001101000029000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f0000000f03000029000000010030008c00000000030000390000000103006039000f00000003001d0000000100200190000026140000613d00000872030000390000001102000029000000000101043b000000000101041a000000020010008c0000261b0000613d000000000020043f000000200030043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f0000000100200190000026140000613d000000000101043b0000000202000039000000000021041b000000100200002900000020012000390000000001010433000600000001001d0000000001020433000800000001001d00000040012000390000000001010433000900000001001d00000100012000390000000001010433000400000001001d000000e0012000390000000001010433000300000001001d0000001201000029000000a0011000390000000001010433000a00000001001d000000c0012000390000000001010433000b00000001001d000000a0012000390000000001010433000c00000001001d00000080012000390000000001010433001100000001001d00000060012000390000000001010433000700000001001d00000140012000390000000001010433000500000001001d0000000e010000290000000001010433000e00000001001d000001600120003900000000010104330000000012010434000000000002004b000025940000613d00000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f0000000100200190000026140000613d000000000901043b000025950000013d0000000009000019000000120200002900000060012000390000000008010433000000800120003900000000010104330000000012010434000000000002004b0000260a0000613d000100000008001d000200000009001d00000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f0000000100200190000026140000613d000000000101043b00000002090000290000000108000029000000400200043d00000d630020009c0000260e0000813d000000050300002900000c66053001970000000e0300002900000c66063001970000001203000029000000400330003900000000070304330000008003200039000000400030043f00000060032000390000000f04000029000000000043043500000040042000390000000000740435000000200720003900000000001704350000000000820435000000400100043d00000140081000390000000000980435000001200810003900000006090000290000000000980435000001000810003900000008090000290000000000980435000000e00810003900000009090000290000000000980435000000c0081000390000000000580435000000a005100039000000000065043500000080051000390000000a06000029000000000065043500000060051000390000000b06000029000000000065043500000040051000390000000c060000290000000000650435000000200510003900000011060000290000000000650435000000070500002900000000005104350000000002020433000001600510003900000000002504350000000002070433000001800510003900000000002504350000000002040433000001a00410003900000000002404350000000002030433000000020020008c0000261f0000213d000001c003100039000000000023043500000c660010009c00000c66010080410000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d75011001c70000800d02000039000000040300003900000d7604000041000000030500002900000004060000290000000d07000029319331840000040f0000000100200190000026140000613d00000012010000290000001002000029000000000300001931932be20000040f000000000001042d0000000001000019000000400200043d00000d630020009c000025b60000413d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000000010000190000319500010430000000000001042f00000d3501000041000000000010043f00000c7501000041000031950001043000000d3401000041000000000010043f00000c7501000041000031950001043000000d3f01000041000000000010043f0000002101000039000000040010043f00000d3d010000410000319500010430000000600210003900000d77030000410000000000320435000000400210003900000d7803000041000000000032043500000020021000390000002e030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0006000000000002000500000007001d000100000005001d000200000004001d000600000003001d000300000002001d000400000001001d000000200160003900000c660010009c00000c66010080410000004001100210000000000206043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f00000001002001900000279b0000613d000000000201043b000000400100043d000000c0031000390000000000230435000000a00210003900000001030000290000000000320435000000800210003900000002030000290000000000320435000000600210003900000006030000290000000000320435000000400210003900000003030000290000000000320435000000200210003900000d07030000410000000000320435000000c003000039000000000031043500000d790010009c0000279d0000813d000000e003100039000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000000006050000290000279b0000613d000000000101043b000300000001001d0000047f01000039000000000201041a0000048001000039000000000301041a000000400100043d000000800410003900000000005404350000006004100039000000000034043500000040031000390000000000230435000000200210003900000d7a0300004100000000003204350000008003000039000600000003001d000000000031043500000d7b0010009c0000279d0000213d000000a003100039000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f00000001002001900000279b0000613d000000000101043b000000400200043d00000022032000390000000304000029000000000043043500000d7c0300004100000000003204350000000203200039000000000013043500000c660020009c00000c66020080410000004001200210000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000d7d011001c70000801002000039319331890000040f00000001002001900000279b0000613d000000000601043b000000050400002900000000c1040434000000410010008c000026c40000c13d00000040014000390000000001010433000000000200041500000d7e0010009c000027550000413d000000000100041500000000011200490000000001000002000000400100043d000000440210003900000040030000390000000000320435000000200210003900000d800300004100000000003204350000002403100039000000000063043500000064031000390000000004040433000000000043043500000d58074001970000001f0640018f000000840510003900000000005c004b000026e50000813d000000000007004b000026e10000613d00000000096c00190000000008650019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000026db0000c13d000000000006004b000026fb0000613d0000000008050019000026f10000013d0000000008750019000000000007004b000026ee0000613d00000000090c0019000000000a050019000000009b090434000000000aba043600000000008a004b000026ea0000c13d000000000006004b000026fb0000613d000000000c7c00190000000306600210000000000708043300000000076701cf000000000767022f00000000090c04330000010006600089000000000969022f00000000066901cf000000000676019f0000000000680435000000000554001900000000000504350000001f0440003900000d580440019700000064054000390000000000510435000000a30440003900000d58044001970000000003140019000000000043004b0000000004000039000000010400403900000c730030009c0000279d0000213d00000001004001900000279d0000c13d000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000402000029319331890000040f000000600310027000000c6604300198000027460000613d0000001f0340003900000c67033001970000003f0330003900000c7205300197000000400300043d0000000005530019000000000035004b0000000006000039000000010600403900000c730050009c0000279d0000213d00000001006001900000279d0000c13d000000400050043f0000001f0540018f000000000a43043600000c680640019800000000046a0019000027370000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000027330000c13d00060000000a001d000000000005004b000027470000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000027470000013d00000060030000390000000100200190000027a30000613d0000000001030433000000200010008c000027a30000413d00000ced0010009c0000279b0000213d000000200010008c0000279b0000413d0000000601000029000000000101043300000d800010009c000027a30000c13d000000000001042d000100000002001d0000006002400039000000000202043300030000000c001d00000000030c0433000000400400043d0000006005400039000000000015043500000040014000390000000000310435000000f80120027000000020024000390000000000120435000200000006001d0000000000640435000000000000043f00000c660040009c00000c66040080410000004001400210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d7f011001c70000000102000039319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0540018f00000020044001900000277e0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000277a0000c13d000000000005004b0000278b0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000000100200190000000030c000029000027a70000613d000000000100043d00000000020004150000000102200069000000000200000200000c6900100198000000000100601900000005040000290000000206000029000026c40000613d000000040110014f00000c6900100198000027540000613d000026c40000013d0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000d8101000041000000000010043f00000c750100004100003195000104300000001f0530018f00000c6806300198000000400200043d0000000004620019000027b20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027ae0000c13d000000000005004b000027bf0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000c0000000000020000000032010434000700000003001d00000d310020009c000029820000813d000c00000001001d0000012001100039000600000001001d0000000001010433000b00000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f0000000100200190000029750000613d0000000b0200002900000c6602200197000000000101043b000a00000001001d000b0000002100530000297e0000413d00000cf6010000410000000000100443000000000100041200000004001004430000008001000039000800000001001d0000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000029750000613d000000000101043b00000c66011001970000000b0010006b0000297e0000213d0000000c010000290000014001100039000500000001001d0000000001010433000b00000001001d00000cf601000041000000000010044300000000010004120000000400100443000000a0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000029750000613d000000000101043b00000c66011001970000000a05000029000000000051001a0000000c03000029000029bd0000413d0000000b0200002900000c66022001970000000001510019000000000012004b000029860000213d0000016001300039000000000101043300000c6602100198000000e004300039000400000004001d000028270000613d00000d820020009c0000281f0000813d00000c6601500197000000000212001900000c660020009c000029bd0000213d000300000002001d0000000001040433000000000001004b000028280000c13d00000d8301000041000000000010043f00000c75010000410000319500010430000300000000001d0000004001300039000a00000001001d0000000001010433000900000001001d00000cf6010000410000000000100443000000000100041200000004001004430000006001000039000b00000001001d0000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000029750000613d0000000002000416000000000101043b00000c69011001970000000903000029000000000013004b000028740000c13d000000000002004b0000000c01000029000028770000613d0000008001100039000200000001001d0000000001010433000000000012004b0000298a0000c13d00000d080100004100000000001004430000000400300443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000029750000613d0000000904000029000000000101043b000000000001004b000029760000613d000000400200043d00000d6701000041000000000012043500000c660020009c000b00000002001d00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d68011001c7000080090200003900000000030004160000000005000019319331840000040f0000000100200190000029c30000613d0000000b0f00002900000c7300f0009c0000000c0c000029000029780000213d0000004000f0043f000028fe0000013d000000000002004b0000000c010000290000298a0000c13d0000000a02000029000000000202043300000c690020009c000029820000213d0000008001100039000200000001001d0000000004010433000000400100043d00000064031000390000000000430435000000000300041000000c690430019700000044031000390000000000430435000000200510003900000d69030000410000000000350435000000000300041100000c6903300197000000240410003900000000003404350000006403000039000000000031043500000d6a0010009c000029780000813d000000a006100039000000400060043f00000d0d0060009c000029780000213d000000e003100039000000400030043f00000020030000390000000000360435000000c00310003900000d6b04000041000000000043043500000c660050009c00000c66050080410000004003500210000000000101043300000c660010009c00000c66010080410000006001100210000000000131019f000000000300041400000c660030009c00000c6603008041000000c003300210000000000131019f000900000002001d000100000006001d319331840000040f000000090a000029000000600310027000000c6603300198000028d80000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019000b00000005001d000000000054004b0000000005000039000000010500403900000c730040009c000029780000213d0000000100500190000029780000c13d000000400040043f0000001f0430018f0000000b05000029000000000935043600000c68053001980000000003590019000028ca0000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b000028c60000c13d000800000009001d000000000004004b000028d80000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000b01000029000000000101043300000001002001900000298e0000613d000000000001004b0000000c0c000029000028f30000c13d00000d080100004100000000001004430000000400a00443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000029750000613d000000000101043b000000000001004b000029e30000613d0000000b010000290000000001010433000000000001004b0000000c0c000029000029730000613d00000ced0010009c000029760000213d0000001f0010008c000029760000a13d00000008010000290000000001010433000000010010008c000029760000213d000000400f00043d000000000001004b000029a10000613d0000010001c000390000000006010433000000c001c0003900000000050104330000018001c0003900000000010104330000000a0200002900000000020204330000006003c00039000000000303043300000002040000290000000004040433000000a007c000390000000008070433000000060700002900000000090704330000000507000029000000000a0704330000000707000029000000000b07043300000000070c0433000000040c000029000000000c0c0433000001200df00039000001400e0000390000000000ed0435000001000df000390000000000cd0435000000e00cf000390000000000bc0435000000c00bf00039000000030c0000290000000000cb043500000c660aa00197000000a00bf000390000000000ab043500000c6609900197000000800af0003900000000009a04350000006009f0003900000000008904350000004008f0003900000000004804350000002004f00039000000000034043500000000002f04350000014002f000390000000041010434000000000012043500000d58091001970000001f0810018f0000016003f00039000000000034004b000029440000813d000000000009004b000029400000613d000000000b840019000000000a830019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c0000293a0000c13d000000000008004b0000295a0000613d000000000a030019000029500000013d000000000a930019000000000009004b0000294d0000613d000000000b040019000000000c03001900000000bd0b0434000000000cdc04360000000000ac004b000029490000c13d000000000008004b0000295a0000613d0000000004940019000000030880021000000000090a043300000000098901cf000000000989022f00000000040404330000010008800089000000000484022f00000000048401cf000000000494019f00000000004a04350000001f0410003900000d580240019700000000013100190000000000010435000001600120003900000c660010009c00000c6601008041000000600110021000000c6600f0009c00000c660f0080410000004002f00210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000ce8011001c70000800d02000039000000040300003900000d6f04000041319331840000040f0000000100200190000029760000613d000000000001042d000000400f00043d000028fe0000013d000000000001042f0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000d7101000041000000000010043f00000c7501000041000031950001043000000d3201000041000000000010043f00000c7501000041000031950001043000000d8401000041000000000010043f00000c7501000041000031950001043000000d6601000041000000000010043f00000c75010000410000319500010430000000000001004b000029b40000c13d000000400200043d000c00000002001d00000c6c0100004100000000001204350000000401200039000000010200002931931fd10000040f0000000c02000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f00003195000104300000006401f0003900000d6c0200004100000000002104350000004401f0003900000d6d0200004100000000002104350000002401f000390000002a02000039000000000021043500000c6c0100004100000000001f04350000000401f000390000002002000039000000000021043500000c6600f0009c00000c660f0080410000004001f0021000000c6d011001c70000319500010430000000080200002900000c660020009c00000c6602008041000000400220021000000c660010009c00000c66010080410000006001100210000000000121019f000031950001043000000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d01000041000031950001043000000060061002700000001f0460018f00000c6805600198000000400200043d0000000003520019000029cf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000029cb0000c13d00000c6606600197000000000004004b000029dd0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c70000319500010430000000000100041a0000ff0000100190000029f80000613d000000000001042d000000400100043d000000640210003900000d12030000410000000000320435000000440210003900000d1303000041000000000032043500000024021000390000002b03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c70000319500010430000000000100041a0000ff000010019000002a130000613d00000001010000390000006502000039000000000012041b000000000001042d000000400100043d000000640210003900000d12030000410000000000320435000000440210003900000d1303000041000000000032043500000024021000390000002b03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c690510019800002a3a0000613d0000086901000039000000000201041a00000d0c02200197000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d0e04000041319331840000040f000000010020019000002a3e0000613d000000000001042d00000d1101000041000000000010043f00000c750100004100003195000104300000000001000019000031950001043000000c690510019800002a530000613d0000086a01000039000000000201041a00000d0c02200197000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d0f04000041319331840000040f000000010020019000002a570000613d000000000001042d00000d1001000041000000000010043f00000c75010000410000319500010430000000000100001900003195000104300003000000000002000000400400043d00000044054000390000000000350435000000200340003900000d3e05000041000000000053043500000c6902200197000000240540003900000000002504350000004402000039000000000024043500000d630040009c00002ad50000813d0000008005400039000000400050043f00000d0d0050009c00002ad50000213d00000c6902100197000000c001400039000000400010043f0000002001000039000200000005001d0000000000150435000000a00140003900000d6b05000041000000000051043500000c660030009c00000c66030080410000004001300210000000000304043300000c660030009c00000c66030080410000006003300210000000000113019f000000000300041400000c660030009c00000c6603008041000000c003300210000000000131019f000300000002001d319331840000040f000000600310027000000c660330019800002aad0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400a00043d00000000044a00190000000000a4004b0000000005000039000000010500403900000c730040009c00002ad50000213d000000010050019000002ad50000c13d000000400040043f0000001f0430018f00000000093a043600000c6805300198000000000359001900002a9f0000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b00002a9b0000c13d000000000004004b00002aaf0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500002aaf0000013d000000600a000039000000800900003900000000010a0433000000010020019000002add0000613d000000000001004b00002acb0000c13d00020000000a001d000100000009001d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002b0c0000613d000000000101043b000000000001004b000000020100002900002b0d0000613d0000000001010433000000000001004b000000010900002900002ad40000613d00000ced0010009c00002adb0000213d0000001f0010008c00002adb0000a13d0000000001090433000000010010008c00002adb0000213d000000000001004b00002af00000613d000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000000010000190000319500010430000000000001004b00002b040000c13d000000400200043d000300000002001d00000c6c0100004100000000001204350000000401200039000000020200002931931fd10000040f0000000302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f0000319500010430000000400100043d000000640210003900000d6c030000410000000000320435000000440210003900000d6d03000041000000000032043500000024021000390000002a03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c660090009c00000c6609008041000000400290021000000c660010009c00000c66010080410000006001100210000000000121019f0000319500010430000000000001042f000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c700003195000104300011000000000002001000000004001d000500000003001d00000000040100190000000013020434000f00000003001d0000000001010433000800000001001d00000040012000390000000001010433000a00000001001d00000100012000390000000001010433000400000001001d000000e0012000390000000001010433000300000001001d000000a0014000390000000001010433000b00000001001d000000c0012000390000000001010433000c00000001001d000000a0012000390000000001010433000d00000001001d00000080012000390000000001010433000e00000001001d00000060012000390000000001010433000900000001001d00000140012000390000000001010433000700000001001d00000120012000390000000001010433000600000001001d000001600120003900000000010104330000000012010434000000000002004b001100000004001d00002b5e0000613d00000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000002bda0000613d000000000901043b000000110400002900002b5f0000013d000000000900001900000060014000390000000005010433000000800140003900000000010104330000000012010434000000000002004b00002bd00000613d000100000005001d000200000009001d00000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000002bda0000613d000000000201043b000000110400002900000002090000290000000105000029000000400100043d00000d630010009c00002bd40000813d000000400340003900000000040304330000008003100039000000400030043f00000040031000390000000000430435000000000451043600000000002404350000001002000029000000030020008c00002bdc0000813d000000070500002900000c6606500197000000060500002900000c660750019700000060051000390000000000250435000000400200043d0000014008200039000000000098043500000120082000390000000809000029000000000098043500000100082000390000000f090000290000000000980435000000e0082000390000000a090000290000000000980435000000c0082000390000000000680435000000a006200039000000000076043500000080062000390000000b07000029000000000076043500000060062000390000000c07000029000000000076043500000040062000390000000d07000029000000000076043500000020062000390000000e070000290000000000760435000000090600002900000000006204350000000001010433000001600620003900000000001604350000000001040433000001800420003900000000001404350000000001030433000001a00320003900000000001304350000000001050433000000020010008c00002bdc0000213d000001c003200039000000000013043500000c660020009c00000c66020080410000004001200210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d75011001c70000800d02000039000000040300003900000d7604000041000000030500002900000004060000290000000507000029319331840000040f000000010020019000002bda0000613d000000000001042d0000000002000019000000400100043d00000d630010009c00002b800000413d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000000001000019000031950001043000000d3f01000041000000000010043f0000002101000039000000040010043f00000d3d0100004100003195000104300008000000000002000400000003001d00000080022000390000000002020433000700000002001d00000d310020009c00002f570000813d00000060021000390000000002020433000800000002001d00000c690020009c00002f570000213d000500000001001d00000040011000390000000001010433000600000001001d00000cf60100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000002f4e0000613d000000000101043b00000c6901100197000000070010006b00002c5f0000c13d000000040000006b00002d5d0000c13d000000400100043d000000640210003900000006030000290000000000320435000000000200041000000c690220019700000044031000390000000000230435000000200210003900000d69030000410000000000320435000000000300041100000c6903300197000000240410003900000000003404350000006403000039000000000031043500000d7b0010009c00002f4f0000213d000000a004100039000000400040043f00000d0d0040009c00002f4f0000213d000000e003100039000000400030043f0000002003000039000400000004001d0000000000340435000000c00310003900000d6b04000041000000000043043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000702000029319331840000040f000000600310027000000c660330019800002d360000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400a00043d00000000044a00190000000000a4004b0000000005000039000000010500403900000c730040009c00002f4f0000213d000000010050019000002f4f0000c13d000000400040043f0000001f0430018f00000000093a043600000c6805300198000000000359001900002c510000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b00002c4d0000c13d000000000004004b00002d380000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500002d380000013d000000400100043d000000440310003900000024041000390000002002100039000000040000006b00002cda0000613d00000d3e05000041000000000052043500000008050000290000000000540435000000060400002900000000004304350000004403000039000000000031043500000d630010009c00002f4f0000813d0000008004100039000000400040043f00000d0d0040009c00002f4f0000213d000000c003100039000000400030043f0000002003000039000400000004001d0000000000340435000000a00310003900000d6b04000041000000000043043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000702000029319331840000040f000000600310027000000c660330019800002d2d0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d00000000044500190000000009050019000000000054004b0000000005000039000000010500403900000c730040009c00002f4f0000213d000000010050019000002f4f0000c13d000000400040043f0000001f0430018f000000000a39043600000c680530019800000000035a001900002ca70000613d000000000601034f00000000070a0019000000006806043c0000000007870436000000000037004b00002ca30000c13d000000000004004b00002cb40000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000005030000290000000001090433000000010020019000002d330000613d000000000001004b00002cd20000c13d00030000000a001d000400000009001d00000d0801000041000000000010044300000007010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b00002f7b0000613d00000004010000290000000001010433000000000001004b0000000503000029000000030a00002900002ecb0000613d00000ced0010009c00002f550000213d0000001f0010008c00002f550000a13d00000000010a0433000000010010008c00002e820000a13d00002f550000013d00000d69050000410000000000520435000000000500041100000c69055001970000000000540435000000080400002900000000004304350000006403100039000000060400002900000000004304350000006403000039000000000031043500000d7b0010009c00002f4f0000213d000000a004100039000000400040043f00000d0d0040009c00002f4f0000213d000000e003100039000000400030043f0000002003000039000400000004001d0000000000340435000000c00310003900000d6b04000041000000000043043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000702000029319331840000040f000000600310027000000c660330019800002e5b0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400a00043d00000000044a00190000000000a4004b0000000005000039000000010500403900000c730040009c00002f4f0000213d000000010050019000002f4f0000c13d000000400040043f0000001f0430018f00000000093a043600000c6805300198000000000359001900002d1f0000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b00002d1b0000c13d000000000004004b00002e5d0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500002e5d0000013d000000800a000039000000050300002900000060090000390000000001090433000000010020019000002cb80000c13d000000000001004b00002f6a0000613d00002f7f0000013d000000600a000039000000800900003900000000010a0433000000010020019000002f680000613d000000000001004b00002d540000c13d00040000000a001d000300000009001d00000d0801000041000000000010044300000007010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b000000040100002900002f7b0000613d0000000001010433000000000001004b000000030900002900002d5d0000613d00000ced0010009c00002f550000213d000000200010008c00002f550000413d0000000001090433000000010010008c00002f550000213d000000000001004b00002e840000613d0000000001000415000400000001001d00000d0801000041000000000010044300000008010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b00000cf60200004100000000002004430000000002000412000000040020044300000060020000390000002400200443000000000001004b00002dfa0000613d000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000002f4e0000613d000000000301043b000000400100043d000000440210003900000006040000290000000000420435000000200610003900000d3e0400004100000000004604350000002404100039000000080500002900000000005404350000004404000039000000000041043500000ceb0010009c00002f4f0000213d0000008004100039000000400040043f00000d0d0040009c00002f4f0000213d00000c6902300197000000c003100039000000400030043f0000002003000039000200000004001d0000000000340435000000a00310003900000d6b04000041000000000043043500000c660060009c00000c66060080410000004003600210000000000101043300000c660010009c00000c66010080410000006001100210000000000131019f000000000300041400000c660030009c00000c6603008041000000c003300210000000000131019f000300000002001d319331840000040f000000600310027000000c660330019800002e4c0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400900043d0000000004490019000000000094004b0000000005000039000000010500403900000c730040009c00002f4f0000213d000000010050019000002f4f0000c13d000000400040043f0000001f0430018f000000000a39043600000c680530019800000000035a001900002dc50000613d000000000601034f00000000070a0019000000006806043c0000000007870436000000000037004b00002dc10000c13d000000000004004b00002dd20000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000005030000290000000001090433000000010020019000002e520000613d000000000001004b00002df00000c13d00010000000a001d000200000009001d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b000000020100002900002f7b0000613d0000000001010433000000000001004b0000000503000029000000010a00002900002ec80000613d00000ced0010009c00002f550000213d000000200010008c00002f550000413d00000000010a0433000000010010008c00002f550000213d000000000001004b00002ec80000c13d00002e840000013d000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000002f4e0000613d000000000101043b00000d0802000041000000000020044300000c6901100197000300000001001d0000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b00002f550000613d000000400300043d00000d4c01000041000000000013043500000004013000390000000602000029000000000021043500000c660030009c000200000003001d00000c660100004100000000010340190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d3d011001c70000000302000029319331840000040f000000010020019000002f8b0000613d000000020100002900000c730010009c00002f4f0000213d000000400010043f0000000001000415000300000001001d00000d7401000041000000000010044300000000010004100000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800a02000039319331890000040f000000010020019000002f4e0000613d000000000101043b0000000603000029000000000031004b00002fab0000413d000000000100041400000c660010009c00000c6601008041000000c001100210000000000003004b00002e980000613d00000ce8011001c700008009020000390000000804000029000000000500001900002e990000013d000000800a000039000000050300002900000060090000390000000001090433000000010020019000002dd60000c13d000000000001004b00002f7f0000c13d000000400200043d000800000002001d00000c6c0100004100000000001204350000000401200039000000020200002900002f700000013d000000600a0000390000008009000039000000050300002900000000010a0433000000010020019000002f680000613d000000000001004b00002e7b0000c13d00040000000a001d000300000009001d00000d0801000041000000000010044300000007010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b000000040100002900002f7b0000613d0000000001010433000000000001004b0000000503000029000000030900002900002ecb0000613d00000ced0010009c00002f550000213d000000200010008c00002f550000413d0000000001090433000000010010008c00002f550000213d000000000001004b00002ecb0000c13d000000400100043d000000640210003900000d6c030000410000000000320435000000440210003900000d6d03000041000000000032043500000024021000390000002a03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c700003195000104300000000802000029319331840000040f000000600310027000000c660330019800002ec20000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019000000000054004b0000000006000039000000010600403900000c730040009c00002f4f0000213d000000010060019000002f4f0000c13d000000400040043f0000001f0430018f000000000635043600000c6805300198000000000356001900002eb50000613d000000000701034f000000007807043c0000000006860436000000000036004b00002eb10000c13d000000000004004b00002ec20000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000010020019000002fbc0000613d000000000100041500000003011000690000000001000002000000050300002900000000010004150000000401100069000000000100000200000080013000390000000001010433000400000001001d0000000021010434000500000002001d000000000001004b00002f4d0000613d00000d0801000041000000000010044300000008010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b00002f4d0000613d00000d0801000041000000000010044300000008010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b000000050a00002900002f550000613d000000400b00043d0000006401b0003900000080020000390000000000210435000000000100041100000c69011001970000004402b0003900000000001204350000002401b000390000000602000029000000000021043500000d870100004100000000001b04350000000401b00039000000070200002900000000002104350000008402b0003900000004010000290000000001010433000000000012043500000d58051001970000001f0410018f000000a403b0003900000000003a004b00002f1c0000813d000000000005004b00002f180000613d00000000074a00190000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c00002f120000c13d000000000004004b00002f320000613d000000000603001900002f280000013d0000000006530019000000000005004b00002f250000613d00000000070a0019000000000803001900000000790704340000000008980436000000000068004b00002f210000c13d000000000004004b00002f320000613d000000000a5a00190000000304400210000000000506043300000000054501cf000000000545022f00000000070a04330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000001f0410003900000d580240019700000000013100190000000000010435000000a40120003900000c660010009c00000c6601008041000000600110021000000c6600b0009c00000c660200004100000000020b40190000004002200210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f000000080200002900080000000b001d319331840000040f000000010020019000002f5b0000613d000000080100002900000c730010009c00002f4f0000213d000000400010043f000000000001042d000000000001042f00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000000001000019000031950001043000000d3201000041000000000010043f00000c7501000041000031950001043000000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900002f970000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00002f630000c13d00002f970000013d000000000001004b00002f830000c13d000000400200043d000800000002001d00000c6c0100004100000000001204350000000401200039000000040200002931931fd10000040f0000000802000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f0000319500010430000000400100043d000000440210003900000d700300004100002fae0000013d00000c6600a0009c00000c660a0080410000004002a0021000002f860000013d00000c660090009c00000c6609008041000000400290021000000c660010009c00000c66010080410000006001100210000000000121019f000031950001043000000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900002f970000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00002f930000c13d00000c6606600197000000000004004b00002fa50000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000000400100043d000000440210003900000d8803000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c70000319500010430000000400100043d000000640210003900000d85030000410000000000320435000000440210003900000d8603000041000000000032043500000024021000390000003a0300003900002e8d0000013d0003000000000002000100000003001d000200000002001d00000d08020000410000000000200443000300000001001d0000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f00000001002001900000304e0000613d000000000101043b000000000001004b0000304f0000613d000000030100002900000c690510019700000d1a01000041000000000201041a00000d0c02200197000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d8904000041319331840000040f0000000100200190000030630000613d0000000205000029000000001205043400000001002001b00000304d0000613d000000400400043d00000d8a0040009c000030650000813d0000006002400039000000400020043f000000400240003900000d8b030000410000000000320435000000200240003900000d8c0300004100000000003204350000002702000039000100000004001d000000000024043500000c660010009c00000c66010080410000004001100210000000000205043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000003020000293193318e0000040f000000600310027000000c6605300198000030360000613d0000001f0350003900000c67033001970000003f0330003900000c7204300197000000400300043d0000000004430019000000000034004b0000000006000039000000010600403900000c730040009c000030650000213d0000000100600190000030650000c13d000000400040043f0000001f0650018f000000000453043600000c68075001980000000005740019000030280000613d000000000801034f0000000009040019000000008a08043c0000000009a90436000000000059004b000030240000c13d000000000006004b000030380000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f0000000000150435000030380000013d00000060030000390000008004000039000000000103043300000001002001900000306b0000613d000000000001004b0000304d0000c13d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f00000001002001900000304e0000613d000000000101043b000000000001004b000030860000613d000000000001042d000000000001042f000000400100043d000000640210003900000d27030000410000000000320435000000440210003900000d2803000041000000000032043500000024021000390000002d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c700003195000104300000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000000001004b0000307e0000c13d000000400200043d000300000002001d00000c6c0100004100000000001204350000000401200039000000010200002931931fd10000040f0000000302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f000031950001043000000c660040009c00000c6604008041000000400240021000000c660010009c00000c66010080410000006001100210000000000121019f0000319500010430000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c700003195000104300003000000000002000000400400043d00000c710040009c000031090000813d00000c69051001970000004001400039000000400010043f000000200140003900000d6b0300004100000000003104350000002001000039000200000004001d0000000000140435000000200120003900000c660010009c00000c66010080410000004001100210000000000202043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f000300000005001d0000000002050019319331840000040f000000600310027000000c6603300198000030df0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400a00043d00000000044a00190000000000a4004b0000000005000039000000010500403900000c730040009c000031090000213d0000000100500190000031090000c13d000000400040043f0000001f0430018f00000000093a043600000c68053001980000000003590019000030d10000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b000030cd0000c13d000000000004004b000030e10000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000030e10000013d000000600a000039000000800900003900000000010a043300000001002001900000310f0000613d000000000001004b000030fd0000c13d00020000000a001d000100000009001d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f00000001002001900000313e0000613d000000000101043b000000000001004b00000002010000290000313f0000613d0000000001010433000000000001004b0000000109000029000031060000613d00000ced0010009c000031070000213d0000001f0010008c000031070000a13d0000000001090433000000010010008c000031070000213d000000000001004b000031220000613d000000000001042d0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000000001004b000031360000c13d000000400200043d000300000002001d00000c6c0100004100000000001204350000000401200039000000020200002931931fd10000040f0000000302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f0000319500010430000000400100043d000000640210003900000d6c030000410000000000320435000000440210003900000d6d03000041000000000032043500000024021000390000002a03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c660090009c00000c6609008041000000400290021000000c660010009c00000c66010080410000006001100210000000000121019f0000319500010430000000000001042f000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c70000319500010430000000000001042f00000c660010009c00000c6601008041000000400110021000000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f0000000100200190000031640000613d000000000101043b000000000001042d0000000001000019000031950001043000000000050100190000000000200443000000050030008c000031740000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b0000316c0000413d00000c660030009c00000c66030080410000006001300210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d8d011001c70000000002050019319331890000040f0000000100200190000031830000613d000000000101043b000000000001042d000000000001042f00003187002104210000000102000039000000000001042d0000000002000019000000000001042d0000318c002104230000000102000039000000000001042d0000000002000019000000000001042d00003191002104250000000102000039000000000001042d0000000002000019000000000001042d0000319300000432000031940001042e00003195000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff616c697a696e6700000000000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320696e69746908c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000000000000000000000002000000000000000000000000000000000000200000000000000000000000007f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024984690484000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc000000000000000000000000000000000000000000000000000000003ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff5110d7910000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000200000000000000000000000000000340000001000000000000000000000000000000000000000000000000000000000000000000000000007659f9df00000000000000000000000000000000000000000000000000000000adb5a6a500000000000000000000000000000000000000000000000000000000dda5211200000000000000000000000000000000000000000000000000000000e322921000000000000000000000000000000000000000000000000000000000ee2a53f700000000000000000000000000000000000000000000000000000000ee2a53f800000000000000000000000000000000000000000000000000000000f79f29ed00000000000000000000000000000000000000000000000000000000fc8a584f00000000000000000000000000000000000000000000000000000000e322921100000000000000000000000000000000000000000000000000000000ea86bd4600000000000000000000000000000000000000000000000000000000de7eba7700000000000000000000000000000000000000000000000000000000de7eba7800000000000000000000000000000000000000000000000000000000deff4b2400000000000000000000000000000000000000000000000000000000dda5211300000000000000000000000000000000000000000000000000000000ddd224f100000000000000000000000000000000000000000000000000000000c35c83fb00000000000000000000000000000000000000000000000000000000d513cb6500000000000000000000000000000000000000000000000000000000d513cb6600000000000000000000000000000000000000000000000000000000d7e1583a00000000000000000000000000000000000000000000000000000000c35c83fc00000000000000000000000000000000000000000000000000000000ceb4c98700000000000000000000000000000000000000000000000000000000b4c0d7aa00000000000000000000000000000000000000000000000000000000b4c0d7ab00000000000000000000000000000000000000000000000000000000babb6aac00000000000000000000000000000000000000000000000000000000adb5a6a600000000000000000000000000000000000000000000000000000000b370b7f5000000000000000000000000000000000000000000000000000000009748cf7b000000000000000000000000000000000000000000000000000000009a8a059100000000000000000000000000000000000000000000000000000000a18a096d00000000000000000000000000000000000000000000000000000000a18a096e00000000000000000000000000000000000000000000000000000000ac9650d800000000000000000000000000000000000000000000000000000000ad5425c6000000000000000000000000000000000000000000000000000000009a8a059200000000000000000000000000000000000000000000000000000000a1244c6700000000000000000000000000000000000000000000000000000000979f2bc100000000000000000000000000000000000000000000000000000000979f2bc20000000000000000000000000000000000000000000000000000000099cc2968000000000000000000000000000000000000000000000000000000009748cf7c0000000000000000000000000000000000000000000000000000000097943aa9000000000000000000000000000000000000000000000000000000007ef413e0000000000000000000000000000000000000000000000000000000008a7860cd000000000000000000000000000000000000000000000000000000008a7860ce000000000000000000000000000000000000000000000000000000008b15788e000000000000000000000000000000000000000000000000000000007ef413e10000000000000000000000000000000000000000000000000000000082e2c43f000000000000000000000000000000000000000000000000000000007aef642b000000000000000000000000000000000000000000000000000000007aef642c000000000000000000000000000000000000000000000000000000007b939232000000000000000000000000000000000000000000000000000000007659f9e000000000000000000000000000000000000000000000000000000000775c0d0300000000000000000000000000000000000000000000000000000000437b91150000000000000000000000000000000000000000000000000000000057f6dcb700000000000000000000000000000000000000000000000000000000670fa8ab000000000000000000000000000000000000000000000000000000006e400982000000000000000000000000000000000000000000000000000000006e400983000000000000000000000000000000000000000000000000000000006fd5c10e00000000000000000000000000000000000000000000000000000000738b62e500000000000000000000000000000000000000000000000000000000670fa8ac000000000000000000000000000000000000000000000000000000006bbbcd2e0000000000000000000000000000000000000000000000000000000061a04d2f0000000000000000000000000000000000000000000000000000000061a04d3000000000000000000000000000000000000000000000000000000000647c576c0000000000000000000000000000000000000000000000000000000057f6dcb8000000000000000000000000000000000000000000000000000000006068d6cb000000000000000000000000000000000000000000000000000000005285e05700000000000000000000000000000000000000000000000000000000541f4f1300000000000000000000000000000000000000000000000000000000541f4f1400000000000000000000000000000000000000000000000000000000577f51f8000000000000000000000000000000000000000000000000000000005285e0580000000000000000000000000000000000000000000000000000000052d1902d00000000000000000000000000000000000000000000000000000000493a4f8300000000000000000000000000000000000000000000000000000000493a4f84000000000000000000000000000000000000000000000000000000004f1ef28600000000000000000000000000000000000000000000000000000000437b911600000000000000000000000000000000000000000000000000000000490e49ef000000000000000000000000000000000000000000000000000000001b3d5558000000000000000000000000000000000000000000000000000000002e63e599000000000000000000000000000000000000000000000000000000003a90dc84000000000000000000000000000000000000000000000000000000003a90dc85000000000000000000000000000000000000000000000000000000003f00627b000000000000000000000000000000000000000000000000000000002e63e59a000000000000000000000000000000000000000000000000000000003659cfe60000000000000000000000000000000000000000000000000000000029cb924c0000000000000000000000000000000000000000000000000000000029cb924d000000000000000000000000000000000000000000000000000000002e378115000000000000000000000000000000000000000000000000000000001b3d5559000000000000000000000000000000000000000000000000000000001fab657c0000000000000000000000000000000000000000000000000000000012622e5a0000000000000000000000000000000000000000000000000000000017fcb39a0000000000000000000000000000000000000000000000000000000017fcb39b0000000000000000000000000000000000000000000000000000000019c1648c0000000000000000000000000000000000000000000000000000000012622e5b0000000000000000000000000000000000000000000000000000000015348e44000000000000000000000000000000000000000000000000000000001186ec32000000000000000000000000000000000000000000000000000000001186ec330000000000000000000000000000000000000000000000000000000011eac85500000000000000000000000000000000000000000000000000000000079bd2c7000000000000000000000000000000000000000000000000000000000cb84d9affffffffffffffffffffffffeeeeffffffffffffffffffffffffffffffffeeef0000000000000000000000000000000000000040000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000ffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000800000000000000000000000ff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c097ce7bc90715b34b9f10000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000001ffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff40000000000000000000000000000000000000000000000003ffffffffffffffe09a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b020000000000000000000000000000000000000000000000000000000000000045e04bc8f121ba11466985789ca2822a91109f31bb8ac85504a37b7eaf873c2600000000000000000000000000000000000000000000003fffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7f80000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000400000000000000000000000006c172ea51018fb2eb2118f3f8a507c4df71eb519b8c0052834dc3c920182fef4d950afdc00000000000000000000000000000000000000000000000000000000ffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000200000008000000000000000002d5b62420992e5a4afce0e77742636ca2608ef58289fd2e1baa5161ef6e7e41e4143524f53532d56320000000000000000000000000000000000000000000000312e302e30000000000000000000000000000000000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e000000000000000000000000000000000000000000000000fffffffffffffe5f8e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b38e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b27c1af0646963afc3343245b103731965735a893347bfa0d58a5dc77a77ae691c000000000000000000000000000000000000000000000000fffffffffffffee00200000000000000000000000000000000000000000000a000000000000000001e191e8e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdfdeff4b2400000000000000000000000000000000000000000000000000000000b8fe37a70000000000000000000000000000000000000000000000000000000091d7e1520000000000000000000000000000000000000000000000000000000041a941b8313293eca483f41d8faa2498e005e6d7700e2e93f41d3cb7e70a897d7f5e6be5000000000000000000000000000000000000000000000000000000009d276a4200000000000000000000000000000000000000000000000000000000ffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe88463c2f254e2b070013a2dc7ee1e099f9bc00534cbdf03af551dc26ae492198d1994e2bbbd77564cdca06dd819e7ee2a5efa06c80dcb59a4a7b6e39edc538f1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000647920696e697469616c697a6564000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c726561ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbfa9e8c42c9e7fca7f62755189a16b2f5314d43d8fb24e91ba54e6d65f9314e849a73e8909f8616742d7fe701153d82666f7b7cd480552e23ebb05d358c22fd04eb606125600000000000000000000000000000000000000000000000000000000ba97b39d000000000000000000000000000000000000000000000000000000006e697469616c697a696e67000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420690000000000000000000000000000000000000000000000008000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000007fffffffffffffff02000002000000000000000000000000000000440000000000000000000000006c6564207468726f7567682064656c656761746563616c6c0000000000000000555550535570677261646561626c653a206d757374206e6f742062652063616c360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914352d1902d000000000000000000000000000000000000000000000000000000006961626c6555554944000000000000000000000000000000000000000000000045524331393637557067726164653a20756e737570706f727465642070726f78c86ba04c55bc5eb2f2876b91c438849a296dbec7b08751c3074d92e04f0a77af0000000000000000000000000000000000000000000000000000000001e13380000000000000000000000000000000000000000000000000ffffffffffffff3f00000000000000000000000000000000000000000000000000000000000100036163746976652070726f7879000000000000000000000000000000000000000046756e6374696f6e206d7573742062652063616c6c6564207468726f756768204f4e4c595f434f554e544552504152545f47415445574159000000000000000000000000000000000000000000000000000000640000000000000000000000006f74206120636f6e747261637400000000000000000000000000000000000000455243313936373a206e657720696d706c656d656e746174696f6e206973206e64656c656761746563616c6c000000000000000000000000000000000000000009deb9ec00000000000000000000000000000000000000000000000000000000012f9e440000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000001400000000000000000000000003cee3e290f36226751cd0b3321b213890fe9c768e922f267fa6111836ce05c32000000000000000000000000000000000000000000000000fffffffffffffdc07b21f8aa00000000000000000000000000000000000000000000000000000000c3a9b9d0000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000f3d81dae00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff9f8f260c6000000000000000000000000000000000000000000000000000000000d642b7d9000000000000000000000000000000000000000000000000000000007a47c9a200000000000000000000000000000000000000000000000000000000b05e92fa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff8e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b1954476d900000000000000000000000000000000000000000000000000000000cd298b380000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000005bb550620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100044a2e35ba00000000000000000000000000000000000000000000000000000000dd62ed3e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000095ea7b300000000000000000000000000000000000000000000000000000000cb75c11c00000000000000000000000000000000000000000000000000000000a56ec632000000000000000000000000000000000000000000000000000000008e0250ee0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e40000000000000000000000006fd3504e00000000000000000000000000000000000000000000000000000000d9caed12000000000000000000000000000000000000000000000000000000002e1a7d4d0000000000000000000000000000000000000000000000000000000051cff8d9000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000024000000000000000000000000fa7fa7cf6d7dde5f9be65a67e6a1a747e7aa864dcd2d793353c722d80fbbb357f4ad92585b1bc117fbdd644990adf0827bc4c95baeae8a23322af807b6d0020e0000000000000000000000000000000000000064000000800000000000000000fc0c546a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000800000000000000000a63e8c6b00000000000000000000000000000000000000000000000000000000323983f5343e25b2c1396361b1b791be31484841fdfb95b8615cd02d910b1e085265656e7472616e637947756172643a207265656e7472616e742063616c6c005a65d18800000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0001ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff000000000000000000000000000000000000000000000000fffffffffffffe600000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000ffffffffffffffe0000000000000000000000000000000000000000000000000fffffffffffffe800000000000000000000000000000000000000000000000000000000100000000ffff00ff00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff8000000000000000000000000000000000000000000000000006f05b59d3b200000000000000000000000000000000000000c097ce7bc90715b34b9f10000000016452a35d00000000000000000000000000000000000000000000000000000000d0e30db000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000400000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff605361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65646f742073756363656564000000000000000000000000000000000000000000005361666545524332303a204552433230206f7065726174696f6e20646964206e0000000000000000000000000000000000000000000000000de0b6b3a764000032ed1a409ef04c7b0227189c3a103dc5ac10e775a15b785dcc510201f7c25ad3416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000f722177f00000000000000000000000000000000000000000000000000000000c45b6b5200000000000000000000000000000000000000000000000000000000a13c425c000000000000000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000000000000000000000000000000000001e000000000000000000000000044b559f101f8fbcc8a0ea43fa91a05a729a5ea6e14a7c75aa7503746901372086f6e206973206e6f74205555505300000000000000000000000000000000000045524331393637557067726164653a206e657720696d706c656d656e74617469000000000000000000000000000000000000000000000000ffffffffffffff20c2f8787176b8ac6bf7215b4adcc1e069bf4ab82d9ab1df05a57a91d425935b6e000000000000000000000000000000000000000000000000ffffffffffffff5f190100000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000420000000000000000000000007fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a100000000000000000000000000000000000000800000000000000000000000001626ba7e00000000000000000000000000000000000000000000000000000000938a1821000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e13381495d907f00000000000000000000000000000000000000000000000000000000582e3889000000000000000000000000000000000000000000000000000000006563697069656e74206d61792068617665207265766572746564000000000000416464726573733a20756e61626c6520746f2073656e642076616c75652c20723a5be8cb00000000000000000000000000000000000000000000000000000000416464726573733a20696e73756666696369656e742062616c616e6365000000bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b000000000000000000000000000000000000000000000000ffffffffffffffa0206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c0200000200000000000000000000000000000000000000000000000000000000000000000000000000a2646970667358221220c3696bd7417e243db26cd77c60b2bfa8f5e085102d4143b163f44fbe155e464664736f6c6378247a6b736f6c633a312e352e31353b736f6c633a302e382e33303b6c6c766d3a312e302e320055",
+ "deployedBytecode": "0x000200000000000200300000000000020001000000010355000000600310027000000c660030019d00000c66083001970000000100200190000000a60000c13d0000008002000039000000400020043f000000040080008c000001300000413d000000000201043b000000e00220027000000c770020009c000001340000a13d00000c780020009c000001680000213d00000c910020009c000001a30000a13d00000c920020009c000002e20000a13d00000c930020009c000009310000a13d00000c940020009c00000afb0000613d00000c950020009c00000b2c0000613d00000c960020009c00001e880000c13d000001840080008c00001e880000413d000000e402100370000000000202043b000d00000002001d000000c402100370000000000202043b000e00000002001d000000a402100370000000000202043b000f00000002001d0000008402100370000000000202043b001000000002001d0000006402100370000000000202043b001100000002001d0000004402100370000000000202043b001200000002001d0000002402100370000000000202043b001300000002001d0000000402100370000000000202043b000c00000002001d0000010402100370000000000202043b000b00000002001d00000c660020009c00001e880000213d0000012402100370000000000202043b000a00000002001d00000c660020009c00001e880000213d0000014402100370000000000202043b000900000002001d00000c660020009c00001e880000213d0000016402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000403200039000000000131034f000000000101043b000800000001001d00000c730010009c00001e880000213d0000002402200039000700000002001d0000000801200029000000000081004b00001e880000213d0000000001000415000600000001001d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d000000c00110027000000c6601100197000500000001001d319321a70000040f0000086b03000039000000000203041a00000cde02200197000000c00110021000000cdf01100197000000000112019f000000000013041b31931f1d0000040f0000000003010019000400000001001d00000160011000390000000902000029000000000021043500000140013000390000000a02000029000000000021043500000120013000390000000b020000290000000000210435000001000130003900000005020000290000000000210435000000e0013000390000000d020000290000000000210435000000c0013000390000000e020000290000000000210435000000a0013000390000000f0200002900000000002104350000008001300039000000100200002900000000002104350000006001300039000000110200002900000000002104350000004001300039000000120200002900000000002104350000002001300039000000130200002900000000002104350000000c01000029000000000013043500000000030000310000000701000029000000080200002931931f290000040f0000000403000029000001800230003900000000001204350000000001030019319327c50000040f00000001010000390000006502000039000000000012041b00000000010004150000000602000029000016b30000013d0000020003000039000000400030043f0000000002000416000000000002004b00001e880000c13d0000001f0280003900000c67022001970000020002200039000000400020043f0000001f0480018f00000c68058001980000020002500039000000b80000613d000000000601034f000000006706043c0000000003730436000000000023004b000000b40000c13d000000000004004b000000c50000613d000000000151034f0000000303400210000000000402043300000000043401cf000000000434022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f0000000000120435000000e00080008c00001e880000413d000002000100043d00000c690010009c00001e880000213d000002200600043d00000c690060009c00001e880000213d000002400200043d001300000002001d00000c690020009c00001e880000213d000002800200043d001200000002001d00000c690020009c00001e880000213d000002a00200043d00000c660020009c00001e880000213d000002c00300043d00000c660030009c00001e880000213d00000c6901100197000002600500043d0000000004000410000000800040043f000000c00000043f000000a00000043f000000e00010043f000001000020043f000001200030043f000000000100041a0000ff0000100190000010a90000c13d001000000005001d000000ff0210018f000000ff0020008c001100000006001d000001010000613d000000ff011001bf000000000010041b000000ff01000039000000400200043d000000000012043500000c660020009c00000c66020080410000004001200210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c6e011001c70000800d02000039000000010300003900000c6f04000041319331840000040f0000001106000029000000010020019000001e880000613d000001600060043f0000001201000029000001800010043f000001400000043f0000000402000039000000400100043d000000000421043600000c7003000041000000000034043500000c710010009c00000efc0000813d000000120200002900000c69022001970000004003100039000000400030043f00000c660040009c00000c66040080410000004003400210000000000101043300000c660010009c00000c66010080410000006001100210000000000113019f000000000300041400000c660030009c00000c6603008041000000c003300210000000000113019f001200000002001d319331890000040f000000600310027000000c6605300198000011d90000c13d00000060030000390000008004000039000000110100002900000c69051001970000000100200190000011920000613d0000000001030433000000200010008c000011920000c13d000000000104043300000c69001001980000000001000039000000010100c039000011930000013d000000000008004b00001e880000c13d0000000001000019000031940001042e00000ca90020009c000001890000a13d00000caa0020009c000001ba0000a13d00000cab0020009c000003920000a13d00000cac0020009c0000093c0000a13d00000cad0020009c00000b650000613d00000cae0020009c00000b700000613d00000caf0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b000000010010008c00001e880000213d0000086902000039000000000202041a00000cd90220009a00000c69022001970000000003000411000000000023004b00000f9a0000c13d0000006502000039000000000302041a000000020030008c00000f900000613d0000000203000039000000000032041b0000086b02000039000000000302041a00000d0503300197000000e804100210000000000343019f000000000032041b000000800010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cf2011001c70000800d02000039000000010300003900000d0604000041000007240000013d00000c790020009c000001c90000a13d00000c7a0020009c0000039f0000a13d00000c7b0020009c000009460000a13d00000c7c0020009c00000b7b0000613d00000c7d0020009c00000ae40000613d00000c7e0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b001300000001001d00000c690010009c00001e880000213d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d319322580000040f000000130100002931932a400000040f0000118d0000013d00000cc20020009c000001d60000213d00000cce0020009c000004cb0000213d00000cd40020009c0000099a0000213d00000cd70020009c00000b930000613d00000cd80020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b00000c690010009c00001e880000213d000000000010043f0000087401000039000000200010043f00000040020000390000000001000019319331510000040f000010200000013d00000c9e0020009c000003ac0000213d00000ca40020009c000004f90000213d00000ca70020009c00000b9e0000613d00000ca80020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000000001000412001900000001001d001801200000003d000080050100003900000044030000390000000004000415000000190440008a000000050440021000000cf602000041319331660000040f000000000001004b00000e1e0000013d00000cb70020009c000004990000213d00000cbd0020009c000005470000213d00000cc00020009c00000c0d0000613d00000cc10020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000d2001000041000000800010043f00000ce001000041000031940001042e00000c860020009c000004be0000213d00000c8c0020009c000005ef0000213d00000c8f0020009c00000ae40000613d00000c900020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000086a01000039000010200000013d00000cc30020009c000004d20000213d00000cc90020009c000009a90000213d00000ccc0020009c00000c4b0000613d00000ccd0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d000000000328004900000ced0030009c00001e880000213d000000640030008c00001e880000413d0000002404100370000000000404043b001300000004001d00000c660040009c00001e880000213d0000004404100370000000000404043b00000c730040009c00001e880000213d0000002305400039000000000085004b00001e880000813d0000000405400039000000000551034f000000000505043b001000000005001d00000c730050009c00001e880000213d000000240440003900000010050000290000000505500210000e00000004001d001200000005001d000f00000045001d0000000f0080006b00001e880000213d0000006504000039000000000404041a000000020040008c00000f900000613d00000002050000390000006504000039000000000054041b001100040020003d0000001101100360000000000101043b000001830230008a00000cec0310019700000cec04200197000000000543013f000000000043004b000000000300001900000cec03004041000000000021004b000000000200001900000cec0200804100000cec0050009c000000000302c019000000000003004b00001e880000c13d00000011011000290000000002080019319320230000040f000d00000001001d0000008001100039000000000101043300000d310010009c000018f50000813d319324740000040f0000000d01000029319321b20000040f000000400200043d000c00000002001d00000d210020009c00000efc0000213d000000010200036700000011030000290000004003300039000000000332034f000000000403043b0000000d0800002900000020038000390000000003030433000001600580003900000000050504330000000c07000029000000c006700039000000400060043f0000008006700039000000000056043500000060057000390000000000350435000000400370003900000000004304350000002004700039000b00000004001d00000000001404350000000000870435000000a001700039000000000001043500000012010000290000003f0110003900000cea01100197000000400400043d0000000001140019001200000004001d000000000041004b0000000004000039000000010400403900000c730010009c00000efc0000213d000000010040019000000efc0000c13d000000400010043f000000120100002900000010050000290000000001510436001100000001001d0000000f01000029000000000010007c00001e880000213d000000100000006b0000000e050000290000000f06000029000002670000613d0000001201000029000000000452034f000000000404043b000000200110003900000000004104350000002005500039000000000065004b000002600000413d000000400100043d001000000001001d00000d330010009c00000efc0000213d0000000001030433000e00000001001d0000000c01000029000000000101043300000010030000290000006002300039000000400020043f0000000001130436000f00000001001d00000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000100200002900000040032000390000000e0200002900000000002304350000000f0200002900000000001204350000086c01000039000000000201041a000000130020006c00001a070000a13d000000000010043f000000130100002900000003011000c900000cf80110009a000000000101041a000e00000001001d000000400100043d00000020021000390000002004000039000000000042043500000010040000290000000004040433000000400510003900000060060000390000000000650435000000a005100039000000007604043400000000006504350000000005070433000000c006100039000000000056043500000040054000390000000005050433000000e006100039000000000056043500000060054000390000000005050433000001000610003900000000005604350000008005400039000000000505043300000120061000390000000000560435000000a005400039000000000505043300000140061000390000000000560435000000c005400039000000000505043300000160061000390000000000560435000000e00540003900000000050504330000018006100039000000000056043500000100054000390000000005050433000001a00610003900000000005604350000012005400039000000000505043300000c6605500197000001c00610003900000000005604350000014005400039000000000505043300000c6605500197000001e00610003900000000005604350000016004400039000000000404043300000200051000390000018006000039000000000065043500000220061000390000000075040434000000000056043500000d58095001970000001f0850018f0000024006100039000000000067004b000017d20000813d000000000009004b000002de0000613d000000000b870019000000000a860019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c000002d80000c13d000000000008004b000017e80000613d000000000a060019000017de0000013d00000c990020009c000006fb0000213d00000c9c0020009c00000dfc0000613d00000c9d0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000e40080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d001300040020003d000000130380006a00000ced0030009c00001e880000213d000001800030008c00001e880000413d0000008403100370000000000303043b001200000003001d0000006403100370000000000303043b001100000003001d0000004403100370000000000303043b000f00000003001d0000002403100370000000000303043b001000000003001d000000a403100370000000000303043b00000c730030009c00001e880000213d0000002304300039000000000084004b00001e880000813d0000000404300039000000000441034f000000000404043b000e00000004001d00000c730040009c00001e880000213d0000002404300039000d00000004001d0000000e03400029000000000083004b00001e880000213d000000c403100370000000000303043b00000c730030009c00001e880000213d0000002304300039000000000084004b00001e880000813d0000000404300039000000000441034f000000000404043b000c00000004001d00000c730040009c00001e880000213d0000002404300039000b00000004001d0000000c03400029000000000083004b00001e880000213d0000000003000415000a00000003001d0000006503000039000000000303041a000000020030008c000007660000613d00000002030000390000006504000039000000000034041b0000086b03000039000000000303041a00000ce100300198000011170000c13d000901440020003d0000000901100360000000000101043b000800000001001d00000c660010009c00001e880000213d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c6601100197000000080010006b000016f70000813d00000000020000310000001301000029319320230000040f319321b20000040f000700000001001d31931f110000040f000800000001001d00000000020000310000001301000029319320230000040f0000000804000029000000600240003900000012030000290000000000320435000000400240003900000011030000290000000000320435000000200240003900000007030000290000000000320435000000000014043500000000030000310000000d010000290000000e0200002931931f290000040f0000000804000029000000a00240003900000010030000290000000000320435000000800240003900000000001204350000000901000029000001400210008a0000000101000367000000000321034f000000000303043b001300000003001d00000c690030009c000018f50000213d0000010003200039000000000331034f000000e002200039000000000121034f000000000101043b001000000001001d000000000103043b000900000001001d00000000030000310000000d010000290000000e0200002931931f290000040f000e00000001001d00000000030000310000000b010000290000000c0200002931931f290000040f0000000007010019000000130100002900000009020000290000001003000029000000110400002900000012050000290000000e06000029319326320000040f00000008010000290000000f02000029319325050000040f00000001010000390000006502000039000000000012041b00000000010004150000000a02000029000016b30000013d00000cb20020009c000007250000213d00000cb50020009c00000e070000613d00000cb60020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000086b01000039000000000101041a00000cdd0010019800000e1e0000013d00000c810020009c0000074d0000213d00000c840020009c00000e180000613d00000c850020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000ce201000041000000800010043f00000ce001000041000031940001042e00000c9f0020009c000007770000213d00000ca20020009c00000e230000613d00000ca30020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000402100370000000000202043b001300000002001d0000002402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d001100040020003d0000001103100360000000000303043b001200000003001d00000c730030009c00001e880000213d0000002402200039000f00000002001d001000120020002d000000100080006b00001e880000213d0000004402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d000d00040020003d0000000d01100360000000000101043b000e00000001001d00000c730010009c00001e880000213d0000000e012000290000002401100039000000000081004b00001e880000213d00000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b0000004002000039000000a00020043f0000001204000029000000e00040043f00000d58034001980000001f0440018f000001000230003900000011050000290000002005500039001100000005001d0000000105500367000003fb0000613d0000010006000039000000000705034f000000007807043c0000000006860436000000000026004b000003f70000c13d000000000004004b000004080000613d000000000335034f0000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000120300002900000100023000390000000000020435000000c00010043f0000001f0130003900000ce4021001970000006001200039000000800010043f00000cfb0020009c00000efc0000213d0000009f0220003900000ce4022001970000008002200039000000400020043f00000c660010009c00000c66010080410000006001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000cfc011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000130010006c000016b70000c13d0000001201000029000000200010008c00001e880000413d00000011010000290000000101100367000000000101043b00000c730010009c00001e880000213d0000000f011000290000001002000029319320230000040f00000000020004150000000e03000029000000200030008c00001e880000413d000000400300043d00000cfe0030009c00000efc0000213d0000002004300039000000400040043f0000000d0400002900000020044000390000000104400367000000000404043b00000000004304350000000004000415000000000242004900000000020000020000000004030433000000400200043d001600200020003d001700000002001d00000cff050000410000002003200039000000000053043500000060060000390000002405200039001300000006001d000000000065043500000084052000390000000006010433000000000065043500000020051000390000000005050433000000a406200039000000000056043500000040051000390000000005050433000000c406200039000000000056043500000060051000390000000005050433000000e40620003900000000005604350000008005100039000000000505043300000104062000390000000000560435000000a005100039000000000505043300000124062000390000000000560435000000c005100039000000000505043300000144062000390000000000560435000000e00510003900000000050504330000016406200039000000000056043500000100051000390000000005050433000001840620003900000000005604350000012005100039000000000505043300000c6605500197000001a40620003900000000005604350000014005100039000000000505043300000c6605500197000001c4062000390000000000560435000001600110003900000000010104330000018005000039000001e4062000390000000000560435000002040520003900000000710104340000000000150435000000000500041100000c690550019700000d58091001970000001f0810018f0000022406200039000000000067004b0000175e0000813d000000000009004b000004950000613d000000000b870019000000000a860019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c0000048f0000c13d000000000008004b000017740000613d000000000a0600190000176a0000013d00000cb80020009c000008180000213d00000cbb0020009c00000e330000613d00000cbc0020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000cf6010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000400300043d00000c660030009c00000c660200004100000000020340190000004002200210000000000101043b00000c69011001970000000004000410000000000014004b000010b30000c13d00000d1a01000041000000000013043500000ce3012001c7000031940001042e00000c870020009c0000091f0000213d00000c8a0020009c00000e380000613d00000c8b0020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000c6601000041000000800010043f00000ce001000041000031940001042e00000ccf0020009c00000a9a0000213d00000cd20020009c00000e490000613d00000cd30020009c000009400000613d00001e880000013d00000cc40020009c00000ad90000213d00000cc70020009c00000e540000613d00000cc80020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b001300000001001d00000c690010009c00001e880000213d00000cf6010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c69011001970000000002000410000000000012004b0000111b0000c13d000000400100043d000000640210003900000d29030000410000123a0000013d00000ca50020009c00000e900000613d00000ca60020009c00001e880000c13d000001840080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000002402100370000000000202043b001200000002001d00000c690020009c00001e880000213d0000004402100370000000000202043b001100000002001d00000c690020009c00001e880000213d0000006402100370000000000202043b001000000002001d00000c690020009c00001e880000213d000000c402100370000000000202043b000f00000002001d000000a402100370000000000202043b000e00000002001d0000008402100370000000000202043b000c00000002001d000000e402100370000000000202043b000d00000002001d00000c690020009c00001e880000213d0000010402100370000000000202043b000b00000002001d00000c660020009c00001e880000213d0000012402100370000000000202043b000a00000002001d00000c660020009c00001e880000213d0000014402100370000000000202043b000900000002001d00000c660020009c00001e880000213d0000016401100370000000000101043b00000c730010009c00001e880000213d0000000401100039000000000208001931931fa30000040f000000000c010019000000000d02001900000013010000290000001202000029000000110300002900000010040000290000000c050000290000000e060000290000000f070000290000000d080000290000000b090000290000000a0a000029000000090b000029319320d10000040f0000000001000019000031940001042e00000cbe0020009c00000ee20000613d00000cbf0020009c00001e880000c13d000000440080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000002402100370000000000402043b00000c730040009c00001e880000213d0000002302400039000000000082004b00001e880000813d0000000403400039000000000231034f000000000202043b00000c730020009c00000efc0000213d0000001f0520003900000ce40550019700000ce50050009c00000efc0000213d00000024044000390000003f0550003900000ce4055001970000008005500039000000400050043f000000800020043f0000000004420019000000000084004b00001e880000213d0000002003300039000000000331034f00000d58042001980000001f0520018f000000a001400039000005770000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000016004b000005730000c13d000000000005004b000005840000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000a001200039000000000001043500000cf6010000410000000000100443000000000100041200000004001004430000002400000443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c69011001970000000002000410000000000012004b000004f50000613d00000d1a02000041000000000202041a00000c6902200197000000000012004b000012370000c13d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b000012830000c13d0000000001000415001200000001001d00000d1b01000041000000000101041a000000ff00100190000016bb0000c13d000000400200043d001100000002001d00000d1c01000041000000000012043500000c660020009c00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c75011001c70000001302000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000110b0000290000001105700029000005cb0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000005c70000c13d000000000006004b000005d80000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f00000000001504350000000100200190000015690000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000c730010009c00000efc0000213d000000010020019000000efc0000c13d000000400010043f000000200030008c00001e880000413d00000000020b043300000d1a0020009c000016d30000c13d00000080020000390000000103000039000000130100002931932fc60000040f000016d00000013d00000c8d0020009c00000f020000613d00000c8e0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000c40080008c00001e880000413d0000006402100370000000000202043b001100000002001d0000004402100370000000000202043b001000000002001d0000002402100370000000000202043b001200000002001d0000000402100370000000000202043b001300000002001d0000008402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000403200039000000000431034f000000000404043b000f00000004001d00000c730040009c00001e880000213d0000000f022000290000002402200039000000000082004b00001e880000213d000000a402100370000000000402043b00000c730040009c00001e880000213d0000002302400039000000000082004b00001e880000813d0000000402400039000000000521034f000000000505043b000e00000005001d00000c730050009c00001e880000213d0000000e044000290000002404400039000000000084004b00001e880000213d0000006504000039000000000504041a000000020050008c00000f900000613d0000000205000039000000000054041b000000130400002900000c690040009c000018f50000213d0000000f040000290000001f0440003900000ce404400197000d00000004001d00000ce50040009c00000efc0000213d0000000d040000290000003f0440003900000ce4044001970000008004400039000000400040043f0000000f05000029000000800050043f00000d5806500198000c001f00500193000700200030003d0000000705100360000b00000006001d000000a003600039000006490000613d000000a006000039000000000705034f000000007807043c0000000006860436000000000036004b000006450000c13d0000000c0000006b000006570000613d0000000b055003600000000c060000290000000306600210000000000703043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005304350000000f03000029000000a00330003900000000000304350000000e030000290000001f0330003900000ce403300197000800000003001d0000003f0330003900000ce603300197000000400500043d0000000003350019000a00000005001d000000000053004b0000000005000039000000010500403900000c730030009c00000efc0000213d000000010050019000000efc0000c13d000000400030043f0000000e050000290000000a03000029000000000353043600000d58045001980009001f00500193000500200020003d0000000502100360000600000004001d00000000014300190000067b0000613d000000000402034f0000000005030019000000004604043c0000000005650436000000000015004b000006770000c13d000000090000006b000006890000613d000000060220036000000009040000290000000304400210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002104350000000e01300029000000000001043500000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000301043b000000130100002900000012020000290000001004000029000000110500002900000080060000390000000a07000029319326320000040f000000400100043d00000080021000390000000f03000029000000000032043500000040021000390000008003000039000000000032043500000020021000390000001103000029000000000032043500000010020000290000000000210435000000a0031000390000000b04300029000000010200036700000007052003600000000b0000006b000006b60000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b000006b20000c13d0000000c0000006b000006c40000613d0000000b055003600000000c060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000f0430002900000000000404350000000d033000290000000004130049000000600510003900000000004504350000000e04000029000000000343043600000005042003600000000602300029000000060000006b000006d60000613d000000000504034f0000000006030019000000005705043c0000000006760436000000000026004b000006d20000c13d000000090000006b000006e40000613d000000060440036000000009050000290000000305500210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004204350000000e0230002900000000000204350000000802100069000000000232001900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000ce8011001c70000800d02000039000000030300003900000ce90400004100000012050000290000001306000029000011160000013d00000c9a0020009c00000f150000613d00000c9b0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b000000010010008c00001e880000213d0000086902000039000000000202041a00000cd90220009a00000c69022001970000000003000411000000000023004b00000f9a0000c13d0000006502000039000000000302041a000000020030008c00000f900000613d0000000203000039000000000032041b0000086b02000039000000000302041a00000cf103300197000000e004100210000000000343019f000000000032041b000000800010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cf2011001c70000800d02000039000000010300003900000cf304000041000011160000013d00000cb30020009c00000f5c0000613d00000cb40020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c660020009c00001e880000213d0000002402100370000000000202043b001200000002001d00000c690020009c00001e880000213d0000004401100370000000000101043b001100000001001d00000c690010009c00001e880000213d00000000020004150000001f0220008a0000000502200210000000000300041a000fff0000300194000012000000c13d00000000020004150000001e0220008a0000000502200210000000ff00300190000012000000c13d00000d590130019700000001011001bf00000d5a0110019700000100011001bf000012250000013d00000c820020009c00000f690000613d00000c830020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000401100370000000000101043b00000c730010009c00001e880000213d00000004011000390000000002080019319320230000040f00000001030003670000004402300370000000000402043b0000002402300370000000000502043b0000006502000039000000000302041a000000020030008c000010c30000c13d000000400100043d000000440210003900000d5603000041000000000032043500000024021000390000001f03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c7000031950001043000000ca00020009c00000f7e0000613d00000ca10020009c00001e880000c13d000001a40080008c00001e880000413d0000010402100370000000000202043b000000e403100370000000000303043b000c00000003001d000000c403100370000000000303043b000d00000003001d000000a403100370000000000303043b000e00000003001d0000008403100370000000000303043b000f00000003001d0000006403100370000000000303043b001000000003001d0000004403100370000000000303043b001100000003001d0000002403100370000000000303043b001200000003001d0000000403100370000000000303043b001300000003001d0000012403100370000000000303043b000b00000003001d00000c660030009c00001e880000213d0000014403100370000000000303043b000a00000003001d00000c660030009c00001e880000213d0000016403100370000000000303043b000900000003001d00000c660030009c00001e880000213d0000018403100370000000000303043b00000c730030009c00001e880000213d0000002304300039000000000084004b00001e880000813d0000000404300039000000000141034f000000000101043b000800000001001d00000c730010009c00001e880000213d0000002403300039000700000003001d0000000801300029000000000081004b00001e880000213d0000000001000415000600000001001d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006503000039000000000013041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d000000400100043d0000005403100039000000000023043500000000020004110000006003200210000000200210003900000000003204350000003403100039000000130400002900000000004304350000005403000039000000000031043500000ceb0010009c00000efc0000213d0000008003100039000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000400300043d00000cf70030009c00000efc0000213d0000000002030019000000000101043b0000000004030019000500000002001d000001a002200039000000400020043f00000160023000390000000903000029000000000032043500000140024000390000000a03000029000000000032043500000120024000390000000b03000029000000000032043500000100024000390000000000120435000000e0014000390000000c020000290000000000210435000000c0014000390000000d020000290000000000210435000000a0014000390000000e02000029000000000021043500000080014000390000000f0200002900000000002104350000006001400039000000100200002900000000002104350000004001400039000000110200002900000000002104350000002001400039000000120200002900000000002104350000001301000029000000000014043500000000030000310000000701000029000000080200002931931f290000040f00000005030000290000009c0000013d00000cb90020009c00000fa40000613d00000cba0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000c40080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000004402100370000000000202043b001100000002001d0000002402100370000000000202043b001200000002001d0000006402100370000000000202043b001000000002001d00000c690020009c00001e880000213d0000008402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000404200039000000000341034f000000000303043b000f00000003001d00000c730030009c00001e880000213d0000000f022000290000002402200039000000000082004b00001e880000213d000000a402100370000000000302043b00000c730030009c00001e880000213d0000002302300039000000000082004b00001e880000813d0000000402300039000000000521034f000000000505043b000e00000005001d00000c730050009c00001e880000213d0000000e033000290000002403300039000000000083004b00001e880000213d0000000f030000290000001f0330003900000ce403300197000d00000003001d00000ce50030009c00000efc0000213d0000000d030000290000003f0330003900000ce4033001970000008003300039000000400030043f0000000f05000029000000800050043f00000d5806500198000c001f00500193000700200040003d0000000705100360000b00000006001d000000a0046000390000086d0000613d000000a006000039000000000705034f000000007807043c0000000006860436000000000046004b000008690000c13d0000000c0000006b0000087b0000613d0000000b055003600000000c060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000f04000029000000a00440003900000000000404350000000e040000290000001f0440003900000ce404400197000800000004001d0000003f0440003900000ce604400197000000400500043d0000000004450019000a00000005001d000000000054004b0000000005000039000000010500403900000c730040009c00000efc0000213d000000010050019000000efc0000c13d000000400040043f0000000e050000290000000a04000029000000000454043600000d58035001980009001f00500193000500200020003d0000000502100360000600000003001d00000000013400190000089f0000613d000000000302034f0000000005040019000000003603043c0000000005650436000000000015004b0000089b0000c13d000000090000006b000008ad0000613d000000060220036000000009030000290000000303300210000000000501043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002104350000000e01400029000000000001043500000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000301043b000000800600003900000013010000290000001202000029000000110400002900000010050000290000000a07000029319326320000040f000000400100043d00000080021000390000000f03000029000000000032043500000040021000390000008003000039000000000032043500000020021000390000001003000029000000000032043500000011020000290000000000210435000000a0031000390000000b04300029000000010200036700000007052003600000000b0000006b000008da0000613d000000000605034f0000000007030019000000006806043c0000000007870436000000000047004b000008d60000c13d0000000c0000006b000008e80000613d0000000b055003600000000c060000290000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000f0430002900000000000404350000000d033000290000000004130049000000600510003900000000004504350000000e04000029000000000343043600000005042003600000000602300029000000060000006b000008fa0000613d000000000504034f0000000006030019000000005705043c0000000006760436000000000026004b000008f60000c13d000000090000006b000009080000613d000000060440036000000009050000290000000305500210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004204350000000e0230002900000000000204350000000802100069000000000232001900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000800d02000039000000030300003900000ce904000041000000120500002900000013060000290000127f0000013d00000c880020009c000010060000613d00000c890020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b00000c730010009c00001e880000213d00000004011000390000000002080019319320230000040f319321b20000040f00000af40000013d00000c970020009c0000100b0000613d00000c980020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000086b01000039000000000101041a000000c00110027000000e140000013d00000cb00020009c000010150000613d00000cb10020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d000000800000043f00000ce001000041000031940001042e00000c7f0020009c0000101c0000613d00000c800020009c00001e880000c13d000001640080008c00001e880000413d000000e402100370000000000202043b000c00000002001d000000c402100370000000000202043b000d00000002001d000000a402100370000000000202043b000e00000002001d0000008402100370000000000202043b000f00000002001d0000006402100370000000000202043b001000000002001d0000004402100370000000000202043b001100000002001d0000002402100370000000000202043b001200000002001d0000000402100370000000000202043b000b00000002001d0000010402100370000000000202043b001300000002001d00000c660020009c00001e880000213d0000012402100370000000000202043b000a00000002001d00000c660020009c00001e880000213d0000014402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000403200039000000000131034f000000000101043b000900000001001d00000c730010009c00001e880000213d0000002402200039000800000002001d0000000901200029000000000081004b00001e880000213d0000000001000415000700000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c6602100197000600000002001d0000001301200029001300000001001d00000c660010009c000014fc0000a13d00000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d01000041000031950001043000000cd50020009c000010220000613d00000cd60020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d0000000001000412002d00000001001d002c00e00000003d0000800501000039000000440300003900000000040004150000002d0440008a000010a20000013d00000cca0020009c000010800000613d00000ccb0020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000440080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d0000000404200039000000000948004900000ced0090009c00001e880000213d000001800090008c00001e880000413d000000000241034f0000002403100370000000000303043b001300000003001d000000000202043b00000c690020009c00001e880000213d0000002005400039000000000351034f000000000303043b00000c690030009c00001e880000213d0000002006500039000000000561034f000000000505043b00000c690050009c00001e880000213d0000002007600039000000000671034f000000000606043b00000c690060009c00001e880000213d000000200a7000390000000007a1034f000000000707043b00000c690070009c00001e880000213d000000200ba00039000000000cb1034f000000400ba00039000000000bb1034f000000600da00039000000000dd1034f000000800ea00039000000000fe1034f000000000a0d043b00120000000a001d000000000a0b043b00110000000a001d000000000a0c043b00100000000a001d000000000c0f043b00000c6600c0009c00001e880000213d000000200fe00039000000000ef1034f000000000e0e043b00000c6600e0009c00001e880000213d000000200ff00039000000000af1034f000000000a0a043b000f0000000a001d00000c6600a0009c00001e880000213d000000200af00039000000000aa1034f000000000f0a043b0000001f0990008a00000cec0af0019700000cec0b900197000e000000ba01430000000000ba004b000000000a00001900000cec0a004041000d0000000f001d00000000009f004b000000000900001900000cec090080410000000e0b00002900000cec00b0009c000000000a09c01900000000000a004b00001e880000c13d0000000d09400029000000000491034f000000000404043b000e00000004001d00000c730040009c00001e880000213d0000000e0a80006a000000200f90003900000cec04a0019700000cec09f00197000000000b49013f000000000049004b000000000900001900000cec09004041000d0000000f001d0000000000af004b000000000a00001900000cec0a00204100000cec00b0009c00000000090ac019000000000009004b00001e880000c13d0000020009000039000000400090043f000000800020043f000000a00030043f000000c00050043f000000e00060043f000001000070043f0000001002000029000001200020043f0000001102000029000001400020043f0000001202000029000001600020043f0000018000c0043f000001a000e0043f0000000f02000029000001c00020043f0000000e020000290000001f0220003900000ce40220019700000d2e0020009c00000efc0000213d0000003f0220003900000ce4022001970000020002200039000000400020043f0000000e02000029000002000020043f0000000d02200029000000000082004b00001e880000213d0000000d021003600000000e0400002900000d58034001980000001f0540018f000002200130003900000a470000613d0000022006000039000000000702034f000000007407043c0000000006460436000000000016004b00000a430000c13d000000000005004b00000a540000613d000000000232034f0000000303500210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f00000000002104350000000e0100002900000220011000390000000000010435000001e00090043f0000000001000415001200000001001d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000ce100100198000011170000c13d000001c00100043d001100000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000110200002900000c6602200197000000000101043b00000c6601100197000000000012004b000018ee0000813d0000008001000039319321b20000040f001100000001001d000001400100043d001000000001001d000000a00100043d000f00000001001d000001e00100043d000e00000001001d31931f110000040f000000a0021000390000001303000029000000000032043500000080021000390000000e03000029000000000032043500000060021000390000000f03000029000000000032043500000040021000390000001003000029000000000032043500000020021000390000001103000029000000000032043500000080020000390000000000210435000000000200041100000c6902200197319325050000040f00000001010000390000006502000039000000000012041b000016d00000013d00000cd00020009c0000108d0000613d00000cd10020009c00001e880000c13d0000000002000416000000000002004b00001e880000c13d000000440080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000002401100370000000000101043b001200000001001d00000c690010009c00001e880000213d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d0000006501000039000000000201041a000000020020008c00000f900000613d0000000202000039000000000021041b000000120000006b0000128a0000c13d0000001301000029000000000010043f0000087401000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000201041a00000d0c022001970000001206000029000000000262019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000030300003900000d55040000410000001305000029000011160000013d00000cc50020009c000010980000613d00000cc60020009c00001e880000c13d0000000001000416000000000001004b00001e880000c13d00000d2201000041000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d000000000108001931931f610000040f001300000002001d00000c6901100197000000000010043f0000087301000039000000200010043f00000040020000390000000001000019319331510000040f000000130200002931931eef0000040f000000000101041a000000400200043d000000000012043500000c660020009c00000c6602008041000000400120021000000ce3011001c7000031940001042e0000000002000416000000000002004b00001e880000c13d000000440080008c00001e880000413d0000002402100370000000000202043b0000000401100370000000000101043b00000c690010009c000018f50000213d001200000002001d001300000001001d000000000010043f0000087301000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000200041100000c6902200197001100000002001d000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000101041a001000000001001d000000000001004b0000124b0000c13d00000cf001000041000000000010043f00000c750100004100003195000104300000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000403200039000000000131034f000000000101043b001100000001001d00000c730010009c00001e880000213d0000002403200039000000110100002900000005011002100000000002310019000000000082004b00001e880000213d001000000003001d0000003f0210003900000cea0220019700000ceb0020009c00000efc0000213d0000008002200039000000400020043f0000001102000029000000800020043f000000000002004b00000b590000613d00000060040000390000000002000019000000a00320003900000000004304350000002002200039000000000012004b00000b510000413d000000110000006b0000001007000029000013c50000c13d000000400100043d00000020020000390000000003210436000000800200043d0000000000230435000000400310003900000005042002100000000006430019000000000002004b000012de0000c13d000000000216004900000c430000013d0000000001000416000000000001004b00001e880000c13d0000000001000412001d00000001001d001c00c00000003d0000800501000039000000440300003900000000040004150000001d0440008a00000e110000013d0000000001000416000000000001004b00001e880000c13d0000000001000412001b00000001001d001a00400000003d0000800501000039000000440300003900000000040004150000001b0440008a00000e110000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b0000086c02000039000000000202041a000000000021004b00001e880000813d319320b70000040f000000000201041a0000000101100039000000000101041a000000400300043d00000020043000390000000000140435000000000023043500000c660030009c00000c6603008041000000400130021000000cda011001c7000031940001042e0000000001000416000000000001004b00001e880000c13d0000000001000412002f00000001001d002e00a00000003d0000800501000039000000440300003900000000040004150000002f0440008a00000e110000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b00001e880000813d0000000404200039000000000341034f000000000503043b00000c730050009c00001e880000213d00000024032000390000000002350019000000000082004b00001e880000213d0000086906000039000000000606041a00000cd90660009a00000c69066001970000000007000411000000000067004b00000f9a0000c13d0000000006000415001300000006001d0000006507000039000000000607041a000000020060008c000007660000613d0000000206000039000000000067041b000000400050008c00001e880000413d0000002004400039000000000541034f000000000505043b001200000005001d00000c690050009c00001e880000213d0000002004400039000000000441034f000000000404043b00000c730040009c00001e880000213d00000000043400190000001f03400039000000000023004b00001e880000813d000000000341034f000000000303043b00000c730030009c00000efc0000213d0000001f0530003900000ce4055001970000003f0550003900000ce605500197000000400600043d0000000005560019001100000006001d000000000065004b0000000006000039000000010600403900000c730050009c00000efc0000213d000000010060019000000efc0000c13d0000002004400039000000400050043f00000011050000290000000005350436001000000005001d0000000005430019000000000025004b00001e880000213d000000000241034f00000d58043001980000001f0530018f000000100140002900000bf80000613d000000000602034f0000001007000029000000006806043c0000000007870436000000000017004b00000bf40000c13d000000000005004b00000c050000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f000000000021043500000010013000290000000000010435000000120000006b000017010000c13d00000d0401000041000000000010043f00000c750100004100003195000104300000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000402100370000000000202043b001100000002001d00000c730020009c00001e880000213d00000011020000290000002302200039000000000082004b00001e880000813d00000011020000290000000402200039000000000121034f000000000101043b001000000001001d00000c730010009c00001e880000213d0000001101000029000000240a100039000000100100002900000005011002100000000002a10019000000000082004b00001e880000213d0000003f0210003900000cea0320019700000ceb0030009c00000efc0000213d0000008002300039000000400020043f0000001004000029000000800040043f000000000004004b000012c00000c13d000000400100043d0000000002000415001300000002001d00000020020000390000000002210436000000800300043d000000000032043500000040041000390000000502300210000000000a240019000000000003004b0000137e0000c13d00000000020004150000001302200069000000000200000200000000021a004900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000031940001042e000000640080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c660020009c00001e880000213d0000002402100370000000000202043b00000c730020009c00001e880000213d000000000328004900000ced0030009c00001e880000213d000000c40030008c00001e880000413d0000014003000039000000400030043f0000000403200039000000000331034f000000000303043b000000800030043f0000002403200039000000000331034f000000000303043b000000a00030043f0000004403200039000000000431034f000000000404043b00000c730040009c00001e880000213d000000000624001900000000040004150000002305600039000000000085004b00001e880000813d0000000405600039000000000551034f000000000705043b00000c730070009c00000efc0000213d00000005097002100000003f0590003900000cea0a500197000000400500043d000000000aa5001900000000005a004b000000000b000039000000010b00403900000c7300a0009c00000efc0000213d0000000100b0019000000efc0000c13d0000004000a0043f000000000075043500000024066000390000000009960019000000000089004b00001e880000213d000000000007004b00000c900000613d0000000007050019000000000a61034f000000000a0a043b00000020077000390000000000a704350000002006600039000000000096004b00000c890000413d000000000600041500000000046400490000000004000002000000c00050043f0000002003300039000000000431034f000000000404043b00000c660040009c00001e880000213d000000e00040043f0000002003300039000000000431034f000000000404043b00000c690040009c00001e880000213d000001000040043f0000002003300039000000000331034f000000000303043b00000c730030009c00001e880000213d00000000042300190000002302400039000000000082004b000000000300001900000cec0300804100000cec02200197000000000002004b000000000500001900000cec0500404100000cec0020009c000000000503c0190000000002000415000000000005004b00001e880000c13d0000000403400039000000000331034f000000000503043b00000c730050009c00000efc0000213d00000005065002100000003f0360003900000cea07300197000000400300043d0000000007730019000000000037004b0000000009000039000000010900403900000c730070009c00000efc0000213d000000010090019000000efc0000c13d000000400070043f000000000053043500000024044000390000000006640019000000000086004b00001e880000213d000000000005004b00000cd60000613d0000000005030019000000000741034f000000000707043b00000c690070009c00001e880000213d000000200550003900000000007504350000002004400039000000000064004b00000ccd0000413d000000000400041500000000024200490000000002000002000001200030043f0000004402100370000000000202043b00000c730020009c00001e880000213d0000002303200039000000000083004b000000000400001900000cec0400804100000cec03300197000000000003004b000000000500001900000cec0500404100000cec0030009c000000000504c019000000000005004b00001e880000c13d0000000403200039000000000331034f000000000303043b00000c730030009c00000efc0000213d00000005043002100000003f0540003900000cea05500197000000400600043d0000000005560019001100000006001d000000000065004b0000000006000039000000010600403900000c730050009c00000efc0000213d000000010060019000000efc0000c13d0000002402200039000000400050043f00000011050000290000000005350436001000000005001d0000000004240019000000000084004b00001e880000213d000000000003004b00000d0e0000613d0000001103000029000000000521034f000000000505043b000000200330003900000000005304350000002002200039000000000042004b00000d070000413d0000000001000415000600000001001d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006502000039000000000012041b000001000100043d00000c6901100197319324740000040f000000a00100043d001200000001001d00000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000120010006b000018f90000c13d0000086c01000039000000000101041a000000130010006c00001a070000a13d0000086c01000039000000000010043f000000130100002900000003011000c9000e00000001001d00000cf90110009a000000000101041a000f00000001001d000000400100043d0000002002100039000000200300003900000000003204350000004003100039000000800400043d00000000004304350000006003100039000000a00400043d00000000004304350000008003100039000000c005000039000000c00400043d00000000005304350000010003100039000000000504043300000000005304350000012003100039000000000005004b00000d510000613d00000000060000190000002004400039000000000704043300000000037304360000000106600039000000000056004b00000d4b0000413d000000e00400043d00000c6604400197000000a0051000390000000000450435000001000400043d00000c6904400197000000c00510003900000000004504350000000004130049000000400540008a000000e006100039000001200400043d000000000056043500000000050404330000000003530436000000000005004b00000d6a0000613d00000000060000190000002004400039000000000704043300000c690770019700000000037304360000000106600039000000000056004b00000d630000413d0000000003130049000000200430008a00000000004104350000001f0330003900000d58043001970000000003140019000000000043004b0000000004000039000000010400403900000c730030009c00000efc0000213d000000010040019000000efc0000c13d000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b00000011020000290000000002020433000000000002004b00000dac0000613d001200000000001d0000001202000029000000050220021000000010022000290000000002020433000000000021004b00000d9a0000813d000000000010043f000000200020043f000000000100041400000d9d0000013d000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000001203000029001200010030003d00000011020000290000000002020433000000120020006b00000d900000413d0000000f0010006c000018ea0000c13d0000086c01000039000000000101041a000000130010006c00001a070000a13d000000e00100043d001000000001001d000000080110027000000d3801100197001200000001001d000000000010043f0000000e0100002900000d390110009a001100000001001d000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d0000001002000029000000ff0220018f000000010220020f000000000101043b000000000101041a001000000002001d000f00000001001d0000000000210170000019110000c13d0000001201000029000000000010043f0000001101000029000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d0000000f0300002900000010023001af000000000101043b000000000021041b000001200200043d000000c00300043d0000000001000415000300000001001d001000000003001d0000000013030434000900000001001d000c00000002001d0000000021020434000800000002001d000a00000003001d000000000031004b000019150000c13d000000800100043d000400000001001d000000a00100043d000200000001001d000000e00100043d000100000001001d000001000100043d000d0c690010019b0000000a0000006b000500000000001d000019190000c13d000000040000006b00001a0d0000c13d0000000001000411001200000001001d00001e3c0000013d0000000001000416000000000001004b00001e880000c13d0000000001000412001500000001001d001401000000003d000080050100003900000044030000390000000004000415000000150440008a000010a20000013d0000000001000416000000000001004b00001e880000c13d0000000001000412002300000001001d002200800000003d000080050100003900000044030000390000000004000415000000230440008a000000050440021000000cf602000041319331660000040f00000c6601100197000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d0000086b01000039000000000101041a00000ce1001001980000000001000039000000010100c039000000800010043f00000ce001000041000031940001042e0000000002000416000000000002004b00001e880000c13d000000640080008c00001e880000413d0000000402100370000000000402043b00000c690040009c00001e880000213d0000004402100370000000000302043b0000002401100370000000000201043b0000000001040019319321660000040f00000af40000013d0000000001000416000000000001004b00001e880000c13d0000086901000039000010200000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b000000000010043f0000087201000039000000200010043f00000040020000390000000001000019319331510000040f000000000101041a000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d0000000001000412002b00000001001d002a01600000003d0000800501000039000000440300003900000000040004150000002b0440008a00000f660000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b001300000001001d00000c730010009c00001e880000213d0000001301000029001200040010003d000000120180006a00000ced0010009c00001e880000213d000001800010008c00001e880000413d0000006501000039000000000201041a000000020020008c00000f900000613d0000000202000039000000000021041b0000086b01000039000000000101041a00000ce100100198000011170000c13d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000130200002900000144022000390000000103000367000000000423034f000000000101043b000000000404043b00000c660040009c00001e880000213d00000c6601100197000000000014004b0000154b0000813d00110020002000920000001102300360000000000202043b00000c660020009c00001e880000213d000000000012004b000015c00000813d00000d3501000041000000000010043f00000c75010000410000319500010430000001640080008c00001e880000413d0000000402100370000000000202043b001300000002001d00000c690020009c00001e880000213d0000002402100370000000000202043b001200000002001d00000c690020009c00001e880000213d0000004402100370000000000202043b001100000002001d00000c690020009c00001e880000213d0000006402100370000000000202043b001000000002001d00000c690020009c00001e880000213d000000c402100370000000000202043b000f00000002001d000000a402100370000000000202043b000e00000002001d0000008402100370000000000202043b000c00000002001d000000e402100370000000000202043b000d00000002001d00000c690020009c00001e880000213d0000010402100370000000000202043b000b00000002001d00000c660020009c00001e880000213d0000012402100370000000000202043b000a00000002001d00000c660020009c00001e880000213d0000014401100370000000000101043b00000c730010009c00001e880000213d0000000401100039000000000208001931931fa30000040f000900000001001d000800000002001d0000800b0100003900000004030000390000000004000415000000300440008a000000050440021000000cdb02000041319331660000040f00000c6601100197000700000001001d0000000b02000029319320c50000040f000000000a01001900000013010000290000001202000029000000110300002900000010040000290000000c050000290000000e060000290000000f070000290000000d0800002900000007090000290000000a0b000029000000090c000029000000080d000029319320d10000040f0000000001000019000031940001042e0000000002000416000000000002004b00001e880000c13d000000440080008c00001e880000413d0000002402100370000000000702043b0000000401100370000000000601043b0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d0000006501000039000000000201041a000000020020008c00000f900000613d0000000202000039000000000021041b0000086c02000039000000000102041a00000c730010009c000011790000a13d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000000001000416000000000001004b00001e880000c13d319320060000040f0000002002000039000000400300043d001300000003001d000000000223043631931f710000040f0000001302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f000031940001042e0000000001000416000000000001004b00001e880000c13d000000000108001931931fbd0000040f001300000001001d001000000002001d001100000003001d000000000100041a0000000801100270000000ff0110018f319321900000040f0000001301000029000000c00110021000000cdf011001970000086b02000039000000000302041a00000cde03300197000000000113019f000000000012041b000000400100043d001300000001001d000000400200003931931eff0000040f00000cf40100004100000013020000290000002003200039000f00000003001d000000000013043500000009010000390000000000120435000000400100043d001200000001001d000000400200003931931eff0000040f00000cf50100004100000012020000290000002003200039000e00000003001d000000000013043500000005010000390000000000120435000000000100041a0000000801100270000000ff0110018f000d00000001001d319321900000040f0000000d01000029319321900000040f000000130100002900000000020104330000000f01000029319331510000040f00000012020000290000000002020433001300000001001d0000000e01000029319331510000040f0000047f020000390000001303000029000000000032041b0000048002000039000000000012041b319329f40000040f31932a0c0000040f000000100100002931932a270000040f000000110100002931932a400000040f0000000001000019000031940001042e0000000001000416000000000001004b00001e880000c13d0000000001000412002100000001001d002000200000003d000080050100003900000044030000390000000004000415000000210440008a000000050440021000000cf602000041000010890000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000101043b001300000001001d00000c690010009c00001e880000213d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d319322580000040f000000130100002931932a270000040f0000118d0000013d0000000002000416000000000002004b00001e880000c13d000000240080008c00001e880000413d0000000401100370000000000501043b0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b00000f9a0000c13d0000006501000039000000000201041a000000020020008c000011020000c13d00000c6c01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f00000d5601000041000000c40010043f00000d5101000041000031950001043000000c6c01000041000000800010043f0000002001000039000000840010043f0000001801000039000000a40010043f00000d2501000041000000c40010043f00000d51010000410000319500010430000001240080008c00001e880000413d0000000402100370000000000902043b00000c690090009c00001e880000213d0000002402100370000000000202043b00000c690020009c00001e880000213d0000004403100370000000000303043b00000c690030009c00001e880000213d000000a404100370000000000604043b00000d140060019800000d1504000041000000000400601900000d1605600197000000000754019f0000008404100370000000000504043b0000006404100370000000000404043b000000000076004b00001e880000c13d000000c407100370000000000707043b00000c660070009c00001e880000213d000000e40a100370000000000c0a043b00000c7300c0009c00001e880000213d000000230ac0003900000000008a004b00001e880000813d000000040bc00039000000000ab1034f000000000a0a043b00000c7300a0009c00000efc0000213d0000001f0da0003900000ce40dd0019700000ce500d0009c00000efc0000213d000000240cc000390000003f0dd0003900000ce40dd00197000000800dd000390000004000d0043f0000008000a0043f000000000cca001900000000008c004b00001e880000213d0000002008b00039000000000881034f00000d580ba001980000001f0ca0018f000000a001b0003900000fe80000613d000000a00d000039000000000e08034f00000000ef0e043c000000000dfd043600000000001d004b00000fe40000c13d00000000000c004b00000ff50000613d0000000008b8034f000000030bc00210000000000c010433000000000cbc01cf000000000cbc022f000000000808043b000001000bb000890000000008b8022f0000000008b801cf0000000008c8019f0000000000810435000000a001a0003900000000000104350000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006508000039000000000018041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d00000080080000390000000001090019319322700000040f0000118d0000013d0000000001000416000000000001004b00001e880000c13d00000c5b01000039000010200000013d0000000001000416000000000001004b00001e880000c13d0000800b0100003900000004030000390000000004000415000000300440008a000000050440021000000ce702000041000010890000013d0000000001000416000000000001004b00001e880000c13d00000d0701000041000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d00000c5a01000039000000000101041a000010a50000013d000001040080008c00001e880000413d0000000402100370000000000202043b00000c690020009c00001e880000213d0000002403100370000000000303043b00000c690030009c00001e880000213d0000008404100370000000000604043b00000d140060019800000d1504000041000000000400601900000d1605600197000000000754019f0000006404100370000000000504043b0000004404100370000000000404043b000000000076004b00001e880000c13d000000a407100370000000000707043b00000c660070009c00001e880000213d000000c409100370000000000b09043b00000c7300b0009c00001e880000213d0000002309b00039000000000089004b00001e880000813d000000040ab000390000000009a1034f000000000909043b00000c730090009c00000efc0000213d0000001f0c90003900000ce40cc0019700000ce500c0009c00000efc0000213d000000240bb000390000003f0cc0003900000ce40cc00197000000800cc000390000004000c0043f000000800090043f000000000bb9001900000000008b004b00001e880000213d0000002008a00039000000000881034f00000d580a9001980000001f0b90018f000000a001a00039000010620000613d000000a00c000039000000000d08034f00000000de0d043c000000000cec043600000000001c004b0000105e0000c13d00000000000b004b0000106f0000613d0000000008a8034f000000030ab00210000000000b010433000000000bab01cf000000000bab022f000000000808043b000001000aa000890000000008a8022f0000000008a801cf0000000008b8019f0000000000810435000000a00190003900000000000104350000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006508000039000000000018041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d00000000010004110000008008000039319322700000040f0000118d0000013d0000000001000416000000000001004b00001e880000c13d0000800b0100003900000004030000390000000004000415000000300440008a000000050440021000000cdb02000041319331660000040f000000800010043f00000ce001000041000031940001042e0000000001000416000000000001004b00001e880000c13d0000000001000412002900000001001d002800600000003d000080050100003900000044030000390000000004000415000000290440008a000010a20000013d0000000001000416000000000001004b00001e880000c13d0000000001000412002500000001001d002401400000003d000080050100003900000044030000390000000004000415000000250440008a000000050440021000000cf602000041319331660000040f00000c6901100197000000800010043f00000ce001000041000031940001042e000000400100043d000000640210003900000c6a030000410000000000320435000000440210003900000c6b03000041000000000032043500000024021000390000002703000039000012400000013d000000640130003900000d18040000410000000000410435000000440130003900000d1904000041000000000041043500000024013000390000003804000039000000000041043500000c6c01000041000000000013043500000004013000390000002003000039000000000031043500000c6d012001c700003195000104300000000203000039000000000032041b0000086b02000039000000000202041a00000ce100200198000011170000c13d001000000005001d001100000004001d001300000001001d00000140011000390000000001010433001200000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000120200002900000c6602200197000000000101043b00000c6601100197000000000012004b000012d20000813d0000001301000029319321b20000040f0000001303000029000000c0023000390000000002020433001200000002001d00000020023000390000000002020433000e00000002001d00000160023000390000000002020433000d00000002001d000f00000001001d31931f110000040f000000a0021000390000001003000029000000000032043500000080021000390000000d03000029000000000032043500000060021000390000000e03000029000000000032043500000040021000390000001203000029000000000032043500000020021000390000000f030000290000000000320435000000130200002900000000002104350000001102000029319325050000040f0000118d0000013d0000000202000039000000000021041b0000086c01000039000000000201041a000000000052004b00001a070000a13d000000000010043f00000003015000c900000cf80210009a000000000002041b00000cf90110009a000000000001041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000cfa040000410000118a0000013d00000d2f01000041000000000010043f00000c7501000041000031950001043000000d1a02000041000000000202041a00000c6902200197000000000012004b000012370000c13d0000086901000039000000000101041a00000cd90110009a00000c69011001970000000002000411000000000012004b000012830000c13d000000400100043d001200000001001d00000cfe0010009c00000efc0000213d00000012020000290000002001200039000000400010043f00000000000204350000000001000415001100000001001d00000d1b01000041000000000101041a000000ff001001900000154f0000c13d000000400200043d001000000002001d00000d1c01000041000000000012043500000c660020009c00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c75011001c70000001302000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000100b0000290000001005700029000011550000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000011510000c13d000000000006004b000011620000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f00000000001504350000000100200190000015690000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000c730010009c00000efc0000213d000000010020019000000efc0000c13d000000400010043f000000200030008c00001e880000413d00000000020b043300000d1a0020009c000016d30000c13d00000013010000290000001202000029000000000300001931932fc60000040f000016b10000013d0000000103100039000000000032041b000000000020043f00000003021000c900000cf90320009a000000000063041b00000cf80220009a000000000072041b000000000200041400000c660510019700000c660020009c00000c6602008041000000c00120021000000ce8011001c70000800d02000039000000040300003900000d1f04000041319331840000040f000000010020019000001e880000613d00000001010000390000006502000039000000000012041b0000000001000019000031940001042e0000000001000019000000010110018f000001a00010043f000000000005004b0000001305000029000011a50000613d00000c690050019800000000020000390000000102006039000000120000006b0000000003000039000000010300c039000000000223013f0000000100200190000011a50000613d00000c7401000041000000000010043f00000c75010000410000319500010430000001c00050043f0000001006000029000001e00060043f000000800200043d00000140000004430000016000200443000000a00300043d00000020020000390000018000200443000001a0003004430000004003000039000000c00400043d000001c000300443000001e0004004430000006003000039000000e00400043d000002000030044300000220004004430000008003000039000001000400043d00000240003004430000026000400443000000a003000039000001200400043d0000028000300443000002a000400443000000c003000039000001400400043d000002c000300443000002e000400443000000e003000039000001600400043d000003000030044300000320004004430000010003000039000001800400043d0000034000300443000003600040044300000120030000390000038000300443000003a0001004430000014001000039000003c000100443000003e00050044300000160010000390000040000100443000004200060044300000100002004430000000c01000039000001200010044300000c7601000041000031940001042e0000001f0350003900000c67033001970000003f0330003900000c7204300197000000400300043d0000000004430019000000000034004b0000000006000039000000010600403900000c730040009c00000efc0000213d000000010060019000000efc0000c13d000000400040043f0000001f0650018f000000000453043600000c68075001980000000005740019000011f20000613d000000000801034f0000000009040019000000008a08043c0000000009a90436000000000059004b000011ee0000c13d000000000006004b000001240000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f0000000000150435000001240000013d000e00000003001d001000000002001d00000d0801000041000000000010044300000000010004100000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b0000131b0000c13d0000000e01000029000000ff0110018f000000010010008c00000010010000290000000501100270000000000100003f000000010100603f00000000010004150000131e0000c13d000000000200041500000000012100490000000001000002000000000200041a00000d590120019700000001011001bf0000000f0000006b0000ffff0200608a000000000121616f00000100011061bf000000000010041b00000c5a02000039000000000302041a00000d0c033001970000800a033001bf000000000032041b0000ff0000100190000013280000c13d000000400100043d000000640210003900000d12030000410000000000320435000000440210003900000d1303000041000000000032043500000024021000390000002b03000039000012400000013d000000400100043d000000640210003900000d23030000410000000000320435000000440210003900000d2403000041000000000032043500000024021000390000002c03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c700003195000104300000001301000029000000000010043f0000087301000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000001102000029000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000001041b000000120200002900000c690020009c0000001301000029000018f50000213d000000100300002931932a590000040f000000400100043d0000001002000029000000000021043500000c660010009c00000c66010080410000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c6e011001c70000800d02000039000000040300003900000cef04000041000000130500002900000012060000290000000007000411319331840000040f000000010020019000001e880000613d000001320000013d000000400100043d000000440210003900000d25030000410000000000320435000000240210003900000018030000390000076c0000013d00000d5201000041000000800010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000d53011001c70000001202000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000012a20000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000129e0000c13d000000000006004b000012af0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000014510000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c00001e880000413d000000800100043d00000c690010009c00001e880000213d000000130010006c00000abc0000613d00000d5401000041000000000010043f00000c7501000041000031950001043000000d210030009c00000efc0000213d000000600500003900000000030000190000004004200039000000400040043f000000200420003900000000005404350000000000020435000000a00430003900000000002404350000002003300039000000000013004b0000146f0000813d000000400200043d00000d0d0020009c000012c40000a13d00000efc0000013d00000013010000290000004001100039000000000101043300000c690010009c000018f50000213d0000000002000411000000000021004b000010e00000613d00000d3001000041000000000010043f00000c750100004100003195000104300000000005000019000000800f000039000012f30000013d0000000309900210000000000a0b0433000000000a9a01cf000000000a9a022f00000000080804330000010009900089000000000898022f00000000089801cf0000000008a8019f00000000008b04350000001f0870003900000d58088001970000000007670019000000000007043500000000066800190000000105500039000000000025004b00000b630000813d0000000007160049000000400770008a0000000003730436000000200ff0003900000000070f04330000000087070434000000000676043600000d580a7001970000001f0970018f000000000068004b0000130e0000813d00000000000a004b0000130a0000613d000000000c980019000000000b960019000000200bb0008a000000200cc0008a000000000dab0019000000000eac0019000000000e0e04330000000000ed0435000000200aa0008c000013040000c13d000000000009004b000012eb0000613d000000000b060019000012e10000013d000000000ba6001900000000000a004b000013170000613d000000000c080019000000000d06001900000000ce0c0434000000000ded04360000000000bd004b000013130000c13d000000000009004b000012eb0000613d0000000008a80019000012e10000013d00000010010000290000000501100270000000000100003f000000400100043d000000640210003900000d0a030000410000000000320435000000440210003900000d0b03000041000000000032043500000024021000390000002e03000039000012400000013d0000001301000029000000c0011002100000086b02000039000000000302041a00000cde03300197000000000113019f000000000012041b000000400100043d00000d0d0010009c00000efc0000213d0000004002100039000000400020043f0000000902000039000000000221043600000cf4030000410000000000320435000000400300043d001300000003001d00000d0d0030009c00000efc0000213d00000013040000290000004003400039000000400030043f0000000503000039000000000434043600000cf503000041001000000004001d000000000034043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000100200002900000c660020009c00000c660200804100000040022002100000001303000029000000000303043300000c660030009c00000c66030080410000006003300210000000000223019f000000000101043b001300000001001d000000000100041400000c660010009c00000c6601008041000000c001100210000000000121019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000047f020000390000001303000029000000000032041b0000048002000039000000000012041b000000000100041a0000ff00001001900000122d0000613d00000001020000390000006501000039000000000021041b000000120000006b000016e00000c13d00000d1101000041000000000010043f00000c7501000041000031950001043000000080050000390000000008000019000013940000013d000000000bdb00190000000306c00210000000000a0e0433000000000a6a01cf000000000a6a022f000000000b0b04330000010006600089000000000b6b022f00000000066b01cf0000000006a6019f00000000006e04350000001f0690003900000d580660019700000000092900190000000000090435000000000a2600190000000108800039000000000038004b00000c3f0000813d00000000021a0049000000400220008a0000000004240436000000200550003900000000020504330000000092020434000000000002004b0000000002000039000000010200c03900000000022a04360000000009090433000000400600003900000000006204350000004002a0003900000000b9090434000000000092043500000d580d9001970000001f0c90018f0000006002a0003900000000002b004b000013b90000813d00000000000d004b000013b50000613d000000000acb0019000000000ec20019000000200ee0008a000000200fa0008a000000000ade00190000000006df0019000000000606043300000000006a0435000000200dd0008c000013af0000c13d00000000000c004b0000138c0000613d000000000e020019000013820000013d000000000ed2001900000000000d004b000013c20000613d000000000f0b0019000000000a02001900000000f60f0434000000000a6a04360000000000ea004b000013be0000c13d00000000000c004b000013810000c13d0000138c0000013d0000000009000019000000050a9002100000000001a700190000000101100367000000000101043b000000000200003100000000037200490000001f0330008a00000cec0430019700000cec05100197000000000645013f000000000045004b000000000400001900000cec04004041000000000031004b000000000300001900000cec0300804100000cec0060009c000000000403c019000000000004004b00001e880000c13d00000000037100190000000101300367000000000101043b00000c730010009c00001e880000213d0000000004120049000000200230003900000cec0340019700000cec05200197000000000635013f000000000035004b000000000300001900000cec03004041000000000042004b000000000400001900000cec0400204100000cec0060009c000000000304c019000000000003004b00001e880000c13d00000d58041001980000000105200367000000400200043d0000000003420019000013f90000613d000000000605034f0000000007020019000000006806043c0000000007870436000000000037004b000013f50000c13d00130000000a001d001200000009001d0000001f06100190000014080000613d000000000445034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000003120019000000000003043500000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000000020004103193318e0000040f000000600310027000000c66043001980000006003000039000000130a000029000014410000613d0000001f0340003900000c67033001970000003f0330003900000c7205300197000000400300043d0000000005530019000000000035004b0000000006000039000000010600403900000c730050009c00000efc0000213d000000010060019000000efc0000c13d000000400050043f000000000743043600000c68064001980000000005670019000014340000613d000000000801034f000000008908043c0000000007970436000000000057004b000014300000c13d0000001f04400190000014410000613d000000000161034f0000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f0000000000150435000000010020019000000010070000290000001209000029000015790000613d000000800100043d000000000091004b00001a070000a13d000000a001a000390000000000310435000000800100043d000000000091004b00001a070000a13d0000000109900039000000110090006c000013c60000413d00000b590000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000014580000c13d000000000005004b000014690000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c660020009c00000c66020080410000004002200210000000000112019f00003195000104300000000009000019000f0000000a001d000014790000013d000000010120018f00000000011b0436000000000031043500000012090000290000000109900039000000100090006c00000c330000813d000000800100043d000000000091004b00001a070000a13d00000005019002100000000003a100190000000102000367000000000332034f000000000403043b0000000003000031000000110530006a000000430550008a00000cec0650019700000cec07400197000000000867013f000000000067004b000000000600001900000cec06004041000000000054004b000000000500001900000cec0500804100000cec0080009c000000000605c019000000000006004b00001e880000c13d000000a001100039000000000b0104330000000004a40019000000000142034f000000000101043b00000c730010009c00001e880000213d0000000005130049000000200340003900000cec0450019700000cec06300197000000000746013f000000000046004b000000000400001900000cec04004041000000000053004b000000000500001900000cec0500204100000cec0070009c000000000405c019000000000004004b00001e880000c13d000000000432034f00000d5805100198000000400200043d0000000003520019000014b20000613d000000000604034f0000000007020019000000006806043c0000000007870436000000000037004b000014ae0000c13d00130000000b001d001200000009001d0000001f06100190000014c10000613d000000000454034f0000000305600210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f00000000004304350000000003120019000000000003043500000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000000020004103193318e0000040f000000600310027000000c660430019800000060030000390000000f0a000029000000130b000029000014720000613d0000001f0340003900000c67033001970000003f0330003900000c7205300197000000400300043d0000000005530019000000000035004b0000000006000039000000010600403900000c730050009c00000efc0000213d000000010060019000000efc0000c13d000000400050043f000000000743043600000c68064001980000000005670019000014ee0000613d000000000801034f000000008908043c0000000007970436000000000057004b000014ea0000c13d0000001f04400190000014720000613d000000000161034f0000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f0000000000150435000014720000013d0000006501000039000000000101041a000000020010008c000007660000613d00000002010000390000006502000039000000000012041b0000086b01000039000000000101041a00000cdd00100198000015470000c13d000000c00110027000000c6601100197000500000001001d319321a70000040f0000086b03000039000000000203041a00000cde02200197000000c00110021000000cdf01100197000000000112019f000000000013041b31931f1d0000040f0000000003010019000400000001001d00000160011000390000000a020000290000000000210435000001400130003900000013020000290000000000210435000001200130003900000006020000290000000000210435000001000130003900000005020000290000000000210435000000e0013000390000000c020000290000000000210435000000c0013000390000000d020000290000000000210435000000a0013000390000000e02000029000000000021043500000080013000390000000f0200002900000000002104350000006001300039000000100200002900000000002104350000004001300039000000110200002900000000002104350000002001300039000000120200002900000000002104350000000b01000029000000000013043500000000030000310000000801000029000000090200002931931f290000040f0000000403000029000001800230003900000000001204350000000001030019319327c50000040f00000001010000390000006502000039000000000012041b00000000010004150000000702000029000016b30000013d00000d5701000041000000000010043f00000c7501000041000031950001043000000d2a01000041000000000010043f00000c7501000041000031950001043000000d0801000041000000000010044300000013010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b000016ac0000c13d000000400100043d000000640210003900000d27030000410000000000320435000000440210003900000d2803000041000000000032043500000024021000390000002d03000039000012400000013d000000400200043d001300000002001d00000c6c0100004100000000001204350000000401200039319326250000040f0000001302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f00003195000104300000000001030433000000440010008c00001e880000413d00000004013000390000000002010433000000000100041500000ced0020009c00001e880000213d000000200020008c00001e880000413d0000002403300039000000000403043300000c730040009c00001e880000213d000000000623001900000000023400190000001f03200039000000000063004b000000000400001900000cec0400804100000cec0330019700000cec05600197000000000753013f000000000053004b000000000300001900000cec0300404100000cec0070009c000000000304c019000000000003004b00001e880000c13d000000004302043400000c730030009c00000efc0000213d0000001f0230003900000ce4022001970000003f0220003900000ce605200197000000400200043d0000000005520019000000000025004b0000000007000039000000010700403900000c730050009c00000efc0000213d000000010070019000000efc0000c13d000000400050043f00000000053204360000000007340019000000000067004b00001e880000213d00000d58073001970000001f0630018f000000000054004b000018c80000813d000000000007004b000015bc0000613d00000000096400190000000008650019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000015b60000c13d000000000006004b000018de0000613d0000000008050019000018d40000013d00000000020000310000001201000029319320230000040f319321b20000040f001000000001001d000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000101041a000000000001004b000016dc0000c13d0000001001000029000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000000102000039000000000021041b0000001108000029000000600280008a0000000101000367000000000221034f000000200380008a000000000331034f000000c00480008a000000000441034f000000a00580008a000000000551034f000000800680008a000000000661034f000000000781034f000000400880008a000000000881034f000000000303043b001000000003001d000000000308043b000f00000003001d000000000202043b000b00000002001d000000000206043b000c00000002001d000000000205043b000d00000002001d000000000204043b000e00000002001d000000000207043b000a00000002001d00000c660020009c00001e880000213d00000011020000290000002002200039000000000321034f000000000303043b001100000003001d00000c660030009c00001e880000213d0000002003200039000000000331034f000000000403043b0000000003000031000000130530006a000000230550008a00000cec0650019700000cec07400197000000000867013f000000000067004b000000000600001900000cec06004041000000000054004b000000000500001900000cec0500804100000cec0080009c000000000605c019000001000520008a000000000551034f000001400720008a000000000771034f000001200220008a000000000221034f000000000202043b000800000002001d000000000207043b000900000002001d000000000205043b001300000002001d000000000006004b00001e880000c13d0000001204400029000000000241034f000000000202043b00000c730020009c00001e880000213d0000000005230049000000200640003900000cec0450019700000cec07600197000000000847013f000000000047004b000000000400001900000cec04004041000000000056004b000000000500001900000cec0500204100000cec0080009c000000000405c019000000000004004b00001e880000c13d0000001f0420003900000ce4044001970000003f0440003900000ce605400197000000400400043d0000000005540019000000000045004b0000000007000039000000010700403900000c730050009c00000efc0000213d000000010070019000000efc0000c13d000000400050043f00000000052404360000000007620019000000000037004b00001e880000213d000000000361034f00000d58062001980000001f0720018f00000000016500190000165b0000613d000000000803034f0000000009050019000000008a08043c0000000009a90436000000000019004b000016570000c13d000000000007004b000016680000613d000000000363034f0000000306700210000000000701043300000000076701cf000000000767022f000000000303043b0000010006600089000000000363022f00000000036301cf000000000373019f0000000000310435000000000125001900000000000104350000000001040433000000000001004b0000000002000019000016800000613d00000c660050009c00000c6605008041000000400250021000000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000201043b000000400100043d00000120031000390000000000230435000001000210003900000008030000290000000000320435000000e00210003900000009030000290000000000320435000000c00210003900000013030000290000000000320435000000a0021000390000001103000029000000000032043500000080021000390000000a03000029000000000032043500000060021000390000000b03000029000000000032043500000040021000390000000c03000029000000000032043500000020021000390000000d0300002900000000003204350000000e02000029000000000021043500000c660010009c00000c66010080410000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d2c011001c70000800d02000039000000030300003900000d2d040000410000000f050000290000001006000029000011160000013d00000d1a01000041000000000201041a00000d0c0220019700000013022001af000000000021041b00000000010004150000001102000029000000000112004900000000010000020000000001000019000031940001042e00000cfd01000041000000000010043f00000c7501000041000031950001043000000d0801000041000000000010044300000013010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b0000155f0000613d00000d1a01000041000000000201041a00000d0c0220019700000013022001af000000000021041b00000000010004150000001202000029000016b30000013d000000640210003900000d1d030000410000000000320435000000440210003900000d1e03000041000000000032043500000024021000390000002903000039000012400000013d00000d2b01000041000000000010043f00000c750100004100003195000104300000086901000039000000000201041a00000d0c022001970000001205000029000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d0e04000041319331840000040f000000010020019000001e880000613d000000110000006b000017090000c13d00000d1001000041000000000010043f00000c750100004100003195000104300000000901000029000001000110008a0000000101100367000000000101043b00000c690010009c000018f50000213d0000000002000411000000000021004b000003490000613d000012da0000013d00000011010000290000000001010433000000030010008c0000172e0000213d00000d0301000041000000000010043f00000c750100004100003195000104300000086a01000039000000000201041a00000d0c022001970000001105000029000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d0f04000041319331840000040f000000010020019000001e880000613d0000000f0000006b000001320000c13d000000000200041a00000d5b01200197000000000010041b000000400100043d0000000103000039000000000031043500000c660010009c00000c66010080410000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c6e011001c70000800d0200003900000c6f040000410000091e0000013d000000100200002900000c660020009c00000c6602008041000000400220021000000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f0000001202000029319331840000040f000000600310027000000c6603300198000017a60000c13d000f00600000003d0000000100200190000017ce0000613d000000400100043d0000002002000039000000000321043600000011020000290000000002020433000000000023043500000d58052001970000001f0420018f0000004003100039000000100030006b0000188d0000813d000000000005004b0000175a0000613d00000010074000290000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c000017540000c13d000000000004004b000018a40000613d0000000006030019000018990000013d000000000a960019000000000009004b000017670000613d000000000b070019000000000c06001900000000bd0b0434000000000cdc04360000000000ac004b000017630000c13d000000000008004b000017740000613d0000000007970019000000030880021000000000090a043300000000098901cf000000000989022f00000000070704330000010008800089000000000787022f00000000078701cf000000000797019f00000000007a04350000000006610019000000000006043500000064062000390000000000560435000000440520003900000000004504350000001f0110003900000d580110019700000204041000390000000000420435000002430110003900000d58011001970000000001120019000000000021004b0000000004000039000000010400403900000c730010009c00000efc0000213d000000010040019000000efc0000c13d000000400010043f00000c660030009c00000c66030080410000004001300210000000000202043300000c660020009c00000c66020080410000006002200210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000000020004103193318e0000040f000000600310027000000c6603300198000018650000c13d0000000100200190000001320000c13d000000400200043d001200000002001d00000d000100004100000000001204350000000401200039000000130200002931931fd10000040f0000001202000029000015700000013d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019000f00000005001d000000000054004b0000000005000039000000010500403900000c730040009c00000efc0000213d000000010050019000000efc0000c13d000000400040043f0000001f0430018f0000000f05000029000000000635043600000c68053001980000000003560019000017c00000613d000000000701034f000000007807043c0000000006860436000000000036004b000017bc0000c13d000000000004004b000017410000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000017410000013d00000d0101000041000000000010043f00000c75010000410000319500010430000000000a960019000000000009004b000017db0000613d000000000b070019000000000c06001900000000bd0b0434000000000cdc04360000000000ac004b000017d70000c13d000000000008004b000017e80000613d0000000007970019000000030880021000000000090a043300000000098901cf000000000989022f00000000070704330000010008800089000000000787022f00000000078701cf000000000797019f00000000007a0435000000000665001900000000000604350000000f060000290000000006060433000000600710003900000000006704350000000003030433000000800610003900000000003604350000001f0350003900000d5803300197000002200530003900000000005104350000025f0330003900000d58043001970000000003140019000000000043004b0000000004000039000000010400403900000c730030009c00000efc0000213d000000010040019000000efc0000c13d000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b00000012020000290000000002020433000000000002004b000018340000613d0000000003000019001300000003001d000000050230021000000011022000290000000002020433000000000021004b000018220000813d000000000010043f000000200020043f0000000001000414000018250000013d000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b0000001303000029000000010330003900000012020000290000000002020433000000000023004b000018180000413d0000000e0010006c000018ea0000c13d0000000001000415001100000001001d0000000c010000290000000001010433001200000001001d00000120011000390000000001010433001300000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000130200002900000c6602200197000000000012004b00000e8c0000413d0000000b010000290000000001010433001300000001001d000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000101041a000000020010008c000018fd0000c13d00000d3401000041000000000010043f00000c750100004100003195000104300000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019001300000005001d000000000054004b0000000005000039000000010500403900000c730040009c00000efc0000213d000000010050019000000efc0000c13d000000400040043f0000001f0430018f0000001305000029000000000635043600000c680530019800000000035600190000187f0000613d000000000701034f000000007807043c0000000006860436000000000036004b0000187b0000c13d000000000004004b0000179b0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000179b0000013d0000000006530019000000000005004b000018960000613d0000001007000029000000000803001900000000790704340000000008980436000000000068004b000018920000c13d000000000004004b000018a40000613d001000100050002d0000000304400210000000000506043300000000054501cf000000000545022f000000100700002900000000070704330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000001f0420003900000d580440019700000000023200190000000000020435000000400240003900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000ce8011001c70000800d02000039000000020300003900000d02040000410000001205000029319331840000040f000000010020019000001e880000613d00000001010000390000006502000039000000000012041b000000000100041500000013011000690000000001000002000000400100043d001300000001001d0000000f0200002931931fd10000040f00000f0b0000013d0000000008750019000000000007004b000018d10000613d0000000009040019000000000a050019000000009b090434000000000aba043600000000008a004b000018cd0000c13d000000000006004b000018de0000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f00000000004804350000000003350019000000000003043500000000030004150000000001310049000000000100000200000c6c01000041000000400300043d001300000003001d0000000000130435000000040130003931931fd10000040f0000156f0000013d00000d3701000041000000000010043f00000c75010000410000319500010430000000c00100043d00000c690010009c000018f50000213d0000000002000411000000000021004b00000a780000613d000012da0000013d00000d3201000041000000000010043f00000c7501000041000031950001043000000d3601000041000000000010043f00000c750100004100003195000104300000001301000029319320130000040f0000000204000039000000000041041b0000000c010000290000001202000029000000000300001931932b1e0000040f00000001030000390000000c01000029000000120200002931932be20000040f00000000010004150000001101100069000000000100000200000065010000390000000102000039000000000021041b0000000001000019000031940001042e00000d3a01000041000000000010043f00000c7501000041000031950001043000000d3b01000041000000000010043f00000c75010000410000319500010430000000400300043d001200000003001d00000d3c010000410000000000130435000000000100041000000c69011001970000000402300039000000000012043500000c660030009c00000c660100004100000000010340190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d3d011001c70000000d02000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000120b00002900000012057000290000193d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000019390000c13d000000000006004b0000194a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001a890000613d0000001f01400039000000600210018f0000000001b20019000000000021004b0000000002000039000000010200403900000c730010009c00000efc0000213d000000010020019000000efc0000c13d000000400010043f000000200030008c00001e880000413d00000000010b0433000700000001001d000500000000001d001200000000001d001100000000001d000019640000013d00000012020000290000000102200039001200000002001d0000000a0020006c00000df70000813d00000010010000290000000001010433000000120010006c00001a070000a13d000000120100002900000005021002100000000901200029000f00000001001d0000000001010433000000000001004b0000195f0000613d000000110010002a000009940000413d0000001104100029001100000004001d000000070040006c00001a950000213d0000000c030000290000000003030433000000120030006c00001a070000a13d0000000802200029000b00000002001d00000000030204330000000002000415000e00000002001d000000400200043d00000044042000390000000000140435000000200120003900000d3e04000041000000000041043500000c6903300197000000240420003900000000003404350000004403000039000000000032043500000ceb0020009c00000efc0000213d0000008003200039000000400030043f00000c660010009c00000c66010080410000004001100210000000000202043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000d02000029319331840000040f000000600310027000000c6603300197000000200030008c000000200500003900000000050340190000002004500190000019a90000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000019a50000c13d0000001f05500190000019b60000613d000000000141034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000000100200190000019c10000613d000000000003004b000019f30000613d000000000100043d00000000020004150000000e022000690000000002000002000000010010008c0000195f0000613d000019c40000013d00000000010004150000000e01100069000000000100000200000010010000290000000001010433000000120010006c00001a070000a13d0000000f010000290000000001010433000f00000001001d0000000d01000029000000000010043f0000087301000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d0000000c020000290000000002020433000000120020006c00001a070000a13d000000000101043b0000000b02000029000000000202043300000c6902200197000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000101043b000000000201041a0000000f0020002a000009940000413d0000000f02200029000000000021041b000500010000003d0000195f0000013d00000d080100004100000000001004430000000d010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000000020004150000000e022000690000000002000002000000000001004b0000195f0000c13d000019c40000013d00000d3f01000041000000000010043f0000003201000039000000040010043f00000d3d0100004100003195000104300000000001000415000b00000001001d00000cf6010000410000000000100443000000000100041200000004001004430000006001000039001200000001001d0000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c69011001970000000d0010006b00001a990000c13d00000d080100004100000000001004430000000d010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b00001e880000613d000000400300043d00000d4c01000041000000000013043500000004013000390000000402000029000000000021043500000c660030009c001200000003001d00000c660100004100000000010340190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d3d011001c70000000d02000029319331840000040f000000010020019000001af70000613d000000120100002900000c730010009c00000efc0000213d0000001201000029000000400010043f0000086a01000039000000000101041a001200000001001d00000c5a01000039000000000101041a00000d0802000041000000000020044300000c6901100197001100000001001d0000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b00001e880000613d000000120100002900000c6901100197000000400300043d00000d4d0200004100000000002304350000000402300039000000000012043500000c660030009c001200000003001d00000c660100004100000000010340190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d4e011001c70000800902000039000000040300002900000011040000290000000005000019319331840000040f000000010020019000001dc70000c13d00000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900001ed30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001a840000c13d00001ed30000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a900000c13d0000145c0000013d00000d4001000041000000000010043f00000c7501000041000031950001043000000cf601000041000000000010044300000000010004120000000400100443000000e0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000cf60200004100000000002004430000000002000412000000040020044300000c69011001970000000d0010006b00001b040000c13d00000100010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b00000c690010019800001b670000c13d00000cf60100004100000000001004430000000001000412000000040010044300000140010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000201043b0000000001000415000e00000001001d000000400400043d000000440140003900000004030000290000000000310435000000200140003900000d450300004100000000003104350000004403000039000000000034043500000c69032001970000002402400039001100000003001d0000000000320435001000000004001d00000ceb0040009c00000efc0000213d00000010030000290000008002300039000000400020043f00000c660010009c00000c66010080410000004001100210000000000203043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000d02000029319331840000040f000000600310027000000c660430019800001d300000c13d000000800300003900001d580000013d00000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900001ed30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001aff0000c13d00001ed30000013d000000400100043d001100000001001d00000160010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d00000011040000290000002002400039000000000101043b000000000012043500000060014000390000000d030000290000000000310435000000400140003900000d410300004100000000003104350000006001000039000000000014043500000ceb0040009c00000efc0000213d00000011030000290000008001300039000000400010043f00000c660020009c00000c66020080410000004001200210000000000203043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000001e880000613d000000000201043b0000086a01000039000000000101041a000000400300043d00000060043000390000000d05000029000000000054043500000c6901100197000000400430003900000000001404350000002001300039000000040400002900000000004104350000006004000039000000000043043500000ceb0030009c00000efc0000213d0000008005300039000000400050043f00000d4204000041001200000005001d0000000000450435000000a4043000390000004005000039000000000054043500000084043000390000000000240435000000c4043000390000000002030433000000000024043500000d58052001970000001f0420018f000000e403300039000000000031004b00001dce0000813d000000000005004b00001b630000613d00000000074100190000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c00001b5d0000c13d000000000004004b00001de40000613d000000000603001900001dda0000013d0000086a01000039000000000101041a000f00000001001d0000000001000415000a00000001001d00000cf601000041000000000010044300000000010004120000000400100443000000e0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b001200000001001d00000cf60100004100000000001004430000000001000412000000040010044300000100010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b0000000002000415000e00000002001d00000d4302000041000000400400043d000c00000004001d0000000000240435000000000200041000000c69022001970000000403400039000000000023043500000c69021001970000002401400039001100000002001d000000000021043500000c660040009c00000c660100004100000000010440190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f000000120200002900000c690220019700000d44011001c7001000000002001d319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000c0b0000290000000c0570002900001bb90000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00001bb50000c13d000000000006004b00001bc60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001e8a0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b0000000001000039000000010100403900000c730020009c00000efc0000213d000000010010019000000efc0000c13d000000400020043f000000200030008c00001e880000413d00000000010b0433000000040010002a000009940000413d0000000401100029000000200320003900000d45040000410000000000430435000000440320003900000000001304350000002401200039000000110300002900000000003104350000004401000039000000000012043500000ceb0020009c00000efc0000213d0000008001200039000000400010043f0000001201000029319330970000040f00000000010004150000000e01100069000000000100000200000d4601000041000000400200043d000e00000002001d000000000012043500000c660020009c00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c75011001c70000001102000029319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000e0b0000290000000e0570002900001c0c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00001c080000c13d000000000006004b00001c190000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001e960000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039001200000002001d00000c730020009c00000efc0000213d000000010010019000000efc0000c13d0000001201000029000000400010043f000000200030008c00001e880000413d00000000020b043300000c690020009c00001e880000213d00000d47010000410000001204000029000000000014043500000004014000390000001003000029000000000031043500000c660040009c00000c660100004100000000010440190000004001100210000000000300041400000c660030009c00000c6603008041000000c003300210000000000113019f00000d3d011001c7319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000120570002900001c4d0000613d000000000801034f0000001209000029000000008a08043c0000000009a90436000000000059004b00001c490000c13d000000000006004b00001c5a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001ea20000613d0000001f01400039000000600110018f000000120110002900000c730010009c00000efc0000213d000000400010043f000000200030008c00001e880000413d00000012010000290000000001010433000900000001001d00000cf60100004100000000001004430000000001000412000000040010044300000120010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d0000000f02000029000c0c690020019b000000000101043b000800000001001d000f00040000002d0000000f02000029000000090020006c00000009010000290000000001024019000e00000001001d000000080000006b00001cce0000613d00000d0801000041000000000010044300000011010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b00001e880000613d000000400200043d00000d4801000041001200000002001d000000000012043500000cf601000041000000000010044300000000010004120000000400100443000000c0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b0000001204000029000000c402400039000007d003000039000000000032043500000064024000390000001003000029000000000032043500000044024000390000000c03000029000000000032043500000004024000390000000e03000029000000000032043500000c660110019700000024024000390000000000120435000000a40140003900000000000104350000008401400039000000000001043500000c660040009c00000c660100004100000000010440190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d49011001c70000001102000029319331840000040f000000010020019000001eae0000613d000000120100002900000c730010009c00000efc0000213d0000001201000029000000400010043f00001d290000013d000000400200043d00000d4a01000041001200000002001d000000000012043500000cf601000041000000000010044300000000010004120000000400100443000000c0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000120400002900000064024000390000001003000029000000000032043500000044024000390000000c03000029000000000032043500000004024000390000000e03000029000000000032043500000c66011001970000002402400039000000000012043500000c660040009c00000c660100004100000000010440190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000c6d011001c70000001102000029319331840000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000002006400190000000120560002900001d090000613d000000000701034f0000001208000029000000007907043c0000000008980436000000000058004b00001d050000c13d0000001f0740019000001d160000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000010020019000001ebb0000613d0000001f01400039000000600210018f0000001201200029000000000021004b0000000002000039000000010200403900000c730010009c00000efc0000213d000000010020019000000efc0000c13d000000400010043f000000200030008c00001e880000413d0000001201000029000000000101043300000c730010009c00001e880000213d0000000e02000029000f000f0020007300001c7b0000c13d00000000010004150000000a01100069000000000100000200001e1e0000013d0000001f0340003900000c67033001970000003f0330003900000c7203300197000000400500043d0000000003350019001200000005001d000000000053004b0000000005000039000000010500403900000c730030009c00000efc0000213d000000010050019000000efc0000c13d000000400030043f0000001f0540018f0000001203000029000000000343043600000c6806400198000000000463001900001d4b0000613d000000000701034f0000000008030019000000007907043c0000000008980436000000000048004b00001d470000c13d000000000005004b00001d580000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000010020019000001d810000613d0000000001000415000000270110008a000f00050010021800000012010000290000000001010433000000000001004b00001d6d0000613d00000ced0010009c00001e880000213d000000200010008c00001e880000413d0000000001030433000000010010008c00001e880000213d0000000002000415000000260220008a000f000500200218000000000001004b00001d810000613d00000d080100004100000000001004430000000d010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b0000000f010000290000000501100270000000000100003f000000010100c03f00001d950000c13d000000400200043d000000200120003900000d45030000410000000000310435000000240120003900000011030000290000000000310435000000440100003900000000001204350000004401200039000000000001043500000ceb0020009c00000efc0000213d0000008001200039000000400010043f0000000d01000029319330970000040f0000000d010000290000001002000029319330970000040f00000000010004150000000e0110006900000000010000020000086a01000039000000000101041a001200000001001d00000d0801000041000000000010044300000011010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000001dcd0000613d000000000101043b000000000001004b00001e880000613d000000120100002900000c6901100197000000400400043d00000044024000390000000403000029000000000032043500000024024000390000000d03000029000000000032043500000d4b0200004100000000002404350000000402400039000000000012043500000c660040009c001200000004001d00000c660100004100000000010440190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d26011001c70000001102000029319331840000040f000000010020019000001ec70000613d000000120100002900000c730010009c00000efc0000213d0000001201000029000000400010043f00001e1e0000013d000000000001042f0000000006530019000000000005004b00001dd70000613d0000000007010019000000000803001900000000790704340000000008980436000000000068004b00001dd30000c13d000000000004004b00001de40000613d00000000015100190000000304400210000000000506043300000000054501cf000000000545022f00000000010104330000010004400089000000000141022f00000000014101cf000000000151019f00000000001604350000001f0120003900000d580110019700000000023200190000000000020435000000640110003900000c660010009c00000c66010080410000006001100210000000120200002900000c660020009c00000c66020080410000004002200210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000d2202000041319331840000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000120570002900001e070000613d000000000801034f0000001209000029000000008a08043c0000000009a90436000000000059004b00001e030000c13d000000000006004b00001e140000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000001ee30000613d0000001f01400039000000600110018f000000120110002900000c730010009c00000efc0000213d000000400010043f000000200030008c00001e880000413d000000010100002900000c660610019700000000010004150000000b0110006900000000010000020000000001000411001200000001001d00000c6901100197000000400200043d000000200320003900000000001304350000000401000029000000000012043500000c660020009c00000c66020080410000004001200210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000cee011001c70000800d02000039000000040300003900000d4f0400004100000002050000290000000d07000029319331840000040f000000010020019000001e880000613d000000000100041500000003011000690000000001000002000000400100043d0000002004100039000001200200043d000000a00500043d000000e00300043d000001000600043d000000c00700043d000000800800043d000000c00900003900000000009404350000000000810435000000c00410003900000000080704330000000000840435000000e00410003900000c6906600197000000000008004b00001e580000613d00000000090000190000002007700039000000000a0704330000000004a404360000000109900039000000000089004b00001e520000413d00000c66073001970000000003140049000000600810003900000000003804350000004003100039000000000063043500000000060204330000000003640436000000000006004b00001e6a0000613d00000000040000190000002002200039000000000802043300000c690880019700000000038304360000000104400039000000000064004b00001e630000413d000000120200002900000c6902200197000000a0041000390000000000240435000000050000006b0000000002000039000000010200c03900000080041000390000000000240435000000000213004900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000800d02000039000000040300003900000d50040000410000001306000029319331840000040f0000000100200190000000a00000c13d000000000100001900003195000104300000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e910000c13d0000145c0000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e9d0000c13d0000145c0000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ea90000c13d0000145c0000013d00000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900001ed30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001eb60000c13d00001ed30000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ec20000c13d0000145c0000013d00000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900001ed30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00001ecf0000c13d00000c6606600197000000000004004b00001ee10000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000060016002100000146a0000013d0000001f0530018f00000c6806300198000000400200043d00000000046200190000145c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001eea0000c13d0000145c0000013d00000c6902200197000000000020043f000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f000000010020019000001efd0000613d000000000101043b000000000001042d000000000100001900003195000104300000001f0220003900000d58022001970000000001120019000000000021004b0000000002000039000000010200403900000c730010009c00001f0b0000213d000000010020019000001f0b0000c13d000000400010043f000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000400100043d00000ce50010009c00001f170000813d000000c002100039000000400020043f000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000400100043d00000d5c0010009c00001f230000813d000001a002100039000000400020043f000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000d5d0020009c00001f590000813d00000000040100190000001f0120003900000ce4011001970000003f0110003900000ce605100197000000400100043d0000000005510019000000000015004b0000000006000039000000010600403900000c730050009c00001f590000213d000000010060019000001f590000c13d000000400050043f00000000052104360000000006420019000000000036004b00001f5f0000213d00000d58062001980000001f0720018f0000000104400367000000000365001900001f490000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b00001f450000c13d000000000007004b00001f560000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000000001000019000031950001043000000ced0010009c00001f6f0000213d000000430010008c00001f6f0000a13d00000001020003670000000401200370000000000101043b00000c690010009c00001f6f0000213d0000002402200370000000000202043b00000c690020009c00001f6f0000213d000000000001042d000000000100001900003195000104300000000043010434000000000132043600000d58063001970000001f0530018f000000000014004b00001f870000813d000000000006004b00001f830000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00001f7d0000c13d000000000005004b00001f9d0000613d000000000701001900001f930000013d0000000007610019000000000006004b00001f900000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b00001f8c0000c13d000000000005004b00001f9d0000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000431001900000000000404350000001f0330003900000d58023001970000000001210019000000000001042d0000001f03100039000000000023004b000000000400001900000cec0400404100000cec0520019700000cec03300197000000000653013f000000000053004b000000000300001900000cec0300204100000cec0060009c000000000304c019000000000003004b00001fbb0000613d0000000103100367000000000303043b00000c730030009c00001fbb0000213d00000020011000390000000004310019000000000024004b00001fbb0000213d0000000002030019000000000001042d0000000001000019000031950001043000000ced0010009c00001fcf0000213d000000630010008c00001fcf0000a13d00000001030003670000000401300370000000000101043b00000c660010009c00001fcf0000213d0000002402300370000000000202043b00000c690020009c00001fcf0000213d0000004403300370000000000303043b00000c690030009c00001fcf0000213d000000000001042d00000000010000190000319500010430000000200300003900000000033104360000000042020434000000000023043500000d58062001970000001f0520018f0000004001100039000000000014004b00001fea0000813d000000000006004b00001fe60000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00001fe00000c13d000000000005004b000020000000613d000000000701001900001ff60000013d0000000007610019000000000006004b00001ff30000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b00001fef0000c13d000000000005004b000020000000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000412001900000000000404350000001f0220003900000d58022001970000000001120019000000000001042d000000400100043d00000d5e0010009c0000200d0000813d0000002002100039000000400020043f0000000000010435000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f0000000100200190000020210000613d000000000101043b000000000001042d000000000100001900003195000104300000000003010019000000000112004900000ced0010009c000020af0000213d0000017f0010008c000020af0000a13d000000400100043d00000d5f0010009c000020b10000813d0000018004100039000000400040043f0000000104000367000000000534034f000000000505043b00000000055104360000002006300039000000000664034f000000000606043b00000000006504350000004005300039000000000554034f000000000505043b000000400610003900000000005604350000006005300039000000000554034f000000000505043b000000600610003900000000005604350000008005300039000000000554034f000000000505043b00000080061000390000000000560435000000a005300039000000000554034f000000000505043b000000a0061000390000000000560435000000c005300039000000000554034f000000000505043b000000c0061000390000000000560435000000e005300039000000000554034f000000000505043b000000e00610003900000000005604350000010005300039000000000554034f0000010006100039000000000505043b00000000005604350000012005300039000000000654034f000000000606043b00000c660060009c000020af0000213d000001200710003900000000006704350000002005500039000000000654034f000000000606043b00000c660060009c000020af0000213d000001400710003900000000006704350000002005500039000000000554034f000000000505043b00000c730050009c000020af0000213d00000000063500190000001f03600039000000000023004b000000000500001900000cec0500804100000cec0330019700000cec07200197000000000873013f000000000073004b000000000300001900000cec0300404100000cec0080009c000000000305c019000000000003004b000020af0000c13d000000000364034f000000000303043b00000c730030009c000020b10000213d0000001f0530003900000ce4055001970000003f0550003900000ce607500197000000400500043d0000000007750019000000000057004b0000000008000039000000010800403900000c730070009c000020b10000213d0000000100800190000020b10000c13d0000002008600039000000400070043f00000000063504360000000007830019000000000027004b000020af0000213d000000000484034f00000d58073001980000001f0830018f00000000027600190000209d0000613d000000000904034f000000000a060019000000009b09043c000000000aba043600000000002a004b000020990000c13d000000000008004b000020aa0000613d000000000474034f0000000307800210000000000802043300000000087801cf000000000878022f000000000404043b0000010007700089000000000474022f00000000047401cf000000000484019f00000000004204350000000002360019000000000002043500000160021000390000000000520435000000000001042d0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000086c02000039000000000302041a000000000013004b000020bf0000a13d000000000020043f00000003011000c900000cf80110009a000000000001042d00000d3f01000041000000000010043f0000003201000039000000040010043f00000d3d01000041000031950001043000000c660110019700000c6602200197000000000112001900000d600010009c000020cb0000813d000000000001042d00000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d0100004100003195000104300002000000000002000000650e000039000000000f0e041a0000000200f0008c000021490000613d000200000001001d00010000000c001d000000020100003900000000001e041b0000086b01000039000000000e01041a00000cdd00e001980000215a0000c13d000000c00fe0027000000c660ff0019700000c6600f0009c0000215e0000613d00000d610ee00197000000c00cf0021000000d620cc0009a00000cdf0cc00197000000000cec019f0000000000c1041b000000400100043d00000d5c0010009c000021430000813d000001a00c1000390000004000c0043f00000c660bb00197000001600c1000390000000000bc043500000c660aa00197000001400b1000390000000000ab043500000c6609900197000001200a10003900000000009a043500000100091000390000000000f9043500000c6908800197000000e0091000390000000000890435000000c0081000390000000000780435000000a00710003900000000006704350000008006100039000000000056043500000c69044001970000006005100039000000000045043500000c69033001970000004004100039000000000034043500000c690220019700000020031000390000000000230435000000020200002900000c6902200197000000000021043500000c7300d0009c000021430000213d0000001f02d0003900000ce4022001970000003f0220003900000ce603200197000000400200043d0000000003320019000000000023004b0000000004000039000000010400403900000c730030009c000021430000213d0000000100400190000021430000c13d000000400030043f0000000003d20436000000010700002900000000057d0019000000000050007c000021640000213d00000d5805d001980000001f06d0018f000000010770036700000000045300190000212d0000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b000021290000c13d000000000006004b0000213a0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005404350000000003d30019000000000003043500000180031000390000000000230435319327c50000040f00000001010000390000006502000039000000000012041b000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000400100043d000000440210003900000d5603000041000000000032043500000024021000390000001f03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c7000031950001043000000d5701000041000000000010043f00000c7501000041000031950001043000000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d01000041000031950001043000000000010000190000319500010430000000400400043d00000054054000390000000000350435000000600310021000000020014000390000000000310435000000340340003900000000002304350000005402000039000000000024043500000d630040009c000021880000813d0000008002400039000000400020043f00000c660010009c00000c66010080410000004001100210000000000204043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f00000001002001900000218e0000613d000000000101043b000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000000010000190000319500010430000000000001004b000021930000613d000000000001042d000000400100043d000000640210003900000d12030000410000000000320435000000440210003900000d1303000041000000000032043500000024021000390000002b03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c660110019700000c660010009c000021ac0000613d0000000101100039000000000001042d00000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d0100004100003195000104300003000000000002000000400500043d00000020035000390000004002000039000100000003001d000000000023043500000060025000390000000043010434000000000032043500000000020404330000008003500039000000000023043500000040021000390000000002020433000000a003500039000000000023043500000060021000390000000002020433000000c003500039000000000023043500000080021000390000000002020433000000e0035000390000000000230435000000a002100039000000000202043300000100035000390000000000230435000000c002100039000000000202043300000120035000390000000000230435000000e00210003900000000020204330000014003500039000000000023043500000100021000390000000002020433000001600350003900000000002304350000012002100039000000000202043300000c6602200197000001800350003900000000002304350000014002100039000000000202043300000c6602200197000001a003500039000000000023043500000160011000390000000001010433000001c00250003900000180030000390000000000320435000001e0035000390000000029010434000000000093043500000d58049001970000001f0390018f000300000005001d0000020001500039000000000012004b000022020000813d000000000004004b000021fe0000613d00000000063200190000000005310019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c000021f80000c13d000000000003004b000022180000613d00000000050100190000220e0000013d0000000005410019000000000004004b0000220b0000613d0000000006020019000000000701001900000000680604340000000007870436000000000057004b000022070000c13d000000000003004b000022180000613d00000000024200190000000303300210000000000405043300000000043401cf000000000434022f00000000020204330000010003300089000000000232022f00000000023201cf000000000242019f00000000002504350000000001190019000000000001043500000ce7010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039000200000009001d319331890000040f00000001002001900000224f0000613d000000000101043b00000003030000290000004002300039000000000012043500000002010000290000001f0110003900000d5801100197000001e00210003900000000002304350000021f0110003900000d58021001970000000001320019000000000021004b0000000002000039000000010200403900000c730010009c000022500000213d0000000100200190000022500000c13d000000400010043f000000010100002900000c660010009c00000c66010080410000004001100210000000000203043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f0000000100200190000022560000613d000000000101043b000000000001042d000000000001042f00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000000100001900003195000104300000006501000039000000000201041a000000020020008c0000225f0000613d0000000202000039000000000021041b000000000001042d000000400100043d000000440210003900000d5603000041000000000032043500000024021000390000001f03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c70000319500010430000c00000000000200000d160960019700070d140060019c00000d15060000410000000006006019000000000696019f000800000006001d000000000960c08900000d640090009c000024040000813d000b00000007001d000a00000003001d000300000002001d000400000001001d000500000008001d000600000005001d000c00000004001d00000d650040009c000024080000813d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f0000000100200190000023fb0000613d0000000b0200002900020c660020019b000000000101043b000000020110006c000b00000001001d000023f50000413d00000cf60100004100000000001004430000000001000412000000040010044300000080010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000023fb0000613d000000000101043b00000c66011001970000000b0010006b0000240c0000213d0000086b01000039000000000201041a000000c00320027000000c6603300197000b00000003001d00000c660030009c000023f50000613d00000cde022001970000000b03000029000000c00330021000000d620330009a00000cdf03300197000000000223019f000000000021041b00000cf6010000410000000000100443000000000100041200000004001004430000006001000039000900000001001d0000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000023fb0000613d0000000a02000029000a0c690020019b000000000101043b00000c69031001970000000a0030006b000022fb0000c13d0000000001000416000000000001004b000022fb0000613d0000000c0010006c0000243f0000c13d00000d08010000410000000000100443000900000003001d0000000400300443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000023fb0000613d000000000101043b000000000001004b0000000c03000029000023fc0000613d000000400200043d00000d6701000041000000000012043500000c660020009c000100000002001d00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d68011001c7000080090200003900000009040000290000000005000019319331840000040f0000000100200190000024430000613d000000010100002900000c730010009c000023fe0000213d000000400010043f0000000c050000290000237c0000013d000000400100043d00000064021000390000000c030000290000000000320435000000000200041000000c690220019700000044031000390000000000230435000000200210003900000d69030000410000000000320435000000000300041100000c6903300197000000240410003900000000003404350000006403000039000000000031043500000d6a0010009c000023fe0000813d000000a005100039000000400050043f00000d0d0050009c000023fe0000213d000000e003100039000000400030043f00000020030000390000000000350435000000c00310003900000d6b04000041000000000043043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000a02000029000100000005001d319331840000040f000000600310027000000c66033001980000008009000039000023550000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019000900000005001d000000000054004b0000000005000039000000010500403900000c730040009c000023fe0000213d0000000100500190000023fe0000c13d000000400040043f0000001f0430018f0000000905000029000000000935043600000c68053001980000000003590019000023480000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b000023440000c13d000000000004004b000023550000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000090100002900000000010104330000000100200190000024100000613d000000000001004b0000000c05000029000023730000c13d000100000009001d00000d080100004100000000001004430000000a010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000023fb0000613d000000000101043b000000000001004b000024630000613d00000009010000290000000001010433000000000001004b0000000c0500002900000001090000290000237c0000613d00000ced0010009c000023fc0000213d0000001f0010008c000023fc0000a13d0000000001090433000000010010008c000023fc0000213d000000000001004b000024230000613d0000000001000415000000070000006b000023840000613d000000080200002900000ced0020009c000023840000213d000000080000006b000023f50000c13d000000080200002900000d6e0320009900000000025300a9000000000005004b0000238c0000613d00000000045200d9000000000043004b000023f50000c13d000000000300041500000000013100490000000001000002000000400100043d000001200310003900000140040000390000000000430435000000030300002900000c6903300197000000e0041000390000000000340435000000a00310003900000c6604000041000000000043043500000080031000390000000204000029000000000043043500000d6e0220012a00000060031000390000000000230435000000400210003900000000005204350000000a02000029000000000221043600000100031000390000000000030435000000c003100039000000000003043500000000000204350000014003100039000000050200002900000000520204340000000000230435000000040300002900000c690730019700000d58082001970000001f0620018f0000016004100039000000000045004b000023c40000813d000000000008004b000023c00000613d000000000a6500190000000009640019000000200990008a000000200aa0008a000000000b890019000000000c8a0019000000000c0c04330000000000cb0435000000200880008c000023ba0000c13d000000000006004b000023da0000613d0000000009040019000023d00000013d0000000009840019000000000008004b000023cd0000613d000000000a050019000000000b04001900000000ac0a0434000000000bcb043600000000009b004b000023c90000c13d000000000006004b000023da0000613d00000000058500190000000306600210000000000809043300000000086801cf000000000868022f00000000050504330000010006600089000000000565022f00000000056501cf000000000585019f00000000005904350000001f0520003900000d580350019700000000024200190000000000020435000001600230003900000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000ce8011001c70000800d02000039000000040300003900000d6f0400004100000006050000290000000b06000029319331840000040f0000000100200190000023fc0000613d000000000001042d00000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d010000410000319500010430000000000001042f0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000d7301000041000000000010043f00000c7501000041000031950001043000000d7201000041000000000010043f00000c7501000041000031950001043000000d7101000041000000000010043f00000c75010000410000319500010430000000000001004b000024370000c13d000000400200043d000c00000002001d00000c6c0100004100000000001204350000000401200039000000010200002931931fd10000040f0000000c02000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f0000319500010430000000400100043d000000640210003900000d6c030000410000000000320435000000440210003900000d6d03000041000000000032043500000024021000390000002a03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c660090009c00000c6609008041000000400290021000000c660010009c00000c66010080410000006001100210000000000121019f000031950001043000000d6601000041000000000010043f00000c7501000041000031950001043000000060061002700000001f0460018f00000c6805600198000000400200043d00000000035200190000244f0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b0000244b0000c13d00000c6606600197000000000004004b0000245d0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c700003195000104300003000000000002000300000001001d00000cf60100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000024fc0000613d000000000101043b00000c6902100197000000030100002900000c6901100197000300000002001d000000000021004b000024d60000c13d00000d7401000041000000000010044300000000010004100000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800a02000039319331890000040f0000000100200190000024fc0000613d000000000101043b000000000001004b000024d60000613d00000d7401000041000000000010044300000000010004100000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800a02000039319331890000040f0000000100200190000024fc0000613d000000000101043b000200000001001d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000024fc0000613d000000000101043b000000000001004b000024fd0000613d000000400200043d00000d6701000041000000000012043500000c660020009c000100000002001d00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f0000000203000029000000000003004b000024d70000613d00000d68011001c7000080090200003900000003040000290000000005000019319331840000040f0000000100200190000024dc0000613d000000010100002900000d5d0010009c000024ff0000813d000000400010043f000000000001042d00000c75011001c70000000302000029319331840000040f0000000100200190000024d20000c13d00000060061002700000001f0460018f00000c6805600198000000400200043d0000000003520019000024e80000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000024e40000c13d00000c6606600197000000000004004b000024f60000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000000000001042f0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300012000000000002000d00000002001d001200000001001d0000000021010434000f00000002001d001000000001001d0000012001100039000e00000001001d0000000001010433001100000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f0000000100200190000026160000613d000000000101043b000000110200002900000c6602200197000000000012004b000026170000413d0000000f010000290000000001010433001100000001001d000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f0000000100200190000026140000613d000000000101043b000000000101041a000f00000001001d0000001101000029000000000010043f0000087201000039000000200010043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f0000000f03000029000000010030008c00000000030000390000000103006039000f00000003001d0000000100200190000026140000613d00000872030000390000001102000029000000000101043b000000000101041a000000020010008c0000261b0000613d000000000020043f000000200030043f000000000100041400000c660010009c00000c6601008041000000c00110021000000cee011001c70000801002000039319331890000040f0000000100200190000026140000613d000000000101043b0000000202000039000000000021041b000000100200002900000020012000390000000001010433000600000001001d0000000001020433000800000001001d00000040012000390000000001010433000900000001001d00000100012000390000000001010433000400000001001d000000e0012000390000000001010433000300000001001d0000001201000029000000a0011000390000000001010433000a00000001001d000000c0012000390000000001010433000b00000001001d000000a0012000390000000001010433000c00000001001d00000080012000390000000001010433001100000001001d00000060012000390000000001010433000700000001001d00000140012000390000000001010433000500000001001d0000000e010000290000000001010433000e00000001001d000001600120003900000000010104330000000012010434000000000002004b000025940000613d00000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f0000000100200190000026140000613d000000000901043b000025950000013d0000000009000019000000120200002900000060012000390000000008010433000000800120003900000000010104330000000012010434000000000002004b0000260a0000613d000100000008001d000200000009001d00000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f0000000100200190000026140000613d000000000101043b00000002090000290000000108000029000000400200043d00000d630020009c0000260e0000813d000000050300002900000c66053001970000000e0300002900000c66063001970000001203000029000000400330003900000000070304330000008003200039000000400030043f00000060032000390000000f04000029000000000043043500000040042000390000000000740435000000200720003900000000001704350000000000820435000000400100043d00000140081000390000000000980435000001200810003900000006090000290000000000980435000001000810003900000008090000290000000000980435000000e00810003900000009090000290000000000980435000000c0081000390000000000580435000000a005100039000000000065043500000080051000390000000a06000029000000000065043500000060051000390000000b06000029000000000065043500000040051000390000000c060000290000000000650435000000200510003900000011060000290000000000650435000000070500002900000000005104350000000002020433000001600510003900000000002504350000000002070433000001800510003900000000002504350000000002040433000001a00410003900000000002404350000000002030433000000020020008c0000261f0000213d000001c003100039000000000023043500000c660010009c00000c66010080410000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d75011001c70000800d02000039000000040300003900000d7604000041000000030500002900000004060000290000000d07000029319331840000040f0000000100200190000026140000613d00000012010000290000001002000029000000000300001931932be20000040f000000000001042d0000000001000019000000400200043d00000d630020009c000025b60000413d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000000010000190000319500010430000000000001042f00000d3501000041000000000010043f00000c7501000041000031950001043000000d3401000041000000000010043f00000c7501000041000031950001043000000d3f01000041000000000010043f0000002101000039000000040010043f00000d3d010000410000319500010430000000600210003900000d77030000410000000000320435000000400210003900000d7803000041000000000032043500000020021000390000002e030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d0006000000000002000500000007001d000100000005001d000200000004001d000600000003001d000300000002001d000400000001001d000000200160003900000c660010009c00000c66010080410000004001100210000000000206043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f00000001002001900000279b0000613d000000000201043b000000400100043d000000c0031000390000000000230435000000a00210003900000001030000290000000000320435000000800210003900000002030000290000000000320435000000600210003900000006030000290000000000320435000000400210003900000003030000290000000000320435000000200210003900000d07030000410000000000320435000000c003000039000000000031043500000d790010009c0000279d0000813d000000e003100039000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000000006050000290000279b0000613d000000000101043b000300000001001d0000047f01000039000000000201041a0000048001000039000000000301041a000000400100043d000000800410003900000000005404350000006004100039000000000034043500000040031000390000000000230435000000200210003900000d7a0300004100000000003204350000008003000039000600000003001d000000000031043500000d7b0010009c0000279d0000213d000000a003100039000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f00000001002001900000279b0000613d000000000101043b000000400200043d00000022032000390000000304000029000000000043043500000d7c0300004100000000003204350000000203200039000000000013043500000c660020009c00000c66020080410000004001200210000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000d7d011001c70000801002000039319331890000040f00000001002001900000279b0000613d000000000601043b000000050400002900000000c1040434000000410010008c000026c40000c13d00000040014000390000000001010433000000000200041500000d7e0010009c000027550000413d000000000100041500000000011200490000000001000002000000400100043d000000440210003900000040030000390000000000320435000000200210003900000d800300004100000000003204350000002403100039000000000063043500000064031000390000000004040433000000000043043500000d58074001970000001f0640018f000000840510003900000000005c004b000026e50000813d000000000007004b000026e10000613d00000000096c00190000000008650019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000026db0000c13d000000000006004b000026fb0000613d0000000008050019000026f10000013d0000000008750019000000000007004b000026ee0000613d00000000090c0019000000000a050019000000009b090434000000000aba043600000000008a004b000026ea0000c13d000000000006004b000026fb0000613d000000000c7c00190000000306600210000000000708043300000000076701cf000000000767022f00000000090c04330000010006600089000000000969022f00000000066901cf000000000676019f0000000000680435000000000554001900000000000504350000001f0440003900000d580440019700000064054000390000000000510435000000a30440003900000d58044001970000000003140019000000000043004b0000000004000039000000010400403900000c730030009c0000279d0000213d00000001004001900000279d0000c13d000000400030043f00000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000402000029319331890000040f000000600310027000000c6604300198000027460000613d0000001f0340003900000c67033001970000003f0330003900000c7205300197000000400300043d0000000005530019000000000035004b0000000006000039000000010600403900000c730050009c0000279d0000213d00000001006001900000279d0000c13d000000400050043f0000001f0540018f000000000a43043600000c680640019800000000046a0019000027370000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000027330000c13d00060000000a001d000000000005004b000027470000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000027470000013d00000060030000390000000100200190000027a30000613d0000000001030433000000200010008c000027a30000413d00000ced0010009c0000279b0000213d000000200010008c0000279b0000413d0000000601000029000000000101043300000d800010009c000027a30000c13d000000000001042d000100000002001d0000006002400039000000000202043300030000000c001d00000000030c0433000000400400043d0000006005400039000000000015043500000040014000390000000000310435000000f80120027000000020024000390000000000120435000200000006001d0000000000640435000000000000043f00000c660040009c00000c66040080410000004001400210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d7f011001c70000000102000039319331890000040f000000600310027000000c6603300197000000200030008c000000200400003900000000040340190000001f0540018f00000020044001900000277e0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000277a0000c13d000000000005004b0000278b0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000000100200190000000030c000029000027a70000613d000000000100043d00000000020004150000000102200069000000000200000200000c6900100198000000000100601900000005040000290000000206000029000026c40000613d000000040110014f00000c6900100198000027540000613d000026c40000013d0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000d8101000041000000000010043f00000c750100004100003195000104300000001f0530018f00000c6806300198000000400200043d0000000004620019000027b20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027ae0000c13d000000000005004b000027bf0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000140435000000600130021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000c0000000000020000000032010434000700000003001d00000d310020009c000029820000813d000c00000001001d0000012001100039000600000001001d0000000001010433000b00000001001d00000cdb010000410000000000100443000000000100041400000c660010009c00000c6601008041000000c00110021000000cdc011001c70000800b02000039319331890000040f0000000100200190000029750000613d0000000b0200002900000c6602200197000000000101043b000a00000001001d000b0000002100530000297e0000413d00000cf6010000410000000000100443000000000100041200000004001004430000008001000039000800000001001d0000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000029750000613d000000000101043b00000c66011001970000000b0010006b0000297e0000213d0000000c010000290000014001100039000500000001001d0000000001010433000b00000001001d00000cf601000041000000000010044300000000010004120000000400100443000000a0010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000029750000613d000000000101043b00000c66011001970000000a05000029000000000051001a0000000c03000029000029bd0000413d0000000b0200002900000c66022001970000000001510019000000000012004b000029860000213d0000016001300039000000000101043300000c6602100198000000e004300039000400000004001d000028270000613d00000d820020009c0000281f0000813d00000c6601500197000000000212001900000c660020009c000029bd0000213d000300000002001d0000000001040433000000000001004b000028280000c13d00000d8301000041000000000010043f00000c75010000410000319500010430000300000000001d0000004001300039000a00000001001d0000000001010433000900000001001d00000cf6010000410000000000100443000000000100041200000004001004430000006001000039000b00000001001d0000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f0000000100200190000029750000613d0000000002000416000000000101043b00000c69011001970000000903000029000000000013004b000028740000c13d000000000002004b0000000c01000029000028770000613d0000008001100039000200000001001d0000000001010433000000000012004b0000298a0000c13d00000d080100004100000000001004430000000400300443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000029750000613d0000000904000029000000000101043b000000000001004b000029760000613d000000400200043d00000d6701000041000000000012043500000c660020009c000b00000002001d00000c660100004100000000010240190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d68011001c7000080090200003900000000030004160000000005000019319331840000040f0000000100200190000029c30000613d0000000b0f00002900000c7300f0009c0000000c0c000029000029780000213d0000004000f0043f000028fe0000013d000000000002004b0000000c010000290000298a0000c13d0000000a02000029000000000202043300000c690020009c000029820000213d0000008001100039000200000001001d0000000004010433000000400100043d00000064031000390000000000430435000000000300041000000c690430019700000044031000390000000000430435000000200510003900000d69030000410000000000350435000000000300041100000c6903300197000000240410003900000000003404350000006403000039000000000031043500000d6a0010009c000029780000813d000000a006100039000000400060043f00000d0d0060009c000029780000213d000000e003100039000000400030043f00000020030000390000000000360435000000c00310003900000d6b04000041000000000043043500000c660050009c00000c66050080410000004003500210000000000101043300000c660010009c00000c66010080410000006001100210000000000131019f000000000300041400000c660030009c00000c6603008041000000c003300210000000000131019f000900000002001d000100000006001d319331840000040f000000090a000029000000600310027000000c6603300198000028d80000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019000b00000005001d000000000054004b0000000005000039000000010500403900000c730040009c000029780000213d0000000100500190000029780000c13d000000400040043f0000001f0430018f0000000b05000029000000000935043600000c68053001980000000003590019000028ca0000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b000028c60000c13d000800000009001d000000000004004b000028d80000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000b01000029000000000101043300000001002001900000298e0000613d000000000001004b0000000c0c000029000028f30000c13d00000d080100004100000000001004430000000400a00443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f0000000100200190000029750000613d000000000101043b000000000001004b000029e30000613d0000000b010000290000000001010433000000000001004b0000000c0c000029000029730000613d00000ced0010009c000029760000213d0000001f0010008c000029760000a13d00000008010000290000000001010433000000010010008c000029760000213d000000400f00043d000000000001004b000029a10000613d0000010001c000390000000006010433000000c001c0003900000000050104330000018001c0003900000000010104330000000a0200002900000000020204330000006003c00039000000000303043300000002040000290000000004040433000000a007c000390000000008070433000000060700002900000000090704330000000507000029000000000a0704330000000707000029000000000b07043300000000070c0433000000040c000029000000000c0c0433000001200df00039000001400e0000390000000000ed0435000001000df000390000000000cd0435000000e00cf000390000000000bc0435000000c00bf00039000000030c0000290000000000cb043500000c660aa00197000000a00bf000390000000000ab043500000c6609900197000000800af0003900000000009a04350000006009f0003900000000008904350000004008f0003900000000004804350000002004f00039000000000034043500000000002f04350000014002f000390000000041010434000000000012043500000d58091001970000001f0810018f0000016003f00039000000000034004b000029440000813d000000000009004b000029400000613d000000000b840019000000000a830019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c0000293a0000c13d000000000008004b0000295a0000613d000000000a030019000029500000013d000000000a930019000000000009004b0000294d0000613d000000000b040019000000000c03001900000000bd0b0434000000000cdc04360000000000ac004b000029490000c13d000000000008004b0000295a0000613d0000000004940019000000030880021000000000090a043300000000098901cf000000000989022f00000000040404330000010008800089000000000484022f00000000048401cf000000000494019f00000000004a04350000001f0410003900000d580240019700000000013100190000000000010435000001600120003900000c660010009c00000c6601008041000000600110021000000c6600f0009c00000c660f0080410000004002f00210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000ce8011001c70000800d02000039000000040300003900000d6f04000041319331840000040f0000000100200190000029760000613d000000000001042d000000400f00043d000028fe0000013d000000000001042f0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000d7101000041000000000010043f00000c7501000041000031950001043000000d3201000041000000000010043f00000c7501000041000031950001043000000d8401000041000000000010043f00000c7501000041000031950001043000000d6601000041000000000010043f00000c75010000410000319500010430000000000001004b000029b40000c13d000000400200043d000c00000002001d00000c6c0100004100000000001204350000000401200039000000010200002931931fd10000040f0000000c02000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f00003195000104300000006401f0003900000d6c0200004100000000002104350000004401f0003900000d6d0200004100000000002104350000002401f000390000002a02000039000000000021043500000c6c0100004100000000001f04350000000401f000390000002002000039000000000021043500000c6600f0009c00000c660f0080410000004001f0021000000c6d011001c70000319500010430000000080200002900000c660020009c00000c6602008041000000400220021000000c660010009c00000c66010080410000006001100210000000000121019f000031950001043000000d3f01000041000000000010043f0000001101000039000000040010043f00000d3d01000041000031950001043000000060061002700000001f0460018f00000c6805600198000000400200043d0000000003520019000029cf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000029cb0000c13d00000c6606600197000000000004004b000029dd0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c70000319500010430000000000100041a0000ff0000100190000029f80000613d000000000001042d000000400100043d000000640210003900000d12030000410000000000320435000000440210003900000d1303000041000000000032043500000024021000390000002b03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c70000319500010430000000000100041a0000ff000010019000002a130000613d00000001010000390000006502000039000000000012041b000000000001042d000000400100043d000000640210003900000d12030000410000000000320435000000440210003900000d1303000041000000000032043500000024021000390000002b03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c690510019800002a3a0000613d0000086901000039000000000201041a00000d0c02200197000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d0e04000041319331840000040f000000010020019000002a3e0000613d000000000001042d00000d1101000041000000000010043f00000c750100004100003195000104300000000001000019000031950001043000000c690510019800002a530000613d0000086a01000039000000000201041a00000d0c02200197000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d0f04000041319331840000040f000000010020019000002a570000613d000000000001042d00000d1001000041000000000010043f00000c75010000410000319500010430000000000100001900003195000104300003000000000002000000400400043d00000044054000390000000000350435000000200340003900000d3e05000041000000000053043500000c6902200197000000240540003900000000002504350000004402000039000000000024043500000d630040009c00002ad50000813d0000008005400039000000400050043f00000d0d0050009c00002ad50000213d00000c6902100197000000c001400039000000400010043f0000002001000039000200000005001d0000000000150435000000a00140003900000d6b05000041000000000051043500000c660030009c00000c66030080410000004001300210000000000304043300000c660030009c00000c66030080410000006003300210000000000113019f000000000300041400000c660030009c00000c6603008041000000c003300210000000000131019f000300000002001d319331840000040f000000600310027000000c660330019800002aad0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400a00043d00000000044a00190000000000a4004b0000000005000039000000010500403900000c730040009c00002ad50000213d000000010050019000002ad50000c13d000000400040043f0000001f0430018f00000000093a043600000c6805300198000000000359001900002a9f0000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b00002a9b0000c13d000000000004004b00002aaf0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500002aaf0000013d000000600a000039000000800900003900000000010a0433000000010020019000002add0000613d000000000001004b00002acb0000c13d00020000000a001d000100000009001d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002b0c0000613d000000000101043b000000000001004b000000020100002900002b0d0000613d0000000001010433000000000001004b000000010900002900002ad40000613d00000ced0010009c00002adb0000213d0000001f0010008c00002adb0000a13d0000000001090433000000010010008c00002adb0000213d000000000001004b00002af00000613d000000000001042d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d01000041000031950001043000000000010000190000319500010430000000000001004b00002b040000c13d000000400200043d000300000002001d00000c6c0100004100000000001204350000000401200039000000020200002931931fd10000040f0000000302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f0000319500010430000000400100043d000000640210003900000d6c030000410000000000320435000000440210003900000d6d03000041000000000032043500000024021000390000002a03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c660090009c00000c6609008041000000400290021000000c660010009c00000c66010080410000006001100210000000000121019f0000319500010430000000000001042f000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c700003195000104300011000000000002001000000004001d000500000003001d00000000040100190000000013020434000f00000003001d0000000001010433000800000001001d00000040012000390000000001010433000a00000001001d00000100012000390000000001010433000400000001001d000000e0012000390000000001010433000300000001001d000000a0014000390000000001010433000b00000001001d000000c0012000390000000001010433000c00000001001d000000a0012000390000000001010433000d00000001001d00000080012000390000000001010433000e00000001001d00000060012000390000000001010433000900000001001d00000140012000390000000001010433000700000001001d00000120012000390000000001010433000600000001001d000001600120003900000000010104330000000012010434000000000002004b001100000004001d00002b5e0000613d00000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000002bda0000613d000000000901043b000000110400002900002b5f0000013d000000000900001900000060014000390000000005010433000000800140003900000000010104330000000012010434000000000002004b00002bd00000613d000100000005001d000200000009001d00000c660020009c00000c6602008041000000600220021000000c660010009c00000c66010080410000004001100210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f000000010020019000002bda0000613d000000000201043b000000110400002900000002090000290000000105000029000000400100043d00000d630010009c00002bd40000813d000000400340003900000000040304330000008003100039000000400030043f00000040031000390000000000430435000000000451043600000000002404350000001002000029000000030020008c00002bdc0000813d000000070500002900000c6606500197000000060500002900000c660750019700000060051000390000000000250435000000400200043d0000014008200039000000000098043500000120082000390000000809000029000000000098043500000100082000390000000f090000290000000000980435000000e0082000390000000a090000290000000000980435000000c0082000390000000000680435000000a006200039000000000076043500000080062000390000000b07000029000000000076043500000060062000390000000c07000029000000000076043500000040062000390000000d07000029000000000076043500000020062000390000000e070000290000000000760435000000090600002900000000006204350000000001010433000001600620003900000000001604350000000001040433000001800420003900000000001404350000000001030433000001a00320003900000000001304350000000001050433000000020010008c00002bdc0000213d000001c003200039000000000013043500000c660020009c00000c66020080410000004001200210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d75011001c70000800d02000039000000040300003900000d7604000041000000030500002900000004060000290000000507000029319331840000040f000000010020019000002bda0000613d000000000001042d0000000002000019000000400100043d00000d630010009c00002b800000413d00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000000001000019000031950001043000000d3f01000041000000000010043f0000002101000039000000040010043f00000d3d0100004100003195000104300008000000000002000400000003001d00000080022000390000000002020433000700000002001d00000d310020009c00002f570000813d00000060021000390000000002020433000800000002001d00000c690020009c00002f570000213d000500000001001d00000040011000390000000001010433000600000001001d00000cf60100004100000000001004430000000001000412000000040010044300000060010000390000002400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000002f4e0000613d000000000101043b00000c6901100197000000070010006b00002c5f0000c13d000000040000006b00002d5d0000c13d000000400100043d000000640210003900000006030000290000000000320435000000000200041000000c690220019700000044031000390000000000230435000000200210003900000d69030000410000000000320435000000000300041100000c6903300197000000240410003900000000003404350000006403000039000000000031043500000d7b0010009c00002f4f0000213d000000a004100039000000400040043f00000d0d0040009c00002f4f0000213d000000e003100039000000400030043f0000002003000039000400000004001d0000000000340435000000c00310003900000d6b04000041000000000043043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000702000029319331840000040f000000600310027000000c660330019800002d360000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400a00043d00000000044a00190000000000a4004b0000000005000039000000010500403900000c730040009c00002f4f0000213d000000010050019000002f4f0000c13d000000400040043f0000001f0430018f00000000093a043600000c6805300198000000000359001900002c510000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b00002c4d0000c13d000000000004004b00002d380000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500002d380000013d000000400100043d000000440310003900000024041000390000002002100039000000040000006b00002cda0000613d00000d3e05000041000000000052043500000008050000290000000000540435000000060400002900000000004304350000004403000039000000000031043500000d630010009c00002f4f0000813d0000008004100039000000400040043f00000d0d0040009c00002f4f0000213d000000c003100039000000400030043f0000002003000039000400000004001d0000000000340435000000a00310003900000d6b04000041000000000043043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000702000029319331840000040f000000600310027000000c660330019800002d2d0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d00000000044500190000000009050019000000000054004b0000000005000039000000010500403900000c730040009c00002f4f0000213d000000010050019000002f4f0000c13d000000400040043f0000001f0430018f000000000a39043600000c680530019800000000035a001900002ca70000613d000000000601034f00000000070a0019000000006806043c0000000007870436000000000037004b00002ca30000c13d000000000004004b00002cb40000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000005030000290000000001090433000000010020019000002d330000613d000000000001004b00002cd20000c13d00030000000a001d000400000009001d00000d0801000041000000000010044300000007010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b00002f7b0000613d00000004010000290000000001010433000000000001004b0000000503000029000000030a00002900002ecb0000613d00000ced0010009c00002f550000213d0000001f0010008c00002f550000a13d00000000010a0433000000010010008c00002e820000a13d00002f550000013d00000d69050000410000000000520435000000000500041100000c69055001970000000000540435000000080400002900000000004304350000006403100039000000060400002900000000004304350000006403000039000000000031043500000d7b0010009c00002f4f0000213d000000a004100039000000400040043f00000d0d0040009c00002f4f0000213d000000e003100039000000400030043f0000002003000039000400000004001d0000000000340435000000c00310003900000d6b04000041000000000043043500000c660020009c00000c66020080410000004002200210000000000101043300000c660010009c00000c66010080410000006001100210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f0000000702000029319331840000040f000000600310027000000c660330019800002e5b0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400a00043d00000000044a00190000000000a4004b0000000005000039000000010500403900000c730040009c00002f4f0000213d000000010050019000002f4f0000c13d000000400040043f0000001f0430018f00000000093a043600000c6805300198000000000359001900002d1f0000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b00002d1b0000c13d000000000004004b00002e5d0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500002e5d0000013d000000800a000039000000050300002900000060090000390000000001090433000000010020019000002cb80000c13d000000000001004b00002f6a0000613d00002f7f0000013d000000600a000039000000800900003900000000010a0433000000010020019000002f680000613d000000000001004b00002d540000c13d00040000000a001d000300000009001d00000d0801000041000000000010044300000007010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b000000040100002900002f7b0000613d0000000001010433000000000001004b000000030900002900002d5d0000613d00000ced0010009c00002f550000213d000000200010008c00002f550000413d0000000001090433000000010010008c00002f550000213d000000000001004b00002e840000613d0000000001000415000400000001001d00000d0801000041000000000010044300000008010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b00000cf60200004100000000002004430000000002000412000000040020044300000060020000390000002400200443000000000001004b00002dfa0000613d000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000002f4e0000613d000000000301043b000000400100043d000000440210003900000006040000290000000000420435000000200610003900000d3e0400004100000000004604350000002404100039000000080500002900000000005404350000004404000039000000000041043500000ceb0010009c00002f4f0000213d0000008004100039000000400040043f00000d0d0040009c00002f4f0000213d00000c6902300197000000c003100039000000400030043f0000002003000039000200000004001d0000000000340435000000a00310003900000d6b04000041000000000043043500000c660060009c00000c66060080410000004003600210000000000101043300000c660010009c00000c66010080410000006001100210000000000131019f000000000300041400000c660030009c00000c6603008041000000c003300210000000000131019f000300000002001d319331840000040f000000600310027000000c660330019800002e4c0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400900043d0000000004490019000000000094004b0000000005000039000000010500403900000c730040009c00002f4f0000213d000000010050019000002f4f0000c13d000000400040043f0000001f0430018f000000000a39043600000c680530019800000000035a001900002dc50000613d000000000601034f00000000070a0019000000006806043c0000000007870436000000000037004b00002dc10000c13d000000000004004b00002dd20000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000005030000290000000001090433000000010020019000002e520000613d000000000001004b00002df00000c13d00010000000a001d000200000009001d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b000000020100002900002f7b0000613d0000000001010433000000000001004b0000000503000029000000010a00002900002ec80000613d00000ced0010009c00002f550000213d000000200010008c00002f550000413d00000000010a0433000000010010008c00002f550000213d000000000001004b00002ec80000c13d00002e840000013d000000000100041400000c660010009c00000c6601008041000000c00110021000000d17011001c70000800502000039319331890000040f000000010020019000002f4e0000613d000000000101043b00000d0802000041000000000020044300000c6901100197000300000001001d0000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b00002f550000613d000000400300043d00000d4c01000041000000000013043500000004013000390000000602000029000000000021043500000c660030009c000200000003001d00000c660100004100000000010340190000004001100210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d3d011001c70000000302000029319331840000040f000000010020019000002f8b0000613d000000020100002900000c730010009c00002f4f0000213d000000400010043f0000000001000415000300000001001d00000d7401000041000000000010044300000000010004100000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800a02000039319331890000040f000000010020019000002f4e0000613d000000000101043b0000000603000029000000000031004b00002fab0000413d000000000100041400000c660010009c00000c6601008041000000c001100210000000000003004b00002e980000613d00000ce8011001c700008009020000390000000804000029000000000500001900002e990000013d000000800a000039000000050300002900000060090000390000000001090433000000010020019000002dd60000c13d000000000001004b00002f7f0000c13d000000400200043d000800000002001d00000c6c0100004100000000001204350000000401200039000000020200002900002f700000013d000000600a0000390000008009000039000000050300002900000000010a0433000000010020019000002f680000613d000000000001004b00002e7b0000c13d00040000000a001d000300000009001d00000d0801000041000000000010044300000007010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b000000040100002900002f7b0000613d0000000001010433000000000001004b0000000503000029000000030900002900002ecb0000613d00000ced0010009c00002f550000213d000000200010008c00002f550000413d0000000001090433000000010010008c00002f550000213d000000000001004b00002ecb0000c13d000000400100043d000000640210003900000d6c030000410000000000320435000000440210003900000d6d03000041000000000032043500000024021000390000002a03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c700003195000104300000000802000029319331840000040f000000600310027000000c660330019800002ec20000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400500043d0000000004450019000000000054004b0000000006000039000000010600403900000c730040009c00002f4f0000213d000000010060019000002f4f0000c13d000000400040043f0000001f0430018f000000000635043600000c6805300198000000000356001900002eb50000613d000000000701034f000000007807043c0000000006860436000000000036004b00002eb10000c13d000000000004004b00002ec20000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000010020019000002fbc0000613d000000000100041500000003011000690000000001000002000000050300002900000000010004150000000401100069000000000100000200000080013000390000000001010433000400000001001d0000000021010434000500000002001d000000000001004b00002f4d0000613d00000d0801000041000000000010044300000008010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b00002f4d0000613d00000d0801000041000000000010044300000008010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f000000010020019000002f4e0000613d000000000101043b000000000001004b000000050a00002900002f550000613d000000400b00043d0000006401b0003900000080020000390000000000210435000000000100041100000c69011001970000004402b0003900000000001204350000002401b000390000000602000029000000000021043500000d870100004100000000001b04350000000401b00039000000070200002900000000002104350000008402b0003900000004010000290000000001010433000000000012043500000d58051001970000001f0410018f000000a403b0003900000000003a004b00002f1c0000813d000000000005004b00002f180000613d00000000074a00190000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c00002f120000c13d000000000004004b00002f320000613d000000000603001900002f280000013d0000000006530019000000000005004b00002f250000613d00000000070a0019000000000803001900000000790704340000000008980436000000000068004b00002f210000c13d000000000004004b00002f320000613d000000000a5a00190000000304400210000000000506043300000000054501cf000000000545022f00000000070a04330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000001f0410003900000d580240019700000000013100190000000000010435000000a40120003900000c660010009c00000c6601008041000000600110021000000c6600b0009c00000c660200004100000000020b40190000004002200210000000000121019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f000000080200002900080000000b001d319331840000040f000000010020019000002f5b0000613d000000080100002900000c730010009c00002f4f0000213d000000400010043f000000000001042d000000000001042f00000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d0100004100003195000104300000000001000019000031950001043000000d3201000041000000000010043f00000c7501000041000031950001043000000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900002f970000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00002f630000c13d00002f970000013d000000000001004b00002f830000c13d000000400200043d000800000002001d00000c6c0100004100000000001204350000000401200039000000040200002931931fd10000040f0000000802000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f0000319500010430000000400100043d000000440210003900000d700300004100002fae0000013d00000c6600a0009c00000c660a0080410000004002a0021000002f860000013d00000c660090009c00000c6609008041000000400290021000000c660010009c00000c66010080410000006001100210000000000121019f000031950001043000000060061002700000001f0460018f00000c6805600198000000400200043d000000000352001900002f970000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b00002f930000c13d00000c6606600197000000000004004b00002fa50000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600160021000000c660020009c00000c66020080410000004002200210000000000112019f0000319500010430000000400100043d000000440210003900000d8803000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c70000319500010430000000400100043d000000640210003900000d85030000410000000000320435000000440210003900000d8603000041000000000032043500000024021000390000003a0300003900002e8d0000013d0003000000000002000100000003001d000200000002001d00000d08020000410000000000200443000300000001001d0000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f00000001002001900000304e0000613d000000000101043b000000000001004b0000304f0000613d000000030100002900000c690510019700000d1a01000041000000000201041a00000d0c02200197000000000252019f000000000021041b000000000100041400000c660010009c00000c6601008041000000c00110021000000ce8011001c70000800d02000039000000020300003900000d8904000041319331840000040f0000000100200190000030630000613d0000000205000029000000001205043400000001002001b00000304d0000613d000000400400043d00000d8a0040009c000030650000813d0000006002400039000000400020043f000000400240003900000d8b030000410000000000320435000000200240003900000d8c0300004100000000003204350000002702000039000100000004001d000000000024043500000c660010009c00000c66010080410000004001100210000000000205043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f00000003020000293193318e0000040f000000600310027000000c6605300198000030360000613d0000001f0350003900000c67033001970000003f0330003900000c7204300197000000400300043d0000000004430019000000000034004b0000000006000039000000010600403900000c730040009c000030650000213d0000000100600190000030650000c13d000000400040043f0000001f0650018f000000000453043600000c68075001980000000005740019000030280000613d000000000801034f0000000009040019000000008a08043c0000000009a90436000000000059004b000030240000c13d000000000006004b000030380000613d000000000171034f0000000306600210000000000705043300000000076701cf000000000767022f000000000101043b0000010006600089000000000161022f00000000016101cf000000000171019f0000000000150435000030380000013d00000060030000390000008004000039000000000103043300000001002001900000306b0000613d000000000001004b0000304d0000c13d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f00000001002001900000304e0000613d000000000101043b000000000001004b000030860000613d000000000001042d000000000001042f000000400100043d000000640210003900000d27030000410000000000320435000000440210003900000d2803000041000000000032043500000024021000390000002d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c700003195000104300000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000000001004b0000307e0000c13d000000400200043d000300000002001d00000c6c0100004100000000001204350000000401200039000000010200002931931fd10000040f0000000302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f000031950001043000000c660040009c00000c6604008041000000400240021000000c660010009c00000c66010080410000006001100210000000000121019f0000319500010430000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c700003195000104300003000000000002000000400400043d00000c710040009c000031090000813d00000c69051001970000004001400039000000400010043f000000200140003900000d6b0300004100000000003104350000002001000039000200000004001d0000000000140435000000200120003900000c660010009c00000c66010080410000004001100210000000000202043300000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000121019f000300000005001d0000000002050019319331840000040f000000600310027000000c6603300198000030df0000613d0000001f0430003900000c67044001970000003f0440003900000c7204400197000000400a00043d00000000044a00190000000000a4004b0000000005000039000000010500403900000c730040009c000031090000213d0000000100500190000031090000c13d000000400040043f0000001f0430018f00000000093a043600000c68053001980000000003590019000030d10000613d000000000601034f0000000007090019000000006806043c0000000007870436000000000037004b000030cd0000c13d000000000004004b000030e10000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000030e10000013d000000600a000039000000800900003900000000010a043300000001002001900000310f0000613d000000000001004b000030fd0000c13d00020000000a001d000100000009001d00000d0801000041000000000010044300000003010000290000000400100443000000000100041400000c660010009c00000c6601008041000000c00110021000000d09011001c70000800202000039319331890000040f00000001002001900000313e0000613d000000000101043b000000000001004b00000002010000290000313f0000613d0000000001010433000000000001004b0000000109000029000031060000613d00000ced0010009c000031070000213d0000001f0010008c000031070000a13d0000000001090433000000010010008c000031070000213d000000000001004b000031220000613d000000000001042d0000000001000019000031950001043000000d3f01000041000000000010043f0000004101000039000000040010043f00000d3d010000410000319500010430000000000001004b000031360000c13d000000400200043d000300000002001d00000c6c0100004100000000001204350000000401200039000000020200002931931fd10000040f0000000302000029000000000121004900000c660010009c00000c6601008041000000600110021000000c660020009c00000c66020080410000004002200210000000000121019f0000319500010430000000400100043d000000640210003900000d6c030000410000000000320435000000440210003900000d6d03000041000000000032043500000024021000390000002a03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000c6d011001c7000031950001043000000c660090009c00000c6609008041000000400290021000000c660010009c00000c66010080410000006001100210000000000121019f0000319500010430000000000001042f000000400100043d000000440210003900000d7003000041000000000032043500000024021000390000001d03000039000000000032043500000c6c02000041000000000021043500000004021000390000002003000039000000000032043500000c660010009c00000c6601008041000000400110021000000d26011001c70000319500010430000000000001042f00000c660010009c00000c6601008041000000400110021000000c660020009c00000c66020080410000006002200210000000000112019f000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000ce8011001c70000801002000039319331890000040f0000000100200190000031640000613d000000000101043b000000000001042d0000000001000019000031950001043000000000050100190000000000200443000000050030008c000031740000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b0000316c0000413d00000c660030009c00000c66030080410000006001300210000000000200041400000c660020009c00000c6602008041000000c002200210000000000112019f00000d8d011001c70000000002050019319331890000040f0000000100200190000031830000613d000000000101043b000000000001042d000000000001042f00003187002104210000000102000039000000000001042d0000000002000019000000000001042d0000318c002104230000000102000039000000000001042d0000000002000019000000000001042d00003191002104250000000102000039000000000001042d0000000002000019000000000001042d0000319300000432000031940001042e00003195000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff616c697a696e6700000000000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320696e69746908c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000000000000000000000002000000000000000000000000000000000000200000000000000000000000007f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024984690484000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc000000000000000000000000000000000000000000000000000000003ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff5110d7910000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000200000000000000000000000000000340000001000000000000000000000000000000000000000000000000000000000000000000000000007659f9df00000000000000000000000000000000000000000000000000000000adb5a6a500000000000000000000000000000000000000000000000000000000dda5211200000000000000000000000000000000000000000000000000000000e322921000000000000000000000000000000000000000000000000000000000ee2a53f700000000000000000000000000000000000000000000000000000000ee2a53f800000000000000000000000000000000000000000000000000000000f79f29ed00000000000000000000000000000000000000000000000000000000fc8a584f00000000000000000000000000000000000000000000000000000000e322921100000000000000000000000000000000000000000000000000000000ea86bd4600000000000000000000000000000000000000000000000000000000de7eba7700000000000000000000000000000000000000000000000000000000de7eba7800000000000000000000000000000000000000000000000000000000deff4b2400000000000000000000000000000000000000000000000000000000dda5211300000000000000000000000000000000000000000000000000000000ddd224f100000000000000000000000000000000000000000000000000000000c35c83fb00000000000000000000000000000000000000000000000000000000d513cb6500000000000000000000000000000000000000000000000000000000d513cb6600000000000000000000000000000000000000000000000000000000d7e1583a00000000000000000000000000000000000000000000000000000000c35c83fc00000000000000000000000000000000000000000000000000000000ceb4c98700000000000000000000000000000000000000000000000000000000b4c0d7aa00000000000000000000000000000000000000000000000000000000b4c0d7ab00000000000000000000000000000000000000000000000000000000babb6aac00000000000000000000000000000000000000000000000000000000adb5a6a600000000000000000000000000000000000000000000000000000000b370b7f5000000000000000000000000000000000000000000000000000000009748cf7b000000000000000000000000000000000000000000000000000000009a8a059100000000000000000000000000000000000000000000000000000000a18a096d00000000000000000000000000000000000000000000000000000000a18a096e00000000000000000000000000000000000000000000000000000000ac9650d800000000000000000000000000000000000000000000000000000000ad5425c6000000000000000000000000000000000000000000000000000000009a8a059200000000000000000000000000000000000000000000000000000000a1244c6700000000000000000000000000000000000000000000000000000000979f2bc100000000000000000000000000000000000000000000000000000000979f2bc20000000000000000000000000000000000000000000000000000000099cc2968000000000000000000000000000000000000000000000000000000009748cf7c0000000000000000000000000000000000000000000000000000000097943aa9000000000000000000000000000000000000000000000000000000007ef413e0000000000000000000000000000000000000000000000000000000008a7860cd000000000000000000000000000000000000000000000000000000008a7860ce000000000000000000000000000000000000000000000000000000008b15788e000000000000000000000000000000000000000000000000000000007ef413e10000000000000000000000000000000000000000000000000000000082e2c43f000000000000000000000000000000000000000000000000000000007aef642b000000000000000000000000000000000000000000000000000000007aef642c000000000000000000000000000000000000000000000000000000007b939232000000000000000000000000000000000000000000000000000000007659f9e000000000000000000000000000000000000000000000000000000000775c0d0300000000000000000000000000000000000000000000000000000000437b91150000000000000000000000000000000000000000000000000000000057f6dcb700000000000000000000000000000000000000000000000000000000670fa8ab000000000000000000000000000000000000000000000000000000006e400982000000000000000000000000000000000000000000000000000000006e400983000000000000000000000000000000000000000000000000000000006fd5c10e00000000000000000000000000000000000000000000000000000000738b62e500000000000000000000000000000000000000000000000000000000670fa8ac000000000000000000000000000000000000000000000000000000006bbbcd2e0000000000000000000000000000000000000000000000000000000061a04d2f0000000000000000000000000000000000000000000000000000000061a04d3000000000000000000000000000000000000000000000000000000000647c576c0000000000000000000000000000000000000000000000000000000057f6dcb8000000000000000000000000000000000000000000000000000000006068d6cb000000000000000000000000000000000000000000000000000000005285e05700000000000000000000000000000000000000000000000000000000541f4f1300000000000000000000000000000000000000000000000000000000541f4f1400000000000000000000000000000000000000000000000000000000577f51f8000000000000000000000000000000000000000000000000000000005285e0580000000000000000000000000000000000000000000000000000000052d1902d00000000000000000000000000000000000000000000000000000000493a4f8300000000000000000000000000000000000000000000000000000000493a4f84000000000000000000000000000000000000000000000000000000004f1ef28600000000000000000000000000000000000000000000000000000000437b911600000000000000000000000000000000000000000000000000000000490e49ef000000000000000000000000000000000000000000000000000000001b3d5558000000000000000000000000000000000000000000000000000000002e63e599000000000000000000000000000000000000000000000000000000003a90dc84000000000000000000000000000000000000000000000000000000003a90dc85000000000000000000000000000000000000000000000000000000003f00627b000000000000000000000000000000000000000000000000000000002e63e59a000000000000000000000000000000000000000000000000000000003659cfe60000000000000000000000000000000000000000000000000000000029cb924c0000000000000000000000000000000000000000000000000000000029cb924d000000000000000000000000000000000000000000000000000000002e378115000000000000000000000000000000000000000000000000000000001b3d5559000000000000000000000000000000000000000000000000000000001fab657c0000000000000000000000000000000000000000000000000000000012622e5a0000000000000000000000000000000000000000000000000000000017fcb39a0000000000000000000000000000000000000000000000000000000017fcb39b0000000000000000000000000000000000000000000000000000000019c1648c0000000000000000000000000000000000000000000000000000000012622e5b0000000000000000000000000000000000000000000000000000000015348e44000000000000000000000000000000000000000000000000000000001186ec32000000000000000000000000000000000000000000000000000000001186ec330000000000000000000000000000000000000000000000000000000011eac85500000000000000000000000000000000000000000000000000000000079bd2c7000000000000000000000000000000000000000000000000000000000cb84d9affffffffffffffffffffffffeeeeffffffffffffffffffffffffffffffffeeef0000000000000000000000000000000000000040000000000000000000000000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000000ff0000000000000000000000000000000000000000000000000000000000ffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000800000000000000000000000ff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c097ce7bc90715b34b9f10000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000001ffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff40000000000000000000000000000000000000000000000003ffffffffffffffe09a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b020000000000000000000000000000000000000000000000000000000000000045e04bc8f121ba11466985789ca2822a91109f31bb8ac85504a37b7eaf873c2600000000000000000000000000000000000000000000003fffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7f80000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000400000000000000000000000006c172ea51018fb2eb2118f3f8a507c4df71eb519b8c0052834dc3c920182fef4d950afdc00000000000000000000000000000000000000000000000000000000ffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000200000008000000000000000002d5b62420992e5a4afce0e77742636ca2608ef58289fd2e1baa5161ef6e7e41e4143524f53532d56320000000000000000000000000000000000000000000000312e302e30000000000000000000000000000000000000000000000000000000310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e000000000000000000000000000000000000000000000000fffffffffffffe5f8e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b38e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b27c1af0646963afc3343245b103731965735a893347bfa0d58a5dc77a77ae691c000000000000000000000000000000000000000000000000fffffffffffffee00200000000000000000000000000000000000000000000a000000000000000001e191e8e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffdfdeff4b2400000000000000000000000000000000000000000000000000000000b8fe37a70000000000000000000000000000000000000000000000000000000091d7e1520000000000000000000000000000000000000000000000000000000041a941b8313293eca483f41d8faa2498e005e6d7700e2e93f41d3cb7e70a897d7f5e6be5000000000000000000000000000000000000000000000000000000009d276a4200000000000000000000000000000000000000000000000000000000ffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe88463c2f254e2b070013a2dc7ee1e099f9bc00534cbdf03af551dc26ae492198d1994e2bbbd77564cdca06dd819e7ee2a5efa06c80dcb59a4a7b6e39edc538f1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000647920696e697469616c697a6564000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c726561ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbfa9e8c42c9e7fca7f62755189a16b2f5314d43d8fb24e91ba54e6d65f9314e849a73e8909f8616742d7fe701153d82666f7b7cd480552e23ebb05d358c22fd04eb606125600000000000000000000000000000000000000000000000000000000ba97b39d000000000000000000000000000000000000000000000000000000006e697469616c697a696e67000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420690000000000000000000000000000000000000000000000008000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000007fffffffffffffff02000002000000000000000000000000000000440000000000000000000000006c6564207468726f7567682064656c656761746563616c6c0000000000000000555550535570677261646561626c653a206d757374206e6f742062652063616c360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd914352d1902d000000000000000000000000000000000000000000000000000000006961626c6555554944000000000000000000000000000000000000000000000045524331393637557067726164653a20756e737570706f727465642070726f78c86ba04c55bc5eb2f2876b91c438849a296dbec7b08751c3074d92e04f0a77af0000000000000000000000000000000000000000000000000000000001e13380000000000000000000000000000000000000000000000000ffffffffffffff3f00000000000000000000000000000000000000000000000000000000000100036163746976652070726f7879000000000000000000000000000000000000000046756e6374696f6e206d7573742062652063616c6c6564207468726f756768204f4e4c595f434f554e544552504152545f47415445574159000000000000000000000000000000000000000000000000000000640000000000000000000000006f74206120636f6e747261637400000000000000000000000000000000000000455243313936373a206e657720696d706c656d656e746174696f6e206973206e64656c656761746563616c6c000000000000000000000000000000000000000009deb9ec00000000000000000000000000000000000000000000000000000000012f9e440000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000001400000000000000000000000003cee3e290f36226751cd0b3321b213890fe9c768e922f267fa6111836ce05c32000000000000000000000000000000000000000000000000fffffffffffffdc07b21f8aa00000000000000000000000000000000000000000000000000000000c3a9b9d0000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000f3d81dae00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff9f8f260c6000000000000000000000000000000000000000000000000000000000d642b7d9000000000000000000000000000000000000000000000000000000007a47c9a200000000000000000000000000000000000000000000000000000000b05e92fa000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff8e328cbb0b14d10371cfd6e092424bb29e735c9715abda2de83e29fb40d947b1954476d900000000000000000000000000000000000000000000000000000000cd298b380000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000005bb550620000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100044a2e35ba00000000000000000000000000000000000000000000000000000000dd62ed3e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000095ea7b300000000000000000000000000000000000000000000000000000000cb75c11c00000000000000000000000000000000000000000000000000000000a56ec632000000000000000000000000000000000000000000000000000000008e0250ee0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000e40000000000000000000000006fd3504e00000000000000000000000000000000000000000000000000000000d9caed12000000000000000000000000000000000000000000000000000000002e1a7d4d0000000000000000000000000000000000000000000000000000000051cff8d9000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000024000000000000000000000000fa7fa7cf6d7dde5f9be65a67e6a1a747e7aa864dcd2d793353c722d80fbbb357f4ad92585b1bc117fbdd644990adf0827bc4c95baeae8a23322af807b6d0020e0000000000000000000000000000000000000064000000800000000000000000fc0c546a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000800000000000000000a63e8c6b00000000000000000000000000000000000000000000000000000000323983f5343e25b2c1396361b1b791be31484841fdfb95b8615cd02d910b1e085265656e7472616e637947756172643a207265656e7472616e742063616c6c005a65d18800000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0001ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff000000000000000000000000000000000000000000000000fffffffffffffe600000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000ffffffffffffffe0000000000000000000000000000000000000000000000000fffffffffffffe800000000000000000000000000000000000000000000000000000000100000000ffff00ff00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff8000000000000000000000000000000000000000000000000006f05b59d3b200000000000000000000000000000000000000c097ce7bc90715b34b9f10000000016452a35d00000000000000000000000000000000000000000000000000000000d0e30db000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000400000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff605361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65646f742073756363656564000000000000000000000000000000000000000000005361666545524332303a204552433230206f7065726174696f6e20646964206e0000000000000000000000000000000000000000000000000de0b6b3a764000032ed1a409ef04c7b0227189c3a103dc5ac10e775a15b785dcc510201f7c25ad3416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000f722177f00000000000000000000000000000000000000000000000000000000c45b6b5200000000000000000000000000000000000000000000000000000000a13c425c000000000000000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f3902000000000000000000000000000000000001e000000000000000000000000044b559f101f8fbcc8a0ea43fa91a05a729a5ea6e14a7c75aa7503746901372086f6e206973206e6f74205555505300000000000000000000000000000000000045524331393637557067726164653a206e657720696d706c656d656e74617469000000000000000000000000000000000000000000000000ffffffffffffff20c2f8787176b8ac6bf7215b4adcc1e069bf4ab82d9ab1df05a57a91d425935b6e000000000000000000000000000000000000000000000000ffffffffffffff5f190100000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000420000000000000000000000007fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a100000000000000000000000000000000000000800000000000000000000000001626ba7e00000000000000000000000000000000000000000000000000000000938a1821000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001e13381495d907f00000000000000000000000000000000000000000000000000000000582e3889000000000000000000000000000000000000000000000000000000006563697069656e74206d61792068617665207265766572746564000000000000416464726573733a20756e61626c6520746f2073656e642076616c75652c20723a5be8cb00000000000000000000000000000000000000000000000000000000416464726573733a20696e73756666696369656e742062616c616e6365000000bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b000000000000000000000000000000000000000000000000ffffffffffffffa0206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c0200000200000000000000000000000000000000000000000000000000000000000000000000000000a2646970667358221220c3696bd7417e243db26cd77c60b2bfa8f5e085102d4143b163f44fbe155e464664736f6c6378247a6b736f6c633a312e352e31353b736f6c633a302e382e33303b6c6c766d3a312e302e320055",
"devdoc": {
"custom:security-contact": "bugs@across.to",
"details": "Resources for compiling and deploying contracts with hardhat: https://era.zksync.io/docs/tools/hardhat/hardhat-zksync-solc.html",
@@ -6765,6 +7315,14 @@
"rootBundleId": "Index of the root bundle that needs to be deleted. Note: this is intentionally a uint256 to ensure that a small input range doesn't limit which indices this method is able to reach."
}
},
+ "executeExternalCall(bytes)": {
+ "params": {
+ "message": "The message containing the target address and calldata to execute."
+ },
+ "returns": {
+ "returnData": "The return data from the executed call."
+ }
+ },
"executeRelayerRefundLeaf(uint32,(uint256,uint256,uint256[],uint32,address,address[]),bytes32[])": {
"params": {
"proof": "Inclusion proof for this leaf in relayer refund root in root bundle.",
@@ -6824,12 +7382,11 @@
"_0": "The deposit ID for the unsafe deposit."
}
},
- "initialize(uint32,address,address,address)": {
+ "initialize(uint32,address,address)": {
"params": {
"_crossDomainAdmin": "Cross domain admin to set. Can be changed by admin.",
"_initialDepositId": "Starting deposit ID. Set to 0 unless this is a re-deployment in order to mitigate relay hash collisions.",
- "_withdrawalRecipient": "Address which receives token withdrawals. Can be changed by admin. For Spoke Pools on L2, this will likely be the hub pool.",
- "_zkErc20Bridge": "Address of L2 ERC20 gateway. Can be reset by admin."
+ "_withdrawalRecipient": "Address which receives token withdrawals. Can be changed by admin. For Spoke Pools on L2, this will likely be the hub pool."
}
},
"pauseDeposits(bool)": {
@@ -6864,11 +7421,10 @@
"newCrossDomainAdmin": "New cross domain admin."
}
},
- "setEnableRoute(address,uint256,bool)": {
+ "setOftMessenger(address,address)": {
"params": {
- "destinationChainId": "Chain ID for where depositor wants to receive funds.",
- "enabled": "True to enable deposits, False otherwise.",
- "originToken": "Token that depositor can deposit to this contract."
+ "messenger": "IOFT contract address on the current chain for the specified token. Acts as a 'mailbox'",
+ "token": "token address on the current chain"
}
},
"setWithdrawalRecipient(address)": {
@@ -6876,11 +7432,6 @@
"newWithdrawalRecipient": "New withdrawal recipient address."
}
},
- "setZkBridge(address)": {
- "params": {
- "_zkErc20Bridge": "New address of L2 ERC20 gateway."
- }
- },
"speedUpDeposit(bytes32,uint256,uint256,bytes32,bytes,bytes)": {
"details": "the depositor and depositId must match the params in a FundsDeposited event that the depositor wants to speed up. The relayer has the option but not the obligation to use this updated information when filling the deposit via fillRelayWithUpdatedDeposit().",
"params": {
@@ -6904,7 +7455,7 @@
}
},
"unsafeDeposit(bytes32,bytes32,bytes32,bytes32,uint256,uint256,uint256,bytes32,uint256,uint32,uint32,uint32,bytes)": {
- "details": "This is labeled \"unsafe\" because there is no guarantee that the depositId emitted in the resultant FundsDeposited event is unique which means that the corresponding fill might collide with an existing relay hash on the destination chain SpokePool, which would make this deposit unfillable. In this case, the depositor would subsequently receive a refund of `inputAmount` of `inputToken` on the origin chain after the fill deadline.On the destination chain, the hash of the deposit data will be used to uniquely identify this deposit, so modifying any params in it will result in a different hash and a different deposit. The hash will comprise all parameters to this function along with this chain's chainId(). Relayers are only refunded for filling deposits with deposit hashes that map exactly to the one emitted by this contract.",
+ "details": "This is labeled \"unsafe\" because there is no guarantee that the depositId emitted in the resultant FundsDeposited event is unique which means that the corresponding fill might collide with an existing relay hash on the destination chain SpokePool, which would make this deposit unfillable. In this case, the depositor would subsequently receive a refund of `inputAmount` of `inputToken` on the origin chain after the fill deadline. Re-using a depositNonce is very dangerous when combined with `speedUpDeposit`, as a speed up signature can be re-used for any deposits with the same deposit ID.On the destination chain, the hash of the deposit data will be used to uniquely identify this deposit, so modifying any params in it will result in a different hash and a different deposit. The hash will comprise all parameters to this function along with this chain's chainId(). Relayers are only refunded for filling deposits with deposit hashes that map exactly to the one emitted by this contract.",
"params": {
"depositNonce": "The nonce that uniquely identifies this deposit. This function will combine this parameter with the msg.sender address to create a unique uint256 depositNonce and ensure that the msg.sender cannot use this function to front-run another depositor's unsafe deposit. This function guarantees that the resultant deposit nonce will not collide with a safe uint256 deposit nonce whose 24 most significant bytes are always 0.",
"depositor": "See identically named parameter in depositV3() comments.",
@@ -6930,11 +7481,62 @@
"details": "Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event."
}
},
+ "stateVariables": {
+ "L2_NATIVE_TOKEN_VAULT_ADDR": {
+ "details": "An l2 system contract address, used in the assetId calculation for native assets. This is needed for automatic bridging, i.e. without deploying the AssetHandler contract, if the assetId can be calculated with this address then it is in fact an NTV asset Source: https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/common/l2-helpers/L2ContractAddresses.sol#L70C1-L73C85"
+ },
+ "USER_CONTRACTS_OFFSET": {
+ "details": "The offset from which the built-in, but user space contracts are located. Source: https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/common/l2-helpers/L2ContractAddresses.sol#L12C1-L13C58"
+ },
+ "zkUSDCBridge": {
+ "details": "Legacy bridge used to withdraw USDC to L1, for withdrawing all other ERC20's we use `l2AssetRouter`."
+ }
+ },
"version": 1
},
"userdoc": {
+ "errors": {
+ "OFTFeeUnderpaid()": [
+ {
+ "notice": "Thrown when the native fee sent by the caller is insufficient to cover the OFT transfer."
+ }
+ ],
+ "OftFeeCapExceeded()": [
+ {
+ "notice": "Thrown when OFT fee exceeds the configured cap "
+ }
+ ],
+ "OftIncorrectAmountReceivedLD()": [
+ {
+ "notice": "Thrown when amount received differs from expected amount "
+ }
+ ],
+ "OftIncorrectAmountSentLD()": [
+ {
+ "notice": "Thrown when amount sent differs from expected amount "
+ }
+ ],
+ "OftInsufficientBalanceForFee()": [
+ {
+ "notice": "Thrown when contract has insufficient balance to pay OFT fees "
+ }
+ ],
+ "OftLzFeeNotZero()": [
+ {
+ "notice": "Thrown when LayerZero token fee is not zero (only native fees supported) "
+ }
+ ]
+ },
+ "events": {
+ "AdminExternalCallExecuted(address,bytes)": {
+ "notice": "Emitted when the call to external contract is executed, triggered by an admin action"
+ }
+ },
"kind": "user",
"methods": {
+ "EMPTY_MSG_BYTES()": {
+ "notice": "Empty bytes array used for OFT messaging parameters "
+ },
"__SpokePool_init(uint32,address,address)": {
"notice": "Construct the base SpokePool."
},
@@ -6965,6 +7567,9 @@
"emergencyDeleteRootBundle(uint256)": {
"notice": "This method is intended to only be used in emergencies where a bad root bundle has reached the SpokePool."
},
+ "executeExternalCall(bytes)": {
+ "notice": "Execute an external call to a target contract."
+ },
"executeRelayerRefundLeaf(uint32,(uint256,uint256,uint256[],uint32,address,address[]),bytes32[])": {
"notice": "Executes a relayer refund leaf stored as part of a root bundle. Will send the relayer the amount they sent to the recipient plus a relayer fee."
},
@@ -6986,8 +7591,8 @@
"getUnsafeDepositId(address,bytes32,uint256)": {
"notice": "Returns the deposit ID for an unsafe deposit. This function is used to compute the deposit ID in unsafeDeposit and is provided as a convenience."
},
- "initialize(uint32,address,address,address)": {
- "notice": "Construct the ZkSync SpokePool."
+ "initialize(uint32,address,address)": {
+ "notice": "Initialize the ZkSync SpokePool."
},
"pauseDeposits(bool)": {
"notice": "Pauses deposit-related functions. This is intended to be used if this contract is deprecated or when something goes awry."
@@ -7004,17 +7609,14 @@
"setCrossDomainAdmin(address)": {
"notice": "Change cross domain admin address. Callable by admin only."
},
- "setEnableRoute(address,uint256,bool)": {
- "notice": "Enable/Disable an origin token => destination chain ID route for deposits. Callable by admin only."
+ "setOftMessenger(address,address)": {
+ "notice": "Add token -> OFTMessenger relationship. Callable only by admin."
},
"setWithdrawalRecipient(address)": {
"notice": "Change L1 withdrawal recipient address. Callable by admin only."
},
- "setZkBridge(address)": {
- "notice": "Change L2 token bridge addresses. Callable only by admin."
- },
"speedUpDeposit(bytes32,uint256,uint256,bytes32,bytes,bytes)": {
- "notice": "Depositor can use this function to signal to relayer to use updated output amount, recipient, and/or message."
+ "notice": "Depositor can use this function to signal to relayer to use updated output amount, recipient, and/or message. The speed up signature uniquely identifies the speed up based only on depositor, deposit ID and origin chain, so using this function in conjunction with unsafeDeposit is risky due to the chance of repeating a deposit ID."
},
"speedUpV3Deposit(address,uint256,uint256,address,bytes,bytes)": {
"notice": "A version of `speedUpDeposit` using `address` types for backward compatibility. This function allows the depositor to signal to the relayer to use updated output amount, recipient, and/or message when filling a deposit. This can be useful when the deposit needs to be modified after the original transaction has been mined."
@@ -7029,7 +7631,7 @@
"storageLayout": {
"storage": [
{
- "astId": 779,
+ "astId": 372,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "_initialized",
"offset": 0,
@@ -7037,7 +7639,7 @@
"type": "t_uint8"
},
{
- "astId": 782,
+ "astId": 375,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "_initializing",
"offset": 1,
@@ -7045,7 +7647,7 @@
"type": "t_bool"
},
{
- "astId": 761,
+ "astId": 354,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "__gap",
"offset": 0,
@@ -7053,7 +7655,7 @@
"type": "t_array(t_uint256)50_storage"
},
{
- "astId": 1077,
+ "astId": 670,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "__gap",
"offset": 0,
@@ -7061,7 +7663,7 @@
"type": "t_array(t_uint256)50_storage"
},
{
- "astId": 1093,
+ "astId": 686,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "_status",
"offset": 0,
@@ -7069,7 +7671,7 @@
"type": "t_uint256"
},
{
- "astId": 1162,
+ "astId": 755,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "__gap",
"offset": 0,
@@ -7077,7 +7679,7 @@
"type": "t_array(t_uint256)49_storage"
},
{
- "astId": 38004,
+ "astId": 17487,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "__gap",
"offset": 0,
@@ -7085,7 +7687,7 @@
"type": "t_array(t_uint256)1000_storage"
},
{
- "astId": 37736,
+ "astId": 17219,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "_HASHED_NAME",
"offset": 0,
@@ -7093,7 +7695,7 @@
"type": "t_bytes32"
},
{
- "astId": 37738,
+ "astId": 17221,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "_HASHED_VERSION",
"offset": 0,
@@ -7101,7 +7703,7 @@
"type": "t_bytes32"
},
{
- "astId": 37837,
+ "astId": 17320,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "__gap",
"offset": 0,
@@ -7109,7 +7711,7 @@
"type": "t_array(t_uint256)1000_storage"
},
{
- "astId": 19511,
+ "astId": 8806,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "crossDomainAdmin",
"offset": 0,
@@ -7117,7 +7719,7 @@
"type": "t_address"
},
{
- "astId": 19513,
+ "astId": 8808,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "withdrawalRecipient",
"offset": 0,
@@ -7125,15 +7727,15 @@
"type": "t_address"
},
{
- "astId": 19516,
+ "astId": 8811,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "DEPRECATED_wrappedNativeToken",
"offset": 0,
"slot": "2155",
- "type": "t_contract(WETH9Interface)32725"
+ "type": "t_contract(WETH9Interface)14152"
},
{
- "astId": 19518,
+ "astId": 8813,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "DEPRECATED_depositQuoteTimeBuffer",
"offset": 20,
@@ -7141,7 +7743,7 @@
"type": "t_uint32"
},
{
- "astId": 19520,
+ "astId": 8815,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "numberOfDeposits",
"offset": 24,
@@ -7149,7 +7751,7 @@
"type": "t_uint32"
},
{
- "astId": 19522,
+ "astId": 8817,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "pausedFills",
"offset": 28,
@@ -7157,7 +7759,7 @@
"type": "t_bool"
},
{
- "astId": 19524,
+ "astId": 8819,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "pausedDeposits",
"offset": 29,
@@ -7165,23 +7767,23 @@
"type": "t_bool"
},
{
- "astId": 19528,
+ "astId": 8823,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "rootBundles",
"offset": 0,
"slot": "2156",
- "type": "t_array(t_struct(RootBundle)33497_storage)dyn_storage"
+ "type": "t_array(t_struct(RootBundle)15024_storage)dyn_storage"
},
{
- "astId": 19534,
+ "astId": 8829,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
- "label": "enabledDepositRoutes",
+ "label": "DEPRECATED_enabledDepositRoutes",
"offset": 0,
"slot": "2157",
"type": "t_mapping(t_address,t_mapping(t_uint256,t_bool))"
},
{
- "astId": 19538,
+ "astId": 8833,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "DEPRECATED_relayFills",
"offset": 0,
@@ -7189,7 +7791,7 @@
"type": "t_mapping(t_bytes32,t_uint256)"
},
{
- "astId": 19542,
+ "astId": 8837,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "DEPRECATED_fillCounter",
"offset": 0,
@@ -7197,7 +7799,7 @@
"type": "t_mapping(t_address,t_uint256)"
},
{
- "astId": 19546,
+ "astId": 8841,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "DEPRECATED_depositCounter",
"offset": 0,
@@ -7205,7 +7807,7 @@
"type": "t_mapping(t_address,t_uint256)"
},
{
- "astId": 19550,
+ "astId": 8845,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "DEPRECATED_refundsRequested",
"offset": 0,
@@ -7213,7 +7815,7 @@
"type": "t_mapping(t_bytes32,t_uint256)"
},
{
- "astId": 19554,
+ "astId": 8849,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "fillStatuses",
"offset": 0,
@@ -7221,7 +7823,7 @@
"type": "t_mapping(t_bytes32,t_uint256)"
},
{
- "astId": 19560,
+ "astId": 8855,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "relayerRefund",
"offset": 0,
@@ -7229,15 +7831,23 @@
"type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
},
{
- "astId": 22103,
+ "astId": 8859,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
- "label": "__gap",
+ "label": "oftMessengers",
"offset": 0,
"slot": "2164",
- "type": "t_array(t_uint256)998_storage"
+ "type": "t_mapping(t_address,t_address)"
+ },
+ {
+ "astId": 11637,
+ "contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
+ "label": "__gap",
+ "offset": 0,
+ "slot": "2165",
+ "type": "t_array(t_uint256)997_storage"
},
{
- "astId": 22798,
+ "astId": 13267,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "l2Eth",
"offset": 0,
@@ -7245,12 +7855,20 @@
"type": "t_address"
},
{
- "astId": 22801,
+ "astId": 13269,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
- "label": "zkErc20Bridge",
+ "label": "DEPRECATED_zkErc20Bridge",
"offset": 0,
"slot": "3163",
- "type": "t_contract(ZkBridgeLike)22787"
+ "type": "t_address"
+ },
+ {
+ "astId": 13625,
+ "contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
+ "label": "__gap",
+ "offset": 0,
+ "slot": "3164",
+ "type": "t_array(t_uint256)999_storage"
}
],
"types": {
@@ -7259,8 +7877,8 @@
"label": "address",
"numberOfBytes": "20"
},
- "t_array(t_struct(RootBundle)33497_storage)dyn_storage": {
- "base": "t_struct(RootBundle)33497_storage",
+ "t_array(t_struct(RootBundle)15024_storage)dyn_storage": {
+ "base": "t_struct(RootBundle)15024_storage",
"encoding": "dynamic_array",
"label": "struct SpokePoolInterface.RootBundle[]",
"numberOfBytes": "32"
@@ -7283,11 +7901,17 @@
"label": "uint256[50]",
"numberOfBytes": "1600"
},
- "t_array(t_uint256)998_storage": {
+ "t_array(t_uint256)997_storage": {
"base": "t_uint256",
"encoding": "inplace",
- "label": "uint256[998]",
- "numberOfBytes": "31936"
+ "label": "uint256[997]",
+ "numberOfBytes": "31904"
+ },
+ "t_array(t_uint256)999_storage": {
+ "base": "t_uint256",
+ "encoding": "inplace",
+ "label": "uint256[999]",
+ "numberOfBytes": "31968"
},
"t_bool": {
"encoding": "inplace",
@@ -7299,15 +7923,17 @@
"label": "bytes32",
"numberOfBytes": "32"
},
- "t_contract(WETH9Interface)32725": {
+ "t_contract(WETH9Interface)14152": {
"encoding": "inplace",
"label": "contract WETH9Interface",
"numberOfBytes": "20"
},
- "t_contract(ZkBridgeLike)22787": {
- "encoding": "inplace",
- "label": "contract ZkBridgeLike",
- "numberOfBytes": "20"
+ "t_mapping(t_address,t_address)": {
+ "encoding": "mapping",
+ "key": "t_address",
+ "label": "mapping(address => address)",
+ "numberOfBytes": "32",
+ "value": "t_address"
},
"t_mapping(t_address,t_mapping(t_address,t_uint256))": {
"encoding": "mapping",
@@ -7351,12 +7977,12 @@
"numberOfBytes": "32",
"value": "t_uint256"
},
- "t_struct(RootBundle)33497_storage": {
+ "t_struct(RootBundle)15024_storage": {
"encoding": "inplace",
"label": "struct SpokePoolInterface.RootBundle",
"members": [
{
- "astId": 33490,
+ "astId": 15017,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "slowRelayRoot",
"offset": 0,
@@ -7364,7 +7990,7 @@
"type": "t_bytes32"
},
{
- "astId": 33492,
+ "astId": 15019,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "relayerRefundRoot",
"offset": 0,
@@ -7372,7 +7998,7 @@
"type": "t_bytes32"
},
{
- "astId": 33496,
+ "astId": 15023,
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
"label": "claimedBitmap",
"offset": 0,
diff --git a/deployments/zksync/solcInputs/47139abb5837f5482556d72341819801.json b/deployments/zksync/solcInputs/47139abb5837f5482556d72341819801.json
new file mode 100644
index 000000000..25ce6ac70
--- /dev/null
+++ b/deployments/zksync/solcInputs/47139abb5837f5482556d72341819801.json
@@ -0,0 +1,251 @@
+{
+ "language": "Solidity",
+ "sources": {
+ "@openzeppelin/contracts-upgradeable-v4/interfaces/draft-IERC1822Upgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified\n * proxy whose upgrades are fully controlled by the current implementation.\n */\ninterface IERC1822ProxiableUpgradeable {\n /**\n * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation\n * address.\n *\n * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n * function revert if invoked through a proxy.\n */\n function proxiableUUID() external view returns (bytes32);\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/interfaces/IERC1967Upgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC1967.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.\n *\n * _Available since v4.8.3._\n */\ninterface IERC1967Upgradeable {\n /**\n * @dev Emitted when the implementation is upgraded.\n */\n event Upgraded(address indexed implementation);\n\n /**\n * @dev Emitted when the admin account has changed.\n */\n event AdminChanged(address previousAdmin, address newAdmin);\n\n /**\n * @dev Emitted when the beacon is changed.\n */\n event BeaconUpgraded(address indexed beacon);\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/proxy/beacon/IBeaconUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev This is the interface that {BeaconProxy} expects of its beacon.\n */\ninterface IBeaconUpgradeable {\n /**\n * @dev Must return an address that can be used as a delegate call target.\n *\n * {BeaconProxy} will check that this address is a contract.\n */\n function implementation() external view returns (address);\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/proxy/ERC1967/ERC1967UpgradeUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/ERC1967/ERC1967Upgrade.sol)\n\npragma solidity ^0.8.2;\n\nimport \"../beacon/IBeaconUpgradeable.sol\";\nimport \"../../interfaces/IERC1967Upgradeable.sol\";\nimport \"../../interfaces/draft-IERC1822Upgradeable.sol\";\nimport \"../../utils/AddressUpgradeable.sol\";\nimport \"../../utils/StorageSlotUpgradeable.sol\";\nimport {Initializable} from \"../utils/Initializable.sol\";\n\n/**\n * @dev This abstract contract provides getters and event emitting update functions for\n * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.\n *\n * _Available since v4.1._\n */\nabstract contract ERC1967UpgradeUpgradeable is Initializable, IERC1967Upgradeable {\n // This is the keccak-256 hash of \"eip1967.proxy.rollback\" subtracted by 1\n bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;\n\n /**\n * @dev Storage slot with the address of the current implementation.\n * This is the keccak-256 hash of \"eip1967.proxy.implementation\" subtracted by 1, and is\n * validated in the constructor.\n */\n bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n\n function __ERC1967Upgrade_init() internal onlyInitializing {\n }\n\n function __ERC1967Upgrade_init_unchained() internal onlyInitializing {\n }\n /**\n * @dev Returns the current implementation address.\n */\n function _getImplementation() internal view returns (address) {\n return StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n }\n\n /**\n * @dev Stores a new address in the EIP1967 implementation slot.\n */\n function _setImplementation(address newImplementation) private {\n require(AddressUpgradeable.isContract(newImplementation), \"ERC1967: new implementation is not a contract\");\n StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n }\n\n /**\n * @dev Perform implementation upgrade\n *\n * Emits an {Upgraded} event.\n */\n function _upgradeTo(address newImplementation) internal {\n _setImplementation(newImplementation);\n emit Upgraded(newImplementation);\n }\n\n /**\n * @dev Perform implementation upgrade with additional setup call.\n *\n * Emits an {Upgraded} event.\n */\n function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal {\n _upgradeTo(newImplementation);\n if (data.length > 0 || forceCall) {\n AddressUpgradeable.functionDelegateCall(newImplementation, data);\n }\n }\n\n /**\n * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.\n *\n * Emits an {Upgraded} event.\n */\n function _upgradeToAndCallUUPS(address newImplementation, bytes memory data, bool forceCall) internal {\n // Upgrades from old implementations will perform a rollback test. This test requires the new\n // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing\n // this special case will break upgrade paths from old UUPS implementation to new ones.\n if (StorageSlotUpgradeable.getBooleanSlot(_ROLLBACK_SLOT).value) {\n _setImplementation(newImplementation);\n } else {\n try IERC1822ProxiableUpgradeable(newImplementation).proxiableUUID() returns (bytes32 slot) {\n require(slot == _IMPLEMENTATION_SLOT, \"ERC1967Upgrade: unsupported proxiableUUID\");\n } catch {\n revert(\"ERC1967Upgrade: new implementation is not UUPS\");\n }\n _upgradeToAndCall(newImplementation, data, forceCall);\n }\n }\n\n /**\n * @dev Storage slot with the admin of the contract.\n * This is the keccak-256 hash of \"eip1967.proxy.admin\" subtracted by 1, and is\n * validated in the constructor.\n */\n bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;\n\n /**\n * @dev Returns the current admin.\n */\n function _getAdmin() internal view returns (address) {\n return StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value;\n }\n\n /**\n * @dev Stores a new address in the EIP1967 admin slot.\n */\n function _setAdmin(address newAdmin) private {\n require(newAdmin != address(0), \"ERC1967: new admin is the zero address\");\n StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value = newAdmin;\n }\n\n /**\n * @dev Changes the admin of the proxy.\n *\n * Emits an {AdminChanged} event.\n */\n function _changeAdmin(address newAdmin) internal {\n emit AdminChanged(_getAdmin(), newAdmin);\n _setAdmin(newAdmin);\n }\n\n /**\n * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.\n * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.\n */\n bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;\n\n /**\n * @dev Returns the current beacon.\n */\n function _getBeacon() internal view returns (address) {\n return StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value;\n }\n\n /**\n * @dev Stores a new beacon in the EIP1967 beacon slot.\n */\n function _setBeacon(address newBeacon) private {\n require(AddressUpgradeable.isContract(newBeacon), \"ERC1967: new beacon is not a contract\");\n require(\n AddressUpgradeable.isContract(IBeaconUpgradeable(newBeacon).implementation()),\n \"ERC1967: beacon implementation is not a contract\"\n );\n StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value = newBeacon;\n }\n\n /**\n * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does\n * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).\n *\n * Emits a {BeaconUpgraded} event.\n */\n function _upgradeBeaconToAndCall(address newBeacon, bytes memory data, bool forceCall) internal {\n _setBeacon(newBeacon);\n emit BeaconUpgraded(newBeacon);\n if (data.length > 0 || forceCall) {\n AddressUpgradeable.functionDelegateCall(IBeaconUpgradeable(newBeacon).implementation(), data);\n }\n }\n\n /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[50] private __gap;\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/proxy/utils/Initializable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)\n\npragma solidity ^0.8.2;\n\nimport \"../../utils/AddressUpgradeable.sol\";\n\n/**\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n *\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\n * reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\n * case an upgrade adds a module that needs to be initialized.\n *\n * For example:\n *\n * [.hljs-theme-light.nopadding]\n * ```solidity\n * contract MyToken is ERC20Upgradeable {\n * function initialize() initializer public {\n * __ERC20_init(\"MyToken\", \"MTK\");\n * }\n * }\n *\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\n * function initializeV2() reinitializer(2) public {\n * __ERC20Permit_init(\"MyToken\");\n * }\n * }\n * ```\n *\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n *\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n *\n * [CAUTION]\n * ====\n * Avoid leaving a contract uninitialized.\n *\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\n *\n * [.hljs-theme-light.nopadding]\n * ```\n * /// @custom:oz-upgrades-unsafe-allow constructor\n * constructor() {\n * _disableInitializers();\n * }\n * ```\n * ====\n */\nabstract contract Initializable {\n /**\n * @dev Indicates that the contract has been initialized.\n * @custom:oz-retyped-from bool\n */\n uint8 private _initialized;\n\n /**\n * @dev Indicates that the contract is in the process of being initialized.\n */\n bool private _initializing;\n\n /**\n * @dev Triggered when the contract has been initialized or reinitialized.\n */\n event Initialized(uint8 version);\n\n /**\n * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\n * `onlyInitializing` functions can be used to initialize parent contracts.\n *\n * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a\n * constructor.\n *\n * Emits an {Initialized} event.\n */\n modifier initializer() {\n bool isTopLevelCall = !_initializing;\n require(\n (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),\n \"Initializable: contract is already initialized\"\n );\n _initialized = 1;\n if (isTopLevelCall) {\n _initializing = true;\n }\n _;\n if (isTopLevelCall) {\n _initializing = false;\n emit Initialized(1);\n }\n }\n\n /**\n * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\n * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\n * used to initialize parent contracts.\n *\n * A reinitializer may be used after the original initialization step. This is essential to configure modules that\n * are added through upgrades and that require initialization.\n *\n * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\n * cannot be nested. If one is invoked in the context of another, execution will revert.\n *\n * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\n * a contract, executing them in the right order is up to the developer or operator.\n *\n * WARNING: setting the version to 255 will prevent any future reinitialization.\n *\n * Emits an {Initialized} event.\n */\n modifier reinitializer(uint8 version) {\n require(!_initializing && _initialized < version, \"Initializable: contract is already initialized\");\n _initialized = version;\n _initializing = true;\n _;\n _initializing = false;\n emit Initialized(version);\n }\n\n /**\n * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\n * {initializer} and {reinitializer} modifiers, directly or indirectly.\n */\n modifier onlyInitializing() {\n require(_initializing, \"Initializable: contract is not initializing\");\n _;\n }\n\n /**\n * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\n * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\n * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\n * through proxies.\n *\n * Emits an {Initialized} event the first time it is successfully executed.\n */\n function _disableInitializers() internal virtual {\n require(!_initializing, \"Initializable: contract is initializing\");\n if (_initialized != type(uint8).max) {\n _initialized = type(uint8).max;\n emit Initialized(type(uint8).max);\n }\n }\n\n /**\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\n */\n function _getInitializedVersion() internal view returns (uint8) {\n return _initialized;\n }\n\n /**\n * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.\n */\n function _isInitializing() internal view returns (bool) {\n return _initializing;\n }\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/proxy/utils/UUPSUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/UUPSUpgradeable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../../interfaces/draft-IERC1822Upgradeable.sol\";\nimport \"../ERC1967/ERC1967UpgradeUpgradeable.sol\";\nimport {Initializable} from \"./Initializable.sol\";\n\n/**\n * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an\n * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.\n *\n * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is\n * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing\n * `UUPSUpgradeable` with a custom implementation of upgrades.\n *\n * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.\n *\n * _Available since v4.1._\n */\nabstract contract UUPSUpgradeable is Initializable, IERC1822ProxiableUpgradeable, ERC1967UpgradeUpgradeable {\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment\n address private immutable __self = address(this);\n\n /**\n * @dev Check that the execution is being performed through a delegatecall call and that the execution context is\n * a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case\n * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a\n * function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to\n * fail.\n */\n modifier onlyProxy() {\n require(address(this) != __self, \"Function must be called through delegatecall\");\n require(_getImplementation() == __self, \"Function must be called through active proxy\");\n _;\n }\n\n /**\n * @dev Check that the execution is not being performed through a delegate call. This allows a function to be\n * callable on the implementing contract but not through proxies.\n */\n modifier notDelegated() {\n require(address(this) == __self, \"UUPSUpgradeable: must not be called through delegatecall\");\n _;\n }\n\n function __UUPSUpgradeable_init() internal onlyInitializing {\n }\n\n function __UUPSUpgradeable_init_unchained() internal onlyInitializing {\n }\n /**\n * @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the\n * implementation. It is used to validate the implementation's compatibility when performing an upgrade.\n *\n * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\n */\n function proxiableUUID() external view virtual override notDelegated returns (bytes32) {\n return _IMPLEMENTATION_SLOT;\n }\n\n /**\n * @dev Upgrade the implementation of the proxy to `newImplementation`.\n *\n * Calls {_authorizeUpgrade}.\n *\n * Emits an {Upgraded} event.\n *\n * @custom:oz-upgrades-unsafe-allow-reachable delegatecall\n */\n function upgradeTo(address newImplementation) public virtual onlyProxy {\n _authorizeUpgrade(newImplementation);\n _upgradeToAndCallUUPS(newImplementation, new bytes(0), false);\n }\n\n /**\n * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call\n * encoded in `data`.\n *\n * Calls {_authorizeUpgrade}.\n *\n * Emits an {Upgraded} event.\n *\n * @custom:oz-upgrades-unsafe-allow-reachable delegatecall\n */\n function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {\n _authorizeUpgrade(newImplementation);\n _upgradeToAndCallUUPS(newImplementation, data, true);\n }\n\n /**\n * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by\n * {upgradeTo} and {upgradeToAndCall}.\n *\n * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.\n *\n * ```solidity\n * function _authorizeUpgrade(address) internal override onlyOwner {}\n * ```\n */\n function _authorizeUpgrade(address newImplementation) internal virtual;\n\n /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[50] private __gap;\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/security/ReentrancyGuardUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)\n\npragma solidity ^0.8.0;\nimport {Initializable} from \"../proxy/utils/Initializable.sol\";\n\n/**\n * @dev Contract module that helps prevent reentrant calls to a function.\n *\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n * available, which can be applied to functions to make sure there are no nested\n * (reentrant) calls to them.\n *\n * Note that because there is a single `nonReentrant` guard, functions marked as\n * `nonReentrant` may not call one another. This can be worked around by making\n * those functions `private`, and then adding `external` `nonReentrant` entry\n * points to them.\n *\n * TIP: If you would like to learn more about reentrancy and alternative ways\n * to protect against it, check out our blog post\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\n */\nabstract contract ReentrancyGuardUpgradeable is Initializable {\n // Booleans are more expensive than uint256 or any type that takes up a full\n // word because each write operation emits an extra SLOAD to first read the\n // slot's contents, replace the bits taken up by the boolean, and then write\n // back. This is the compiler's defense against contract upgrades and\n // pointer aliasing, and it cannot be disabled.\n\n // The values being non-zero value makes deployment a bit more expensive,\n // but in exchange the refund on every call to nonReentrant will be lower in\n // amount. Since refunds are capped to a percentage of the total\n // transaction's gas, it is best to keep them low in cases like this one, to\n // increase the likelihood of the full refund coming into effect.\n uint256 private constant _NOT_ENTERED = 1;\n uint256 private constant _ENTERED = 2;\n\n uint256 private _status;\n\n function __ReentrancyGuard_init() internal onlyInitializing {\n __ReentrancyGuard_init_unchained();\n }\n\n function __ReentrancyGuard_init_unchained() internal onlyInitializing {\n _status = _NOT_ENTERED;\n }\n\n /**\n * @dev Prevents a contract from calling itself, directly or indirectly.\n * Calling a `nonReentrant` function from another `nonReentrant`\n * function is not supported. It is possible to prevent this from happening\n * by making the `nonReentrant` function external, and making it call a\n * `private` function that does the actual work.\n */\n modifier nonReentrant() {\n _nonReentrantBefore();\n _;\n _nonReentrantAfter();\n }\n\n function _nonReentrantBefore() private {\n // On the first call to nonReentrant, _status will be _NOT_ENTERED\n require(_status != _ENTERED, \"ReentrancyGuard: reentrant call\");\n\n // Any calls to nonReentrant after this point will fail\n _status = _ENTERED;\n }\n\n function _nonReentrantAfter() private {\n // By storing the original value once again, a refund is triggered (see\n // https://eips.ethereum.org/EIPS/eip-2200)\n _status = _NOT_ENTERED;\n }\n\n /**\n * @dev Returns true if the reentrancy guard is currently set to \"entered\", which indicates there is a\n * `nonReentrant` function in the call stack.\n */\n function _reentrancyGuardEntered() internal view returns (bool) {\n return _status == _ENTERED;\n }\n\n /**\n * @dev This empty reserved space is put in place to allow future versions to add new\n * variables without shifting down storage in the inheritance chain.\n * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps\n */\n uint256[49] private __gap;\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/token/ERC20/extensions/IERC20PermitUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\n * need to send a transaction, and thus is not required to hold Ether at all.\n *\n * ==== Security Considerations\n *\n * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\n * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\n * considered as an intention to spend the allowance in any specific way. The second is that because permits have\n * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\n * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\n * generally recommended is:\n *\n * ```solidity\n * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\n * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\n * doThing(..., value);\n * }\n *\n * function doThing(..., uint256 value) public {\n * token.safeTransferFrom(msg.sender, address(this), value);\n * ...\n * }\n * ```\n *\n * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\n * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\n * {SafeERC20-safeTransferFrom}).\n *\n * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\n * contracts should have entry points that don't rely on permit.\n */\ninterface IERC20PermitUpgradeable {\n /**\n * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\n * given ``owner``'s signed approval.\n *\n * IMPORTANT: The same issues {IERC20-approve} has related to transaction\n * ordering also apply here.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n * - `deadline` must be a timestamp in the future.\n * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\n * over the EIP712-formatted function arguments.\n * - the signature must use ``owner``'s current nonce (see {nonces}).\n *\n * For more information on the signature format, see the\n * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\n * section].\n *\n * CAUTION: See Security Considerations above.\n */\n function permit(\n address owner,\n address spender,\n uint256 value,\n uint256 deadline,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) external;\n\n /**\n * @dev Returns the current nonce for `owner`. This value must be\n * included whenever a signature is generated for {permit}.\n *\n * Every successful call to {permit} increases ``owner``'s nonce by one. This\n * prevents a signature from being used multiple times.\n */\n function nonces(address owner) external view returns (uint256);\n\n /**\n * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\n */\n // solhint-disable-next-line func-name-mixedcase\n function DOMAIN_SEPARATOR() external view returns (bytes32);\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/token/ERC20/IERC20Upgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20Upgradeable {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/token/ERC20/utils/SafeERC20Upgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20Upgradeable.sol\";\nimport \"../extensions/IERC20PermitUpgradeable.sol\";\nimport \"../../../utils/AddressUpgradeable.sol\";\n\n/**\n * @title SafeERC20\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\n * contract returns false). Tokens that return no value (and instead revert or\n * throw on failure) are also supported, non-reverting calls are assumed to be\n * successful.\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\n */\nlibrary SafeERC20Upgradeable {\n using AddressUpgradeable for address;\n\n /**\n * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n */\n function safeTransfer(IERC20Upgradeable token, address to, uint256 value) internal {\n _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\n }\n\n /**\n * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\n * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.\n */\n function safeTransferFrom(IERC20Upgradeable token, address from, address to, uint256 value) internal {\n _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\n }\n\n /**\n * @dev Deprecated. This function has issues similar to the ones found in\n * {IERC20-approve}, and its usage is discouraged.\n *\n * Whenever possible, use {safeIncreaseAllowance} and\n * {safeDecreaseAllowance} instead.\n */\n function safeApprove(IERC20Upgradeable token, address spender, uint256 value) internal {\n // safeApprove should only be called when setting an initial allowance,\n // or when resetting it to zero. To increase and decrease it, use\n // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\n require(\n (value == 0) || (token.allowance(address(this), spender) == 0),\n \"SafeERC20: approve from non-zero to non-zero allowance\"\n );\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\n }\n\n /**\n * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n */\n function safeIncreaseAllowance(IERC20Upgradeable token, address spender, uint256 value) internal {\n uint256 oldAllowance = token.allowance(address(this), spender);\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));\n }\n\n /**\n * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n */\n function safeDecreaseAllowance(IERC20Upgradeable token, address spender, uint256 value) internal {\n unchecked {\n uint256 oldAllowance = token.allowance(address(this), spender);\n require(oldAllowance >= value, \"SafeERC20: decreased allowance below zero\");\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));\n }\n }\n\n /**\n * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\n * to be set to zero before setting it to a non-zero value, such as USDT.\n */\n function forceApprove(IERC20Upgradeable token, address spender, uint256 value) internal {\n bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);\n\n if (!_callOptionalReturnBool(token, approvalCall)) {\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));\n _callOptionalReturn(token, approvalCall);\n }\n }\n\n /**\n * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.\n * Revert on invalid signature.\n */\n function safePermit(\n IERC20PermitUpgradeable token,\n address owner,\n address spender,\n uint256 value,\n uint256 deadline,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) internal {\n uint256 nonceBefore = token.nonces(owner);\n token.permit(owner, spender, value, deadline, v, r, s);\n uint256 nonceAfter = token.nonces(owner);\n require(nonceAfter == nonceBefore + 1, \"SafeERC20: permit did not succeed\");\n }\n\n /**\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n * on the return value: the return value is optional (but if data is returned, it must not be false).\n * @param token The token targeted by the call.\n * @param data The call data (encoded using abi.encode or one of its variants).\n */\n function _callOptionalReturn(IERC20Upgradeable token, bytes memory data) private {\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\n // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that\n // the target address contains contract code and also asserts for success in the low-level call.\n\n bytes memory returndata = address(token).functionCall(data, \"SafeERC20: low-level call failed\");\n require(returndata.length == 0 || abi.decode(returndata, (bool)), \"SafeERC20: ERC20 operation did not succeed\");\n }\n\n /**\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n * on the return value: the return value is optional (but if data is returned, it must not be false).\n * @param token The token targeted by the call.\n * @param data The call data (encoded using abi.encode or one of its variants).\n *\n * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.\n */\n function _callOptionalReturnBool(IERC20Upgradeable token, bytes memory data) private returns (bool) {\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\n // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false\n // and not revert is the subcall reverts.\n\n (bool success, bytes memory returndata) = address(token).call(data);\n return\n success && (returndata.length == 0 || abi.decode(returndata, (bool))) && AddressUpgradeable.isContract(address(token));\n }\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/utils/AddressUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary AddressUpgradeable {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n *\n * Furthermore, `isContract` will also return true if the target contract within\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n * which only has an effect at the end of a transaction.\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n *\n * _Available since v4.8._\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n if (success) {\n if (returndata.length == 0) {\n // only check isContract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n require(isContract(target), \"Address: call to non-contract\");\n }\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason or using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n /// @solidity memory-safe-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/utils/cryptography/ECDSAUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../StringsUpgradeable.sol\";\n\n/**\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\n *\n * These functions can be used to verify that a message was signed by the holder\n * of the private keys of a given address.\n */\nlibrary ECDSAUpgradeable {\n enum RecoverError {\n NoError,\n InvalidSignature,\n InvalidSignatureLength,\n InvalidSignatureS,\n InvalidSignatureV // Deprecated in v4.8\n }\n\n function _throwError(RecoverError error) private pure {\n if (error == RecoverError.NoError) {\n return; // no error: do nothing\n } else if (error == RecoverError.InvalidSignature) {\n revert(\"ECDSA: invalid signature\");\n } else if (error == RecoverError.InvalidSignatureLength) {\n revert(\"ECDSA: invalid signature length\");\n } else if (error == RecoverError.InvalidSignatureS) {\n revert(\"ECDSA: invalid signature 's' value\");\n }\n }\n\n /**\n * @dev Returns the address that signed a hashed message (`hash`) with\n * `signature` or error string. This address can then be used for verification purposes.\n *\n * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n * this function rejects them by requiring the `s` value to be in the lower\n * half order, and the `v` value to be either 27 or 28.\n *\n * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n * verification to be secure: it is possible to craft signatures that\n * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n * this is by receiving a hash of the original message (which may otherwise\n * be too long), and then calling {toEthSignedMessageHash} on it.\n *\n * Documentation for signature generation:\n * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\n * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\n *\n * _Available since v4.3._\n */\n function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\n if (signature.length == 65) {\n bytes32 r;\n bytes32 s;\n uint8 v;\n // ecrecover takes the signature parameters, and the only way to get them\n // currently is to use assembly.\n /// @solidity memory-safe-assembly\n assembly {\n r := mload(add(signature, 0x20))\n s := mload(add(signature, 0x40))\n v := byte(0, mload(add(signature, 0x60)))\n }\n return tryRecover(hash, v, r, s);\n } else {\n return (address(0), RecoverError.InvalidSignatureLength);\n }\n }\n\n /**\n * @dev Returns the address that signed a hashed message (`hash`) with\n * `signature`. This address can then be used for verification purposes.\n *\n * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n * this function rejects them by requiring the `s` value to be in the lower\n * half order, and the `v` value to be either 27 or 28.\n *\n * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n * verification to be secure: it is possible to craft signatures that\n * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n * this is by receiving a hash of the original message (which may otherwise\n * be too long), and then calling {toEthSignedMessageHash} on it.\n */\n function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\n (address recovered, RecoverError error) = tryRecover(hash, signature);\n _throwError(error);\n return recovered;\n }\n\n /**\n * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n *\n * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]\n *\n * _Available since v4.3._\n */\n function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {\n bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);\n uint8 v = uint8((uint256(vs) >> 255) + 27);\n return tryRecover(hash, v, r, s);\n }\n\n /**\n * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\n *\n * _Available since v4.2._\n */\n function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {\n (address recovered, RecoverError error) = tryRecover(hash, r, vs);\n _throwError(error);\n return recovered;\n }\n\n /**\n * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n * `r` and `s` signature fields separately.\n *\n * _Available since v4.3._\n */\n function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {\n // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\n // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\n // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most\n // signatures from current libraries generate a unique signature with an s-value in the lower half order.\n //\n // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\n // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\n // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\n // these malleable signatures as well.\n if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\n return (address(0), RecoverError.InvalidSignatureS);\n }\n\n // If the signature is valid (and not malleable), return the signer address\n address signer = ecrecover(hash, v, r, s);\n if (signer == address(0)) {\n return (address(0), RecoverError.InvalidSignature);\n }\n\n return (signer, RecoverError.NoError);\n }\n\n /**\n * @dev Overload of {ECDSA-recover} that receives the `v`,\n * `r` and `s` signature fields separately.\n */\n function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {\n (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\n _throwError(error);\n return recovered;\n }\n\n /**\n * @dev Returns an Ethereum Signed Message, created from a `hash`. This\n * produces hash corresponding to the one signed with the\n * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n * JSON-RPC method as part of EIP-191.\n *\n * See {recover}.\n */\n function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {\n // 32 is the length in bytes of hash,\n // enforced by the type signature above\n /// @solidity memory-safe-assembly\n assembly {\n mstore(0x00, \"\\x19Ethereum Signed Message:\\n32\")\n mstore(0x1c, hash)\n message := keccak256(0x00, 0x3c)\n }\n }\n\n /**\n * @dev Returns an Ethereum Signed Message, created from `s`. This\n * produces hash corresponding to the one signed with the\n * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n * JSON-RPC method as part of EIP-191.\n *\n * See {recover}.\n */\n function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {\n return keccak256(abi.encodePacked(\"\\x19Ethereum Signed Message:\\n\", StringsUpgradeable.toString(s.length), s));\n }\n\n /**\n * @dev Returns an Ethereum Signed Typed Data, created from a\n * `domainSeparator` and a `structHash`. This produces hash corresponding\n * to the one signed with the\n * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\n * JSON-RPC method as part of EIP-712.\n *\n * See {recover}.\n */\n function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {\n /// @solidity memory-safe-assembly\n assembly {\n let ptr := mload(0x40)\n mstore(ptr, \"\\x19\\x01\")\n mstore(add(ptr, 0x02), domainSeparator)\n mstore(add(ptr, 0x22), structHash)\n data := keccak256(ptr, 0x42)\n }\n }\n\n /**\n * @dev Returns an Ethereum Signed Data with intended validator, created from a\n * `validator` and `data` according to the version 0 of EIP-191.\n *\n * See {recover}.\n */\n function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {\n return keccak256(abi.encodePacked(\"\\x19\\x00\", validator, data));\n }\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/utils/math/MathUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard math utilities missing in the Solidity language.\n */\nlibrary MathUpgradeable {\n enum Rounding {\n Down, // Toward negative infinity\n Up, // Toward infinity\n Zero // Toward zero\n }\n\n /**\n * @dev Returns the largest of two numbers.\n */\n function max(uint256 a, uint256 b) internal pure returns (uint256) {\n return a > b ? a : b;\n }\n\n /**\n * @dev Returns the smallest of two numbers.\n */\n function min(uint256 a, uint256 b) internal pure returns (uint256) {\n return a < b ? a : b;\n }\n\n /**\n * @dev Returns the average of two numbers. The result is rounded towards\n * zero.\n */\n function average(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b) / 2 can overflow.\n return (a & b) + (a ^ b) / 2;\n }\n\n /**\n * @dev Returns the ceiling of the division of two numbers.\n *\n * This differs from standard division with `/` in that it rounds up instead\n * of rounding down.\n */\n function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b - 1) / b can overflow on addition, so we distribute.\n return a == 0 ? 0 : (a - 1) / b + 1;\n }\n\n /**\n * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0\n * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)\n * with further edits by Uniswap Labs also under MIT license.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {\n unchecked {\n // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use\n // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256\n // variables such that product = prod1 * 2^256 + prod0.\n uint256 prod0; // Least significant 256 bits of the product\n uint256 prod1; // Most significant 256 bits of the product\n assembly {\n let mm := mulmod(x, y, not(0))\n prod0 := mul(x, y)\n prod1 := sub(sub(mm, prod0), lt(mm, prod0))\n }\n\n // Handle non-overflow cases, 256 by 256 division.\n if (prod1 == 0) {\n // Solidity will revert if denominator == 0, unlike the div opcode on its own.\n // The surrounding unchecked block does not change this fact.\n // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.\n return prod0 / denominator;\n }\n\n // Make sure the result is less than 2^256. Also prevents denominator == 0.\n require(denominator > prod1, \"Math: mulDiv overflow\");\n\n ///////////////////////////////////////////////\n // 512 by 256 division.\n ///////////////////////////////////////////////\n\n // Make division exact by subtracting the remainder from [prod1 prod0].\n uint256 remainder;\n assembly {\n // Compute remainder using mulmod.\n remainder := mulmod(x, y, denominator)\n\n // Subtract 256 bit number from 512 bit number.\n prod1 := sub(prod1, gt(remainder, prod0))\n prod0 := sub(prod0, remainder)\n }\n\n // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.\n // See https://cs.stackexchange.com/q/138556/92363.\n\n // Does not overflow because the denominator cannot be zero at this stage in the function.\n uint256 twos = denominator & (~denominator + 1);\n assembly {\n // Divide denominator by twos.\n denominator := div(denominator, twos)\n\n // Divide [prod1 prod0] by twos.\n prod0 := div(prod0, twos)\n\n // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.\n twos := add(div(sub(0, twos), twos), 1)\n }\n\n // Shift in bits from prod1 into prod0.\n prod0 |= prod1 * twos;\n\n // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such\n // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for\n // four bits. That is, denominator * inv = 1 mod 2^4.\n uint256 inverse = (3 * denominator) ^ 2;\n\n // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works\n // in modular arithmetic, doubling the correct bits in each step.\n inverse *= 2 - denominator * inverse; // inverse mod 2^8\n inverse *= 2 - denominator * inverse; // inverse mod 2^16\n inverse *= 2 - denominator * inverse; // inverse mod 2^32\n inverse *= 2 - denominator * inverse; // inverse mod 2^64\n inverse *= 2 - denominator * inverse; // inverse mod 2^128\n inverse *= 2 - denominator * inverse; // inverse mod 2^256\n\n // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.\n // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is\n // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1\n // is no longer required.\n result = prod0 * inverse;\n return result;\n }\n }\n\n /**\n * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {\n uint256 result = mulDiv(x, y, denominator);\n if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {\n result += 1;\n }\n return result;\n }\n\n /**\n * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.\n *\n * Inspired by Henry S. Warren, Jr.'s \"Hacker's Delight\" (Chapter 11).\n */\n function sqrt(uint256 a) internal pure returns (uint256) {\n if (a == 0) {\n return 0;\n }\n\n // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.\n //\n // We know that the \"msb\" (most significant bit) of our target number `a` is a power of 2 such that we have\n // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.\n //\n // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`\n // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`\n // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`\n //\n // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.\n uint256 result = 1 << (log2(a) >> 1);\n\n // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,\n // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at\n // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision\n // into the expected uint128 result.\n unchecked {\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n return min(result, a / result);\n }\n }\n\n /**\n * @notice Calculates sqrt(a), following the selected rounding direction.\n */\n function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = sqrt(a);\n return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 2, rounded down, of a positive value.\n * Returns 0 if given 0.\n */\n function log2(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >> 128 > 0) {\n value >>= 128;\n result += 128;\n }\n if (value >> 64 > 0) {\n value >>= 64;\n result += 64;\n }\n if (value >> 32 > 0) {\n value >>= 32;\n result += 32;\n }\n if (value >> 16 > 0) {\n value >>= 16;\n result += 16;\n }\n if (value >> 8 > 0) {\n value >>= 8;\n result += 8;\n }\n if (value >> 4 > 0) {\n value >>= 4;\n result += 4;\n }\n if (value >> 2 > 0) {\n value >>= 2;\n result += 2;\n }\n if (value >> 1 > 0) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log2(value);\n return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 10, rounded down, of a positive value.\n * Returns 0 if given 0.\n */\n function log10(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >= 10 ** 64) {\n value /= 10 ** 64;\n result += 64;\n }\n if (value >= 10 ** 32) {\n value /= 10 ** 32;\n result += 32;\n }\n if (value >= 10 ** 16) {\n value /= 10 ** 16;\n result += 16;\n }\n if (value >= 10 ** 8) {\n value /= 10 ** 8;\n result += 8;\n }\n if (value >= 10 ** 4) {\n value /= 10 ** 4;\n result += 4;\n }\n if (value >= 10 ** 2) {\n value /= 10 ** 2;\n result += 2;\n }\n if (value >= 10 ** 1) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log10(value);\n return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 256, rounded down, of a positive value.\n * Returns 0 if given 0.\n *\n * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.\n */\n function log256(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >> 128 > 0) {\n value >>= 128;\n result += 16;\n }\n if (value >> 64 > 0) {\n value >>= 64;\n result += 8;\n }\n if (value >> 32 > 0) {\n value >>= 32;\n result += 4;\n }\n if (value >> 16 > 0) {\n value >>= 16;\n result += 2;\n }\n if (value >> 8 > 0) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log256(value);\n return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/utils/math/SignedMathUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard signed math utilities missing in the Solidity language.\n */\nlibrary SignedMathUpgradeable {\n /**\n * @dev Returns the largest of two signed numbers.\n */\n function max(int256 a, int256 b) internal pure returns (int256) {\n return a > b ? a : b;\n }\n\n /**\n * @dev Returns the smallest of two signed numbers.\n */\n function min(int256 a, int256 b) internal pure returns (int256) {\n return a < b ? a : b;\n }\n\n /**\n * @dev Returns the average of two signed numbers without overflow.\n * The result is rounded towards zero.\n */\n function average(int256 a, int256 b) internal pure returns (int256) {\n // Formula from the book \"Hacker's Delight\"\n int256 x = (a & b) + ((a ^ b) >> 1);\n return x + (int256(uint256(x) >> 255) & (a ^ b));\n }\n\n /**\n * @dev Returns the absolute unsigned value of a signed value.\n */\n function abs(int256 n) internal pure returns (uint256) {\n unchecked {\n // must be unchecked in order to support `n = type(int256).min`\n return uint256(n >= 0 ? n : -n);\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/utils/StorageSlotUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)\n// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Library for reading and writing primitive types to specific storage slots.\n *\n * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n * This library helps with reading and writing to such slots without the need for inline assembly.\n *\n * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n *\n * Example usage to set ERC1967 implementation slot:\n * ```solidity\n * contract ERC1967 {\n * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n *\n * function _getImplementation() internal view returns (address) {\n * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n * }\n *\n * function _setImplementation(address newImplementation) internal {\n * require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\");\n * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n * }\n * }\n * ```\n *\n * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._\n * _Available since v4.9 for `string`, `bytes`._\n */\nlibrary StorageSlotUpgradeable {\n struct AddressSlot {\n address value;\n }\n\n struct BooleanSlot {\n bool value;\n }\n\n struct Bytes32Slot {\n bytes32 value;\n }\n\n struct Uint256Slot {\n uint256 value;\n }\n\n struct StringSlot {\n string value;\n }\n\n struct BytesSlot {\n bytes value;\n }\n\n /**\n * @dev Returns an `AddressSlot` with member `value` located at `slot`.\n */\n function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `BooleanSlot` with member `value` located at `slot`.\n */\n function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.\n */\n function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `Uint256Slot` with member `value` located at `slot`.\n */\n function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `StringSlot` with member `value` located at `slot`.\n */\n function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `StringSlot` representation of the string storage pointer `store`.\n */\n function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := store.slot\n }\n }\n\n /**\n * @dev Returns an `BytesSlot` with member `value` located at `slot`.\n */\n function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.\n */\n function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := store.slot\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-upgradeable-v4/utils/StringsUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./math/MathUpgradeable.sol\";\nimport \"./math/SignedMathUpgradeable.sol\";\n\n/**\n * @dev String operations.\n */\nlibrary StringsUpgradeable {\n bytes16 private constant _SYMBOLS = \"0123456789abcdef\";\n uint8 private constant _ADDRESS_LENGTH = 20;\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n */\n function toString(uint256 value) internal pure returns (string memory) {\n unchecked {\n uint256 length = MathUpgradeable.log10(value) + 1;\n string memory buffer = new string(length);\n uint256 ptr;\n /// @solidity memory-safe-assembly\n assembly {\n ptr := add(buffer, add(32, length))\n }\n while (true) {\n ptr--;\n /// @solidity memory-safe-assembly\n assembly {\n mstore8(ptr, byte(mod(value, 10), _SYMBOLS))\n }\n value /= 10;\n if (value == 0) break;\n }\n return buffer;\n }\n }\n\n /**\n * @dev Converts a `int256` to its ASCII `string` decimal representation.\n */\n function toString(int256 value) internal pure returns (string memory) {\n return string(abi.encodePacked(value < 0 ? \"-\" : \"\", toString(SignedMathUpgradeable.abs(value))));\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n */\n function toHexString(uint256 value) internal pure returns (string memory) {\n unchecked {\n return toHexString(value, MathUpgradeable.log256(value) + 1);\n }\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n */\n function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n bytes memory buffer = new bytes(2 * length + 2);\n buffer[0] = \"0\";\n buffer[1] = \"x\";\n for (uint256 i = 2 * length + 1; i > 1; --i) {\n buffer[i] = _SYMBOLS[value & 0xf];\n value >>= 4;\n }\n require(value == 0, \"Strings: hex length insufficient\");\n return string(buffer);\n }\n\n /**\n * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.\n */\n function toHexString(address addr) internal pure returns (string memory) {\n return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);\n }\n\n /**\n * @dev Returns true if the two strings are equal.\n */\n function equal(string memory a, string memory b) internal pure returns (bool) {\n return keccak256(bytes(a)) == keccak256(bytes(b));\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/interfaces/IERC1271.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (interfaces/IERC1271.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC1271 standard signature validation method for\n * contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271].\n *\n * _Available since v4.1._\n */\ninterface IERC1271 {\n /**\n * @dev Should return whether the signature provided is valid for the provided data\n * @param hash Hash of the data to be signed\n * @param signature Signature byte array associated with _data\n */\n function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue);\n}\n"
+ },
+ "@openzeppelin/contracts-v4/interfaces/IERC5267.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5267.sol)\n\npragma solidity ^0.8.0;\n\ninterface IERC5267 {\n /**\n * @dev MAY be emitted to signal that the domain could have changed.\n */\n event EIP712DomainChanged();\n\n /**\n * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712\n * signature.\n */\n function eip712Domain()\n external\n view\n returns (\n bytes1 fields,\n string memory name,\n string memory version,\n uint256 chainId,\n address verifyingContract,\n bytes32 salt,\n uint256[] memory extensions\n );\n}\n"
+ },
+ "@openzeppelin/contracts-v4/security/ReentrancyGuard.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Contract module that helps prevent reentrant calls to a function.\n *\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n * available, which can be applied to functions to make sure there are no nested\n * (reentrant) calls to them.\n *\n * Note that because there is a single `nonReentrant` guard, functions marked as\n * `nonReentrant` may not call one another. This can be worked around by making\n * those functions `private`, and then adding `external` `nonReentrant` entry\n * points to them.\n *\n * TIP: If you would like to learn more about reentrancy and alternative ways\n * to protect against it, check out our blog post\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\n */\nabstract contract ReentrancyGuard {\n // Booleans are more expensive than uint256 or any type that takes up a full\n // word because each write operation emits an extra SLOAD to first read the\n // slot's contents, replace the bits taken up by the boolean, and then write\n // back. This is the compiler's defense against contract upgrades and\n // pointer aliasing, and it cannot be disabled.\n\n // The values being non-zero value makes deployment a bit more expensive,\n // but in exchange the refund on every call to nonReentrant will be lower in\n // amount. Since refunds are capped to a percentage of the total\n // transaction's gas, it is best to keep them low in cases like this one, to\n // increase the likelihood of the full refund coming into effect.\n uint256 private constant _NOT_ENTERED = 1;\n uint256 private constant _ENTERED = 2;\n\n uint256 private _status;\n\n constructor() {\n _status = _NOT_ENTERED;\n }\n\n /**\n * @dev Prevents a contract from calling itself, directly or indirectly.\n * Calling a `nonReentrant` function from another `nonReentrant`\n * function is not supported. It is possible to prevent this from happening\n * by making the `nonReentrant` function external, and making it call a\n * `private` function that does the actual work.\n */\n modifier nonReentrant() {\n _nonReentrantBefore();\n _;\n _nonReentrantAfter();\n }\n\n function _nonReentrantBefore() private {\n // On the first call to nonReentrant, _status will be _NOT_ENTERED\n require(_status != _ENTERED, \"ReentrancyGuard: reentrant call\");\n\n // Any calls to nonReentrant after this point will fail\n _status = _ENTERED;\n }\n\n function _nonReentrantAfter() private {\n // By storing the original value once again, a refund is triggered (see\n // https://eips.ethereum.org/EIPS/eip-2200)\n _status = _NOT_ENTERED;\n }\n\n /**\n * @dev Returns true if the reentrancy guard is currently set to \"entered\", which indicates there is a\n * `nonReentrant` function in the call stack.\n */\n function _reentrancyGuardEntered() internal view returns (bool) {\n return _status == _ENTERED;\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/token/ERC20/extensions/IERC20Permit.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\n *\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\n * need to send a transaction, and thus is not required to hold Ether at all.\n *\n * ==== Security Considerations\n *\n * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\n * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\n * considered as an intention to spend the allowance in any specific way. The second is that because permits have\n * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\n * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\n * generally recommended is:\n *\n * ```solidity\n * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\n * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\n * doThing(..., value);\n * }\n *\n * function doThing(..., uint256 value) public {\n * token.safeTransferFrom(msg.sender, address(this), value);\n * ...\n * }\n * ```\n *\n * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\n * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\n * {SafeERC20-safeTransferFrom}).\n *\n * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\n * contracts should have entry points that don't rely on permit.\n */\ninterface IERC20Permit {\n /**\n * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\n * given ``owner``'s signed approval.\n *\n * IMPORTANT: The same issues {IERC20-approve} has related to transaction\n * ordering also apply here.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n * - `deadline` must be a timestamp in the future.\n * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\n * over the EIP712-formatted function arguments.\n * - the signature must use ``owner``'s current nonce (see {nonces}).\n *\n * For more information on the signature format, see the\n * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\n * section].\n *\n * CAUTION: See Security Considerations above.\n */\n function permit(\n address owner,\n address spender,\n uint256 value,\n uint256 deadline,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) external;\n\n /**\n * @dev Returns the current nonce for `owner`. This value must be\n * included whenever a signature is generated for {permit}.\n *\n * Every successful call to {permit} increases ``owner``'s nonce by one. This\n * prevents a signature from being used multiple times.\n */\n function nonces(address owner) external view returns (uint256);\n\n /**\n * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\n */\n // solhint-disable-next-line func-name-mixedcase\n function DOMAIN_SEPARATOR() external view returns (bytes32);\n}\n"
+ },
+ "@openzeppelin/contracts-v4/token/ERC20/IERC20.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the amount of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the amount of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves `amount` tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 amount) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 amount) external returns (bool);\n\n /**\n * @dev Moves `amount` tokens from `from` to `to` using the\n * allowance mechanism. `amount` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\n}\n"
+ },
+ "@openzeppelin/contracts-v4/token/ERC20/utils/SafeERC20.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC20.sol\";\nimport \"../extensions/IERC20Permit.sol\";\nimport \"../../../utils/Address.sol\";\n\n/**\n * @title SafeERC20\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\n * contract returns false). Tokens that return no value (and instead revert or\n * throw on failure) are also supported, non-reverting calls are assumed to be\n * successful.\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\n */\nlibrary SafeERC20 {\n using Address for address;\n\n /**\n * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n */\n function safeTransfer(IERC20 token, address to, uint256 value) internal {\n _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\n }\n\n /**\n * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\n * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.\n */\n function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {\n _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\n }\n\n /**\n * @dev Deprecated. This function has issues similar to the ones found in\n * {IERC20-approve}, and its usage is discouraged.\n *\n * Whenever possible, use {safeIncreaseAllowance} and\n * {safeDecreaseAllowance} instead.\n */\n function safeApprove(IERC20 token, address spender, uint256 value) internal {\n // safeApprove should only be called when setting an initial allowance,\n // or when resetting it to zero. To increase and decrease it, use\n // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\n require(\n (value == 0) || (token.allowance(address(this), spender) == 0),\n \"SafeERC20: approve from non-zero to non-zero allowance\"\n );\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\n }\n\n /**\n * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n */\n function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {\n uint256 oldAllowance = token.allowance(address(this), spender);\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));\n }\n\n /**\n * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful.\n */\n function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {\n unchecked {\n uint256 oldAllowance = token.allowance(address(this), spender);\n require(oldAllowance >= value, \"SafeERC20: decreased allowance below zero\");\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));\n }\n }\n\n /**\n * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\n * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\n * to be set to zero before setting it to a non-zero value, such as USDT.\n */\n function forceApprove(IERC20 token, address spender, uint256 value) internal {\n bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);\n\n if (!_callOptionalReturnBool(token, approvalCall)) {\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));\n _callOptionalReturn(token, approvalCall);\n }\n }\n\n /**\n * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.\n * Revert on invalid signature.\n */\n function safePermit(\n IERC20Permit token,\n address owner,\n address spender,\n uint256 value,\n uint256 deadline,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) internal {\n uint256 nonceBefore = token.nonces(owner);\n token.permit(owner, spender, value, deadline, v, r, s);\n uint256 nonceAfter = token.nonces(owner);\n require(nonceAfter == nonceBefore + 1, \"SafeERC20: permit did not succeed\");\n }\n\n /**\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n * on the return value: the return value is optional (but if data is returned, it must not be false).\n * @param token The token targeted by the call.\n * @param data The call data (encoded using abi.encode or one of its variants).\n */\n function _callOptionalReturn(IERC20 token, bytes memory data) private {\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\n // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that\n // the target address contains contract code and also asserts for success in the low-level call.\n\n bytes memory returndata = address(token).functionCall(data, \"SafeERC20: low-level call failed\");\n require(returndata.length == 0 || abi.decode(returndata, (bool)), \"SafeERC20: ERC20 operation did not succeed\");\n }\n\n /**\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\n * on the return value: the return value is optional (but if data is returned, it must not be false).\n * @param token The token targeted by the call.\n * @param data The call data (encoded using abi.encode or one of its variants).\n *\n * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.\n */\n function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\n // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false\n // and not revert is the subcall reverts.\n\n (bool success, bytes memory returndata) = address(token).call(data);\n return\n success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/Address.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n *\n * Furthermore, `isContract` will also return true if the target contract within\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n * which only has an effect at the end of a transaction.\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n *\n * _Available since v4.8._\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n if (success) {\n if (returndata.length == 0) {\n // only check isContract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n require(isContract(target), \"Address: call to non-contract\");\n }\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason or using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n /// @solidity memory-safe-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/cryptography/ECDSA.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../Strings.sol\";\n\n/**\n * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.\n *\n * These functions can be used to verify that a message was signed by the holder\n * of the private keys of a given address.\n */\nlibrary ECDSA {\n enum RecoverError {\n NoError,\n InvalidSignature,\n InvalidSignatureLength,\n InvalidSignatureS,\n InvalidSignatureV // Deprecated in v4.8\n }\n\n function _throwError(RecoverError error) private pure {\n if (error == RecoverError.NoError) {\n return; // no error: do nothing\n } else if (error == RecoverError.InvalidSignature) {\n revert(\"ECDSA: invalid signature\");\n } else if (error == RecoverError.InvalidSignatureLength) {\n revert(\"ECDSA: invalid signature length\");\n } else if (error == RecoverError.InvalidSignatureS) {\n revert(\"ECDSA: invalid signature 's' value\");\n }\n }\n\n /**\n * @dev Returns the address that signed a hashed message (`hash`) with\n * `signature` or error string. This address can then be used for verification purposes.\n *\n * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n * this function rejects them by requiring the `s` value to be in the lower\n * half order, and the `v` value to be either 27 or 28.\n *\n * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n * verification to be secure: it is possible to craft signatures that\n * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n * this is by receiving a hash of the original message (which may otherwise\n * be too long), and then calling {toEthSignedMessageHash} on it.\n *\n * Documentation for signature generation:\n * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]\n * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]\n *\n * _Available since v4.3._\n */\n function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {\n if (signature.length == 65) {\n bytes32 r;\n bytes32 s;\n uint8 v;\n // ecrecover takes the signature parameters, and the only way to get them\n // currently is to use assembly.\n /// @solidity memory-safe-assembly\n assembly {\n r := mload(add(signature, 0x20))\n s := mload(add(signature, 0x40))\n v := byte(0, mload(add(signature, 0x60)))\n }\n return tryRecover(hash, v, r, s);\n } else {\n return (address(0), RecoverError.InvalidSignatureLength);\n }\n }\n\n /**\n * @dev Returns the address that signed a hashed message (`hash`) with\n * `signature`. This address can then be used for verification purposes.\n *\n * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:\n * this function rejects them by requiring the `s` value to be in the lower\n * half order, and the `v` value to be either 27 or 28.\n *\n * IMPORTANT: `hash` _must_ be the result of a hash operation for the\n * verification to be secure: it is possible to craft signatures that\n * recover to arbitrary addresses for non-hashed data. A safe way to ensure\n * this is by receiving a hash of the original message (which may otherwise\n * be too long), and then calling {toEthSignedMessageHash} on it.\n */\n function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {\n (address recovered, RecoverError error) = tryRecover(hash, signature);\n _throwError(error);\n return recovered;\n }\n\n /**\n * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.\n *\n * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]\n *\n * _Available since v4.3._\n */\n function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {\n bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);\n uint8 v = uint8((uint256(vs) >> 255) + 27);\n return tryRecover(hash, v, r, s);\n }\n\n /**\n * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.\n *\n * _Available since v4.2._\n */\n function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {\n (address recovered, RecoverError error) = tryRecover(hash, r, vs);\n _throwError(error);\n return recovered;\n }\n\n /**\n * @dev Overload of {ECDSA-tryRecover} that receives the `v`,\n * `r` and `s` signature fields separately.\n *\n * _Available since v4.3._\n */\n function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {\n // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature\n // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines\n // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most\n // signatures from current libraries generate a unique signature with an s-value in the lower half order.\n //\n // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value\n // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or\n // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept\n // these malleable signatures as well.\n if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {\n return (address(0), RecoverError.InvalidSignatureS);\n }\n\n // If the signature is valid (and not malleable), return the signer address\n address signer = ecrecover(hash, v, r, s);\n if (signer == address(0)) {\n return (address(0), RecoverError.InvalidSignature);\n }\n\n return (signer, RecoverError.NoError);\n }\n\n /**\n * @dev Overload of {ECDSA-recover} that receives the `v`,\n * `r` and `s` signature fields separately.\n */\n function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {\n (address recovered, RecoverError error) = tryRecover(hash, v, r, s);\n _throwError(error);\n return recovered;\n }\n\n /**\n * @dev Returns an Ethereum Signed Message, created from a `hash`. This\n * produces hash corresponding to the one signed with the\n * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n * JSON-RPC method as part of EIP-191.\n *\n * See {recover}.\n */\n function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {\n // 32 is the length in bytes of hash,\n // enforced by the type signature above\n /// @solidity memory-safe-assembly\n assembly {\n mstore(0x00, \"\\x19Ethereum Signed Message:\\n32\")\n mstore(0x1c, hash)\n message := keccak256(0x00, 0x3c)\n }\n }\n\n /**\n * @dev Returns an Ethereum Signed Message, created from `s`. This\n * produces hash corresponding to the one signed with the\n * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]\n * JSON-RPC method as part of EIP-191.\n *\n * See {recover}.\n */\n function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {\n return keccak256(abi.encodePacked(\"\\x19Ethereum Signed Message:\\n\", Strings.toString(s.length), s));\n }\n\n /**\n * @dev Returns an Ethereum Signed Typed Data, created from a\n * `domainSeparator` and a `structHash`. This produces hash corresponding\n * to the one signed with the\n * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]\n * JSON-RPC method as part of EIP-712.\n *\n * See {recover}.\n */\n function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {\n /// @solidity memory-safe-assembly\n assembly {\n let ptr := mload(0x40)\n mstore(ptr, \"\\x19\\x01\")\n mstore(add(ptr, 0x02), domainSeparator)\n mstore(add(ptr, 0x22), structHash)\n data := keccak256(ptr, 0x42)\n }\n }\n\n /**\n * @dev Returns an Ethereum Signed Data with intended validator, created from a\n * `validator` and `data` according to the version 0 of EIP-191.\n *\n * See {recover}.\n */\n function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {\n return keccak256(abi.encodePacked(\"\\x19\\x00\", validator, data));\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/cryptography/EIP712.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/EIP712.sol)\n\npragma solidity ^0.8.8;\n\nimport \"./ECDSA.sol\";\nimport \"../ShortStrings.sol\";\nimport \"../../interfaces/IERC5267.sol\";\n\n/**\n * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.\n *\n * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,\n * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding\n * they need in their contracts using a combination of `abi.encode` and `keccak256`.\n *\n * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding\n * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA\n * ({_hashTypedDataV4}).\n *\n * The implementation of the domain separator was designed to be as efficient as possible while still properly updating\n * the chain id to protect against replay attacks on an eventual fork of the chain.\n *\n * NOTE: This contract implements the version of the encoding known as \"v4\", as implemented by the JSON RPC method\n * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].\n *\n * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain\n * separator of the implementation contract. This will cause the `_domainSeparatorV4` function to always rebuild the\n * separator from the immutable values, which is cheaper than accessing a cached version in cold storage.\n *\n * _Available since v3.4._\n *\n * @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment\n */\nabstract contract EIP712 is IERC5267 {\n using ShortStrings for *;\n\n bytes32 private constant _TYPE_HASH =\n keccak256(\"EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)\");\n\n // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to\n // invalidate the cached domain separator if the chain id changes.\n bytes32 private immutable _cachedDomainSeparator;\n uint256 private immutable _cachedChainId;\n address private immutable _cachedThis;\n\n bytes32 private immutable _hashedName;\n bytes32 private immutable _hashedVersion;\n\n ShortString private immutable _name;\n ShortString private immutable _version;\n string private _nameFallback;\n string private _versionFallback;\n\n /**\n * @dev Initializes the domain separator and parameter caches.\n *\n * The meaning of `name` and `version` is specified in\n * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:\n *\n * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\n * - `version`: the current major version of the signing domain.\n *\n * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\n * contract upgrade].\n */\n constructor(string memory name, string memory version) {\n _name = name.toShortStringWithFallback(_nameFallback);\n _version = version.toShortStringWithFallback(_versionFallback);\n _hashedName = keccak256(bytes(name));\n _hashedVersion = keccak256(bytes(version));\n\n _cachedChainId = block.chainid;\n _cachedDomainSeparator = _buildDomainSeparator();\n _cachedThis = address(this);\n }\n\n /**\n * @dev Returns the domain separator for the current chain.\n */\n function _domainSeparatorV4() internal view returns (bytes32) {\n if (address(this) == _cachedThis && block.chainid == _cachedChainId) {\n return _cachedDomainSeparator;\n } else {\n return _buildDomainSeparator();\n }\n }\n\n function _buildDomainSeparator() private view returns (bytes32) {\n return keccak256(abi.encode(_TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this)));\n }\n\n /**\n * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\n * function returns the hash of the fully encoded EIP712 message for this domain.\n *\n * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\n *\n * ```solidity\n * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(\n * keccak256(\"Mail(address to,string contents)\"),\n * mailTo,\n * keccak256(bytes(mailContents))\n * )));\n * address signer = ECDSA.recover(digest, signature);\n * ```\n */\n function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {\n return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);\n }\n\n /**\n * @dev See {EIP-5267}.\n *\n * _Available since v4.9._\n */\n function eip712Domain()\n public\n view\n virtual\n override\n returns (\n bytes1 fields,\n string memory name,\n string memory version,\n uint256 chainId,\n address verifyingContract,\n bytes32 salt,\n uint256[] memory extensions\n )\n {\n return (\n hex\"0f\", // 01111\n _name.toStringWithFallback(_nameFallback),\n _version.toStringWithFallback(_versionFallback),\n block.chainid,\n address(this),\n bytes32(0),\n new uint256[](0)\n );\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/cryptography/MerkleProof.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev These functions deal with verification of Merkle Tree proofs.\n *\n * The tree and the proofs can be generated using our\n * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].\n * You will find a quickstart guide in the readme.\n *\n * WARNING: You should avoid using leaf values that are 64 bytes long prior to\n * hashing, or use a hash function other than keccak256 for hashing leaves.\n * This is because the concatenation of a sorted pair of internal nodes in\n * the merkle tree could be reinterpreted as a leaf value.\n * OpenZeppelin's JavaScript library generates merkle trees that are safe\n * against this attack out of the box.\n */\nlibrary MerkleProof {\n /**\n * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree\n * defined by `root`. For this, a `proof` must be provided, containing\n * sibling hashes on the branch from the leaf to the root of the tree. Each\n * pair of leaves and each pair of pre-images are assumed to be sorted.\n */\n function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {\n return processProof(proof, leaf) == root;\n }\n\n /**\n * @dev Calldata version of {verify}\n *\n * _Available since v4.7._\n */\n function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {\n return processProofCalldata(proof, leaf) == root;\n }\n\n /**\n * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up\n * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt\n * hash matches the root of the tree. When processing the proof, the pairs\n * of leafs & pre-images are assumed to be sorted.\n *\n * _Available since v4.4._\n */\n function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {\n bytes32 computedHash = leaf;\n for (uint256 i = 0; i < proof.length; i++) {\n computedHash = _hashPair(computedHash, proof[i]);\n }\n return computedHash;\n }\n\n /**\n * @dev Calldata version of {processProof}\n *\n * _Available since v4.7._\n */\n function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {\n bytes32 computedHash = leaf;\n for (uint256 i = 0; i < proof.length; i++) {\n computedHash = _hashPair(computedHash, proof[i]);\n }\n return computedHash;\n }\n\n /**\n * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by\n * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.\n *\n * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.\n *\n * _Available since v4.7._\n */\n function multiProofVerify(\n bytes32[] memory proof,\n bool[] memory proofFlags,\n bytes32 root,\n bytes32[] memory leaves\n ) internal pure returns (bool) {\n return processMultiProof(proof, proofFlags, leaves) == root;\n }\n\n /**\n * @dev Calldata version of {multiProofVerify}\n *\n * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.\n *\n * _Available since v4.7._\n */\n function multiProofVerifyCalldata(\n bytes32[] calldata proof,\n bool[] calldata proofFlags,\n bytes32 root,\n bytes32[] memory leaves\n ) internal pure returns (bool) {\n return processMultiProofCalldata(proof, proofFlags, leaves) == root;\n }\n\n /**\n * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction\n * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another\n * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false\n * respectively.\n *\n * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree\n * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the\n * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).\n *\n * _Available since v4.7._\n */\n function processMultiProof(\n bytes32[] memory proof,\n bool[] memory proofFlags,\n bytes32[] memory leaves\n ) internal pure returns (bytes32 merkleRoot) {\n // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by\n // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the\n // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of\n // the merkle tree.\n uint256 leavesLen = leaves.length;\n uint256 proofLen = proof.length;\n uint256 totalHashes = proofFlags.length;\n\n // Check proof validity.\n require(leavesLen + proofLen - 1 == totalHashes, \"MerkleProof: invalid multiproof\");\n\n // The xxxPos values are \"pointers\" to the next value to consume in each array. All accesses are done using\n // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's \"pop\".\n bytes32[] memory hashes = new bytes32[](totalHashes);\n uint256 leafPos = 0;\n uint256 hashPos = 0;\n uint256 proofPos = 0;\n // At each step, we compute the next hash using two values:\n // - a value from the \"main queue\". If not all leaves have been consumed, we get the next leaf, otherwise we\n // get the next hash.\n // - depending on the flag, either another value from the \"main queue\" (merging branches) or an element from the\n // `proof` array.\n for (uint256 i = 0; i < totalHashes; i++) {\n bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];\n bytes32 b = proofFlags[i]\n ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])\n : proof[proofPos++];\n hashes[i] = _hashPair(a, b);\n }\n\n if (totalHashes > 0) {\n require(proofPos == proofLen, \"MerkleProof: invalid multiproof\");\n unchecked {\n return hashes[totalHashes - 1];\n }\n } else if (leavesLen > 0) {\n return leaves[0];\n } else {\n return proof[0];\n }\n }\n\n /**\n * @dev Calldata version of {processMultiProof}.\n *\n * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.\n *\n * _Available since v4.7._\n */\n function processMultiProofCalldata(\n bytes32[] calldata proof,\n bool[] calldata proofFlags,\n bytes32[] memory leaves\n ) internal pure returns (bytes32 merkleRoot) {\n // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by\n // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the\n // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of\n // the merkle tree.\n uint256 leavesLen = leaves.length;\n uint256 proofLen = proof.length;\n uint256 totalHashes = proofFlags.length;\n\n // Check proof validity.\n require(leavesLen + proofLen - 1 == totalHashes, \"MerkleProof: invalid multiproof\");\n\n // The xxxPos values are \"pointers\" to the next value to consume in each array. All accesses are done using\n // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's \"pop\".\n bytes32[] memory hashes = new bytes32[](totalHashes);\n uint256 leafPos = 0;\n uint256 hashPos = 0;\n uint256 proofPos = 0;\n // At each step, we compute the next hash using two values:\n // - a value from the \"main queue\". If not all leaves have been consumed, we get the next leaf, otherwise we\n // get the next hash.\n // - depending on the flag, either another value from the \"main queue\" (merging branches) or an element from the\n // `proof` array.\n for (uint256 i = 0; i < totalHashes; i++) {\n bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];\n bytes32 b = proofFlags[i]\n ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])\n : proof[proofPos++];\n hashes[i] = _hashPair(a, b);\n }\n\n if (totalHashes > 0) {\n require(proofPos == proofLen, \"MerkleProof: invalid multiproof\");\n unchecked {\n return hashes[totalHashes - 1];\n }\n } else if (leavesLen > 0) {\n return leaves[0];\n } else {\n return proof[0];\n }\n }\n\n function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {\n return a < b ? _efficientHash(a, b) : _efficientHash(b, a);\n }\n\n function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {\n /// @solidity memory-safe-assembly\n assembly {\n mstore(0x00, a)\n mstore(0x20, b)\n value := keccak256(0x00, 0x40)\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/cryptography/SignatureChecker.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/SignatureChecker.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./ECDSA.sol\";\nimport \"../../interfaces/IERC1271.sol\";\n\n/**\n * @dev Signature verification helper that can be used instead of `ECDSA.recover` to seamlessly support both ECDSA\n * signatures from externally owned accounts (EOAs) as well as ERC1271 signatures from smart contract wallets like\n * Argent and Gnosis Safe.\n *\n * _Available since v4.1._\n */\nlibrary SignatureChecker {\n /**\n * @dev Checks if a signature is valid for a given signer and data hash. If the signer is a smart contract, the\n * signature is validated against that smart contract using ERC1271, otherwise it's validated using `ECDSA.recover`.\n *\n * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus\n * change through time. It could return true at block N and false at block N+1 (or the opposite).\n */\n function isValidSignatureNow(address signer, bytes32 hash, bytes memory signature) internal view returns (bool) {\n (address recovered, ECDSA.RecoverError error) = ECDSA.tryRecover(hash, signature);\n return\n (error == ECDSA.RecoverError.NoError && recovered == signer) ||\n isValidERC1271SignatureNow(signer, hash, signature);\n }\n\n /**\n * @dev Checks if a signature is valid for a given signer and data hash. The signature is validated\n * against the signer smart contract using ERC1271.\n *\n * NOTE: Unlike ECDSA signatures, contract signatures are revocable, and the outcome of this function can thus\n * change through time. It could return true at block N and false at block N+1 (or the opposite).\n */\n function isValidERC1271SignatureNow(\n address signer,\n bytes32 hash,\n bytes memory signature\n ) internal view returns (bool) {\n (bool success, bytes memory result) = signer.staticcall(\n abi.encodeWithSelector(IERC1271.isValidSignature.selector, hash, signature)\n );\n return (success &&\n result.length >= 32 &&\n abi.decode(result, (bytes32)) == bytes32(IERC1271.isValidSignature.selector));\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/math/Math.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard math utilities missing in the Solidity language.\n */\nlibrary Math {\n enum Rounding {\n Down, // Toward negative infinity\n Up, // Toward infinity\n Zero // Toward zero\n }\n\n /**\n * @dev Returns the largest of two numbers.\n */\n function max(uint256 a, uint256 b) internal pure returns (uint256) {\n return a > b ? a : b;\n }\n\n /**\n * @dev Returns the smallest of two numbers.\n */\n function min(uint256 a, uint256 b) internal pure returns (uint256) {\n return a < b ? a : b;\n }\n\n /**\n * @dev Returns the average of two numbers. The result is rounded towards\n * zero.\n */\n function average(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b) / 2 can overflow.\n return (a & b) + (a ^ b) / 2;\n }\n\n /**\n * @dev Returns the ceiling of the division of two numbers.\n *\n * This differs from standard division with `/` in that it rounds up instead\n * of rounding down.\n */\n function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {\n // (a + b - 1) / b can overflow on addition, so we distribute.\n return a == 0 ? 0 : (a - 1) / b + 1;\n }\n\n /**\n * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0\n * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)\n * with further edits by Uniswap Labs also under MIT license.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {\n unchecked {\n // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use\n // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256\n // variables such that product = prod1 * 2^256 + prod0.\n uint256 prod0; // Least significant 256 bits of the product\n uint256 prod1; // Most significant 256 bits of the product\n assembly {\n let mm := mulmod(x, y, not(0))\n prod0 := mul(x, y)\n prod1 := sub(sub(mm, prod0), lt(mm, prod0))\n }\n\n // Handle non-overflow cases, 256 by 256 division.\n if (prod1 == 0) {\n // Solidity will revert if denominator == 0, unlike the div opcode on its own.\n // The surrounding unchecked block does not change this fact.\n // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.\n return prod0 / denominator;\n }\n\n // Make sure the result is less than 2^256. Also prevents denominator == 0.\n require(denominator > prod1, \"Math: mulDiv overflow\");\n\n ///////////////////////////////////////////////\n // 512 by 256 division.\n ///////////////////////////////////////////////\n\n // Make division exact by subtracting the remainder from [prod1 prod0].\n uint256 remainder;\n assembly {\n // Compute remainder using mulmod.\n remainder := mulmod(x, y, denominator)\n\n // Subtract 256 bit number from 512 bit number.\n prod1 := sub(prod1, gt(remainder, prod0))\n prod0 := sub(prod0, remainder)\n }\n\n // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.\n // See https://cs.stackexchange.com/q/138556/92363.\n\n // Does not overflow because the denominator cannot be zero at this stage in the function.\n uint256 twos = denominator & (~denominator + 1);\n assembly {\n // Divide denominator by twos.\n denominator := div(denominator, twos)\n\n // Divide [prod1 prod0] by twos.\n prod0 := div(prod0, twos)\n\n // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.\n twos := add(div(sub(0, twos), twos), 1)\n }\n\n // Shift in bits from prod1 into prod0.\n prod0 |= prod1 * twos;\n\n // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such\n // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for\n // four bits. That is, denominator * inv = 1 mod 2^4.\n uint256 inverse = (3 * denominator) ^ 2;\n\n // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works\n // in modular arithmetic, doubling the correct bits in each step.\n inverse *= 2 - denominator * inverse; // inverse mod 2^8\n inverse *= 2 - denominator * inverse; // inverse mod 2^16\n inverse *= 2 - denominator * inverse; // inverse mod 2^32\n inverse *= 2 - denominator * inverse; // inverse mod 2^64\n inverse *= 2 - denominator * inverse; // inverse mod 2^128\n inverse *= 2 - denominator * inverse; // inverse mod 2^256\n\n // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.\n // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is\n // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1\n // is no longer required.\n result = prod0 * inverse;\n return result;\n }\n }\n\n /**\n * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.\n */\n function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {\n uint256 result = mulDiv(x, y, denominator);\n if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {\n result += 1;\n }\n return result;\n }\n\n /**\n * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.\n *\n * Inspired by Henry S. Warren, Jr.'s \"Hacker's Delight\" (Chapter 11).\n */\n function sqrt(uint256 a) internal pure returns (uint256) {\n if (a == 0) {\n return 0;\n }\n\n // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.\n //\n // We know that the \"msb\" (most significant bit) of our target number `a` is a power of 2 such that we have\n // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.\n //\n // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`\n // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`\n // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`\n //\n // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.\n uint256 result = 1 << (log2(a) >> 1);\n\n // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,\n // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at\n // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision\n // into the expected uint128 result.\n unchecked {\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n result = (result + a / result) >> 1;\n return min(result, a / result);\n }\n }\n\n /**\n * @notice Calculates sqrt(a), following the selected rounding direction.\n */\n function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = sqrt(a);\n return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 2, rounded down, of a positive value.\n * Returns 0 if given 0.\n */\n function log2(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >> 128 > 0) {\n value >>= 128;\n result += 128;\n }\n if (value >> 64 > 0) {\n value >>= 64;\n result += 64;\n }\n if (value >> 32 > 0) {\n value >>= 32;\n result += 32;\n }\n if (value >> 16 > 0) {\n value >>= 16;\n result += 16;\n }\n if (value >> 8 > 0) {\n value >>= 8;\n result += 8;\n }\n if (value >> 4 > 0) {\n value >>= 4;\n result += 4;\n }\n if (value >> 2 > 0) {\n value >>= 2;\n result += 2;\n }\n if (value >> 1 > 0) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 2, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log2(value);\n return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 10, rounded down, of a positive value.\n * Returns 0 if given 0.\n */\n function log10(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >= 10 ** 64) {\n value /= 10 ** 64;\n result += 64;\n }\n if (value >= 10 ** 32) {\n value /= 10 ** 32;\n result += 32;\n }\n if (value >= 10 ** 16) {\n value /= 10 ** 16;\n result += 16;\n }\n if (value >= 10 ** 8) {\n value /= 10 ** 8;\n result += 8;\n }\n if (value >= 10 ** 4) {\n value /= 10 ** 4;\n result += 4;\n }\n if (value >= 10 ** 2) {\n value /= 10 ** 2;\n result += 2;\n }\n if (value >= 10 ** 1) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 10, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log10(value);\n return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);\n }\n }\n\n /**\n * @dev Return the log in base 256, rounded down, of a positive value.\n * Returns 0 if given 0.\n *\n * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.\n */\n function log256(uint256 value) internal pure returns (uint256) {\n uint256 result = 0;\n unchecked {\n if (value >> 128 > 0) {\n value >>= 128;\n result += 16;\n }\n if (value >> 64 > 0) {\n value >>= 64;\n result += 8;\n }\n if (value >> 32 > 0) {\n value >>= 32;\n result += 4;\n }\n if (value >> 16 > 0) {\n value >>= 16;\n result += 2;\n }\n if (value >> 8 > 0) {\n result += 1;\n }\n }\n return result;\n }\n\n /**\n * @dev Return the log in base 256, following the selected rounding direction, of a positive value.\n * Returns 0 if given 0.\n */\n function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {\n unchecked {\n uint256 result = log256(value);\n return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/math/SignedMath.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Standard signed math utilities missing in the Solidity language.\n */\nlibrary SignedMath {\n /**\n * @dev Returns the largest of two signed numbers.\n */\n function max(int256 a, int256 b) internal pure returns (int256) {\n return a > b ? a : b;\n }\n\n /**\n * @dev Returns the smallest of two signed numbers.\n */\n function min(int256 a, int256 b) internal pure returns (int256) {\n return a < b ? a : b;\n }\n\n /**\n * @dev Returns the average of two signed numbers without overflow.\n * The result is rounded towards zero.\n */\n function average(int256 a, int256 b) internal pure returns (int256) {\n // Formula from the book \"Hacker's Delight\"\n int256 x = (a & b) + ((a ^ b) >> 1);\n return x + (int256(uint256(x) >> 255) & (a ^ b));\n }\n\n /**\n * @dev Returns the absolute unsigned value of a signed value.\n */\n function abs(int256 n) internal pure returns (uint256) {\n unchecked {\n // must be unchecked in order to support `n = type(int256).min`\n return uint256(n >= 0 ? n : -n);\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/ShortStrings.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/ShortStrings.sol)\n\npragma solidity ^0.8.8;\n\nimport \"./StorageSlot.sol\";\n\n// | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |\n// | length | 0x BB |\ntype ShortString is bytes32;\n\n/**\n * @dev This library provides functions to convert short memory strings\n * into a `ShortString` type that can be used as an immutable variable.\n *\n * Strings of arbitrary length can be optimized using this library if\n * they are short enough (up to 31 bytes) by packing them with their\n * length (1 byte) in a single EVM word (32 bytes). Additionally, a\n * fallback mechanism can be used for every other case.\n *\n * Usage example:\n *\n * ```solidity\n * contract Named {\n * using ShortStrings for *;\n *\n * ShortString private immutable _name;\n * string private _nameFallback;\n *\n * constructor(string memory contractName) {\n * _name = contractName.toShortStringWithFallback(_nameFallback);\n * }\n *\n * function name() external view returns (string memory) {\n * return _name.toStringWithFallback(_nameFallback);\n * }\n * }\n * ```\n */\nlibrary ShortStrings {\n // Used as an identifier for strings longer than 31 bytes.\n bytes32 private constant _FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF;\n\n error StringTooLong(string str);\n error InvalidShortString();\n\n /**\n * @dev Encode a string of at most 31 chars into a `ShortString`.\n *\n * This will trigger a `StringTooLong` error is the input string is too long.\n */\n function toShortString(string memory str) internal pure returns (ShortString) {\n bytes memory bstr = bytes(str);\n if (bstr.length > 31) {\n revert StringTooLong(str);\n }\n return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length));\n }\n\n /**\n * @dev Decode a `ShortString` back to a \"normal\" string.\n */\n function toString(ShortString sstr) internal pure returns (string memory) {\n uint256 len = byteLength(sstr);\n // using `new string(len)` would work locally but is not memory safe.\n string memory str = new string(32);\n /// @solidity memory-safe-assembly\n assembly {\n mstore(str, len)\n mstore(add(str, 0x20), sstr)\n }\n return str;\n }\n\n /**\n * @dev Return the length of a `ShortString`.\n */\n function byteLength(ShortString sstr) internal pure returns (uint256) {\n uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF;\n if (result > 31) {\n revert InvalidShortString();\n }\n return result;\n }\n\n /**\n * @dev Encode a string into a `ShortString`, or write it to storage if it is too long.\n */\n function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) {\n if (bytes(value).length < 32) {\n return toShortString(value);\n } else {\n StorageSlot.getStringSlot(store).value = value;\n return ShortString.wrap(_FALLBACK_SENTINEL);\n }\n }\n\n /**\n * @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}.\n */\n function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) {\n if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) {\n return toString(value);\n } else {\n return store;\n }\n }\n\n /**\n * @dev Return the length of a string that was encoded to `ShortString` or written to storage using {setWithFallback}.\n *\n * WARNING: This will return the \"byte length\" of the string. This may not reflect the actual length in terms of\n * actual characters as the UTF-8 encoding of a single character can span over multiple bytes.\n */\n function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) {\n if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) {\n return byteLength(value);\n } else {\n return bytes(store).length;\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/StorageSlot.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)\n// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Library for reading and writing primitive types to specific storage slots.\n *\n * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n * This library helps with reading and writing to such slots without the need for inline assembly.\n *\n * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n *\n * Example usage to set ERC1967 implementation slot:\n * ```solidity\n * contract ERC1967 {\n * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n *\n * function _getImplementation() internal view returns (address) {\n * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n * }\n *\n * function _setImplementation(address newImplementation) internal {\n * require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\");\n * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n * }\n * }\n * ```\n *\n * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._\n * _Available since v4.9 for `string`, `bytes`._\n */\nlibrary StorageSlot {\n struct AddressSlot {\n address value;\n }\n\n struct BooleanSlot {\n bool value;\n }\n\n struct Bytes32Slot {\n bytes32 value;\n }\n\n struct Uint256Slot {\n uint256 value;\n }\n\n struct StringSlot {\n string value;\n }\n\n struct BytesSlot {\n bytes value;\n }\n\n /**\n * @dev Returns an `AddressSlot` with member `value` located at `slot`.\n */\n function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `BooleanSlot` with member `value` located at `slot`.\n */\n function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.\n */\n function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `Uint256Slot` with member `value` located at `slot`.\n */\n function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `StringSlot` with member `value` located at `slot`.\n */\n function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `StringSlot` representation of the string storage pointer `store`.\n */\n function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := store.slot\n }\n }\n\n /**\n * @dev Returns an `BytesSlot` with member `value` located at `slot`.\n */\n function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.\n */\n function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {\n /// @solidity memory-safe-assembly\n assembly {\n r.slot := store.slot\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts-v4/utils/Strings.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./math/Math.sol\";\nimport \"./math/SignedMath.sol\";\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n bytes16 private constant _SYMBOLS = \"0123456789abcdef\";\n uint8 private constant _ADDRESS_LENGTH = 20;\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n */\n function toString(uint256 value) internal pure returns (string memory) {\n unchecked {\n uint256 length = Math.log10(value) + 1;\n string memory buffer = new string(length);\n uint256 ptr;\n /// @solidity memory-safe-assembly\n assembly {\n ptr := add(buffer, add(32, length))\n }\n while (true) {\n ptr--;\n /// @solidity memory-safe-assembly\n assembly {\n mstore8(ptr, byte(mod(value, 10), _SYMBOLS))\n }\n value /= 10;\n if (value == 0) break;\n }\n return buffer;\n }\n }\n\n /**\n * @dev Converts a `int256` to its ASCII `string` decimal representation.\n */\n function toString(int256 value) internal pure returns (string memory) {\n return string(abi.encodePacked(value < 0 ? \"-\" : \"\", toString(SignedMath.abs(value))));\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n */\n function toHexString(uint256 value) internal pure returns (string memory) {\n unchecked {\n return toHexString(value, Math.log256(value) + 1);\n }\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n */\n function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n bytes memory buffer = new bytes(2 * length + 2);\n buffer[0] = \"0\";\n buffer[1] = \"x\";\n for (uint256 i = 2 * length + 1; i > 1; --i) {\n buffer[i] = _SYMBOLS[value & 0xf];\n value >>= 4;\n }\n require(value == 0, \"Strings: hex length insufficient\");\n return string(buffer);\n }\n\n /**\n * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.\n */\n function toHexString(address addr) internal pure returns (string memory) {\n return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);\n }\n\n /**\n * @dev Returns true if the two strings are equal.\n */\n function equal(string memory a, string memory b) internal pure returns (bool) {\n return keccak256(bytes(a)) == keccak256(bytes(b));\n }\n}\n"
+ },
+ "@openzeppelin/contracts/access/Ownable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)\n\npragma solidity ^0.8.20;\n\nimport {Context} from \"../utils/Context.sol\";\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * The initial owner is set to the address provided by the deployer. This can\n * later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract Ownable is Context {\n address private _owner;\n\n /**\n * @dev The caller account is not authorized to perform an operation.\n */\n error OwnableUnauthorizedAccount(address account);\n\n /**\n * @dev The owner is not a valid owner account. (eg. `address(0)`)\n */\n error OwnableInvalidOwner(address owner);\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the address provided by the deployer as the initial owner.\n */\n constructor(address initialOwner) {\n if (initialOwner == address(0)) {\n revert OwnableInvalidOwner(address(0));\n }\n _transferOwnership(initialOwner);\n }\n\n /**\n * @dev Throws if called by any account other than the owner.\n */\n modifier onlyOwner() {\n _checkOwner();\n _;\n }\n\n /**\n * @dev Returns the address of the current owner.\n */\n function owner() public view virtual returns (address) {\n return _owner;\n }\n\n /**\n * @dev Throws if the sender is not the owner.\n */\n function _checkOwner() internal view virtual {\n if (owner() != _msgSender()) {\n revert OwnableUnauthorizedAccount(_msgSender());\n }\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby disabling any functionality that is only available to the owner.\n */\n function renounceOwnership() public virtual onlyOwner {\n _transferOwnership(address(0));\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual onlyOwner {\n if (newOwner == address(0)) {\n revert OwnableInvalidOwner(address(0));\n }\n _transferOwnership(newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual {\n address oldOwner = _owner;\n _owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\n }\n}\n"
+ },
+ "@openzeppelin/contracts/interfaces/IERC1967.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/IERC1967.sol)\n\npragma solidity >=0.4.11;\n\n/**\n * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.\n */\ninterface IERC1967 {\n /**\n * @dev Emitted when the implementation is upgraded.\n */\n event Upgraded(address indexed implementation);\n\n /**\n * @dev Emitted when the admin account has changed.\n */\n event AdminChanged(address previousAdmin, address newAdmin);\n\n /**\n * @dev Emitted when the beacon is changed.\n */\n event BeaconUpgraded(address indexed beacon);\n}\n"
+ },
+ "@openzeppelin/contracts/proxy/beacon/BeaconProxy.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (proxy/beacon/BeaconProxy.sol)\n\npragma solidity ^0.8.22;\n\nimport {IBeacon} from \"./IBeacon.sol\";\nimport {Proxy} from \"../Proxy.sol\";\nimport {ERC1967Utils} from \"../ERC1967/ERC1967Utils.sol\";\n\n/**\n * @dev This contract implements a proxy that gets the implementation address for each call from an {UpgradeableBeacon}.\n *\n * The beacon address can only be set once during construction, and cannot be changed afterwards. It is stored in an\n * immutable variable to avoid unnecessary storage reads, and also in the beacon storage slot specified by\n * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] so that it can be accessed externally.\n *\n * CAUTION: Since the beacon address can never be changed, you must ensure that you either control the beacon, or trust\n * the beacon to not upgrade the implementation maliciously.\n *\n * IMPORTANT: Do not use the implementation logic to modify the beacon storage slot. Doing so would leave the proxy in\n * an inconsistent state where the beacon storage slot does not match the beacon address.\n */\ncontract BeaconProxy is Proxy {\n // An immutable address for the beacon to avoid unnecessary SLOADs before each delegate call.\n address private immutable _beacon;\n\n /**\n * @dev Initializes the proxy with `beacon`.\n *\n * If `data` is nonempty, it's used as data in a delegate call to the implementation returned by the beacon. This\n * will typically be an encoded function call, and allows initializing the storage of the proxy like a Solidity\n * constructor.\n *\n * Requirements:\n *\n * - `beacon` must be a contract with the interface {IBeacon}.\n * - If `data` is empty, `msg.value` must be zero.\n */\n constructor(address beacon, bytes memory data) payable {\n ERC1967Utils.upgradeBeaconToAndCall(beacon, data);\n _beacon = beacon;\n }\n\n /**\n * @dev Returns the current implementation address of the associated beacon.\n */\n function _implementation() internal view virtual override returns (address) {\n return IBeacon(_getBeacon()).implementation();\n }\n\n /**\n * @dev Returns the beacon.\n */\n function _getBeacon() internal view virtual returns (address) {\n return _beacon;\n }\n}\n"
+ },
+ "@openzeppelin/contracts/proxy/beacon/IBeacon.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (proxy/beacon/IBeacon.sol)\n\npragma solidity >=0.4.16;\n\n/**\n * @dev This is the interface that {BeaconProxy} expects of its beacon.\n */\ninterface IBeacon {\n /**\n * @dev Must return an address that can be used as a delegate call target.\n *\n * {UpgradeableBeacon} will check that this address is a contract.\n */\n function implementation() external view returns (address);\n}\n"
+ },
+ "@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/UpgradeableBeacon.sol)\n\npragma solidity ^0.8.20;\n\nimport {IBeacon} from \"./IBeacon.sol\";\nimport {Ownable} from \"../../access/Ownable.sol\";\n\n/**\n * @dev This contract is used in conjunction with one or more instances of {BeaconProxy} to determine their\n * implementation contract, which is where they will delegate all function calls.\n *\n * An owner is able to change the implementation the beacon points to, thus upgrading the proxies that use this beacon.\n */\ncontract UpgradeableBeacon is IBeacon, Ownable {\n address private _implementation;\n\n /**\n * @dev The `implementation` of the beacon is invalid.\n */\n error BeaconInvalidImplementation(address implementation);\n\n /**\n * @dev Emitted when the implementation returned by the beacon is changed.\n */\n event Upgraded(address indexed implementation);\n\n /**\n * @dev Sets the address of the initial implementation, and the initial owner who can upgrade the beacon.\n */\n constructor(address implementation_, address initialOwner) Ownable(initialOwner) {\n _setImplementation(implementation_);\n }\n\n /**\n * @dev Returns the current implementation address.\n */\n function implementation() public view virtual returns (address) {\n return _implementation;\n }\n\n /**\n * @dev Upgrades the beacon to a new implementation.\n *\n * Emits an {Upgraded} event.\n *\n * Requirements:\n *\n * - msg.sender must be the owner of the contract.\n * - `newImplementation` must be a contract.\n */\n function upgradeTo(address newImplementation) public virtual onlyOwner {\n _setImplementation(newImplementation);\n }\n\n /**\n * @dev Sets the implementation contract address for this beacon\n *\n * Requirements:\n *\n * - `newImplementation` must be a contract.\n */\n function _setImplementation(address newImplementation) private {\n if (newImplementation.code.length == 0) {\n revert BeaconInvalidImplementation(newImplementation);\n }\n _implementation = newImplementation;\n emit Upgraded(newImplementation);\n }\n}\n"
+ },
+ "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (proxy/ERC1967/ERC1967Proxy.sol)\n\npragma solidity ^0.8.22;\n\nimport {Proxy} from \"../Proxy.sol\";\nimport {ERC1967Utils} from \"./ERC1967Utils.sol\";\n\n/**\n * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an\n * implementation address that can be changed. This address is stored in storage in the location specified by\n * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967], so that it doesn't conflict with the storage layout of the\n * implementation behind the proxy.\n */\ncontract ERC1967Proxy is Proxy {\n /**\n * @dev Initializes the upgradeable proxy with an initial implementation specified by `implementation`.\n *\n * If `_data` is nonempty, it's used as data in a delegate call to `implementation`. This will typically be an\n * encoded function call, and allows initializing the storage of the proxy like a Solidity constructor.\n *\n * Requirements:\n *\n * - If `data` is empty, `msg.value` must be zero.\n */\n constructor(address implementation, bytes memory _data) payable {\n ERC1967Utils.upgradeToAndCall(implementation, _data);\n }\n\n /**\n * @dev Returns the current implementation address.\n *\n * TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using\n * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`\n */\n function _implementation() internal view virtual override returns (address) {\n return ERC1967Utils.getImplementation();\n }\n}\n"
+ },
+ "@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.4.0) (proxy/ERC1967/ERC1967Utils.sol)\n\npragma solidity ^0.8.21;\n\nimport {IBeacon} from \"../beacon/IBeacon.sol\";\nimport {IERC1967} from \"../../interfaces/IERC1967.sol\";\nimport {Address} from \"../../utils/Address.sol\";\nimport {StorageSlot} from \"../../utils/StorageSlot.sol\";\n\n/**\n * @dev This library provides getters and event emitting update functions for\n * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots.\n */\nlibrary ERC1967Utils {\n /**\n * @dev Storage slot with the address of the current implementation.\n * This is the keccak-256 hash of \"eip1967.proxy.implementation\" subtracted by 1.\n */\n // solhint-disable-next-line private-vars-leading-underscore\n bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n\n /**\n * @dev The `implementation` of the proxy is invalid.\n */\n error ERC1967InvalidImplementation(address implementation);\n\n /**\n * @dev The `admin` of the proxy is invalid.\n */\n error ERC1967InvalidAdmin(address admin);\n\n /**\n * @dev The `beacon` of the proxy is invalid.\n */\n error ERC1967InvalidBeacon(address beacon);\n\n /**\n * @dev An upgrade function sees `msg.value > 0` that may be lost.\n */\n error ERC1967NonPayable();\n\n /**\n * @dev Returns the current implementation address.\n */\n function getImplementation() internal view returns (address) {\n return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value;\n }\n\n /**\n * @dev Stores a new address in the ERC-1967 implementation slot.\n */\n function _setImplementation(address newImplementation) private {\n if (newImplementation.code.length == 0) {\n revert ERC1967InvalidImplementation(newImplementation);\n }\n StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation;\n }\n\n /**\n * @dev Performs implementation upgrade with additional setup call if data is nonempty.\n * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected\n * to avoid stuck value in the contract.\n *\n * Emits an {IERC1967-Upgraded} event.\n */\n function upgradeToAndCall(address newImplementation, bytes memory data) internal {\n _setImplementation(newImplementation);\n emit IERC1967.Upgraded(newImplementation);\n\n if (data.length > 0) {\n Address.functionDelegateCall(newImplementation, data);\n } else {\n _checkNonPayable();\n }\n }\n\n /**\n * @dev Storage slot with the admin of the contract.\n * This is the keccak-256 hash of \"eip1967.proxy.admin\" subtracted by 1.\n */\n // solhint-disable-next-line private-vars-leading-underscore\n bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;\n\n /**\n * @dev Returns the current admin.\n *\n * TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using\n * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`\n */\n function getAdmin() internal view returns (address) {\n return StorageSlot.getAddressSlot(ADMIN_SLOT).value;\n }\n\n /**\n * @dev Stores a new address in the ERC-1967 admin slot.\n */\n function _setAdmin(address newAdmin) private {\n if (newAdmin == address(0)) {\n revert ERC1967InvalidAdmin(address(0));\n }\n StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin;\n }\n\n /**\n * @dev Changes the admin of the proxy.\n *\n * Emits an {IERC1967-AdminChanged} event.\n */\n function changeAdmin(address newAdmin) internal {\n emit IERC1967.AdminChanged(getAdmin(), newAdmin);\n _setAdmin(newAdmin);\n }\n\n /**\n * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.\n * This is the keccak-256 hash of \"eip1967.proxy.beacon\" subtracted by 1.\n */\n // solhint-disable-next-line private-vars-leading-underscore\n bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;\n\n /**\n * @dev Returns the current beacon.\n */\n function getBeacon() internal view returns (address) {\n return StorageSlot.getAddressSlot(BEACON_SLOT).value;\n }\n\n /**\n * @dev Stores a new beacon in the ERC-1967 beacon slot.\n */\n function _setBeacon(address newBeacon) private {\n if (newBeacon.code.length == 0) {\n revert ERC1967InvalidBeacon(newBeacon);\n }\n\n StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon;\n\n address beaconImplementation = IBeacon(newBeacon).implementation();\n if (beaconImplementation.code.length == 0) {\n revert ERC1967InvalidImplementation(beaconImplementation);\n }\n }\n\n /**\n * @dev Change the beacon and trigger a setup call if data is nonempty.\n * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected\n * to avoid stuck value in the contract.\n *\n * Emits an {IERC1967-BeaconUpgraded} event.\n *\n * CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since\n * it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for\n * efficiency.\n */\n function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal {\n _setBeacon(newBeacon);\n emit IERC1967.BeaconUpgraded(newBeacon);\n\n if (data.length > 0) {\n Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);\n } else {\n _checkNonPayable();\n }\n }\n\n /**\n * @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract\n * if an upgrade doesn't perform an initialization call.\n */\n function _checkNonPayable() private {\n if (msg.value > 0) {\n revert ERC1967NonPayable();\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts/proxy/Proxy.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (proxy/Proxy.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM\n * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to\n * be specified by overriding the virtual {_implementation} function.\n *\n * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a\n * different contract through the {_delegate} function.\n *\n * The success and return data of the delegated call will be returned back to the caller of the proxy.\n */\nabstract contract Proxy {\n /**\n * @dev Delegates the current call to `implementation`.\n *\n * This function does not return to its internal call site, it will return directly to the external caller.\n */\n function _delegate(address implementation) internal virtual {\n assembly {\n // Copy msg.data. We take full control of memory in this inline assembly\n // block because it will not return to Solidity code. We overwrite the\n // Solidity scratch pad at memory position 0.\n calldatacopy(0x00, 0x00, calldatasize())\n\n // Call the implementation.\n // out and outsize are 0 because we don't know the size yet.\n let result := delegatecall(gas(), implementation, 0x00, calldatasize(), 0x00, 0x00)\n\n // Copy the returned data.\n returndatacopy(0x00, 0x00, returndatasize())\n\n switch result\n // delegatecall returns 0 on error.\n case 0 {\n revert(0x00, returndatasize())\n }\n default {\n return(0x00, returndatasize())\n }\n }\n }\n\n /**\n * @dev This is a virtual function that should be overridden so it returns the address to which the fallback\n * function and {_fallback} should delegate.\n */\n function _implementation() internal view virtual returns (address);\n\n /**\n * @dev Delegates the current call to the address returned by `_implementation()`.\n *\n * This function does not return to its internal call site, it will return directly to the external caller.\n */\n function _fallback() internal virtual {\n _delegate(_implementation());\n }\n\n /**\n * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other\n * function in the contract matches the call data.\n */\n fallback() external payable virtual {\n _fallback();\n }\n}\n"
+ },
+ "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.2.0) (proxy/transparent/ProxyAdmin.sol)\n\npragma solidity ^0.8.22;\n\nimport {ITransparentUpgradeableProxy} from \"./TransparentUpgradeableProxy.sol\";\nimport {Ownable} from \"../../access/Ownable.sol\";\n\n/**\n * @dev This is an auxiliary contract meant to be assigned as the admin of a {TransparentUpgradeableProxy}. For an\n * explanation of why you would want to use this see the documentation for {TransparentUpgradeableProxy}.\n */\ncontract ProxyAdmin is Ownable {\n /**\n * @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgrade(address,address)`\n * and `upgradeAndCall(address,address,bytes)` are present, and `upgrade` must be used if no function should be called,\n * while `upgradeAndCall` will invoke the `receive` function if the third argument is the empty byte string.\n * If the getter returns `\"5.0.0\"`, only `upgradeAndCall(address,address,bytes)` is present, and the third argument must\n * be the empty byte string if no function should be called, making it impossible to invoke the `receive` function\n * during an upgrade.\n */\n string public constant UPGRADE_INTERFACE_VERSION = \"5.0.0\";\n\n /**\n * @dev Sets the initial owner who can perform upgrades.\n */\n constructor(address initialOwner) Ownable(initialOwner) {}\n\n /**\n * @dev Upgrades `proxy` to `implementation` and calls a function on the new implementation.\n * See {TransparentUpgradeableProxy-_dispatchUpgradeToAndCall}.\n *\n * Requirements:\n *\n * - This contract must be the admin of `proxy`.\n * - If `data` is empty, `msg.value` must be zero.\n */\n function upgradeAndCall(\n ITransparentUpgradeableProxy proxy,\n address implementation,\n bytes memory data\n ) public payable virtual onlyOwner {\n proxy.upgradeToAndCall{value: msg.value}(implementation, data);\n }\n}\n"
+ },
+ "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (proxy/transparent/TransparentUpgradeableProxy.sol)\n\npragma solidity ^0.8.22;\n\nimport {ERC1967Utils} from \"../ERC1967/ERC1967Utils.sol\";\nimport {ERC1967Proxy} from \"../ERC1967/ERC1967Proxy.sol\";\nimport {IERC1967} from \"../../interfaces/IERC1967.sol\";\nimport {ProxyAdmin} from \"./ProxyAdmin.sol\";\n\n/**\n * @dev Interface for {TransparentUpgradeableProxy}. In order to implement transparency, {TransparentUpgradeableProxy}\n * does not implement this interface directly, and its upgradeability mechanism is implemented by an internal dispatch\n * mechanism. The compiler is unaware that these functions are implemented by {TransparentUpgradeableProxy} and will not\n * include them in the ABI so this interface must be used to interact with it.\n */\ninterface ITransparentUpgradeableProxy is IERC1967 {\n /// @dev See {UUPSUpgradeable-upgradeToAndCall}\n function upgradeToAndCall(address newImplementation, bytes calldata data) external payable;\n}\n\n/**\n * @dev This contract implements a proxy that is upgradeable through an associated {ProxyAdmin} instance.\n *\n * To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector\n * clashing], which can potentially be used in an attack, this contract uses the\n * https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two\n * things that go hand in hand:\n *\n * 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if\n * that call matches the {ITransparentUpgradeableProxy-upgradeToAndCall} function exposed by the proxy itself.\n * 2. If the admin calls the proxy, it can call the `upgradeToAndCall` function, but any other call won't be forwarded to\n * the implementation. If the admin tries to call a function on the implementation it will fail with an error indicating\n * the proxy admin cannot fallback to the target implementation.\n *\n * These properties mean that the admin account can only be used for upgrading the proxy, so it's best if it's a\n * dedicated account that is not used for anything else. This will avoid headaches due to sudden errors when trying to\n * call a function from the proxy implementation. For this reason, the proxy deploys an instance of {ProxyAdmin} and\n * allows upgrades only if they come through it. You should think of the `ProxyAdmin` instance as the administrative\n * interface of the proxy, including the ability to change who can trigger upgrades by transferring ownership.\n *\n * NOTE: The real interface of this proxy is that defined in `ITransparentUpgradeableProxy`. This contract does not\n * inherit from that interface, and instead `upgradeToAndCall` is implicitly implemented using a custom dispatch\n * mechanism in `_fallback`. Consequently, the compiler will not produce an ABI for this contract. This is necessary to\n * fully implement transparency without decoding reverts caused by selector clashes between the proxy and the\n * implementation.\n *\n * NOTE: This proxy does not inherit from {Context} deliberately. The {ProxyAdmin} of this contract won't send a\n * meta-transaction in any way, and any other meta-transaction setup should be made in the implementation contract.\n *\n * IMPORTANT: This contract avoids unnecessary storage reads by setting the admin only during construction as an\n * immutable variable, preventing any changes thereafter. However, the admin slot defined in ERC-1967 can still be\n * overwritten by the implementation logic pointed to by this proxy. In such cases, the contract may end up in an\n * undesirable state where the admin slot is different from the actual admin. Relying on the value of the admin slot\n * is generally fine if the implementation is trusted.\n *\n * WARNING: It is not recommended to extend this contract to add additional external functions. If you do so, the\n * compiler will not check that there are no selector conflicts, due to the note above. A selector clash between any new\n * function and the functions declared in {ITransparentUpgradeableProxy} will be resolved in favor of the new one. This\n * could render the `upgradeToAndCall` function inaccessible, preventing upgradeability and compromising transparency.\n */\ncontract TransparentUpgradeableProxy is ERC1967Proxy {\n // An immutable address for the admin to avoid unnecessary SLOADs before each call\n // at the expense of removing the ability to change the admin once it's set.\n // This is acceptable if the admin is always a ProxyAdmin instance or similar contract\n // with its own ability to transfer the permissions to another account.\n address private immutable _admin;\n\n /**\n * @dev The proxy caller is the current admin, and can't fallback to the proxy target.\n */\n error ProxyDeniedAdminAccess();\n\n /**\n * @dev Initializes an upgradeable proxy managed by an instance of a {ProxyAdmin} with an `initialOwner`,\n * backed by the implementation at `_logic`, and optionally initialized with `_data` as explained in\n * {ERC1967Proxy-constructor}.\n */\n constructor(address _logic, address initialOwner, bytes memory _data) payable ERC1967Proxy(_logic, _data) {\n _admin = address(new ProxyAdmin(initialOwner));\n // Set the storage value and emit an event for ERC-1967 compatibility\n ERC1967Utils.changeAdmin(_proxyAdmin());\n }\n\n /**\n * @dev Returns the admin of this proxy.\n */\n function _proxyAdmin() internal view virtual returns (address) {\n return _admin;\n }\n\n /**\n * @dev If caller is the admin process the call internally, otherwise transparently fallback to the proxy behavior.\n */\n function _fallback() internal virtual override {\n if (msg.sender == _proxyAdmin()) {\n if (msg.sig != ITransparentUpgradeableProxy.upgradeToAndCall.selector) {\n revert ProxyDeniedAdminAccess();\n } else {\n _dispatchUpgradeToAndCall();\n }\n } else {\n super._fallback();\n }\n }\n\n /**\n * @dev Upgrade the implementation of the proxy. See {ERC1967Utils-upgradeToAndCall}.\n *\n * Requirements:\n *\n * - If `data` is empty, `msg.value` must be zero.\n */\n function _dispatchUpgradeToAndCall() private {\n (address newImplementation, bytes memory data) = abi.decode(msg.data[4:], (address, bytes));\n ERC1967Utils.upgradeToAndCall(newImplementation, data);\n }\n}\n"
+ },
+ "@openzeppelin/contracts/utils/Address.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/Address.sol)\n\npragma solidity ^0.8.20;\n\nimport {Errors} from \"./Errors.sol\";\nimport {LowLevelCall} from \"./LowLevelCall.sol\";\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev There's no code at `target` (it is not a contract).\n */\n error AddressEmptyCode(address target);\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n if (address(this).balance < amount) {\n revert Errors.InsufficientBalance(address(this).balance, amount);\n }\n if (LowLevelCall.callNoReturn(recipient, amount, \"\")) {\n // call successful, nothing to do\n return;\n } else if (LowLevelCall.returnDataSize() > 0) {\n LowLevelCall.bubbleRevert();\n } else {\n revert Errors.FailedCall();\n }\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason or custom error, it is bubbled\n * up by this function (like regular Solidity function calls). However, if\n * the call reverted with no returned reason, this function reverts with a\n * {Errors.FailedCall} error.\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n if (address(this).balance < value) {\n revert Errors.InsufficientBalance(address(this).balance, value);\n }\n bool success = LowLevelCall.callNoReturn(target, value, data);\n if (success && (LowLevelCall.returnDataSize() > 0 || target.code.length > 0)) {\n return LowLevelCall.returnData();\n } else if (success) {\n revert AddressEmptyCode(target);\n } else if (LowLevelCall.returnDataSize() > 0) {\n LowLevelCall.bubbleRevert();\n } else {\n revert Errors.FailedCall();\n }\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n bool success = LowLevelCall.staticcallNoReturn(target, data);\n if (success && (LowLevelCall.returnDataSize() > 0 || target.code.length > 0)) {\n return LowLevelCall.returnData();\n } else if (success) {\n revert AddressEmptyCode(target);\n } else if (LowLevelCall.returnDataSize() > 0) {\n LowLevelCall.bubbleRevert();\n } else {\n revert Errors.FailedCall();\n }\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n bool success = LowLevelCall.delegatecallNoReturn(target, data);\n if (success && (LowLevelCall.returnDataSize() > 0 || target.code.length > 0)) {\n return LowLevelCall.returnData();\n } else if (success) {\n revert AddressEmptyCode(target);\n } else if (LowLevelCall.returnDataSize() > 0) {\n LowLevelCall.bubbleRevert();\n } else {\n revert Errors.FailedCall();\n }\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target\n * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case\n * of an unsuccessful call.\n *\n * NOTE: This function is DEPRECATED and may be removed in the next major release.\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata\n ) internal view returns (bytes memory) {\n // only check if target is a contract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n if (success && (returndata.length > 0 || target.code.length > 0)) {\n return returndata;\n } else if (success) {\n revert AddressEmptyCode(target);\n } else if (returndata.length > 0) {\n LowLevelCall.bubbleRevert(returndata);\n } else {\n revert Errors.FailedCall();\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the\n * revert reason or with a default {Errors.FailedCall} error.\n */\n function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else if (returndata.length > 0) {\n LowLevelCall.bubbleRevert(returndata);\n } else {\n revert Errors.FailedCall();\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts/utils/Context.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n\n function _contextSuffixLength() internal view virtual returns (uint256) {\n return 0;\n }\n}\n"
+ },
+ "@openzeppelin/contracts/utils/Errors.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Collection of common custom errors used in multiple contracts\n *\n * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.\n * It is recommended to avoid relying on the error API for critical functionality.\n *\n * _Available since v5.1._\n */\nlibrary Errors {\n /**\n * @dev The ETH balance of the account is not enough to perform the operation.\n */\n error InsufficientBalance(uint256 balance, uint256 needed);\n\n /**\n * @dev A call to an address target failed. The target may have reverted.\n */\n error FailedCall();\n\n /**\n * @dev The deployment failed.\n */\n error FailedDeployment();\n\n /**\n * @dev A necessary precompile is missing.\n */\n error MissingPrecompile(address);\n}\n"
+ },
+ "@openzeppelin/contracts/utils/LowLevelCall.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.5.0) (utils/LowLevelCall.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Library of low level call functions that implement different calling strategies to deal with the return data.\n *\n * WARNING: Using this library requires an advanced understanding of Solidity and how the EVM works. It is recommended\n * to use the {Address} library instead.\n */\nlibrary LowLevelCall {\n /// @dev Performs a Solidity function call using a low level `call` and ignoring the return data.\n function callNoReturn(address target, bytes memory data) internal returns (bool success) {\n return callNoReturn(target, 0, data);\n }\n\n /// @dev Same as {callNoReturn}, but allows to specify the value to be sent in the call.\n function callNoReturn(address target, uint256 value, bytes memory data) internal returns (bool success) {\n assembly (\"memory-safe\") {\n success := call(gas(), target, value, add(data, 0x20), mload(data), 0x00, 0x00)\n }\n }\n\n /// @dev Performs a Solidity function call using a low level `call` and returns the first 64 bytes of the result\n /// in the scratch space of memory. Useful for functions that return a tuple of single-word values.\n ///\n /// WARNING: Do not assume that the results are zero if `success` is false. Memory can be already allocated\n /// and this function doesn't zero it out.\n function callReturn64Bytes(\n address target,\n bytes memory data\n ) internal returns (bool success, bytes32 result1, bytes32 result2) {\n return callReturn64Bytes(target, 0, data);\n }\n\n /// @dev Same as {callReturnBytes32Pair}, but allows to specify the value to be sent in the call.\n function callReturn64Bytes(\n address target,\n uint256 value,\n bytes memory data\n ) internal returns (bool success, bytes32 result1, bytes32 result2) {\n assembly (\"memory-safe\") {\n success := call(gas(), target, value, add(data, 0x20), mload(data), 0x00, 0x40)\n result1 := mload(0x00)\n result2 := mload(0x20)\n }\n }\n\n /// @dev Performs a Solidity function call using a low level `staticcall` and ignoring the return data.\n function staticcallNoReturn(address target, bytes memory data) internal view returns (bool success) {\n assembly (\"memory-safe\") {\n success := staticcall(gas(), target, add(data, 0x20), mload(data), 0x00, 0x00)\n }\n }\n\n /// @dev Performs a Solidity function call using a low level `staticcall` and returns the first 64 bytes of the result\n /// in the scratch space of memory. Useful for functions that return a tuple of single-word values.\n ///\n /// WARNING: Do not assume that the results are zero if `success` is false. Memory can be already allocated\n /// and this function doesn't zero it out.\n function staticcallReturn64Bytes(\n address target,\n bytes memory data\n ) internal view returns (bool success, bytes32 result1, bytes32 result2) {\n assembly (\"memory-safe\") {\n success := staticcall(gas(), target, add(data, 0x20), mload(data), 0x00, 0x40)\n result1 := mload(0x00)\n result2 := mload(0x20)\n }\n }\n\n /// @dev Performs a Solidity function call using a low level `delegatecall` and ignoring the return data.\n function delegatecallNoReturn(address target, bytes memory data) internal returns (bool success) {\n assembly (\"memory-safe\") {\n success := delegatecall(gas(), target, add(data, 0x20), mload(data), 0x00, 0x00)\n }\n }\n\n /// @dev Performs a Solidity function call using a low level `delegatecall` and returns the first 64 bytes of the result\n /// in the scratch space of memory. Useful for functions that return a tuple of single-word values.\n ///\n /// WARNING: Do not assume that the results are zero if `success` is false. Memory can be already allocated\n /// and this function doesn't zero it out.\n function delegatecallReturn64Bytes(\n address target,\n bytes memory data\n ) internal returns (bool success, bytes32 result1, bytes32 result2) {\n assembly (\"memory-safe\") {\n success := delegatecall(gas(), target, add(data, 0x20), mload(data), 0x00, 0x40)\n result1 := mload(0x00)\n result2 := mload(0x20)\n }\n }\n\n /// @dev Returns the size of the return data buffer.\n function returnDataSize() internal pure returns (uint256 size) {\n assembly (\"memory-safe\") {\n size := returndatasize()\n }\n }\n\n /// @dev Returns a buffer containing the return data from the last call.\n function returnData() internal pure returns (bytes memory result) {\n assembly (\"memory-safe\") {\n result := mload(0x40)\n mstore(result, returndatasize())\n returndatacopy(add(result, 0x20), 0x00, returndatasize())\n mstore(0x40, add(result, add(0x20, returndatasize())))\n }\n }\n\n /// @dev Revert with the return data from the last call.\n function bubbleRevert() internal pure {\n assembly (\"memory-safe\") {\n let fmp := mload(0x40)\n returndatacopy(fmp, 0x00, returndatasize())\n revert(fmp, returndatasize())\n }\n }\n\n function bubbleRevert(bytes memory returndata) internal pure {\n assembly (\"memory-safe\") {\n revert(add(returndata, 0x20), mload(returndata))\n }\n }\n}\n"
+ },
+ "@openzeppelin/contracts/utils/StorageSlot.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol)\n// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Library for reading and writing primitive types to specific storage slots.\n *\n * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n * This library helps with reading and writing to such slots without the need for inline assembly.\n *\n * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n *\n * Example usage to set ERC-1967 implementation slot:\n * ```solidity\n * contract ERC1967 {\n * // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.\n * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n *\n * function _getImplementation() internal view returns (address) {\n * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n * }\n *\n * function _setImplementation(address newImplementation) internal {\n * require(newImplementation.code.length > 0);\n * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n * }\n * }\n * ```\n *\n * TIP: Consider using this library along with {SlotDerivation}.\n */\nlibrary StorageSlot {\n struct AddressSlot {\n address value;\n }\n\n struct BooleanSlot {\n bool value;\n }\n\n struct Bytes32Slot {\n bytes32 value;\n }\n\n struct Uint256Slot {\n uint256 value;\n }\n\n struct Int256Slot {\n int256 value;\n }\n\n struct StringSlot {\n string value;\n }\n\n struct BytesSlot {\n bytes value;\n }\n\n /**\n * @dev Returns an `AddressSlot` with member `value` located at `slot`.\n */\n function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `BooleanSlot` with member `value` located at `slot`.\n */\n function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `Bytes32Slot` with member `value` located at `slot`.\n */\n function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `Uint256Slot` with member `value` located at `slot`.\n */\n function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `Int256Slot` with member `value` located at `slot`.\n */\n function getInt256Slot(bytes32 slot) internal pure returns (Int256Slot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `StringSlot` with member `value` located at `slot`.\n */\n function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `StringSlot` representation of the string storage pointer `store`.\n */\n function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := store.slot\n }\n }\n\n /**\n * @dev Returns a `BytesSlot` with member `value` located at `slot`.\n */\n function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.\n */\n function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := store.slot\n }\n }\n}\n"
+ },
+ "contracts/erc7683/ERC7683.sol": {
+ "content": "// SPDX-License-Identifier: GPL-3.0-or-later\npragma solidity ^0.8.0;\n\n/// @title GaslessCrossChainOrder CrossChainOrder type\n/// @notice Standard order struct to be signed by users, disseminated to fillers, and submitted to origin settler contracts\nstruct GaslessCrossChainOrder {\n /// @dev The contract address that the order is meant to be settled by.\n /// Fillers send this order to this contract address on the origin chain\n address originSettler;\n /// @dev The address of the user who is initiating the swap,\n /// whose input tokens will be taken and escrowed\n address user;\n /// @dev Nonce to be used as replay protection for the order\n uint256 nonce;\n /// @dev The chainId of the origin chain\n uint256 originChainId;\n /// @dev The timestamp by which the order must be opened\n uint32 openDeadline;\n /// @dev The timestamp by which the order must be filled on the destination chain\n uint32 fillDeadline;\n /// @dev Type identifier for the order data. This is an EIP-712 typehash.\n bytes32 orderDataType;\n /// @dev Arbitrary implementation-specific data\n /// Can be used to define tokens, amounts, destination chains, fees, settlement parameters,\n /// or any other order-type specific information\n bytes orderData;\n}\n\n/// @title OnchainCrossChainOrder CrossChainOrder type\n/// @notice Standard order struct for user-opened orders, where the user is the msg.sender.\nstruct OnchainCrossChainOrder {\n /// @dev The timestamp by which the order must be filled on the destination chain\n uint32 fillDeadline;\n /// @dev Type identifier for the order data. This is an EIP-712 typehash.\n bytes32 orderDataType;\n /// @dev Arbitrary implementation-specific data\n /// Can be used to define tokens, amounts, destination chains, fees, settlement parameters,\n /// or any other order-type specific information\n bytes orderData;\n}\n\n/// @title ResolvedCrossChainOrder type\n/// @notice An implementation-generic representation of an order intended for filler consumption\n/// @dev Defines all requirements for filling an order by unbundling the implementation-specific orderData.\n/// @dev Intended to improve integration generalization by allowing fillers to compute the exact input and output information of any order\nstruct ResolvedCrossChainOrder {\n /// @dev The address of the user who is initiating the transfer\n address user;\n /// @dev The chainId of the origin chain\n uint256 originChainId;\n /// @dev The timestamp by which the order must be opened\n uint32 openDeadline;\n /// @dev The timestamp by which the order must be filled on the destination chain(s)\n uint32 fillDeadline;\n /// @dev The unique identifier for this order within this settlement system\n bytes32 orderId;\n /// @dev The max outputs that the filler will send. It's possible the actual amount depends on the state of the destination\n /// chain (destination dutch auction, for instance), so these outputs should be considered a cap on filler liabilities.\n Output[] maxSpent;\n /// @dev The minimum outputs that must to be given to the filler as part of order settlement. Similar to maxSpent, it's possible\n /// that special order types may not be able to guarantee the exact amount at open time, so this should be considered\n /// a floor on filler receipts.\n Output[] minReceived;\n /// @dev Each instruction in this array is parameterizes a single leg of the fill. This provides the filler with the information\n /// necessary to perform the fill on the destination(s).\n FillInstruction[] fillInstructions;\n}\n\n/// @notice Tokens that must be receive for a valid order fulfillment\nstruct Output {\n /// @dev The address of the ERC20 token on the destination chain\n /// @dev address(0) used as a sentinel for the native token\n bytes32 token;\n /// @dev The amount of the token to be sent\n uint256 amount;\n /// @dev The address to receive the output tokens\n bytes32 recipient;\n /// @dev The destination chain for this output\n uint256 chainId;\n}\n\n/// @title FillInstruction type\n/// @notice Instructions to parameterize each leg of the fill\n/// @dev Provides all the origin-generated information required to produce a valid fill leg\nstruct FillInstruction {\n /// @dev The contract address that the order is meant to be settled by\n uint64 destinationChainId;\n /// @dev The contract address that the order is meant to be filled on\n bytes32 destinationSettler;\n /// @dev The data generated on the origin chain needed by the destinationSettler to process the fill\n bytes originData;\n}\n\n/// @title IOriginSettler\n/// @notice Standard interface for settlement contracts on the origin chain\ninterface IOriginSettler {\n /// @notice Signals that an order has been opened\n /// @param orderId a unique order identifier within this settlement system\n /// @param resolvedOrder resolved order that would be returned by resolve if called instead of Open\n event Open(bytes32 indexed orderId, ResolvedCrossChainOrder resolvedOrder);\n\n /// @notice Opens a gasless cross-chain order on behalf of a user.\n /// @dev To be called by the filler.\n /// @dev This method must emit the Open event\n /// @param order The GaslessCrossChainOrder definition\n /// @param signature The user's signature over the order\n /// @param originFillerData Any filler-defined data required by the settler\n function openFor(\n GaslessCrossChainOrder calldata order,\n bytes calldata signature,\n bytes calldata originFillerData\n ) external;\n\n /// @notice Opens a cross-chain order\n /// @dev To be called by the user\n /// @dev This method must emit the Open event\n /// @param order The OnchainCrossChainOrder definition\n function open(OnchainCrossChainOrder calldata order) external;\n\n /// @notice Resolves a specific GaslessCrossChainOrder into a generic ResolvedCrossChainOrder\n /// @dev Intended to improve standardized integration of various order types and settlement contracts\n /// @param order The GaslessCrossChainOrder definition\n /// @param originFillerData Any filler-defined data required by the settler\n /// @return ResolvedCrossChainOrder hydrated order data including the inputs and outputs of the order\n function resolveFor(GaslessCrossChainOrder calldata order, bytes calldata originFillerData)\n external\n view\n returns (ResolvedCrossChainOrder memory);\n\n /// @notice Resolves a specific OnchainCrossChainOrder into a generic ResolvedCrossChainOrder\n /// @dev Intended to improve standardized integration of various order types and settlement contracts\n /// @param order The OnchainCrossChainOrder definition\n /// @return ResolvedCrossChainOrder hydrated order data including the inputs and outputs of the order\n function resolve(OnchainCrossChainOrder calldata order) external view returns (ResolvedCrossChainOrder memory);\n}\n\n/// @title IDestinationSettler\n/// @notice Standard interface for settlement contracts on the destination chain\ninterface IDestinationSettler {\n /// @notice Fills a single leg of a particular order on the destination chain\n /// @param orderId Unique order identifier for this order\n /// @param originData Data emitted on the origin to parameterize the fill\n /// @param fillerData Data provided by the filler to inform the fill or express their preferences\n function fill(\n bytes32 orderId,\n bytes calldata originData,\n bytes calldata fillerData\n ) external;\n}\n"
+ },
+ "contracts/erc7683/ERC7683Permit2Lib.sol": {
+ "content": "// SPDX-License-Identifier: UNLICENSED\npragma solidity ^0.8.0;\n\nimport \"../external/interfaces/IPermit2.sol\";\nimport { GaslessCrossChainOrder } from \"./ERC7683.sol\";\n\n// Data unique to every CrossChainOrder settled on Across\nstruct AcrossOrderData {\n address inputToken;\n uint256 inputAmount;\n address outputToken;\n uint256 outputAmount;\n uint256 destinationChainId;\n bytes32 recipient;\n address exclusiveRelayer;\n /// @notice User needs to be careful not to re-use a deposit nonce when depositing into Across otherwise the\n /// user risks their deposit being unfillable. See @across/contracts/SpokePool.sol#unsafeDeposit() for\n /// more details on this situation.\n uint256 depositNonce;\n uint32 exclusivityPeriod;\n bytes message;\n}\n\nstruct AcrossOriginFillerData {\n address exclusiveRelayer;\n}\n\nstruct AcrossDestinationFillerData {\n uint256 repaymentChainId;\n}\n\nbytes constant ACROSS_ORDER_DATA_TYPE = abi.encodePacked(\n \"AcrossOrderData(\",\n \"address inputToken,\",\n \"uint256 inputAmount,\",\n \"address outputToken,\",\n \"uint256 outputAmount,\",\n \"uint256 destinationChainId,\",\n \"bytes32 recipient,\",\n \"address exclusiveRelayer,\"\n \"uint256 depositNonce,\",\n \"uint32 exclusivityPeriod,\",\n \"bytes message)\"\n);\n\nbytes32 constant ACROSS_ORDER_DATA_TYPE_HASH = keccak256(ACROSS_ORDER_DATA_TYPE);\n\n/**\n * @notice ERC7683Permit2Lib knows how to process a particular type of external Permit2Order so that it can be used in Across.\n * @dev This library is responsible for definining the ERC712 type strings/hashes and performing hashes on the types.\n * @custom:security-contact bugs@across.to\n */\nlibrary ERC7683Permit2Lib {\n bytes internal constant GASLESS_CROSS_CHAIN_ORDER_TYPE =\n abi.encodePacked(\n \"GaslessCrossChainOrder(\",\n \"address originSettler,\",\n \"address user,\",\n \"uint256 nonce,\",\n \"uint256 originChainId,\",\n \"uint32 openDeadline,\",\n \"uint32 fillDeadline,\",\n \"bytes32 orderDataType,\",\n \"AcrossOrderData orderData)\"\n );\n\n bytes internal constant GASLESS_CROSS_CHAIN_ORDER_EIP712_TYPE =\n abi.encodePacked(GASLESS_CROSS_CHAIN_ORDER_TYPE, ACROSS_ORDER_DATA_TYPE);\n bytes32 internal constant GASLESS_CROSS_CHAIN_ORDER_TYPE_HASH = keccak256(GASLESS_CROSS_CHAIN_ORDER_EIP712_TYPE);\n\n string private constant TOKEN_PERMISSIONS_TYPE = \"TokenPermissions(address token,uint256 amount)\";\n string internal constant PERMIT2_ORDER_TYPE =\n string(\n abi.encodePacked(\n \"GaslessCrossChainOrder witness)\",\n ACROSS_ORDER_DATA_TYPE,\n GASLESS_CROSS_CHAIN_ORDER_TYPE,\n TOKEN_PERMISSIONS_TYPE\n )\n );\n\n // Hashes an order to get an order hash. Needed for permit2.\n function hashOrder(GaslessCrossChainOrder memory order, bytes32 orderDataHash) internal pure returns (bytes32) {\n return\n keccak256(\n abi.encode(\n GASLESS_CROSS_CHAIN_ORDER_TYPE_HASH,\n order.originSettler,\n order.user,\n order.nonce,\n order.originChainId,\n order.openDeadline,\n order.fillDeadline,\n order.orderDataType,\n orderDataHash\n )\n );\n }\n\n function hashOrderData(AcrossOrderData memory orderData) internal pure returns (bytes32) {\n return\n keccak256(\n abi.encode(\n ACROSS_ORDER_DATA_TYPE_HASH,\n orderData.inputToken,\n orderData.inputAmount,\n orderData.outputToken,\n orderData.outputAmount,\n orderData.destinationChainId,\n orderData.recipient,\n orderData.exclusiveRelayer,\n orderData.depositNonce,\n orderData.exclusivityPeriod,\n keccak256(orderData.message)\n )\n );\n }\n}\n"
+ },
+ "contracts/external/interfaces/CCTPInterfaces.sol": {
+ "content": "/**\n * Copyright (C) 2015, 2016, 2017 Dapphub\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with this program. If not, see .\n */\n\n// SPDX-License-Identifier: GPL-3.0-or-later\npragma solidity ^0.8.0;\n\n/**\n * Imported as-is from commit 139d8d0ce3b5531d3c7ec284f89d946dfb720016 of:\n * * https://github.com/walkerq/evm-cctp-contracts/blob/139d8d0ce3b5531d3c7ec284f89d946dfb720016/src/TokenMessenger.sol\n * Changes applied post-import:\n * * Removed a majority of code from this contract and converted the needed function signatures in this interface.\n */\ninterface ITokenMessenger {\n /**\n * @notice Deposits and burns tokens from sender to be minted on destination domain.\n * Emits a `DepositForBurn` event.\n * @dev reverts if:\n * - given burnToken is not supported\n * - given destinationDomain has no TokenMessenger registered\n * - transferFrom() reverts. For example, if sender's burnToken balance or approved allowance\n * to this contract is less than `amount`.\n * - burn() reverts. For example, if `amount` is 0.\n * - MessageTransmitter returns false or reverts.\n * @param amount amount of tokens to burn\n * @param destinationDomain destination domain\n * @param mintRecipient address of mint recipient on destination domain\n * @param burnToken address of contract to burn deposited tokens, on local domain\n * @return _nonce unique nonce reserved by message\n */\n function depositForBurn(\n uint256 amount,\n uint32 destinationDomain,\n bytes32 mintRecipient,\n address burnToken\n ) external returns (uint64 _nonce);\n\n /**\n * @notice Minter responsible for minting and burning tokens on the local domain\n * @dev A TokenMessenger stores a TokenMinter contract which extends the TokenController contract.\n * https://github.com/circlefin/evm-cctp-contracts/blob/817397db0a12963accc08ff86065491577bbc0e5/src/TokenMessenger.sol#L110\n * @return minter Token Minter contract.\n */\n function localMinter() external view returns (ITokenMinter minter);\n}\n\n// Source: https://github.com/circlefin/evm-cctp-contracts/blob/63ab1f0ac06ce0793c0bbfbb8d09816bc211386d/src/v2/TokenMessengerV2.sol#L138C1-L166C15\ninterface ITokenMessengerV2 {\n /**\n * @notice Deposits and burns tokens from sender to be minted on destination domain.\n * Emits a `DepositForBurn` event.\n * @dev reverts if:\n * - given burnToken is not supported\n * - given destinationDomain has no TokenMessenger registered\n * - transferFrom() reverts. For example, if sender's burnToken balance or approved allowance\n * to this contract is less than `amount`.\n * - burn() reverts. For example, if `amount` is 0.\n * - maxFee is greater than or equal to `amount`.\n * - MessageTransmitterV2#sendMessage reverts.\n * @param amount amount of tokens to burn\n * @param destinationDomain destination domain to receive message on\n * @param mintRecipient address of mint recipient on destination domain\n * @param burnToken token to burn `amount` of, on local domain\n * @param destinationCaller authorized caller on the destination domain, as bytes32. If equal to bytes32(0),\n * any address can broadcast the message.\n * @param maxFee maximum fee to pay on the destination domain, specified in units of burnToken\n * @param minFinalityThreshold the minimum finality at which a burn message will be attested to.\n */\n function depositForBurn(\n uint256 amount,\n uint32 destinationDomain,\n bytes32 mintRecipient,\n address burnToken,\n bytes32 destinationCaller,\n uint256 maxFee,\n uint32 minFinalityThreshold\n ) external;\n}\n\n/**\n * A TokenMessenger stores a TokenMinter contract which extends the TokenController contract. The TokenController\n * contract has a burnLimitsPerMessage public mapping which can be queried to find the per-message burn limit\n * for a given token:\n * https://github.com/circlefin/evm-cctp-contracts/blob/817397db0a12963accc08ff86065491577bbc0e5/src/TokenMinter.sol#L33\n * https://github.com/circlefin/evm-cctp-contracts/blob/817397db0a12963accc08ff86065491577bbc0e5/src/roles/TokenController.sol#L69C40-L69C60\n *\n */\ninterface ITokenMinter {\n /**\n * @notice Supported burnable tokens on the local domain\n * local token (address) => maximum burn amounts per message\n * @param token address of token contract\n * @return burnLimit maximum burn amount per message for token\n */\n function burnLimitsPerMessage(address token) external view returns (uint256);\n}\n\n/**\n * IMessageTransmitter in CCTP inherits IRelayer and IReceiver, but here we only import sendMessage from IRelayer:\n * https://github.com/circlefin/evm-cctp-contracts/blob/377c9bd813fb86a42d900ae4003599d82aef635a/src/interfaces/IMessageTransmitter.sol#L25\n * https://github.com/circlefin/evm-cctp-contracts/blob/377c9bd813fb86a42d900ae4003599d82aef635a/src/interfaces/IRelayer.sol#L23-L35\n */\ninterface IMessageTransmitter {\n /**\n * @notice Sends an outgoing message from the source domain.\n * @dev Increment nonce, format the message, and emit `MessageSent` event with message information.\n * @param destinationDomain Domain of destination chain\n * @param recipient Address of message recipient on destination domain as bytes32\n * @param messageBody Raw bytes content of message\n * @return nonce reserved by message\n */\n function sendMessage(\n uint32 destinationDomain,\n bytes32 recipient,\n bytes calldata messageBody\n ) external returns (uint64);\n}\n"
+ },
+ "contracts/external/interfaces/IERC20Auth.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\n/*\n * @notice Minimal interface for an EIP-3009 compliant token.\n * https://eips.ethereum.org/EIPS/eip-3009\n */\ninterface IERC20Auth {\n /**\n * @notice Receive a transfer with a signed authorization from the payer\n * @dev This has an additional check to ensure that the payee's address matches\n * the caller of this function to prevent front-running attacks. (See security\n * considerations)\n * @param from Payer's address (Authorizer)\n * @param to Payee's address\n * @param value Amount to be transferred\n * @param validAfter The time after which this is valid (unix time)\n * @param validBefore The time before which this is valid (unix time)\n * @param nonce Unique nonce\n * @param v v of the signature\n * @param r r of the signature\n * @param s s of the signature\n */\n function receiveWithAuthorization(\n address from,\n address to,\n uint256 value,\n uint256 validAfter,\n uint256 validBefore,\n bytes32 nonce,\n uint8 v,\n bytes32 r,\n bytes32 s\n ) external;\n}\n"
+ },
+ "contracts/external/interfaces/IPermit2.sol": {
+ "content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ninterface IPermit2 {\n struct PermitDetails {\n address token;\n uint160 amount;\n uint48 expiration;\n uint48 nonce;\n }\n\n struct PermitSingle {\n PermitDetails details;\n address spender;\n uint256 sigDeadline;\n }\n\n struct TokenPermissions {\n address token;\n uint256 amount;\n }\n\n struct PermitTransferFrom {\n TokenPermissions permitted;\n uint256 nonce;\n uint256 deadline;\n }\n\n struct SignatureTransferDetails {\n address to;\n uint256 requestedAmount;\n }\n\n function permit(address owner, PermitSingle memory permitSingle, bytes calldata signature) external;\n\n function permitWitnessTransferFrom(\n PermitTransferFrom memory permit,\n SignatureTransferDetails calldata transferDetails,\n address owner,\n bytes32 witness,\n string calldata witnessTypeString,\n bytes calldata signature\n ) external;\n\n function transferFrom(address from, address to, uint160 amount, address token) external;\n}\n"
+ },
+ "contracts/external/interfaces/WETH9Interface.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\n/**\n * @notice Interface for the WETH9 contract.\n */\ninterface WETH9Interface {\n /**\n * @notice Burn Wrapped Ether and receive native Ether.\n * @param wad Amount of WETH to unwrap and send to caller.\n */\n function withdraw(uint256 wad) external;\n\n /**\n * @notice Lock native Ether and mint Wrapped Ether ERC20\n * @dev msg.value is amount of Wrapped Ether to mint/Ether to lock.\n */\n function deposit() external payable;\n\n /**\n * @notice Get balance of WETH held by `guy`.\n * @param guy Address to get balance of.\n * @return wad Amount of WETH held by `guy`.\n */\n function balanceOf(address guy) external view returns (uint256 wad);\n\n /**\n * @notice Transfer `wad` of WETH from caller to `guy`.\n * @param guy Address to send WETH to.\n * @param wad Amount of WETH to send.\n * @return ok True if transfer succeeded.\n */\n function transfer(address guy, uint256 wad) external returns (bool);\n}\n"
+ },
+ "contracts/external/uma/core/contracts/common/implementation/MultiCaller.sol": {
+ "content": "// SPDX-License-Identifier: AGPL-3.0-only\npragma solidity ^0.8.0;\n\n// This contract is taken from Uniswap's multi call implementation (https://github.com/Uniswap/uniswap-v3-periphery/blob/main/contracts/base/Multicall.sol)\n// and was modified to be solidity 0.8 compatible. Additionally, the method was restricted to only work with msg.value\n// set to 0 to avoid any nasty attack vectors on function calls that use value sent with deposits.\n\n/// @title MultiCaller\n/// @notice Enables calling multiple methods in a single call to the contract\ncontract MultiCaller {\n function multicall(bytes[] calldata data) external returns (bytes[] memory results) {\n results = new bytes[](data.length);\n for (uint256 i = 0; i < data.length; i++) {\n (bool success, bytes memory result) = address(this).delegatecall(data[i]);\n\n if (!success) {\n // Next 5 lines from https://ethereum.stackexchange.com/a/83577\n if (result.length < 68) revert();\n assembly {\n result := add(result, 0x04)\n }\n revert(abi.decode(result, (string)));\n }\n\n results[i] = result;\n }\n }\n}\n"
+ },
+ "contracts/handlers/MulticallHandler.sol": {
+ "content": "// SPDX-License-Identifier: GPL-3.0-only\npragma solidity ^0.8.0;\n\nimport \"../interfaces/SpokePoolMessageHandler.sol\";\nimport \"@openzeppelin/contracts-v4/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts-v4/token/ERC20/utils/SafeERC20.sol\";\nimport \"@openzeppelin/contracts-v4/utils/Address.sol\";\nimport \"@openzeppelin/contracts-v4/security/ReentrancyGuard.sol\";\n\n/**\n * @title Across Multicall contract that allows a user to specify a series of calls that should be made by the handler\n * via the message field in the deposit.\n * @dev This contract makes the calls blindly. The contract will send any remaining tokens The caller should ensure that the tokens recieved by the handler are completely consumed.\n */\ncontract MulticallHandler is AcrossMessageHandler, ReentrancyGuard {\n using SafeERC20 for IERC20;\n using Address for address payable;\n\n struct Call {\n address target;\n bytes callData;\n uint256 value;\n }\n\n struct Replacement {\n address token;\n uint256 offset;\n }\n\n struct Instructions {\n // Calls that will be attempted.\n Call[] calls;\n // Where the tokens go if any part of the call fails.\n // Leftover tokens are sent here as well if the action succeeds.\n address fallbackRecipient;\n }\n\n // Emitted when one of the calls fails. Note: all calls are reverted in this case.\n event CallsFailed(Call[] calls, address indexed fallbackRecipient);\n\n // Emitted when there are leftover tokens that are sent to the fallbackRecipient.\n event DrainedTokens(address indexed recipient, address indexed token, uint256 indexed amount);\n\n // Errors\n error CallReverted(uint256 index, Call[] calls);\n error NotSelf();\n error InvalidCall(uint256 index, Call[] calls);\n error ReplacementCallFailed(bytes callData);\n error CalldataTooShort(uint256 callDataLength, uint256 offset);\n\n modifier onlySelf() {\n _requireSelf();\n _;\n }\n\n /**\n * @notice Main entrypoint for the handler called by the SpokePool contract.\n * @dev This will execute all calls encoded in the msg. The caller is responsible for making sure all tokens are\n * drained from this contract by the end of the series of calls. If not, they can be stolen.\n * A drainLeftoverTokens call can be included as a way to drain any remaining tokens from this contract.\n * @param message abi encoded array of Call structs, containing a target, callData, and value for each call that\n * the contract should make.\n */\n function handleV3AcrossMessage(address token, uint256, address, bytes memory message) external nonReentrant {\n Instructions memory instructions = abi.decode(message, (Instructions));\n\n // If there is no fallback recipient, call and revert if the inner call fails.\n if (instructions.fallbackRecipient == address(0)) {\n this.attemptCalls(instructions.calls);\n return;\n }\n\n // Otherwise, try the call and send to the fallback recipient if any tokens are leftover.\n (bool success, ) = address(this).call(abi.encodeCall(this.attemptCalls, (instructions.calls)));\n if (!success) emit CallsFailed(instructions.calls, instructions.fallbackRecipient);\n\n // If there are leftover tokens, send them to the fallback recipient regardless of execution success.\n _drainRemainingTokens(token, payable(instructions.fallbackRecipient));\n }\n\n function attemptCalls(Call[] memory calls) external onlySelf {\n uint256 length = calls.length;\n for (uint256 i = 0; i < length; ++i) {\n Call memory call = calls[i];\n\n // If we are calling an EOA with calldata, assume target was incorrectly specified and revert.\n if (call.callData.length > 0 && call.target.code.length == 0) {\n revert InvalidCall(i, calls);\n }\n\n (bool success, ) = call.target.call{ value: call.value }(call.callData);\n if (!success) revert CallReverted(i, calls);\n }\n }\n\n function drainLeftoverTokens(address token, address payable destination) external onlySelf {\n _drainRemainingTokens(token, destination);\n }\n\n function _drainRemainingTokens(address token, address payable destination) internal {\n if (token != address(0)) {\n // ERC20 token.\n uint256 amount = IERC20(token).balanceOf(address(this));\n if (amount > 0) {\n IERC20(token).safeTransfer(destination, amount);\n emit DrainedTokens(destination, token, amount);\n }\n } else {\n // Send native token\n uint256 amount = address(this).balance;\n if (amount > 0) {\n destination.sendValue(amount);\n }\n }\n }\n\n /**\n * @notice Executes a call while replacing specified calldata offsets with current token/native balances.\n * @dev Modifies calldata in-place using OR operations. Target calldata positions must be zeroed out.\n * Cannot handle negative balances, making it incompatible with DEXs requiring negative input amounts.\n * For native balance (token = address(0)), the entire balance is used as call value.\n * @param target The contract address to call\n * @param callData The calldata to execute, with zero values at replacement positions\n * @param value The native token value to send (ignored if native balance replacement is used)\n * @param replacement Array of Replacement structs specifying token addresses and byte offsets for balance injection\n */\n function makeCallWithBalance(\n address target,\n bytes memory callData,\n uint256 value,\n Replacement[] calldata replacement\n ) external onlySelf {\n for (uint256 i = 0; i < replacement.length; i++) {\n uint256 bal = 0;\n if (replacement[i].token != address(0)) {\n bal = IERC20(replacement[i].token).balanceOf(address(this));\n } else {\n bal = address(this).balance;\n\n // If we're using the native balance, we assume that the caller wants to send the full value to the target.\n value = bal;\n }\n\n // + 32 to skip the length of the calldata\n uint256 offset = replacement[i].offset + 32;\n\n // 32 has already been added to the offset, and the replacement value is 32 bytes long, so\n // we don't need to add 32 here. We just directly compare the offset with the length of the calldata.\n if (offset > callData.length) revert CalldataTooShort(callData.length, offset);\n\n assembly (\"memory-safe\") {\n // Get the pointer to the offset that the caller wants to overwrite.\n let ptr := add(callData, offset)\n // Get the current value at the offset.\n let current := mload(ptr)\n // Or the current value with the new value.\n // Reasoning:\n // - caller should 0-out any portion that they want overwritten.\n // - if the caller is representing the balance in a smaller integer, like a uint160 or uint128,\n // the higher bits will be 0 and not overwrite any other data in the calldata assuming\n // the balance is small enough to fit in the smaller integer.\n // - The catch: the smaller integer where they want to store the balance must end no\n // earlier than the 32nd byte in their calldata. Otherwise, this would require a\n // negative offset, which is not possible.\n let val := or(bal, current)\n // Store the new value at the offset.\n mstore(ptr, val)\n }\n }\n\n (bool success, ) = target.call{ value: value }(callData);\n if (!success) revert ReplacementCallFailed(callData);\n }\n\n function _requireSelf() internal view {\n // Must be called by this contract to ensure that this cannot be triggered without the explicit consent of the\n // depositor (for a valid relay).\n if (msg.sender != address(this)) revert NotSelf();\n }\n\n // Used if the caller is trying to unwrap the native token to this contract.\n receive() external payable {}\n}\n"
+ },
+ "contracts/interfaces/HubPoolInterface.sol": {
+ "content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\nimport \"@openzeppelin/contracts-v4/token/ERC20/IERC20.sol\";\n\n/**\n * @notice Concise list of functions in HubPool implementation.\n */\ninterface HubPoolInterface {\n // This leaf is meant to be decoded in the HubPool to rebalance tokens between HubPool and SpokePool.\n struct PoolRebalanceLeaf {\n // This is used to know which chain to send cross-chain transactions to (and which SpokePool to send to).\n uint256 chainId;\n // Total LP fee amount per token in this bundle, encompassing all associated bundled relays.\n uint256[] bundleLpFees;\n // Represents the amount to push to or pull from the SpokePool. If +, the pool pays the SpokePool. If negative\n // the SpokePool pays the HubPool. There can be arbitrarily complex rebalancing rules defined offchain. This\n // number is only nonzero when the rules indicate that a rebalancing action should occur. When a rebalance does\n // occur, runningBalances must be set to zero for this token and netSendAmounts should be set to the previous\n // runningBalances + relays - deposits in this bundle. If non-zero then it must be set on the SpokePool's\n // RelayerRefundLeaf amountToReturn as -1 * this value to show if funds are being sent from or to the SpokePool.\n int256[] netSendAmounts;\n // This is only here to be emitted in an event to track a running unpaid balance between the L2 pool and the L1\n // pool. A positive number indicates that the HubPool owes the SpokePool funds. A negative number indicates that\n // the SpokePool owes the HubPool funds. See the comment above for the dynamics of this and netSendAmounts.\n int256[] runningBalances;\n // Used by data worker to mark which leaves should relay roots to SpokePools, and to otherwise organize leaves.\n // For example, each leaf should contain all the rebalance information for a single chain, but in the case where\n // the list of l1Tokens is very large such that they all can't fit into a single leaf that can be executed under\n // the block gas limit, then the data worker can use this groupIndex to organize them. Any leaves with\n // a groupIndex equal to 0 will relay roots to the SpokePool, so the data worker should ensure that only one\n // leaf for a specific chainId should have a groupIndex equal to 0.\n uint256 groupIndex;\n // Used as the index in the bitmap to track whether this leaf has been executed or not.\n uint8 leafId;\n // The bundleLpFees, netSendAmounts, and runningBalances are required to be the same length. They are parallel\n // arrays for the given chainId and should be ordered by the l1Tokens field. All whitelisted tokens with nonzero\n // relays on this chain in this bundle in the order of whitelisting.\n address[] l1Tokens;\n }\n\n // A data worker can optimistically store several merkle roots on this contract by staking a bond and calling\n // proposeRootBundle. By staking a bond, the data worker is alleging that the merkle roots all contain valid leaves\n // that can be executed later to:\n // - Send funds from this contract to a SpokePool or vice versa\n // - Send funds from a SpokePool to Relayer as a refund for a relayed deposit\n // - Send funds from a SpokePool to a deposit recipient to fulfill a \"slow\" relay\n // Anyone can dispute this struct if the merkle roots contain invalid leaves before the\n // challengePeriodEndTimestamp. Once the expiration timestamp is passed, executeRootBundle to execute a leaf\n // from the poolRebalanceRoot on this contract and it will simultaneously publish the relayerRefundRoot and\n // slowRelayRoot to a SpokePool. The latter two roots, once published to the SpokePool, contain\n // leaves that can be executed on the SpokePool to pay relayers or recipients.\n struct RootBundle {\n // Contains leaves instructing this contract to send funds to SpokePools.\n bytes32 poolRebalanceRoot;\n // Relayer refund merkle root to be published to a SpokePool.\n bytes32 relayerRefundRoot;\n // Slow relay merkle root to be published to a SpokePool.\n bytes32 slowRelayRoot;\n // This is a 1D bitmap, with max size of 256 elements, limiting us to 256 chainsIds.\n uint256 claimedBitMap;\n // Proposer of this root bundle.\n address proposer;\n // Number of pool rebalance leaves to execute in the poolRebalanceRoot. After this number\n // of leaves are executed, a new root bundle can be proposed\n uint8 unclaimedPoolRebalanceLeafCount;\n // When root bundle challenge period passes and this root bundle becomes executable.\n uint32 challengePeriodEndTimestamp;\n }\n\n // Each whitelisted L1 token has an associated pooledToken struct that contains all information used to track the\n // cumulative LP positions and if this token is enabled for deposits.\n struct PooledToken {\n // LP token given to LPs of a specific L1 token.\n address lpToken;\n // True if accepting new LP's.\n bool isEnabled;\n // Timestamp of last LP fee update.\n uint32 lastLpFeeUpdate;\n // Number of LP funds sent via pool rebalances to SpokePools and are expected to be sent\n // back later.\n int256 utilizedReserves;\n // Number of LP funds held in contract less utilized reserves.\n uint256 liquidReserves;\n // Number of LP funds reserved to pay out to LPs as fees.\n uint256 undistributedLpFees;\n }\n\n // Helper contracts to facilitate cross chain actions between HubPool and SpokePool for a specific network.\n struct CrossChainContract {\n address adapter;\n address spokePool;\n }\n\n function setPaused(bool pause) external;\n\n function emergencyDeleteProposal() external;\n\n function relaySpokePoolAdminFunction(uint256 chainId, bytes memory functionData) external;\n\n function setProtocolFeeCapture(address newProtocolFeeCaptureAddress, uint256 newProtocolFeeCapturePct) external;\n\n function setBond(IERC20 newBondToken, uint256 newBondAmount) external;\n\n function setLiveness(uint32 newLiveness) external;\n\n function setIdentifier(bytes32 newIdentifier) external;\n\n function setCrossChainContracts(uint256 l2ChainId, address adapter, address spokePool) external;\n\n function enableL1TokenForLiquidityProvision(address l1Token) external;\n\n function disableL1TokenForLiquidityProvision(address l1Token) external;\n\n function addLiquidity(address l1Token, uint256 l1TokenAmount) external payable;\n\n function removeLiquidity(address l1Token, uint256 lpTokenAmount, bool sendEth) external;\n\n function exchangeRateCurrent(address l1Token) external returns (uint256);\n\n function liquidityUtilizationCurrent(address l1Token) external returns (uint256);\n\n function liquidityUtilizationPostRelay(address l1Token, uint256 relayedAmount) external returns (uint256);\n\n function sync(address l1Token) external;\n\n function proposeRootBundle(\n uint256[] memory bundleEvaluationBlockNumbers,\n uint8 poolRebalanceLeafCount,\n bytes32 poolRebalanceRoot,\n bytes32 relayerRefundRoot,\n bytes32 slowRelayRoot\n ) external;\n\n function executeRootBundle(\n uint256 chainId,\n uint256 groupIndex,\n uint256[] memory bundleLpFees,\n int256[] memory netSendAmounts,\n int256[] memory runningBalances,\n uint8 leafId,\n address[] memory l1Tokens,\n bytes32[] memory proof\n ) external;\n\n function disputeRootBundle() external;\n\n function claimProtocolFeesCaptured(address l1Token) external;\n\n function setPoolRebalanceRoute(uint256 destinationChainId, address l1Token, address destinationToken) external;\n\n function setDepositRoute(\n uint256 originChainId,\n uint256 destinationChainId,\n address originToken,\n bool depositsEnabled\n ) external;\n\n function poolRebalanceRoute(\n uint256 destinationChainId,\n address l1Token\n ) external view returns (address destinationToken);\n\n function loadEthForL2Calls() external payable;\n}\n"
+ },
+ "contracts/interfaces/IOFT.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\n/**\n * @notice This file contains minimal copies of relevant structs / interfaces for OFT bridging. Source code link:\n * https://github.com/LayerZero-Labs/LayerZero-v2/blob/9a4049ae3a374e1c0ef01ac9fb53dd83f4257a68/packages/layerzero-v2/evm/oapp/contracts/oft/interfaces/IOFT.sol\n * It's also published as a part of an npm package: @layerzerolabs/oft-evm. The published code is incompatible with\n * our compiler version requirements, so we copy it here instead\n */\n\nstruct MessagingReceipt {\n bytes32 guid;\n uint64 nonce;\n MessagingFee fee;\n}\n\nstruct MessagingFee {\n uint256 nativeFee;\n uint256 lzTokenFee;\n}\n\n/**\n * @dev Struct representing token parameters for the OFT send() operation.\n */\nstruct SendParam {\n uint32 dstEid; // Destination endpoint ID.\n bytes32 to; // Recipient address.\n uint256 amountLD; // Amount to send in local decimals.\n uint256 minAmountLD; // Minimum amount to send in local decimals.\n bytes extraOptions; // Additional options supplied by the caller to be used in the LayerZero message.\n bytes composeMsg; // The composed message for the send() operation.\n bytes oftCmd; // The OFT command to be executed, unused in default OFT implementations.\n}\n\n/**\n * @dev Struct representing OFT receipt information.\n */\nstruct OFTReceipt {\n uint256 amountSentLD; // Amount of tokens ACTUALLY debited from the sender in local decimals.\n // @dev In non-default implementations, the amountReceivedLD COULD differ from this value.\n uint256 amountReceivedLD; // Amount of tokens to be received on the remote side.\n}\n\n/**\n * @title IOFT\n * @dev Interface for the OftChain (OFT) token.\n * @dev Does not inherit ERC20 to accommodate usage by OFTAdapter as well.\n * @dev This specific interface ID is '0x02e49c2c'.\n */\ninterface IOFT {\n /**\n * @notice Retrieves the address of the token associated with the OFT.\n * @return token The address of the ERC20 token implementation.\n */\n function token() external view returns (address);\n\n /**\n * @notice Provides a quote for the send() operation.\n * @param _sendParam The parameters for the send() operation.\n * @param _payInLzToken Flag indicating whether the caller is paying in the LZ token.\n * @return fee The calculated LayerZero messaging fee from the send() operation.\n *\n * @dev MessagingFee: LayerZero msg fee\n * - nativeFee: The native fee.\n * - lzTokenFee: The lzToken fee.\n */\n function quoteSend(SendParam calldata _sendParam, bool _payInLzToken) external view returns (MessagingFee memory);\n\n /**\n * @notice Executes the send() operation.\n * @param _sendParam The parameters for the send operation.\n * @param _fee The fee information supplied by the caller.\n * - nativeFee: The native fee.\n * - lzTokenFee: The lzToken fee.\n * @param _refundAddress The address to receive any excess funds from fees etc. on the src.\n * @return receipt The LayerZero messaging receipt from the send() operation.\n * @return oftReceipt The OFT receipt information.\n *\n * @dev MessagingReceipt: LayerZero msg receipt\n * - guid: The unique identifier for the sent message.\n * - nonce: The nonce of the sent message.\n * - fee: The LayerZero fee incurred for the message.\n */\n function send(\n SendParam calldata _sendParam,\n MessagingFee calldata _fee,\n address _refundAddress\n ) external payable returns (MessagingReceipt memory, OFTReceipt memory);\n}\n"
+ },
+ "contracts/interfaces/SpokePoolInterface.sol": {
+ "content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\n/**\n * @notice Contains common data structures and functions used by all SpokePool implementations.\n */\ninterface SpokePoolInterface {\n // This leaf is meant to be decoded in the SpokePool to pay out successful relayers.\n struct RelayerRefundLeaf {\n // This is the amount to return to the HubPool. This occurs when there is a PoolRebalanceLeaf netSendAmount that\n // is negative. This is just the negative of this value.\n uint256 amountToReturn;\n // Used to verify that this is being executed on the correct destination chainId.\n uint256 chainId;\n // This array designates how much each of those addresses should be refunded.\n uint256[] refundAmounts;\n // Used as the index in the bitmap to track whether this leaf has been executed or not.\n uint32 leafId;\n // The associated L2TokenAddress that these claims apply to.\n address l2TokenAddress;\n // Must be same length as refundAmounts and designates each address that must be refunded.\n address[] refundAddresses;\n }\n\n // Stores collection of merkle roots that can be published to this contract from the HubPool, which are referenced\n // by \"data workers\" via inclusion proofs to execute leaves in the roots.\n struct RootBundle {\n // Merkle root of slow relays that were not fully filled and whose recipient is still owed funds from the LP pool.\n bytes32 slowRelayRoot;\n // Merkle root of relayer refunds for successful relays.\n bytes32 relayerRefundRoot;\n // This is a 2D bitmap tracking which leaves in the relayer refund root have been claimed, with max size of\n // 256x(2^248) leaves per root.\n mapping(uint256 => uint256) claimedBitmap;\n }\n\n function setCrossDomainAdmin(address newCrossDomainAdmin) external;\n\n function setWithdrawalRecipient(address newWithdrawalRecipient) external;\n\n function pauseDeposits(bool pause) external;\n\n function pauseFills(bool pause) external;\n\n function relayRootBundle(bytes32 relayerRefundRoot, bytes32 slowRelayRoot) external;\n\n function emergencyDeleteRootBundle(uint256 rootBundleId) external;\n\n function depositDeprecated_5947912356(\n address recipient,\n address originToken,\n uint256 amount,\n uint256 destinationChainId,\n int64 relayerFeePct,\n uint32 quoteTimestamp,\n bytes memory message,\n uint256 maxCount\n ) external payable;\n\n function depositFor(\n address depositor,\n address recipient,\n address originToken,\n uint256 amount,\n uint256 destinationChainId,\n int64 relayerFeePct,\n uint32 quoteTimestamp,\n bytes memory message,\n uint256 maxCount\n ) external payable;\n\n function executeRelayerRefundLeaf(\n uint32 rootBundleId,\n SpokePoolInterface.RelayerRefundLeaf memory relayerRefundLeaf,\n bytes32[] memory proof\n ) external payable;\n\n function chainId() external view returns (uint256);\n\n error NotEOA();\n error InvalidDepositorSignature();\n error InvalidRelayerFeePct();\n error MaxTransferSizeExceeded();\n error InvalidCrossDomainAdmin();\n error InvalidWithdrawalRecipient();\n error DepositsArePaused();\n error FillsArePaused();\n error ExternalCallExecutionFailed();\n error MessageTooShort();\n error ZeroAddressTarget();\n}\n"
+ },
+ "contracts/interfaces/SpokePoolMessageHandler.sol": {
+ "content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\n// This interface is expected to be implemented by any contract that expects to receive messages from the SpokePool.\ninterface AcrossMessageHandler {\n function handleV3AcrossMessage(\n address tokenSent,\n uint256 amount,\n address relayer,\n bytes memory message\n ) external;\n}\n"
+ },
+ "contracts/interfaces/SpokePoolPeripheryInterface.sol": {
+ "content": "//SPDX-License-Identifier: Unlicense\npragma solidity ^0.8.0;\n\nimport { IERC20 } from \"@openzeppelin/contracts-v4/token/ERC20/IERC20.sol\";\nimport { IERC20Permit } from \"@openzeppelin/contracts-v4/token/ERC20/extensions/IERC20Permit.sol\";\nimport { IPermit2 } from \"../external/interfaces/IPermit2.sol\";\n\n/**\n * @title SpokePoolPeriphery\n * @notice Contract for performing more complex interactions with an Across spoke pool deployment.\n * @custom:security-contact bugs@across.to\n */\ninterface SpokePoolPeripheryInterface {\n // Enum describing the method of transferring tokens to an exchange.\n enum TransferType {\n // Approve the exchange so that it may transfer tokens from this contract.\n Approval, // 0\n // Transfer tokens to the exchange before calling it in this contract.\n Transfer, // 1\n // Approve the exchange by authorizing a transfer with Permit2.\n Permit2Approval // 2\n }\n\n // Submission fees can be set by user to pay whoever submits the transaction in a gasless flow.\n // These are assumed to be in the same currency that is input into the contract.\n struct Fees {\n // Amount of fees to pay recipient for submitting transaction.\n uint256 amount;\n // Recipient of fees amount.\n address recipient;\n }\n\n // Params we'll need caller to pass in to specify an Across Deposit. The input token will be swapped into first\n // before submitting a bridge deposit, which is why we don't include the input token amount as it is not known\n // until after the swap.\n struct BaseDepositData {\n // Token deposited on origin chain.\n address inputToken;\n // Token received on destination chain.\n bytes32 outputToken;\n // Amount of output token to be received by recipient.\n uint256 outputAmount;\n // The account credited with deposit who can submit speedups to the Across deposit.\n address depositor;\n // The account that will receive the output token on the destination chain. If the output token is\n // wrapped native token, then if this is an EOA then they will receive native token on the destination\n // chain and if this is a contract then they will receive an ERC20.\n bytes32 recipient;\n // The destination chain identifier.\n uint256 destinationChainId;\n // The account that can exclusively fill the deposit before the exclusivity parameter.\n bytes32 exclusiveRelayer;\n // Timestamp of the deposit used by system to charge fees. Must be within short window of time into the past\n // relative to this chain's current time or deposit will revert.\n uint32 quoteTimestamp;\n // The timestamp on the destination chain after which this deposit can no longer be filled.\n uint32 fillDeadline;\n // The timestamp or offset on the destination chain after which anyone can fill the deposit. A detailed description on\n // how the parameter is interpreted by the V3 spoke pool can be found at https://github.com/across-protocol/contracts/blob/fa67f5e97eabade68c67127f2261c2d44d9b007e/contracts/SpokePool.sol#L476\n uint32 exclusivityParameter;\n // Data that is forwarded to the recipient if the recipient is a contract.\n bytes message;\n }\n\n // Minimum amount of parameters needed to perform a swap on an exchange specified. We include information beyond just the router calldata\n // and exchange address so that we may ensure that the swap was performed properly.\n struct SwapAndDepositData {\n // Amount of fees to pay for submitting transaction. Unused in gasful flows.\n Fees submissionFees;\n // Deposit data to use when interacting with the Across spoke pool.\n BaseDepositData depositData;\n // Token to swap.\n address swapToken;\n // Address of the exchange to use in the swap.\n address exchange;\n // Method of transferring tokens to the exchange.\n TransferType transferType;\n // Amount of the token to swap on the exchange.\n uint256 swapTokenAmount;\n // Minimum output amount of the exchange, and, by extension, the minimum required amount to deposit into an Across spoke pool.\n uint256 minExpectedInputTokenAmount;\n // The calldata to use when calling the exchange.\n bytes routerCalldata;\n // When enabled (true), if the swap returns more tokens than minExpectedInputTokenAmount,\n // the outputAmount will be increased proportionally.\n // When disabled (false), the original outputAmount is used regardless of how many tokens are returned.\n bool enableProportionalAdjustment;\n // Address of the SpokePool to use for depositing tokens after swap.\n address spokePool;\n // User nonce to prevent replay attacks.\n uint256 nonce;\n }\n\n // Extended deposit data to be used specifically for signing off on periphery deposits.\n struct DepositData {\n // Amount of fees to pay for submitting transaction. Unused in gasful flows.\n Fees submissionFees;\n // Deposit data describing the parameters for the V3 Across deposit.\n BaseDepositData baseDepositData;\n // The precise input amount to deposit into the spoke pool.\n uint256 inputAmount;\n // Address of the SpokePool to use for depositing tokens.\n address spokePool;\n // User nonce to prevent replay attacks.\n uint256 nonce;\n }\n\n /**\n * @notice Passthrough function to `depositV3()` on the SpokePool contract for native token deposits.\n * @dev Protects the caller from losing their ETH (or other native token) by reverting if the SpokePool address\n * they intended to call does not exist on this chain. Because this contract can be deployed at the same address\n * everywhere callers should be protected even if the transaction is submitted to an unintended network.\n * This contract should only be used for native token deposits, as this problem only exists for native tokens.\n * @param recipient Address (as bytes32) to receive funds on destination chain.\n * @param inputToken Token to lock into this contract to initiate deposit.\n * @param inputAmount Amount of tokens to deposit.\n * @param outputAmount Amount of tokens to receive on destination chain.\n * @param destinationChainId Denotes network where user will receive funds from SpokePool by a relayer.\n * @param quoteTimestamp Timestamp used by relayers to compute this deposit's realizedLPFeePct which is paid\n * to LP pool on HubPool.\n * @param message Arbitrary data that can be used to pass additional information to the recipient along with the tokens.\n * Note: this is intended to be used to pass along instructions for how a contract should use or allocate the tokens.\n * @param exclusiveRelayer Address (as bytes32) of the relayer who has exclusive rights to fill this deposit. Can be set to\n * 0x0 if no period is desired. If so, then must set exclusivityParameter to 0.\n * @param exclusivityParameter Timestamp or offset, after which any relayer can fill this deposit. Must set\n * to 0 if exclusiveRelayer is set to 0x0, and vice versa.\n * @param fillDeadline Timestamp after which this deposit can no longer be filled.\n */\n function depositNative(\n address spokePool,\n bytes32 recipient,\n address inputToken,\n uint256 inputAmount,\n bytes32 outputToken,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityParameter,\n bytes memory message\n ) external payable;\n\n /**\n * @notice Swaps tokens on this chain via specified router before submitting Across deposit atomically.\n * Caller can specify their slippage tolerance for the swap and Across deposit params.\n * @dev If msg.value is sent, the swapToken in swapAndDepositData must implement the WETH9 interface for wrapping native tokens.\n * @param swapAndDepositData Specifies the data needed to perform a swap on a generic exchange.\n */\n function swapAndBridge(SwapAndDepositData calldata swapAndDepositData) external payable;\n\n /**\n * @notice Swaps an EIP-2612 token on this chain via specified router before submitting Across deposit atomically.\n * Caller can specify their slippage tolerance for the swap and Across deposit params.\n * @dev If the swapToken does not implement `permit` to the specifications of EIP-2612, the permit call result will be ignored and the function will continue.\n * @dev If the swapToken in swapData does not implement `permit` to the specifications of EIP-2612, this function will fail.\n * @dev The nonce for the swapAndDepositData signature must be retrieved from permitNonces(signatureOwner).\n * @dev Design Decision: We use separate nonce tracking for permit-based functions versus\n * receiveWithAuthorization-based functions, which creates a theoretical replay attack that we think is\n * incredibly unlikely because this would require:\n * 1. A token implementing both ERC-2612 and ERC-3009\n * 2. A user using the same nonces for swapAndBridgeWithPermit and for swapAndBridgeWithAuthorization\n * 3. Issuing these signatures within a short amount of time (limited by fillDeadlineBuffer)\n * @param signatureOwner The owner of the permit signature and swapAndDepositData signature. Assumed to be the depositor for the Across spoke pool.\n * @param swapAndDepositData Specifies the params we need to perform a swap on a generic exchange.\n * @param deadline Deadline before which the permit signature is valid.\n * @param permitSignature Permit signature encoded as (bytes32 r, bytes32 s, uint8 v).\n * @param swapAndDepositDataSignature The signature against the input swapAndDepositData encoded as (bytes32 r, bytes32 s, uint8 v).\n */\n function swapAndBridgeWithPermit(\n address signatureOwner,\n SwapAndDepositData calldata swapAndDepositData,\n uint256 deadline,\n bytes calldata permitSignature,\n bytes calldata swapAndDepositDataSignature\n ) external;\n\n /**\n * @notice Uses permit2 to transfer tokens from a user before swapping a token on this chain via specified router and submitting an Across deposit atomically.\n * Caller can specify their slippage tolerance for the swap and Across deposit params.\n * @dev This function assumes the caller has properly set an allowance for the permit2 contract on this network.\n * @dev This function assumes that the amount of token to be swapped is equal to the amount of the token to be received from permit2.\n * @param signatureOwner The owner of the permit2 signature and depositor for the Across spoke pool.\n * @param swapAndDepositData Specifies the params we need to perform a swap on a generic exchange.\n * @param permit The permit data signed over by the owner.\n * @param signature The permit2 signature to verify against the deposit data.\n */\n function swapAndBridgeWithPermit2(\n address signatureOwner,\n SwapAndDepositData calldata swapAndDepositData,\n IPermit2.PermitTransferFrom calldata permit,\n bytes calldata signature\n ) external;\n\n /**\n * @notice Swaps an EIP-3009 token on this chain via specified router before submitting Across deposit atomically.\n * Caller can specify their slippage tolerance for the swap and Across deposit params.\n * @dev If swapToken does not implement `receiveWithAuthorization` to the specifications of EIP-3009, this call will revert.\n * @dev The nonce for the receiveWithAuthorization signature should match the nonce in the SwapAndDepositData.\n * This nonce is managed by the ERC-3009 token contract.\n * @param signatureOwner The owner of the EIP3009 signature and swapAndDepositData signature. Assumed to be the depositor for the Across spoke pool.\n * @param swapAndDepositData Specifies the params we need to perform a swap on a generic exchange.\n * @param validAfter The unix time after which the `receiveWithAuthorization` signature is valid.\n * @param validBefore The unix time before which the `receiveWithAuthorization` signature is valid.\n * @param receiveWithAuthSignature EIP3009 signature encoded as (bytes32 r, bytes32 s, uint8 v).\n * @param swapAndDepositDataSignature The signature against the input swapAndDepositData encoded as (bytes32 r, bytes32 s, uint8 v).\n */\n function swapAndBridgeWithAuthorization(\n address signatureOwner,\n SwapAndDepositData calldata swapAndDepositData,\n uint256 validAfter,\n uint256 validBefore,\n bytes calldata receiveWithAuthSignature,\n bytes calldata swapAndDepositDataSignature\n ) external;\n\n /**\n * @notice Deposits an EIP-2612 token Across input token into the Spoke Pool contract.\n * @dev If the token does not implement `permit` to the specifications of EIP-2612, the permit call result will be ignored and the function will continue.\n * @dev If `acrossInputToken` does not implement `permit` to the specifications of EIP-2612, this function will fail.\n * @dev The nonce for the depositData signature must be retrieved from permitNonces(signatureOwner).\n * @dev Design Decision: We use separate nonce tracking for permit-based functions versus\n * receiveWithAuthorization-based functions, which creates a theoretical replay attack that we think is\n * incredibly unlikely because this would require:\n * 1. A token implementing both ERC-2612 and ERC-3009\n * 2. A user using the same nonces for depositWithPermit and for depositWithAuthorization\n * 3. Issuing these signatures within a short amount of time (limited by fillDeadlineBuffer)\n * @param signatureOwner The owner of the permit signature and depositData signature. Assumed to be the depositor for the Across spoke pool.\n * @param depositData Specifies the Across deposit params to send.\n * @param deadline Deadline before which the permit signature is valid.\n * @param permitSignature Permit signature encoded as (bytes32 r, bytes32 s, uint8 v).\n * @param depositDataSignature The signature against the input depositData encoded as (bytes32 r, bytes32 s, uint8 v).\n */\n function depositWithPermit(\n address signatureOwner,\n DepositData calldata depositData,\n uint256 deadline,\n bytes calldata permitSignature,\n bytes calldata depositDataSignature\n ) external;\n\n /**\n * @notice Uses permit2 to transfer and submit an Across deposit to the Spoke Pool contract.\n * @dev This function assumes the caller has properly set an allowance for the permit2 contract on this network.\n * @dev This function assumes that the amount of token to be swapped is equal to the amount of the token to be received from permit2.\n * @param signatureOwner The owner of the permit2 signature and depositor for the Across spoke pool.\n * @param depositData Specifies the Across deposit params we'll send after the swap.\n * @param permit The permit data signed over by the owner.\n * @param signature The permit2 signature to verify against the deposit data.\n */\n function depositWithPermit2(\n address signatureOwner,\n DepositData calldata depositData,\n IPermit2.PermitTransferFrom calldata permit,\n bytes calldata signature\n ) external;\n\n /**\n * @notice Deposits an EIP-3009 compliant Across input token into the Spoke Pool contract.\n * @dev If `acrossInputToken` does not implement `receiveWithAuthorization` to the specifications of EIP-3009, this call will revert.\n * @dev The nonce for the receiveWithAuthorization signature should match the nonce in the DepositData.\n * This nonce is managed by the ERC-3009 token contract.\n * @param signatureOwner The owner of the EIP3009 signature and depositData signature. Assumed to be the depositor for the Across spoke pool.\n * @param depositData Specifies the Across deposit params to send.\n * @param validAfter The unix time after which the `receiveWithAuthorization` signature is valid.\n * @param validBefore The unix time before which the `receiveWithAuthorization` signature is valid.\n * @param receiveWithAuthSignature EIP3009 signature encoded as (bytes32 r, bytes32 s, uint8 v).\n * @param depositDataSignature The signature against the input depositData encoded as (bytes32 r, bytes32 s, uint8 v).\n */\n function depositWithAuthorization(\n address signatureOwner,\n DepositData calldata depositData,\n uint256 validAfter,\n uint256 validBefore,\n bytes calldata receiveWithAuthSignature,\n bytes calldata depositDataSignature\n ) external;\n\n /**\n * @notice Returns the current permit nonce for a user.\n * @param user The user whose nonce to return.\n * @return The current permit nonce for the user.\n */\n function permitNonces(address user) external view returns (uint256);\n}\n"
+ },
+ "contracts/interfaces/V3SpokePoolInterface.sol": {
+ "content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\n// Contains structs and functions used by SpokePool contracts to facilitate universal settlement.\ninterface V3SpokePoolInterface {\n /**************************************\n * ENUMS *\n **************************************/\n\n // Fill status tracks on-chain state of deposit, uniquely identified by relayHash.\n enum FillStatus {\n Unfilled,\n RequestedSlowFill,\n Filled\n }\n // Fill type is emitted in the FilledRelay event to assist Dataworker with determining which types of\n // fills to refund (e.g. only fast fills) and whether a fast fill created a sow fill excess.\n enum FillType {\n FastFill,\n // Fast fills are normal fills that do not replace a slow fill request.\n ReplacedSlowFill,\n // Replaced slow fills are fast fills that replace a slow fill request. This type is used by the Dataworker\n // to know when to send excess funds from the SpokePool to the HubPool because they can no longer be used\n // for a slow fill execution.\n SlowFill\n }\n // Slow fills are requested via requestSlowFill and executed by executeSlowRelayLeaf after a bundle containing\n // the slow fill is validated.\n\n /**************************************\n * STRUCTS *\n **************************************/\n\n // This struct represents the data to fully specify a **unique** relay submitted on this chain.\n // This data is hashed with the chainId() and saved by the SpokePool to prevent collisions and protect against\n // replay attacks on other chains. If any portion of this data differs, the relay is considered to be\n // completely distinct.\n struct V3RelayData {\n // The bytes32 that made the deposit on the origin chain.\n bytes32 depositor;\n // The recipient bytes32 on the destination chain.\n bytes32 recipient;\n // This is the exclusive relayer who can fill the deposit before the exclusivity deadline.\n bytes32 exclusiveRelayer;\n // Token that is deposited on origin chain by depositor.\n bytes32 inputToken;\n // Token that is received on destination chain by recipient.\n bytes32 outputToken;\n // The amount of input token deposited by depositor.\n uint256 inputAmount;\n // The amount of output token to be received by recipient.\n uint256 outputAmount;\n // Origin chain id.\n uint256 originChainId;\n // The id uniquely identifying this deposit on the origin chain.\n uint256 depositId;\n // The timestamp on the destination chain after which this deposit can no longer be filled.\n uint32 fillDeadline;\n // The timestamp on the destination chain after which any relayer can fill the deposit.\n uint32 exclusivityDeadline;\n // Data that is forwarded to the recipient.\n bytes message;\n }\n\n // Same as V3RelayData but using addresses instead of bytes32 & depositId is uint32.\n // Will be deprecated in favor of V3RelayData in the future.\n struct V3RelayDataLegacy {\n address depositor;\n address recipient;\n address exclusiveRelayer;\n address inputToken;\n address outputToken;\n uint256 inputAmount;\n uint256 outputAmount;\n uint256 originChainId;\n uint32 depositId;\n uint32 fillDeadline;\n uint32 exclusivityDeadline;\n bytes message;\n }\n\n // Contains parameters passed in by someone who wants to execute a slow relay leaf.\n struct V3SlowFill {\n V3RelayData relayData;\n uint256 chainId;\n uint256 updatedOutputAmount;\n }\n\n // Contains information about a relay to be sent along with additional information that is not unique to the\n // relay itself but is required to know how to process the relay. For example, \"updatedX\" fields can be used\n // by the relayer to modify fields of the relay with the depositor's permission, and \"repaymentChainId\" is specified\n // by the relayer to determine where to take a relayer refund, but doesn't affect the uniqueness of the relay.\n struct V3RelayExecutionParams {\n V3RelayData relay;\n bytes32 relayHash;\n uint256 updatedOutputAmount;\n bytes32 updatedRecipient;\n bytes updatedMessage;\n uint256 repaymentChainId;\n }\n\n // Packs together parameters emitted in FilledRelay because there are too many emitted otherwise.\n // Similar to V3RelayExecutionParams, these parameters are not used to uniquely identify the deposit being\n // filled so they don't have to be unpacked by all clients.\n struct V3RelayExecutionEventInfo {\n bytes32 updatedRecipient;\n bytes32 updatedMessageHash;\n uint256 updatedOutputAmount;\n FillType fillType;\n }\n\n // Represents the parameters required for a V3 deposit operation in the SpokePool.\n struct DepositV3Params {\n bytes32 depositor;\n bytes32 recipient;\n bytes32 inputToken;\n bytes32 outputToken;\n uint256 inputAmount;\n uint256 outputAmount;\n uint256 destinationChainId;\n bytes32 exclusiveRelayer;\n uint256 depositId;\n uint32 quoteTimestamp;\n uint32 fillDeadline;\n uint32 exclusivityParameter;\n bytes message;\n }\n\n /**************************************\n * EVENTS *\n **************************************/\n\n event FundsDeposited(\n bytes32 inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 indexed destinationChainId,\n uint256 indexed depositId,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityDeadline,\n bytes32 indexed depositor,\n bytes32 recipient,\n bytes32 exclusiveRelayer,\n bytes message\n );\n\n event RequestedSpeedUpDeposit(\n uint256 updatedOutputAmount,\n uint256 indexed depositId,\n bytes32 indexed depositor,\n bytes32 updatedRecipient,\n bytes updatedMessage,\n bytes depositorSignature\n );\n\n event FilledRelay(\n bytes32 inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 repaymentChainId,\n uint256 indexed originChainId,\n uint256 indexed depositId,\n uint32 fillDeadline,\n uint32 exclusivityDeadline,\n bytes32 exclusiveRelayer,\n bytes32 indexed relayer,\n bytes32 depositor,\n bytes32 recipient,\n bytes32 messageHash,\n V3RelayExecutionEventInfo relayExecutionInfo\n );\n\n event RequestedSlowFill(\n bytes32 inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 indexed originChainId,\n uint256 indexed depositId,\n uint32 fillDeadline,\n uint32 exclusivityDeadline,\n bytes32 exclusiveRelayer,\n bytes32 depositor,\n bytes32 recipient,\n bytes32 messageHash\n );\n\n event ClaimedRelayerRefund(\n bytes32 indexed l2TokenAddress,\n bytes32 indexed refundAddress,\n uint256 amount,\n address indexed caller\n );\n\n /**************************************\n * FUNCTIONS *\n **************************************/\n\n function deposit(\n bytes32 depositor,\n bytes32 recipient,\n bytes32 inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityDeadline,\n bytes calldata message\n ) external payable;\n\n function depositV3(\n address depositor,\n address recipient,\n address inputToken,\n address outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n address exclusiveRelayer,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityDeadline,\n bytes calldata message\n ) external payable;\n\n function depositNow(\n bytes32 depositor,\n bytes32 recipient,\n bytes32 inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint32 fillDeadlineOffset,\n uint32 exclusivityDeadline,\n bytes calldata message\n ) external payable;\n\n function depositV3Now(\n address depositor,\n address recipient,\n address inputToken,\n address outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n address exclusiveRelayer,\n uint32 fillDeadlineOffset,\n uint32 exclusivityDeadline,\n bytes calldata message\n ) external payable;\n\n function unsafeDeposit(\n bytes32 depositor,\n bytes32 recipient,\n bytes32 inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint256 depositNonce,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityParameter,\n bytes calldata message\n ) external payable;\n\n function speedUpDeposit(\n bytes32 depositor,\n uint256 depositId,\n uint256 updatedOutputAmount,\n bytes32 updatedRecipient,\n bytes calldata updatedMessage,\n bytes calldata depositorSignature\n ) external;\n\n function speedUpV3Deposit(\n address depositor,\n uint256 depositId,\n uint256 updatedOutputAmount,\n address updatedRecipient,\n bytes calldata updatedMessage,\n bytes calldata depositorSignature\n ) external;\n\n function fillRelay(\n V3RelayData calldata relayData,\n uint256 repaymentChainId,\n bytes32 repaymentAddress\n ) external;\n\n function fillV3Relay(V3RelayDataLegacy calldata relayData, uint256 repaymentChainId) external;\n\n function fillRelayWithUpdatedDeposit(\n V3RelayData calldata relayData,\n uint256 repaymentChainId,\n bytes32 repaymentAddress,\n uint256 updatedOutputAmount,\n bytes32 updatedRecipient,\n bytes calldata updatedMessage,\n bytes calldata depositorSignature\n ) external;\n\n function requestSlowFill(V3RelayData calldata relayData) external;\n\n function executeSlowRelayLeaf(\n V3SlowFill calldata slowFillLeaf,\n uint32 rootBundleId,\n bytes32[] calldata proof\n ) external;\n\n function claimRelayerRefund(bytes32 l2TokenAddress, bytes32 refundAddress) external;\n\n /**************************************\n * ERRORS *\n **************************************/\n\n error DisabledRoute();\n error InvalidQuoteTimestamp();\n error InvalidFillDeadline();\n error InvalidExclusiveRelayer();\n error MsgValueDoesNotMatchInputAmount();\n error NotExclusiveRelayer();\n error NoSlowFillsInExclusivityWindow();\n error RelayFilled();\n error InvalidSlowFillRequest();\n error ExpiredFillDeadline();\n error InvalidMerkleProof();\n error InvalidChainId();\n error InvalidMerkleLeaf();\n error ClaimedMerkleLeaf();\n error InvalidPayoutAdjustmentPct();\n error WrongERC7683OrderId();\n error LowLevelCallFailed(bytes data);\n error InsufficientSpokePoolBalanceToExecuteLeaf();\n error NoRelayerRefundToClaim();\n\n /**************************************\n * LEGACY EVENTS *\n **************************************/\n\n // Note: these events are unused, but included in the ABI for ease of migration.\n event V3FundsDeposited(\n address inputToken,\n address outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 indexed destinationChainId,\n uint32 indexed depositId,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityDeadline,\n address indexed depositor,\n address recipient,\n address exclusiveRelayer,\n bytes message\n );\n\n event RequestedSpeedUpV3Deposit(\n uint256 updatedOutputAmount,\n uint32 indexed depositId,\n address indexed depositor,\n address updatedRecipient,\n bytes updatedMessage,\n bytes depositorSignature\n );\n\n // Legacy struct only used to preserve the FilledV3Relay event definition.\n struct LegacyV3RelayExecutionEventInfo {\n address updatedRecipient;\n bytes updatedMessage;\n uint256 updatedOutputAmount;\n FillType fillType;\n }\n\n event FilledV3Relay(\n address inputToken,\n address outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 repaymentChainId,\n uint256 indexed originChainId,\n uint32 indexed depositId,\n uint32 fillDeadline,\n uint32 exclusivityDeadline,\n address exclusiveRelayer,\n address indexed relayer,\n address depositor,\n address recipient,\n bytes message,\n LegacyV3RelayExecutionEventInfo relayExecutionInfo\n );\n\n event RequestedV3SlowFill(\n address inputToken,\n address outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 indexed originChainId,\n uint32 indexed depositId,\n uint32 fillDeadline,\n uint32 exclusivityDeadline,\n address exclusiveRelayer,\n address depositor,\n address recipient,\n bytes message\n );\n}\n"
+ },
+ "contracts/Lens_SpokePool.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\nimport \"./ZkSync_SpokePool.sol\";\n\n/**\n * @notice Lens specific SpokePool. Wrapper around the ZkSync_SpokePool contract.\n * @dev Resources for compiling and deploying contracts with hardhat: https://era.zksync.io/docs/tools/hardhat/hardhat-zksync-solc.html\n * @custom:security-contact bugs@across.to\n */\ncontract Lens_SpokePool is ZkSync_SpokePool {\n /// @custom:oz-upgrades-unsafe-allow constructor\n constructor(\n address _wrappedNativeTokenAddress,\n IERC20 _circleUSDC,\n ZkBridgeLike _zkUSDCBridge,\n uint256 _l1ChainId,\n ITokenMessenger _cctpTokenMessenger,\n uint32 _depositQuoteTimeBuffer,\n uint32 _fillDeadlineBuffer\n )\n ZkSync_SpokePool(\n _wrappedNativeTokenAddress,\n _circleUSDC,\n _zkUSDCBridge,\n _l1ChainId,\n _cctpTokenMessenger,\n _depositQuoteTimeBuffer,\n _fillDeadlineBuffer\n )\n {}\n}\n"
+ },
+ "contracts/libraries/AddressConverters.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\nlibrary Bytes32ToAddress {\n /**************************************\n * ERRORS *\n **************************************/\n error InvalidBytes32();\n\n function toAddress(bytes32 _bytes32) internal pure returns (address) {\n checkAddress(_bytes32);\n return address(uint160(uint256(_bytes32)));\n }\n\n function toAddressUnchecked(bytes32 _bytes32) internal pure returns (address) {\n return address(uint160(uint256(_bytes32)));\n }\n\n function checkAddress(bytes32 _bytes32) internal pure {\n if (uint256(_bytes32) >> 160 != 0) {\n revert InvalidBytes32();\n }\n }\n}\n\nlibrary AddressToBytes32 {\n function toBytes32(address _address) internal pure returns (bytes32) {\n return bytes32(uint256(uint160(_address)));\n }\n}\n"
+ },
+ "contracts/libraries/CircleCCTPAdapter.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\nimport \"@openzeppelin/contracts-v4/token/ERC20/IERC20.sol\";\nimport \"@openzeppelin/contracts-v4/token/ERC20/utils/SafeERC20.sol\";\nimport \"../external/interfaces/CCTPInterfaces.sol\";\nimport { AddressToBytes32 } from \"../libraries/AddressConverters.sol\";\n\nlibrary CircleDomainIds {\n uint32 public constant Ethereum = 0;\n uint32 public constant Optimism = 2;\n uint32 public constant Arbitrum = 3;\n uint32 public constant Solana = 5;\n uint32 public constant Base = 6;\n uint32 public constant Polygon = 7;\n uint32 public constant DoctorWho = 10;\n uint32 public constant Linea = 11;\n uint32 public constant WorldChain = 14;\n uint32 public constant Monad = 15;\n uint32 public constant BSC = 17;\n uint32 public constant HyperEVM = 19;\n uint32 public constant Ink = 21;\n uint32 public constant Arc = 26;\n uint32 public constant UNINITIALIZED = type(uint32).max;\n}\n\n/**\n * @notice Facilitate bridging USDC via Circle's CCTP.\n * @dev This contract is intended to be inherited by other chain-specific adapters and spoke pools.\n * @custom:security-contact bugs@across.to\n */\nabstract contract CircleCCTPAdapter {\n using SafeERC20 for IERC20;\n using AddressToBytes32 for address;\n /**\n * @notice The domain ID that CCTP will transfer funds to.\n * @dev This identifier is assigned by Circle and is not related to a chain ID.\n * @dev Official domain list can be found here: https://developers.circle.com/stablecoins/docs/supported-domains\n */\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n\n uint32 public immutable recipientCircleDomainId;\n\n /**\n * @notice The official USDC contract address on this chain.\n * @dev Posted officially here: https://developers.circle.com/stablecoins/docs/usdc-on-main-networks\n */\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n IERC20 public immutable usdcToken;\n\n /**\n * @notice The official Circle CCTP token bridge contract endpoint.\n * @dev Posted officially here: https://developers.circle.com/stablecoins/docs/evm-smart-contracts\n */\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n ITokenMessenger public immutable cctpTokenMessenger;\n\n /**\n * @notice Indicates if the CCTP V2 TokenMessenger is being used.\n * @dev This is determined by checking if the feeRecipient() function exists and returns a non-zero address.\n */\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n bool public immutable cctpV2;\n\n /**\n * @notice intiailizes the CircleCCTPAdapter contract.\n * @param _usdcToken USDC address on the current chain.\n * @param _cctpTokenMessenger TokenMessenger contract to bridge via CCTP. If the zero address is passed, CCTP bridging will be disabled.\n * @param _recipientCircleDomainId The domain ID that CCTP will transfer funds to.\n */\n /// @custom:oz-upgrades-unsafe-allow constructor\n constructor(\n IERC20 _usdcToken,\n /// @dev This should ideally be an address but it's kept as an ITokenMessenger to avoid rippling changes to the\n /// constructors for every SpokePool/Adapter.\n ITokenMessenger _cctpTokenMessenger,\n uint32 _recipientCircleDomainId\n ) {\n usdcToken = _usdcToken;\n cctpTokenMessenger = _cctpTokenMessenger;\n recipientCircleDomainId = _recipientCircleDomainId;\n\n // Only the CCTP V2 TokenMessenger has a feeRecipient() function, so we use it to\n // figure out if we are using CCTP V2 or V1. `success` can be true even if the contract doesn't\n // implement feeRecipient but it has a fallback function so to be extra safe, we check the return value\n // of feeRecipient() as well.\n (bool success, bytes memory feeRecipient) = address(cctpTokenMessenger).staticcall(\n abi.encodeWithSignature(\"feeRecipient()\")\n );\n // In case of a call to nonexistent contract or a call to a contract with a fallback function which\n // doesn't return any data, feeRecipient can be empty so check its length.\n // Even with this check, it's possible that the contract has implemented a fallback function that returns\n // 32 bytes of data but its not actually the feeRecipient address. This is extremely low risk but worth\n // mentioning that the following check is not 100% safe.\n cctpV2 = (success &&\n feeRecipient.length == 32 &&\n address(uint160(uint256(bytes32(feeRecipient)))) != address(0));\n }\n\n /**\n * @notice Returns whether or not the CCTP bridge is enabled.\n * @dev If the CCTPTokenMessenger is the zero address, CCTP bridging is disabled.\n */\n function _isCCTPEnabled() internal view returns (bool) {\n return address(cctpTokenMessenger) != address(0);\n }\n\n /**\n * @notice Transfers USDC from the current domain to the given address on the new domain.\n * @dev This function will revert if the CCTP bridge is disabled. I.e. if the zero address is passed to the constructor for the cctpTokenMessenger.\n * @param to Address to receive USDC on the new domain.\n * @param amount Amount of USDC to transfer.\n */\n function _transferUsdc(address to, uint256 amount) internal {\n _transferUsdc(to.toBytes32(), amount);\n }\n\n /**\n * @notice Transfers USDC from the current domain to the given address on the new domain.\n * @dev This function will revert if the CCTP bridge is disabled. I.e. if the zero address is passed to the constructor for the cctpTokenMessenger.\n * @param to Address to receive USDC on the new domain represented as bytes32.\n * @param amount Amount of USDC to transfer.\n */\n function _transferUsdc(bytes32 to, uint256 amount) internal {\n // Only approve the exact amount to be transferred\n usdcToken.safeIncreaseAllowance(address(cctpTokenMessenger), amount);\n // Submit the amount to be transferred to bridge via the TokenMessenger.\n // If the amount to send exceeds the burn limit per message, then split the message into smaller parts.\n // @dev We do not care about casting cctpTokenMessenger to ITokenMessengerV2 since both V1 and V2\n // expose a localMinter() view function that returns either an ITokenMinterV1 or ITokenMinterV2. Regardless,\n // we only care about the burnLimitsPerMessage function which is available in both versions and performs\n // the same logic, therefore we purposefully do not re-cast the cctpTokenMessenger and cctpMinter\n // to the specific version.\n ITokenMinter cctpMinter = cctpTokenMessenger.localMinter();\n uint256 burnLimit = cctpMinter.burnLimitsPerMessage(address(usdcToken));\n uint256 remainingAmount = amount;\n while (remainingAmount > 0) {\n uint256 partAmount = remainingAmount > burnLimit ? burnLimit : remainingAmount;\n if (cctpV2) {\n // Uses the CCTP V2 \"standard transfer\" speed and\n // therefore pays no additional fee for the transfer to be sped up.\n ITokenMessengerV2(address(cctpTokenMessenger)).depositForBurn(\n partAmount,\n recipientCircleDomainId,\n to,\n address(usdcToken),\n // The following parameters are new in this function from V2 to V1, can read more here:\n // https://developers.circle.com/stablecoins/evm-smart-contracts\n bytes32(0), // destinationCaller is set to bytes32(0) to indicate that anyone can call\n // receiveMessage on the destination to finalize the transfer\n 0, // maxFee can be set to 0 for a \"standard transfer\"\n 2000 // minFinalityThreshold can be set to 2000 for a \"standard transfer\",\n // https://github.com/circlefin/evm-cctp-contracts/blob/63ab1f0ac06ce0793c0bbfbb8d09816bc211386d/src/v2/FinalityThresholds.sol#L21\n );\n } else {\n cctpTokenMessenger.depositForBurn(partAmount, recipientCircleDomainId, to, address(usdcToken));\n }\n remainingAmount -= partAmount;\n }\n }\n}\n"
+ },
+ "contracts/libraries/CrossDomainAddressUtils.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\n/**\n * @title AddressUtils\n * @notice This library contains internal functions for manipulating addresses.\n */\nlibrary CrossDomainAddressUtils {\n // L1 addresses are transformed during l1->l2 calls.\n // This cannot be pulled directly from Arbitrum contracts because their contracts are not 0.8.X compatible and\n // this operation takes advantage of overflows, whose behavior changed in 0.8.0.\n function applyL1ToL2Alias(address l1Address) internal pure returns (address l2Address) {\n unchecked {\n l2Address = address(uint160(l1Address) + uint160(0x1111000000000000000000000000000000001111));\n }\n }\n}\n"
+ },
+ "contracts/libraries/OFTTransportAdapter.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\nimport { IERC20 } from \"@openzeppelin/contracts-v4/token/ERC20/IERC20.sol\";\nimport { SafeERC20 } from \"@openzeppelin/contracts-v4/token/ERC20/utils/SafeERC20.sol\";\nimport { IOFT, SendParam, MessagingFee, OFTReceipt } from \"../interfaces/IOFT.sol\";\nimport { AddressToBytes32 } from \"../libraries/AddressConverters.sol\";\n\n/**\n * @notice Facilitate bridging tokens via LayerZero's OFT.\n * @dev This contract is intended to be inherited by other chain-specific adapters and spoke pools.\n * @custom:security-contact bugs@across.to\n */\ncontract OFTTransportAdapter {\n using SafeERC20 for IERC20;\n using AddressToBytes32 for address;\n\n /** @notice Empty bytes array used for OFT messaging parameters */\n bytes public constant EMPTY_MSG_BYTES = new bytes(0);\n\n /**\n * @notice Fee cap checked before sending messages to OFTMessenger\n * @dev Conservative (high) cap to not interfere with operations under normal conditions\n */\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n uint256 public immutable OFT_FEE_CAP;\n\n /**\n * @notice The destination endpoint id in the OFT messaging protocol.\n * @dev Source https://docs.layerzero.network/v2/developers/evm/technical-reference/deployed-contracts.\n */\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n uint32 public immutable OFT_DST_EID;\n\n /** @notice Thrown when OFT fee exceeds the configured cap */\n error OftFeeCapExceeded();\n\n /** @notice Thrown when contract has insufficient balance to pay OFT fees */\n error OftInsufficientBalanceForFee();\n\n /** @notice Thrown when LayerZero token fee is not zero (only native fees supported) */\n error OftLzFeeNotZero();\n\n /** @notice Thrown when amount received differs from expected amount */\n error OftIncorrectAmountReceivedLD();\n\n /** @notice Thrown when amount sent differs from expected amount */\n error OftIncorrectAmountSentLD();\n\n /**\n * @notice intiailizes the OFTTransportAdapter contract.\n * @param _oftDstEid the endpoint ID that OFT protocol will transfer funds to.\n * @param _feeCap a fee cap we check against before sending a message with value to OFTMessenger as fees.\n */\n /// @custom:oz-upgrades-unsafe-allow constructor\n constructor(uint32 _oftDstEid, uint256 _feeCap) {\n OFT_DST_EID = _oftDstEid;\n OFT_FEE_CAP = _feeCap;\n }\n\n /**\n * @notice transfer token to the other dstEid (e.g. chain) via OFT messaging protocol\n * @dev the caller has to provide both _token and _messenger. The caller is responsible for knowing the correct _messenger\n * @param _token token we're sending on current chain.\n * @param _messenger corresponding OFT messenger on current chain.\n * @param _to address to receive a transfer on the destination chain.\n * @param _amount amount to send.\n */\n function _transferViaOFT(IERC20 _token, IOFT _messenger, address _to, uint256 _amount) internal {\n (SendParam memory sendParam, MessagingFee memory fee) = _buildOftTransfer(_messenger, _to, _amount);\n _sendOftTransfer(_token, _messenger, sendParam, fee);\n }\n\n /**\n * @notice Build OFT send params and quote the native fee.\n * @dev Sets `minAmountLD == amountLD` to disallow silent deductions (e.g. dust removal) by OFT.\n * The fee is quoted for payment in native token.\n * @param _messenger OFT messenger contract on the current chain for the token being sent.\n * @param _to Destination address on the remote chain.\n * @param _amount Amount of tokens to transfer.\n * @return sendParam The encoded OFT send parameters.\n * @return fee The quoted MessagingFee required for the transfer.\n */\n function _buildOftTransfer(\n IOFT _messenger,\n address _to,\n uint256 _amount\n ) internal view returns (SendParam memory, MessagingFee memory) {\n bytes32 to = _to.toBytes32();\n\n SendParam memory sendParam = SendParam(\n OFT_DST_EID,\n to,\n /**\n * _amount, _amount here specify `amountLD` and `minAmountLD`. Setting `minAmountLD` equal to `amountLD` protects us\n * from any changes to the sent amount due to internal OFT contract logic, e.g. `_removeDust`. Meaning that if any\n * dust is subtracted, the `.send()` should revert\n */\n _amount,\n _amount,\n /**\n * EMPTY_MSG_BYTES, EMPTY_MSG_BYTES, EMPTY_MSG_BYTES here specify `extraOptions`, `composeMsg` and `oftCmd`.\n * These can be set to empty bytes arrays for the purposes of sending a simple cross-chain transfer.\n */\n EMPTY_MSG_BYTES,\n EMPTY_MSG_BYTES,\n EMPTY_MSG_BYTES\n );\n\n // `false` in the 2nd param here refers to `bool _payInLzToken`. We will pay in native token, so set to `false`\n MessagingFee memory fee = _messenger.quoteSend(sendParam, false);\n\n return (sendParam, fee);\n }\n\n /**\n * @notice Execute an OFT transfer using pre-built params and fee.\n * @dev Verifies fee bounds and equality of sent/received amounts. Pays native fee from this contract.\n * @param _token ERC-20 token to transfer.\n * @param _messenger OFT messenger contract on the current chain for `_token`.\n * @param sendParam Pre-built OFT send parameters.\n * @param fee Quoted MessagingFee to pay for this transfer.\n */\n function _sendOftTransfer(\n IERC20 _token,\n IOFT _messenger,\n SendParam memory sendParam,\n MessagingFee memory fee\n ) internal {\n // Create a stack variable to optimize gas usage on subsequent reads\n uint256 nativeFee = fee.nativeFee;\n if (nativeFee > OFT_FEE_CAP) revert OftFeeCapExceeded();\n if (nativeFee > address(this).balance) revert OftInsufficientBalanceForFee();\n if (fee.lzTokenFee != 0) revert OftLzFeeNotZero();\n\n // Approve the exact _amount for `_messenger` to spend. Fee will be paid in native token\n uint256 _amount = sendParam.amountLD;\n _token.forceApprove(address(_messenger), _amount);\n\n (, OFTReceipt memory oftReceipt) = _messenger.send{ value: nativeFee }(sendParam, fee, address(this));\n\n // The HubPool expects that the amount received by the SpokePool is exactly the sent amount\n if (_amount != oftReceipt.amountReceivedLD) revert OftIncorrectAmountReceivedLD();\n // Also check the amount sent on origin chain to harden security\n if (_amount != oftReceipt.amountSentLD) revert OftIncorrectAmountSentLD();\n }\n}\n"
+ },
+ "contracts/libraries/PeripherySigningLib.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\nimport { SpokePoolPeripheryInterface } from \"../interfaces/SpokePoolPeripheryInterface.sol\";\n\nlibrary PeripherySigningLib {\n string internal constant EIP712_FEES_TYPE = \"Fees(uint256 amount,address recipient)\";\n string internal constant EIP712_BASE_DEPOSIT_DATA_TYPE =\n \"BaseDepositData(address inputToken,bytes32 outputToken,uint256 outputAmount,address depositor,bytes32 recipient,uint256 destinationChainId,bytes32 exclusiveRelayer,uint32 quoteTimestamp,uint32 fillDeadline,uint32 exclusivityParameter,bytes message)\";\n string internal constant EIP712_DEPOSIT_DATA_TYPE =\n \"DepositData(Fees submissionFees,BaseDepositData baseDepositData,uint256 inputAmount,address spokePool,uint256 nonce)\";\n string internal constant EIP712_SWAP_AND_DEPOSIT_DATA_TYPE =\n \"SwapAndDepositData(Fees submissionFees,BaseDepositData depositData,address swapToken,address exchange,uint8 transferType,uint256 swapTokenAmount,uint256 minExpectedInputTokenAmount,bytes routerCalldata,bool enableProportionalAdjustment,address spokePool,uint256 nonce)\";\n\n // EIP712 Type hashes.\n bytes32 internal constant EIP712_FEES_TYPEHASH = keccak256(abi.encodePacked(EIP712_FEES_TYPE));\n bytes32 internal constant EIP712_BASE_DEPOSIT_DATA_TYPEHASH =\n keccak256(abi.encodePacked(EIP712_BASE_DEPOSIT_DATA_TYPE));\n bytes32 internal constant EIP712_DEPOSIT_DATA_TYPEHASH =\n keccak256(abi.encodePacked(EIP712_DEPOSIT_DATA_TYPE, EIP712_BASE_DEPOSIT_DATA_TYPE, EIP712_FEES_TYPE));\n bytes32 internal constant EIP712_SWAP_AND_DEPOSIT_DATA_TYPEHASH =\n keccak256(abi.encodePacked(EIP712_SWAP_AND_DEPOSIT_DATA_TYPE, EIP712_BASE_DEPOSIT_DATA_TYPE, EIP712_FEES_TYPE));\n\n // EIP712 Type strings.\n string internal constant TOKEN_PERMISSIONS_TYPE = \"TokenPermissions(address token,uint256 amount)\";\n string internal constant EIP712_SWAP_AND_DEPOSIT_TYPE_STRING =\n string(\n abi.encodePacked(\n \"SwapAndDepositData witness)\",\n EIP712_BASE_DEPOSIT_DATA_TYPE,\n EIP712_FEES_TYPE,\n EIP712_SWAP_AND_DEPOSIT_DATA_TYPE,\n TOKEN_PERMISSIONS_TYPE\n )\n );\n string internal constant EIP712_DEPOSIT_TYPE_STRING =\n string(\n abi.encodePacked(\n \"DepositData witness)\",\n EIP712_BASE_DEPOSIT_DATA_TYPE,\n EIP712_DEPOSIT_DATA_TYPE,\n EIP712_FEES_TYPE,\n TOKEN_PERMISSIONS_TYPE\n )\n );\n\n error InvalidSignature();\n\n /**\n * @notice Creates the EIP712 compliant hashed data corresponding to the BaseDepositData struct.\n * @param baseDepositData Input struct whose values are hashed.\n * @dev BaseDepositData is only used as a nested struct for both DepositData and SwapAndDepositData.\n */\n function hashBaseDepositData(\n SpokePoolPeripheryInterface.BaseDepositData calldata baseDepositData\n ) internal pure returns (bytes32) {\n return\n keccak256(\n abi.encode(\n EIP712_BASE_DEPOSIT_DATA_TYPEHASH,\n baseDepositData.inputToken,\n baseDepositData.outputToken,\n baseDepositData.outputAmount,\n baseDepositData.depositor,\n baseDepositData.recipient,\n baseDepositData.destinationChainId,\n baseDepositData.exclusiveRelayer,\n baseDepositData.quoteTimestamp,\n baseDepositData.fillDeadline,\n baseDepositData.exclusivityParameter,\n keccak256(baseDepositData.message)\n )\n );\n }\n\n /**\n * @notice Creates the EIP712 compliant hashed data corresponding to the Fees struct.\n * @param fees Input struct whose values are hashed.\n * @dev Fees is only used as a nested struct for both DepositData and SwapAndDepositData.\n */\n function hashFees(SpokePoolPeripheryInterface.Fees calldata fees) internal pure returns (bytes32) {\n return keccak256(abi.encode(EIP712_FEES_TYPEHASH, fees.amount, fees.recipient));\n }\n\n /**\n * @notice Creates the EIP712 compliant hashed data corresponding to the DepositData struct.\n * @param depositData Input struct whose values are hashed.\n */\n function hashDepositData(\n SpokePoolPeripheryInterface.DepositData calldata depositData\n ) internal pure returns (bytes32) {\n return\n keccak256(\n abi.encode(\n EIP712_DEPOSIT_DATA_TYPEHASH,\n hashFees(depositData.submissionFees),\n hashBaseDepositData(depositData.baseDepositData),\n depositData.inputAmount,\n depositData.spokePool,\n depositData.nonce\n )\n );\n }\n\n /**\n * @notice Creates the EIP712 compliant hashed data corresponding to the SwapAndDepositData struct.\n * @param swapAndDepositData Input struct whose values are hashed.\n */\n function hashSwapAndDepositData(\n SpokePoolPeripheryInterface.SwapAndDepositData calldata swapAndDepositData\n ) internal pure returns (bytes32) {\n return\n keccak256(\n abi.encode(\n EIP712_SWAP_AND_DEPOSIT_DATA_TYPEHASH,\n hashFees(swapAndDepositData.submissionFees),\n hashBaseDepositData(swapAndDepositData.depositData),\n swapAndDepositData.swapToken,\n swapAndDepositData.exchange,\n swapAndDepositData.transferType,\n swapAndDepositData.swapTokenAmount,\n swapAndDepositData.minExpectedInputTokenAmount,\n keccak256(swapAndDepositData.routerCalldata),\n swapAndDepositData.enableProportionalAdjustment,\n swapAndDepositData.spokePool,\n swapAndDepositData.nonce\n )\n );\n }\n\n /**\n * @notice Reads an input bytes, and, assuming it is a signature for a 32-byte hash, returns the v, r, and s values.\n * @param _signature The input signature to deserialize.\n */\n function deserializeSignature(bytes calldata _signature) internal pure returns (bytes32 r, bytes32 s, uint8 v) {\n if (_signature.length != 65) revert InvalidSignature();\n v = uint8(_signature[64]);\n r = bytes32(_signature[0:32]);\n s = bytes32(_signature[32:64]);\n }\n}\n"
+ },
+ "contracts/MerkleLib.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\nimport \"./interfaces/SpokePoolInterface.sol\";\nimport \"./interfaces/V3SpokePoolInterface.sol\";\nimport \"./interfaces/HubPoolInterface.sol\";\n\nimport \"@openzeppelin/contracts-v4/utils/cryptography/MerkleProof.sol\";\n\n/**\n * @notice Library to help with merkle roots, proofs, and claims.\n * @custom:security-contact bugs@across.to\n */\nlibrary MerkleLib {\n /**\n * @notice Verifies that a repayment is contained within a merkle root.\n * @param root the merkle root.\n * @param rebalance the rebalance struct.\n * @param proof the merkle proof.\n * @return bool to signal if the pool rebalance proof correctly shows inclusion of the rebalance within the tree.\n */\n function verifyPoolRebalance(\n bytes32 root,\n HubPoolInterface.PoolRebalanceLeaf memory rebalance,\n bytes32[] memory proof\n ) internal pure returns (bool) {\n return MerkleProof.verify(proof, root, keccak256(abi.encode(rebalance)));\n }\n\n /**\n * @notice Verifies that a relayer refund is contained within a merkle root.\n * @param root the merkle root.\n * @param refund the refund struct.\n * @param proof the merkle proof.\n * @return bool to signal if the relayer refund proof correctly shows inclusion of the refund within the tree.\n */\n function verifyRelayerRefund(\n bytes32 root,\n SpokePoolInterface.RelayerRefundLeaf memory refund,\n bytes32[] memory proof\n ) internal pure returns (bool) {\n return MerkleProof.verify(proof, root, keccak256(abi.encode(refund)));\n }\n\n function verifyV3SlowRelayFulfillment(\n bytes32 root,\n V3SpokePoolInterface.V3SlowFill memory slowRelayFulfillment,\n bytes32[] memory proof\n ) internal pure returns (bool) {\n return MerkleProof.verify(proof, root, keccak256(abi.encode(slowRelayFulfillment)));\n }\n\n // The following functions are primarily copied from\n // https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol with minor changes.\n\n /**\n * @notice Tests whether a claim is contained within a claimedBitMap mapping.\n * @param claimedBitMap a simple uint256 mapping in storage used as a bitmap.\n * @param index the index to check in the bitmap.\n * @return bool indicating if the index within the claimedBitMap has been marked as claimed.\n */\n function isClaimed(mapping(uint256 => uint256) storage claimedBitMap, uint256 index) internal view returns (bool) {\n uint256 claimedWordIndex = index / 256;\n uint256 claimedBitIndex = index % 256;\n uint256 claimedWord = claimedBitMap[claimedWordIndex];\n uint256 mask = (1 << claimedBitIndex);\n return claimedWord & mask == mask;\n }\n\n /**\n * @notice Marks an index in a claimedBitMap as claimed.\n * @param claimedBitMap a simple uint256 mapping in storage used as a bitmap.\n * @param index the index to mark in the bitmap.\n */\n function setClaimed(mapping(uint256 => uint256) storage claimedBitMap, uint256 index) internal {\n uint256 claimedWordIndex = index / 256;\n uint256 claimedBitIndex = index % 256;\n claimedBitMap[claimedWordIndex] = claimedBitMap[claimedWordIndex] | (1 << claimedBitIndex);\n }\n\n /**\n * @notice Tests whether a claim is contained within a 1D claimedBitMap mapping.\n * @param claimedBitMap a simple uint256 value, encoding a 1D bitmap.\n * @param index the index to check in the bitmap. Uint8 type enforces that index can't be > 255.\n * @return bool indicating if the index within the claimedBitMap has been marked as claimed.\n */\n function isClaimed1D(uint256 claimedBitMap, uint8 index) internal pure returns (bool) {\n uint256 mask = (1 << index);\n return claimedBitMap & mask == mask;\n }\n\n /**\n * @notice Marks an index in a claimedBitMap as claimed.\n * @param claimedBitMap a simple uint256 mapping in storage used as a bitmap. Uint8 type enforces that index\n * can't be > 255.\n * @param index the index to mark in the bitmap.\n * @return uint256 representing the modified input claimedBitMap with the index set to true.\n */\n function setClaimed1D(uint256 claimedBitMap, uint8 index) internal pure returns (uint256) {\n return claimedBitMap | (1 << index);\n }\n}\n"
+ },
+ "contracts/SpokePool.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.18;\n\nimport \"./MerkleLib.sol\";\nimport \"./erc7683/ERC7683.sol\";\nimport \"./erc7683/ERC7683Permit2Lib.sol\";\nimport \"./external/interfaces/WETH9Interface.sol\";\nimport \"./interfaces/SpokePoolMessageHandler.sol\";\nimport \"./interfaces/SpokePoolInterface.sol\";\nimport \"./interfaces/V3SpokePoolInterface.sol\";\nimport \"./upgradeable/MultiCallerUpgradeable.sol\";\nimport \"./upgradeable/EIP712CrossChainUpgradeable.sol\";\nimport \"./upgradeable/AddressLibUpgradeable.sol\";\nimport \"./libraries/AddressConverters.sol\";\nimport { IOFT, SendParam, MessagingFee } from \"./interfaces/IOFT.sol\";\nimport { OFTTransportAdapter } from \"./libraries/OFTTransportAdapter.sol\";\n\nimport \"@openzeppelin/contracts-upgradeable-v4/token/ERC20/IERC20Upgradeable.sol\";\nimport \"@openzeppelin/contracts-upgradeable-v4/token/ERC20/utils/SafeERC20Upgradeable.sol\";\nimport \"@openzeppelin/contracts-v4/utils/cryptography/SignatureChecker.sol\";\nimport \"@openzeppelin/contracts-upgradeable-v4/proxy/utils/UUPSUpgradeable.sol\";\nimport \"@openzeppelin/contracts-upgradeable-v4/security/ReentrancyGuardUpgradeable.sol\";\nimport \"@openzeppelin/contracts-v4/utils/math/SignedMath.sol\";\n\n/**\n * @title SpokePool\n * @notice Base contract deployed on source and destination chains enabling depositors to transfer assets from source to\n * destination. Deposit orders are fulfilled by off-chain relayers who also interact with this contract. Deposited\n * tokens are locked on the source chain and relayers send the recipient the desired token currency and amount\n * on the destination chain. Locked source chain tokens are later sent over the canonical token bridge to L1 HubPool.\n * Relayers are refunded with destination tokens out of this contract after another off-chain actor, a \"data worker\",\n * submits a proof that the relayer correctly submitted a relay on this SpokePool.\n * @custom:security-contact bugs@across.to\n */\nabstract contract SpokePool is\n V3SpokePoolInterface,\n SpokePoolInterface,\n UUPSUpgradeable,\n ReentrancyGuardUpgradeable,\n MultiCallerUpgradeable,\n EIP712CrossChainUpgradeable,\n IDestinationSettler,\n OFTTransportAdapter\n{\n using SafeERC20Upgradeable for IERC20Upgradeable;\n using AddressLibUpgradeable for address;\n using Bytes32ToAddress for bytes32;\n using AddressToBytes32 for address;\n\n // Address of the L1 contract that acts as the owner of this SpokePool. This should normally be set to the HubPool\n // address. The crossDomainAdmin address is unused when the SpokePool is deployed to the same chain as the HubPool.\n address public crossDomainAdmin;\n\n // Address of the L1 contract that will send tokens to and receive tokens from this contract to fund relayer\n // refunds and slow relays.\n address public withdrawalRecipient;\n\n // Note: The following two storage variables prefixed with DEPRECATED used to be variables that could be set by\n // the cross-domain admin. Admins ended up not changing these in production, so to reduce\n // gas in deposit/fill functions, we are converting them to private variables to maintain the contract\n // storage layout and replacing them with immutable or constant variables, because retrieving a constant\n // value is cheaper than retrieving a storage variable. Please see out the immutable/constant variable section.\n WETH9Interface private DEPRECATED_wrappedNativeToken;\n uint32 private DEPRECATED_depositQuoteTimeBuffer;\n\n // `numberOfDeposits` acts as a counter to generate unique deposit identifiers for this spoke pool.\n // It is a uint32 that increments with each `depositV3` call. In the `FundsDeposited` event, it is\n // implicitly cast to uint256 by setting its most significant bits to 0, reducing the risk of ID collisions\n // with unsafe deposits. However, this variable's name could be improved (e.g., `depositNonceCounter`)\n // since it does not accurately reflect the total number of deposits, as `unsafeDeposit` can bypass this increment.\n uint32 public numberOfDeposits;\n\n // Whether deposits and fills are disabled.\n bool public pausedFills;\n bool public pausedDeposits;\n\n // This contract can store as many root bundles as the HubPool chooses to publish here.\n RootBundle[] public rootBundles;\n\n // Origin token to destination token routings can be turned on or off, which can enable or disable deposits.\n mapping(address => mapping(uint256 => bool)) private DEPRECATED_enabledDepositRoutes;\n\n // Each relay is associated with the hash of parameters that uniquely identify the original deposit and a relay\n // attempt for that deposit. The relay itself is just represented as the amount filled so far. The total amount to\n // relay, the fees, and the agents are all parameters included in the hash key.\n mapping(bytes32 => uint256) private DEPRECATED_relayFills;\n\n // Note: We will likely un-deprecate the fill and deposit counters to implement a better\n // dynamic LP fee mechanism but for now we'll deprecate it to reduce bytecode\n // in deposit/fill functions. These counters are designed to implement a fee mechanism that is based on a\n // canonical history of deposit and fill events and how they update a virtual running balance of liabilities and\n // assets, which then determines the LP fee charged to relays.\n\n // This keeps track of the worst-case liabilities due to fills.\n // It is never reset. Users should only rely on it to determine the worst-case increase in liabilities between\n // two points. This is used to provide frontrunning protection to ensure the relayer's assumptions about the state\n // upon which their expected repayments are based will not change before their transaction is mined.\n mapping(address => uint256) private DEPRECATED_fillCounter;\n\n // This keeps track of the total running deposits for each token. This allows depositors to protect themselves from\n // frontrunning that might change their worst-case quote.\n mapping(address => uint256) private DEPRECATED_depositCounter;\n\n // This tracks the number of identical refunds that have been requested.\n // The intention is to allow an off-chain system to know when this could be a duplicate and ensure that the other\n // requests are known and accounted for.\n mapping(bytes32 => uint256) private DEPRECATED_refundsRequested;\n\n // Mapping of V3 relay hashes to fill statuses. Distinguished from relayFills\n // to eliminate any chance of collision between pre and post V3 relay hashes.\n mapping(bytes32 => uint256) public fillStatuses;\n\n // Mapping of L2TokenAddress to relayer to outstanding refund amount. Used when a relayer repayment fails for some\n // reason (eg blacklist) to track their outstanding liability, thereby letting them claim it later.\n mapping(address => mapping(address => uint256)) public relayerRefund;\n\n // Mapping of L2 token address to L2 IOFT messenger address. Required to support bridging via OFT standard\n mapping(address l2TokenAddress => address l2OftMessenger) public oftMessengers;\n\n /**************************************************************\n * CONSTANT/IMMUTABLE VARIABLES *\n **************************************************************/\n // Constant and immutable variables do not take up storage slots and are instead added to the contract bytecode\n // at compile time. The difference between them is that constant variables must be declared inline, meaning\n // that they cannot be changed in production without changing the contract code, while immutable variables\n // can be set in the constructor. Therefore we use the immutable keyword for variables that we might want to be\n // different for each child contract (one obvious example of this is the wrappedNativeToken) or that we might\n // want to update in the future like depositQuoteTimeBuffer. Constants are unlikely to ever be changed.\n\n // Address of wrappedNativeToken contract for this network. If an origin token matches this, then the caller can\n // optionally instruct this contract to wrap native tokens when depositing (ie ETH->WETH or MATIC->WMATIC).\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n WETH9Interface public immutable wrappedNativeToken;\n\n // Any deposit quote times greater than or less than this value to the current contract time is blocked. Forces\n // caller to use an approximately \"current\" realized fee.\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n uint32 public immutable depositQuoteTimeBuffer;\n\n // The fill deadline can only be set this far into the future from the timestamp of the deposit on this contract.\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n uint32 public immutable fillDeadlineBuffer;\n\n uint256 public constant MAX_TRANSFER_SIZE = 1e36;\n\n bytes32 public constant UPDATE_BYTES32_DEPOSIT_DETAILS_HASH =\n keccak256(\n \"UpdateDepositDetails(uint256 depositId,uint256 originChainId,uint256 updatedOutputAmount,bytes32 updatedRecipient,bytes updatedMessage)\"\n );\n // Default chain Id used to signify that no repayment is requested, for example when executing a slow fill.\n uint256 public constant EMPTY_REPAYMENT_CHAIN_ID = 0;\n // Default address used to signify that no relayer should be credited with a refund, for example\n // when executing a slow fill.\n bytes32 public constant EMPTY_RELAYER = bytes32(0);\n // This is the magic value that signals to the off-chain validator\n // that this deposit can never expire. A deposit with this fill deadline should always be eligible for a\n // slow fill, meaning that its output token and input token must be \"equivalent\". Therefore, this value is only\n // used as a fillDeadline in deposit(), a soon to be deprecated function that also hardcodes outputToken to\n // the zero address, which forces the off-chain validator to replace the output token with the equivalent\n // token for the input token. By using this magic value, off-chain validators do not have to keep\n // this event in their lookback window when querying for expired deposits.\n uint32 public constant INFINITE_FILL_DEADLINE = type(uint32).max;\n\n // One year in seconds. If `exclusivityParameter` is set to a value less than this, then the emitted\n // exclusivityDeadline in a deposit event will be set to the current time plus this value.\n uint32 public constant MAX_EXCLUSIVITY_PERIOD_SECONDS = 31_536_000;\n\n // EIP-7702 prefix for delegated wallets.\n bytes3 internal constant EIP7702_PREFIX = 0xef0100;\n\n /****************************************\n * EVENTS *\n ****************************************/\n event SetXDomainAdmin(address indexed newAdmin);\n event SetWithdrawalRecipient(address indexed newWithdrawalRecipient);\n event EnabledDepositRoute(address indexed originToken, uint256 indexed destinationChainId, bool enabled);\n event RelayedRootBundle(\n uint32 indexed rootBundleId,\n bytes32 indexed relayerRefundRoot,\n bytes32 indexed slowRelayRoot\n );\n event ExecutedRelayerRefundRoot(\n uint256 amountToReturn,\n uint256 indexed chainId,\n uint256[] refundAmounts,\n uint32 indexed rootBundleId,\n uint32 indexed leafId,\n address l2TokenAddress,\n address[] refundAddresses,\n bool deferredRefunds,\n address caller\n );\n event TokensBridged(\n uint256 amountToReturn,\n uint256 indexed chainId,\n uint32 indexed leafId,\n bytes32 indexed l2TokenAddress,\n address caller\n );\n event EmergencyDeletedRootBundle(uint256 indexed rootBundleId);\n event PausedDeposits(bool isPaused);\n event PausedFills(bool isPaused);\n event SetOFTMessenger(address indexed token, address indexed messenger);\n\n /// @notice Emitted when the call to external contract is executed, triggered by an admin action\n event AdminExternalCallExecuted(address indexed target, bytes data);\n\n error OFTTokenMismatch();\n /// @notice Thrown when the native fee sent by the caller is insufficient to cover the OFT transfer.\n error OFTFeeUnderpaid();\n\n /**\n * @notice Construct the SpokePool. Normally, logic contracts used in upgradeable proxies shouldn't\n * have constructors since the following code will be executed within the logic contract's state, not the\n * proxy contract's state. However, if we restrict the constructor to setting only immutable variables, then\n * we are safe because immutable variables are included in the logic contract's bytecode rather than its storage.\n * @dev Do not leave an implementation contract uninitialized. An uninitialized implementation contract can be\n * taken over by an attacker, which may impact the proxy. To prevent the implementation contract from being\n * used, you should invoke the _disableInitializers function in the constructor to automatically lock it when\n * it is deployed:\n * @param _wrappedNativeTokenAddress wrappedNativeToken address for this network to set.\n * @param _depositQuoteTimeBuffer depositQuoteTimeBuffer to set. Quote timestamps can't be set more than this amount\n * into the past from the block time of the deposit.\n * @param _fillDeadlineBuffer fillDeadlineBuffer to set. Fill deadlines can't be set more than this amount\n * into the future from the block time of the deposit.\n * @param _oftDstEid destination endpoint id for OFT messaging\n * @param _oftFeeCap fee cap in native token when paying for cross-chain OFT transfers\n */\n /// @custom:oz-upgrades-unsafe-allow constructor\n constructor(\n address _wrappedNativeTokenAddress,\n uint32 _depositQuoteTimeBuffer,\n uint32 _fillDeadlineBuffer,\n uint32 _oftDstEid,\n uint256 _oftFeeCap\n ) OFTTransportAdapter(_oftDstEid, _oftFeeCap) {\n wrappedNativeToken = WETH9Interface(_wrappedNativeTokenAddress);\n depositQuoteTimeBuffer = _depositQuoteTimeBuffer;\n fillDeadlineBuffer = _fillDeadlineBuffer;\n _disableInitializers();\n }\n\n /**\n * @notice Construct the base SpokePool.\n * @param _initialDepositId Starting deposit ID. Set to 0 unless this is a re-deployment in order to mitigate\n * relay hash collisions.\n * @param _crossDomainAdmin Cross domain admin to set. Can be changed by admin.\n * @param _withdrawalRecipient Address which receives token withdrawals. Can be changed by admin. For Spoke Pools on L2, this will\n * likely be the hub pool.\n */\n function __SpokePool_init(\n uint32 _initialDepositId,\n address _crossDomainAdmin,\n address _withdrawalRecipient\n ) public onlyInitializing {\n numberOfDeposits = _initialDepositId;\n __EIP712_init(\"ACROSS-V2\", \"1.0.0\");\n __UUPSUpgradeable_init();\n __ReentrancyGuard_init();\n _setCrossDomainAdmin(_crossDomainAdmin);\n _setWithdrawalRecipient(_withdrawalRecipient);\n }\n\n /****************************************\n * MODIFIERS *\n ****************************************/\n\n /**\n * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by\n * {upgradeTo} and {upgradeToAndCall}.\n * @dev This should be set to cross domain admin for specific SpokePool.\n */\n modifier onlyAdmin() {\n _requireAdminSender();\n _;\n }\n\n modifier unpausedDeposits() {\n if (pausedDeposits) revert DepositsArePaused();\n _;\n }\n\n modifier unpausedFills() {\n if (pausedFills) revert FillsArePaused();\n _;\n }\n\n /**************************************\n * ADMIN FUNCTIONS *\n **************************************/\n\n // Allows cross domain admin to upgrade UUPS proxy implementation.\n function _authorizeUpgrade(address newImplementation) internal override onlyAdmin {}\n\n /**\n * @notice Pauses deposit-related functions. This is intended to be used if this contract is deprecated or when\n * something goes awry.\n * @dev Affects `deposit()` but not `speedUpDeposit()`, so that existing deposits can be sped up and still\n * relayed.\n * @param pause true if the call is meant to pause the system, false if the call is meant to unpause it.\n */\n function pauseDeposits(bool pause) public override onlyAdmin nonReentrant {\n pausedDeposits = pause;\n emit PausedDeposits(pause);\n }\n\n /**\n * @notice Pauses fill-related functions. This is intended to be used if this contract is deprecated or when\n * something goes awry.\n * @dev Affects fillRelayWithUpdatedDeposit() and fillRelay().\n * @param pause true if the call is meant to pause the system, false if the call is meant to unpause it.\n */\n function pauseFills(bool pause) public override onlyAdmin nonReentrant {\n pausedFills = pause;\n emit PausedFills(pause);\n }\n\n /**\n * @notice Change cross domain admin address. Callable by admin only.\n * @param newCrossDomainAdmin New cross domain admin.\n */\n function setCrossDomainAdmin(address newCrossDomainAdmin) public override onlyAdmin nonReentrant {\n _setCrossDomainAdmin(newCrossDomainAdmin);\n }\n\n /**\n * @notice Change L1 withdrawal recipient address. Callable by admin only.\n * @param newWithdrawalRecipient New withdrawal recipient address.\n */\n function setWithdrawalRecipient(address newWithdrawalRecipient) public override onlyAdmin nonReentrant {\n _setWithdrawalRecipient(newWithdrawalRecipient);\n }\n\n /**\n * @notice This method stores a new root bundle in this contract that can be executed to refund relayers, fulfill\n * slow relays, and send funds back to the HubPool on L1. This method can only be called by the admin and is\n * designed to be called as part of a cross-chain message from the HubPool's executeRootBundle method.\n * @param relayerRefundRoot Merkle root containing relayer refund leaves that can be individually executed via\n * executeRelayerRefundLeaf().\n * @param slowRelayRoot Merkle root containing slow relay fulfillment leaves that can be individually executed via\n * executeSlowRelayLeaf().\n */\n function relayRootBundle(bytes32 relayerRefundRoot, bytes32 slowRelayRoot) public override onlyAdmin nonReentrant {\n uint32 rootBundleId = uint32(rootBundles.length);\n RootBundle storage rootBundle = rootBundles.push();\n rootBundle.relayerRefundRoot = relayerRefundRoot;\n rootBundle.slowRelayRoot = slowRelayRoot;\n emit RelayedRootBundle(rootBundleId, relayerRefundRoot, slowRelayRoot);\n }\n\n /**\n * @notice This method is intended to only be used in emergencies where a bad root bundle has reached the\n * SpokePool.\n * @param rootBundleId Index of the root bundle that needs to be deleted. Note: this is intentionally a uint256\n * to ensure that a small input range doesn't limit which indices this method is able to reach.\n */\n function emergencyDeleteRootBundle(uint256 rootBundleId) public override onlyAdmin nonReentrant {\n // Deleting a struct containing a mapping does not delete the mapping in Solidity, therefore the bitmap's\n // data will still remain potentially leading to vulnerabilities down the line. The way around this would\n // be to iterate through every key in the mapping and resetting the value to 0, but this seems expensive and\n // would require a new list in storage to keep track of keys.\n //slither-disable-next-line mapping-deletion\n delete rootBundles[rootBundleId];\n emit EmergencyDeletedRootBundle(rootBundleId);\n }\n\n /**\n * @notice Add token -> OFTMessenger relationship. Callable only by admin.\n * @param token token address on the current chain\n * @param messenger IOFT contract address on the current chain for the specified token. Acts as a 'mailbox'\n */\n function setOftMessenger(address token, address messenger) external onlyAdmin nonReentrant {\n _setOftMessenger(token, messenger);\n }\n\n /**\n * @notice Execute an external call to a target contract.\n * @param message The message containing the target address and calldata to execute.\n * @return returnData The return data from the executed call.\n */\n function executeExternalCall(\n bytes calldata message\n ) external onlyAdmin nonReentrant returns (bytes memory returnData) {\n (address target, bytes memory data) = abi.decode(message, (address, bytes));\n\n if (target == address(0)) revert ZeroAddressTarget();\n if (data.length < 4) revert MessageTooShort(); // need at least a selector\n\n // external call to target\n bool success;\n (success, returnData) = target.call(data);\n\n if (!success) revert ExternalCallExecutionFailed();\n emit AdminExternalCallExecuted(target, data);\n }\n\n /**************************************\n * LEGACY DEPOSITOR FUNCTIONS *\n **************************************/\n\n /**\n * @dev DEPRECATION NOTICE: this function is deprecated and will be removed in the future.\n * Please use deposit (under DEPOSITOR FUNCTIONS below) or depositV3 instead.\n * @notice Called by user to bridge funds from origin to destination chain. Depositor will effectively lock\n * tokens in this contract and receive a destination token on the destination chain. The origin => destination\n * token mapping is stored on the L1 HubPool.\n * @notice The caller must first approve this contract to spend amount of originToken.\n * @notice The originToken => destinationChainId must be enabled.\n * @notice This method is payable because the caller is able to deposit native token if the originToken is\n * wrappedNativeToken and this function will handle wrapping the native token to wrappedNativeToken.\n * @dev Produces a FundsDeposited event with an infinite expiry, meaning that this deposit can never expire.\n * Moreover, the event's outputToken is set to 0x0 meaning that this deposit can always be slow filled.\n * @param recipient Address to receive funds at on destination chain.\n * @param originToken Token to lock into this contract to initiate deposit.\n * @param amount Amount of tokens to deposit. Will be amount of tokens to receive less fees.\n * @param destinationChainId Denotes network where user will receive funds from SpokePool by a relayer.\n * @param relayerFeePct % of deposit amount taken out to incentivize a fast relayer.\n * @param quoteTimestamp Timestamp used by relayers to compute this deposit's realizedLPFeePct which is paid\n * to LP pool on HubPool.\n * @param message Arbitrary data that can be used to pass additional information to the recipient along with the tokens.\n * Note: this is intended to be used to pass along instructions for how a contract should use or allocate the tokens.\n */\n function depositDeprecated_5947912356(\n address recipient,\n address originToken,\n uint256 amount,\n uint256 destinationChainId,\n int64 relayerFeePct,\n uint32 quoteTimestamp,\n bytes memory message,\n uint256 // maxCount. Deprecated.\n ) public payable nonReentrant unpausedDeposits {\n _deposit(\n msg.sender,\n recipient,\n originToken,\n amount,\n destinationChainId,\n relayerFeePct,\n quoteTimestamp,\n message\n );\n }\n\n /**\n * @dev DEPRECATION NOTICE: this function is deprecated and will be removed in the future.\n * Please use the other deposit or depositV3 instead.\n * @notice The only difference between depositFor and deposit is that the depositor address stored\n * in the relay hash can be overridden by the caller. This means that the passed in depositor\n * can speed up the deposit, which is useful if the deposit is taken from the end user to a middle layer\n * contract, like an aggregator or the SpokePoolVerifier, before calling deposit on this contract.\n * @notice The caller must first approve this contract to spend amount of originToken.\n * @notice The originToken => destinationChainId must be enabled.\n * @notice This method is payable because the caller is able to deposit native token if the originToken is\n * wrappedNativeToken and this function will handle wrapping the native token to wrappedNativeToken.\n * @param depositor Address who is credited for depositing funds on origin chain and can speed up the deposit.\n * @param recipient Address to receive funds at on destination chain.\n * @param originToken Token to lock into this contract to initiate deposit.\n * @param amount Amount of tokens to deposit. Will be amount of tokens to receive less fees.\n * @param destinationChainId Denotes network where user will receive funds from SpokePool by a relayer.\n * @param relayerFeePct % of deposit amount taken out to incentivize a fast relayer.\n * @param quoteTimestamp Timestamp used by relayers to compute this deposit's realizedLPFeePct which is paid\n * to LP pool on HubPool.\n * @param message Arbitrary data that can be used to pass additional information to the recipient along with the tokens.\n * Note: this is intended to be used to pass along instructions for how a contract should use or allocate the tokens.\n */\n function depositFor(\n address depositor,\n address recipient,\n address originToken,\n uint256 amount,\n uint256 destinationChainId,\n int64 relayerFeePct,\n uint32 quoteTimestamp,\n bytes memory message,\n uint256 // maxCount. Deprecated.\n ) public payable nonReentrant unpausedDeposits {\n _deposit(depositor, recipient, originToken, amount, destinationChainId, relayerFeePct, quoteTimestamp, message);\n }\n\n /********************************************\n * DEPOSITOR FUNCTIONS *\n ********************************************/\n\n /**\n * @notice Previously, this function allowed the caller to specify the exclusivityDeadline, otherwise known as the\n * as exact timestamp on the destination chain before which only the exclusiveRelayer could fill the deposit. Now,\n * the caller is expected to pass in a number that will be interpreted either as an offset or a fixed\n * timestamp depending on its value.\n * @notice Request to bridge input token cross chain to a destination chain and receive a specified amount\n * of output tokens. The fee paid to relayers and the system should be captured in the spread between output\n * amount and input amount when adjusted to be denominated in the input token. A relayer on the destination\n * chain will send outputAmount of outputTokens to the recipient and receive inputTokens on a repayment\n * chain of their choice. Therefore, the fee should account for destination fee transaction costs,\n * the relayer's opportunity cost of capital while they wait to be refunded following an optimistic challenge\n * window in the HubPool, and the system fee that they'll be charged.\n * @dev On the destination chain, the hash of the deposit data will be used to uniquely identify this deposit, so\n * modifying any params in it will result in a different hash and a different deposit. The hash will comprise\n * all parameters to this function along with this chain's chainId(). Relayers are only refunded for filling\n * deposits with deposit hashes that map exactly to the one emitted by this contract.\n * @param depositor The account credited with the deposit who can request to \"speed up\" this deposit by modifying\n * the output amount, recipient, and message.\n * @param recipient The account receiving funds on the destination chain. Can be an EOA or a contract. If\n * the output token is the wrapped native token for the chain, then the recipient will receive native token if\n * an EOA or wrapped native token if a contract.\n * @param inputToken The token pulled from the caller's account and locked into this contract to\n * initiate the deposit. The equivalent of this token on the relayer's repayment chain of choice will be sent\n * as a refund. If this is equal to the wrapped native token then the caller can optionally pass in native token as\n * msg.value, as long as msg.value = inputTokenAmount.\n * @param outputToken The token that the relayer will send to the recipient on the destination chain. Must be an\n * ERC20.\n * @param inputAmount The amount of input tokens to pull from the caller's account and lock into this contract.\n * This amount will be sent to the relayer on their repayment chain of choice as a refund following an optimistic\n * challenge window in the HubPool, less a system fee.\n * @param outputAmount The amount of output tokens that the relayer will send to the recipient on the destination.\n * @param destinationChainId The destination chain identifier. Must be enabled along with the input token\n * as a valid deposit route from this spoke pool or this transaction will revert.\n * @param exclusiveRelayer The relayer that will be exclusively allowed to fill this deposit before the\n * exclusivity deadline timestamp. This must be a valid, non-zero address if the exclusivity deadline is\n * greater than the current block.timestamp. If the exclusivity deadline is < currentTime, then this must be\n * address(0), and vice versa if this is address(0).\n * @param quoteTimestamp The HubPool timestamp that is used to determine the system fee paid by the depositor.\n * This must be set to some time between [currentTime - depositQuoteTimeBuffer, currentTime]\n * where currentTime is block.timestamp on this chain or this transaction will revert.\n * @param fillDeadline The deadline for the relayer to fill the deposit. After this destination chain timestamp,\n * the fill will revert on the destination chain. Must be set before currentTime + fillDeadlineBuffer, where\n * currentTime is block.timestamp on this chain or this transaction will revert.\n * @param exclusivityParameter This value is used to set the exclusivity deadline timestamp in the emitted deposit\n * event. Before this destination chain timestamp, only the exclusiveRelayer (if set to a non-zero address),\n * can fill this deposit. There are three ways to use this parameter:\n * 1. NO EXCLUSIVITY: If this value is set to 0, then a timestamp of 0 will be emitted,\n * meaning that there is no exclusivity period.\n * 2. OFFSET: If this value is less than MAX_EXCLUSIVITY_PERIOD_SECONDS, then add this value to\n * the block.timestamp to derive the exclusive relayer deadline. Note that using the parameter in this way\n * will expose the filler of the deposit to the risk that the block.timestamp of this event gets changed\n * due to a chain-reorg, which would also change the exclusivity timestamp.\n * 3. TIMESTAMP: Otherwise, set this value as the exclusivity deadline timestamp.\n * which is the deadline for the exclusiveRelayer to fill the deposit.\n * @param message The message to send to the recipient on the destination chain if the recipient is a contract.\n * If the message is not empty, the recipient contract must implement handleV3AcrossMessage() or the fill will revert.\n */\n function deposit(\n bytes32 depositor,\n bytes32 recipient,\n bytes32 inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityParameter,\n bytes calldata message\n ) public payable override nonReentrant unpausedDeposits {\n // Increment the `numberOfDeposits` counter to ensure a unique deposit ID for this spoke pool.\n DepositV3Params memory params = DepositV3Params({\n depositor: depositor,\n recipient: recipient,\n inputToken: inputToken,\n outputToken: outputToken,\n inputAmount: inputAmount,\n outputAmount: outputAmount,\n destinationChainId: destinationChainId,\n exclusiveRelayer: exclusiveRelayer,\n depositId: numberOfDeposits++,\n quoteTimestamp: quoteTimestamp,\n fillDeadline: fillDeadline,\n exclusivityParameter: exclusivityParameter,\n message: message\n });\n _depositV3(params);\n }\n\n /**\n * @notice A version of `deposit` that accepts `address` types for backward compatibility.\n * This function allows bridging of input tokens cross-chain to a destination chain, receiving a specified amount of output tokens.\n * The relayer is refunded in input tokens on a repayment chain of their choice, minus system fees, after an optimistic challenge\n * window. The exclusivity period is specified as an offset from the current block timestamp.\n *\n * @dev This version mirrors the original `depositV3` function, but uses `address` types for `depositor`, `recipient`,\n * `inputToken`, `outputToken`, and `exclusiveRelayer` for compatibility with contracts using the `address` type.\n *\n * The key functionality and logic remain identical, ensuring interoperability across both versions.\n *\n * @param depositor The account credited with the deposit who can request to \"speed up\" this deposit by modifying\n * the output amount, recipient, and message.\n * @param recipient The account receiving funds on the destination chain. Can be an EOA or a contract. If\n * the output token is the wrapped native token for the chain, then the recipient will receive native token if\n * an EOA or wrapped native token if a contract.\n * @param inputToken The token pulled from the caller's account and locked into this contract to initiate the deposit.\n * The equivalent of this token on the relayer's repayment chain of choice will be sent as a refund. If this is equal\n * to the wrapped native token, the caller can optionally pass in native token as msg.value, provided msg.value = inputTokenAmount.\n * @param outputToken The token that the relayer will send to the recipient on the destination chain. Must be an ERC20.\n * @param inputAmount The amount of input tokens pulled from the caller's account and locked into this contract. This\n * amount will be sent to the relayer as a refund following an optimistic challenge window in the HubPool, less a system fee.\n * @param outputAmount The amount of output tokens that the relayer will send to the recipient on the destination.\n * @param destinationChainId The destination chain identifier. Must be enabled along with the input token as a valid\n * deposit route from this spoke pool or this transaction will revert.\n * @param exclusiveRelayer The relayer exclusively allowed to fill this deposit before the exclusivity deadline.\n * @param quoteTimestamp The HubPool timestamp that determines the system fee paid by the depositor. This must be set\n * between [currentTime - depositQuoteTimeBuffer, currentTime] where currentTime is block.timestamp on this chain.\n * @param fillDeadline The deadline for the relayer to fill the deposit. After this destination chain timestamp, the fill will\n * revert on the destination chain. Must be set before currentTime + fillDeadlineBuffer, where currentTime is block.timestamp\n * on this chain.\n * @param exclusivityParameter This value is used to set the exclusivity deadline timestamp in the emitted deposit\n * event. Before this destination chain timestamp, only the exclusiveRelayer (if set to a non-zero address),\n * can fill this deposit. There are three ways to use this parameter:\n * 1. NO EXCLUSIVITY: If this value is set to 0, then a timestamp of 0 will be emitted,\n * meaning that there is no exclusivity period.\n * 2. OFFSET: If this value is less than MAX_EXCLUSIVITY_PERIOD_SECONDS, then add this value to\n * the block.timestamp to derive the exclusive relayer deadline. Note that using the parameter in this way\n * will expose the filler of the deposit to the risk that the block.timestamp of this event gets changed\n * due to a chain-reorg, which would also change the exclusivity timestamp.\n * 3. TIMESTAMP: Otherwise, set this value as the exclusivity deadline timestamp.\n * which is the deadline for the exclusiveRelayer to fill the deposit.\n * @param message The message to send to the recipient on the destination chain if the recipient is a contract. If the\n * message is not empty, the recipient contract must implement `handleV3AcrossMessage()` or the fill will revert.\n */\n function depositV3(\n address depositor,\n address recipient,\n address inputToken,\n address outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n address exclusiveRelayer,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityParameter,\n bytes calldata message\n ) public payable override {\n deposit(\n depositor.toBytes32(),\n recipient.toBytes32(),\n inputToken.toBytes32(),\n outputToken.toBytes32(),\n inputAmount,\n outputAmount,\n destinationChainId,\n exclusiveRelayer.toBytes32(),\n quoteTimestamp,\n fillDeadline,\n exclusivityParameter,\n message\n );\n }\n\n /**\n * @notice See deposit for details. This function is identical to deposit except that it does not use the\n * global deposit ID counter as a deposit nonce, instead allowing the caller to pass in a deposit nonce. This\n * function is designed to be used by anyone who wants to pre-compute their resultant relay data hash, which\n * could be useful for filling a deposit faster and avoiding any risk of a relay hash unexpectedly changing\n * due to another deposit front-running this one and incrementing the global deposit ID counter.\n * @dev This is labeled \"unsafe\" because there is no guarantee that the depositId emitted in the resultant\n * FundsDeposited event is unique which means that the\n * corresponding fill might collide with an existing relay hash on the destination chain SpokePool,\n * which would make this deposit unfillable. In this case, the depositor would subsequently receive a refund\n * of `inputAmount` of `inputToken` on the origin chain after the fill deadline. Re-using a depositNonce is very\n * dangerous when combined with `speedUpDeposit`, as a speed up signature can be re-used for any deposits\n * with the same deposit ID.\n * @dev On the destination chain, the hash of the deposit data will be used to uniquely identify this deposit, so\n * modifying any params in it will result in a different hash and a different deposit. The hash will comprise\n * all parameters to this function along with this chain's chainId(). Relayers are only refunded for filling\n * deposits with deposit hashes that map exactly to the one emitted by this contract.\n * @param depositNonce The nonce that uniquely identifies this deposit. This function will combine this parameter\n * with the msg.sender address to create a unique uint256 depositNonce and ensure that the msg.sender cannot\n * use this function to front-run another depositor's unsafe deposit. This function guarantees that the resultant\n * deposit nonce will not collide with a safe uint256 deposit nonce whose 24 most significant bytes are always 0.\n * @param depositor See identically named parameter in depositV3() comments.\n * @param recipient See identically named parameter in depositV3() comments.\n * @param inputToken See identically named parameter in depositV3() comments.\n * @param outputToken See identically named parameter in depositV3() comments.\n * @param inputAmount See identically named parameter in depositV3() comments.\n * @param outputAmount See identically named parameter in depositV3() comments.\n * @param destinationChainId See identically named parameter in depositV3() comments.\n * @param exclusiveRelayer See identically named parameter in depositV3() comments.\n * @param quoteTimestamp See identically named parameter in depositV3() comments.\n * @param fillDeadline See identically named parameter in depositV3() comments.\n * @param exclusivityParameter See identically named parameter in depositV3() comments.\n * @param message See identically named parameter in depositV3() comments.\n */\n function unsafeDeposit(\n bytes32 depositor,\n bytes32 recipient,\n bytes32 inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint256 depositNonce,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityParameter,\n bytes calldata message\n ) public payable nonReentrant unpausedDeposits {\n // @dev Create the uint256 deposit ID by concatenating the msg.sender and depositor address with the inputted\n // depositNonce parameter. The resultant 32 byte string will be hashed and then casted to an \"unsafe\"\n // uint256 deposit ID. The probability that the resultant ID collides with a \"safe\" deposit ID is\n // equal to the chance that the first 28 bytes of the hash are 0, which is too small for us to consider.\n\n uint256 depositId = getUnsafeDepositId(msg.sender, depositor, depositNonce);\n DepositV3Params memory params = DepositV3Params({\n depositor: depositor,\n recipient: recipient,\n inputToken: inputToken,\n outputToken: outputToken,\n inputAmount: inputAmount,\n outputAmount: outputAmount,\n destinationChainId: destinationChainId,\n exclusiveRelayer: exclusiveRelayer,\n depositId: depositId,\n quoteTimestamp: quoteTimestamp,\n fillDeadline: fillDeadline,\n exclusivityParameter: exclusivityParameter,\n message: message\n });\n _depositV3(params);\n }\n\n /**\n * @notice Submits deposit and sets quoteTimestamp to current Time. Sets fill and exclusivity\n * deadlines as offsets added to the current time. This function is designed to be called by users\n * such as Multisig contracts who do not have certainty when their transaction will mine.\n * @param depositor The account credited with the deposit who can request to \"speed up\" this deposit by modifying\n * the output amount, recipient, and message.\n * @param recipient The account receiving funds on the destination chain. Can be an EOA or a contract. If\n * the output token is the wrapped native token for the chain, then the recipient will receive native token if\n * an EOA or wrapped native token if a contract.\n * @param inputToken The token pulled from the caller's account and locked into this contract to\n * initiate the deposit. The equivalent of this token on the relayer's repayment chain of choice will be sent\n * as a refund. If this is equal to the wrapped native token then the caller can optionally pass in native token as\n * msg.value, as long as msg.value = inputTokenAmount.\n * @param outputToken The token that the relayer will send to the recipient on the destination chain. Must be an\n * ERC20.\n * @param inputAmount The amount of input tokens to pull from the caller's account and lock into this contract.\n * This amount will be sent to the relayer on their repayment chain of choice as a refund following an optimistic\n * challenge window in the HubPool, plus a system fee.\n * @param outputAmount The amount of output tokens that the relayer will send to the recipient on the destination.\n * @param destinationChainId The destination chain identifier. Must be enabled along with the input token\n * as a valid deposit route from this spoke pool or this transaction will revert.\n * @param exclusiveRelayer The relayer that will be exclusively allowed to fill this deposit before the\n * exclusivity deadline timestamp.\n * @param fillDeadlineOffset Added to the current time to set the fill deadline, which is the deadline for the\n * relayer to fill the deposit. After this destination chain timestamp, the fill will revert on the\n * destination chain.\n * @param exclusivityParameter See identically named parameter in deposit() comments.\n * @param message The message to send to the recipient on the destination chain if the recipient is a contract.\n * If the message is not empty, the recipient contract must implement handleV3AcrossMessage() or the fill will revert.\n */\n function depositNow(\n bytes32 depositor,\n bytes32 recipient,\n bytes32 inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint32 fillDeadlineOffset,\n uint32 exclusivityParameter,\n bytes calldata message\n ) external payable override {\n deposit(\n depositor,\n recipient,\n inputToken,\n outputToken,\n inputAmount,\n outputAmount,\n destinationChainId,\n exclusiveRelayer,\n uint32(getCurrentTime()),\n uint32(getCurrentTime()) + fillDeadlineOffset,\n exclusivityParameter,\n message\n );\n }\n\n /**\n * @notice A version of `depositNow` that supports addresses as input types for backward compatibility.\n * This function submits a deposit and sets `quoteTimestamp` to the current time. The `fill` and `exclusivity` deadlines\n * are set as offsets added to the current time. It is designed to be called by users, including Multisig contracts, who may\n * not have certainty when their transaction will be mined.\n *\n * @dev This version is identical to the original `depositV3Now` but uses `address` types for `depositor`, `recipient`,\n * `inputToken`, `outputToken`, and `exclusiveRelayer` to support compatibility with older systems.\n * It maintains the same logic and purpose, ensuring interoperability with both versions.\n *\n * @param depositor The account credited with the deposit, who can request to \"speed up\" this deposit by modifying\n * the output amount, recipient, and message.\n * @param recipient The account receiving funds on the destination chain. Can be an EOA or a contract. If\n * the output token is the wrapped native token for the chain, then the recipient will receive the native token if\n * an EOA or wrapped native token if a contract.\n * @param inputToken The token pulled from the caller's account and locked into this contract to initiate the deposit.\n * Equivalent tokens on the relayer's repayment chain will be sent as a refund. If this is the wrapped native token,\n * msg.value must equal inputTokenAmount when passed.\n * @param outputToken The token the relayer will send to the recipient on the destination chain. Must be an ERC20.\n * @param inputAmount The amount of input tokens pulled from the caller's account and locked into this contract.\n * This amount will be sent to the relayer as a refund following an optimistic challenge window in the HubPool, plus a system fee.\n * @param outputAmount The amount of output tokens the relayer will send to the recipient on the destination.\n * @param destinationChainId The destination chain identifier. Must be enabled with the input token as a valid deposit route\n * from this spoke pool, or the transaction will revert.\n * @param exclusiveRelayer The relayer exclusively allowed to fill the deposit before the exclusivity deadline.\n * @param fillDeadlineOffset Added to the current time to set the fill deadline. After this timestamp, fills on the\n * destination chain will revert.\n * @param exclusivityParameter See identically named parameter in deposit() comments.\n * @param message The message to send to the recipient on the destination chain. If the recipient is a contract, it must\n * implement `handleV3AcrossMessage()` if the message is not empty, or the fill will revert.\n */\n function depositV3Now(\n address depositor,\n address recipient,\n address inputToken,\n address outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n address exclusiveRelayer,\n uint32 fillDeadlineOffset,\n uint32 exclusivityParameter,\n bytes calldata message\n ) external payable override {\n depositV3(\n depositor,\n recipient,\n inputToken,\n outputToken,\n inputAmount,\n outputAmount,\n destinationChainId,\n exclusiveRelayer,\n uint32(getCurrentTime()),\n uint32(getCurrentTime()) + fillDeadlineOffset,\n exclusivityParameter,\n message\n );\n }\n\n /**\n * @notice Depositor can use this function to signal to relayer to use updated output amount, recipient,\n * and/or message. The speed up signature uniquely identifies the speed up based only on\n * depositor, deposit ID and origin chain, so using this function in conjunction with unsafeDeposit is risky\n * due to the chance of repeating a deposit ID.\n * @dev the depositor and depositId must match the params in a FundsDeposited event that the depositor\n * wants to speed up. The relayer has the option but not the obligation to use this updated information\n * when filling the deposit via fillRelayWithUpdatedDeposit().\n * @param depositor Depositor that must sign the depositorSignature and was the original depositor.\n * @param depositId Deposit ID to speed up.\n * @param updatedOutputAmount New output amount to use for this deposit. Should be lower than previous value\n * otherwise relayer has no incentive to use this updated value.\n * @param updatedRecipient New recipient to use for this deposit. Can be modified if the recipient is a contract\n * that expects to receive a message from the relay and for some reason needs to be modified.\n * @param updatedMessage New message to use for this deposit. Can be modified if the recipient is a contract\n * that expects to receive a message from the relay and for some reason needs to be modified.\n * @param depositorSignature Signed EIP712 hashstruct containing the deposit ID. Should be signed by the depositor\n * account. If depositor is a contract, then should implement EIP1271 to sign as a contract. See\n * _verifyUpdateV3DepositMessage() for more details about how this signature should be constructed.\n */\n function speedUpDeposit(\n bytes32 depositor,\n uint256 depositId,\n uint256 updatedOutputAmount,\n bytes32 updatedRecipient,\n bytes calldata updatedMessage,\n bytes calldata depositorSignature\n ) public override nonReentrant {\n _verifyUpdateV3DepositMessage(\n depositor.toAddress(),\n depositId,\n chainId(),\n updatedOutputAmount,\n updatedRecipient,\n updatedMessage,\n depositorSignature,\n UPDATE_BYTES32_DEPOSIT_DETAILS_HASH\n );\n\n // Assuming the above checks passed, a relayer can take the signature and the updated deposit information\n // from the following event to submit a fill with updated relay data.\n emit RequestedSpeedUpDeposit(\n updatedOutputAmount,\n depositId,\n depositor,\n updatedRecipient,\n updatedMessage,\n depositorSignature\n );\n }\n\n /**\n * @notice A version of `speedUpDeposit` using `address` types for backward compatibility.\n * This function allows the depositor to signal to the relayer to use updated output amount, recipient, and/or message\n * when filling a deposit. This can be useful when the deposit needs to be modified after the original transaction has\n * been mined.\n *\n * @dev The `depositor` and `depositId` must match the parameters in a `FundsDeposited` event that the depositor wants to speed up.\n * The relayer is not obligated but has the option to use this updated information when filling the deposit using\n * `fillRelayWithUpdatedDeposit()`. This version uses `address` types for compatibility with systems relying on\n * `address`-based implementations.\n *\n * @param depositor The depositor that must sign the `depositorSignature` and was the original depositor.\n * @param depositId The deposit ID to speed up.\n * @param updatedOutputAmount The new output amount to use for this deposit. It should be lower than the previous value,\n * otherwise the relayer has no incentive to use this updated value.\n * @param updatedRecipient The new recipient for this deposit. Can be modified if the original recipient is a contract that\n * expects to receive a message from the relay and needs to be changed.\n * @param updatedMessage The new message for this deposit. Can be modified if the recipient is a contract that expects\n * to receive a message from the relay and needs to be updated.\n * @param depositorSignature The signed EIP712 hashstruct containing the deposit ID. Should be signed by the depositor account.\n * If the depositor is a contract, it should implement EIP1271 to sign as a contract. See `_verifyUpdateV3DepositMessage()`\n * for more details on how the signature should be constructed.\n */\n function speedUpV3Deposit(\n address depositor,\n uint256 depositId,\n uint256 updatedOutputAmount,\n address updatedRecipient,\n bytes calldata updatedMessage,\n bytes calldata depositorSignature\n ) public {\n _verifyUpdateV3DepositMessage(\n depositor,\n depositId,\n chainId(),\n updatedOutputAmount,\n updatedRecipient.toBytes32(),\n updatedMessage,\n depositorSignature,\n UPDATE_BYTES32_DEPOSIT_DETAILS_HASH\n );\n\n // Assuming the above checks passed, a relayer can take the signature and the updated deposit information\n // from the following event to submit a fill with updated relay data.\n emit RequestedSpeedUpDeposit(\n updatedOutputAmount,\n depositId,\n depositor.toBytes32(),\n updatedRecipient.toBytes32(),\n updatedMessage,\n depositorSignature\n );\n }\n\n /**************************************\n * RELAYER FUNCTIONS *\n **************************************/\n\n /**\n * @notice Fulfill request to bridge cross chain by sending specified output tokens to the recipient.\n * @dev The fee paid to relayers and the system should be captured in the spread between output\n * amount and input amount when adjusted to be denominated in the input token. A relayer on the destination\n * chain will send outputAmount of outputTokens to the recipient and receive inputTokens on a repayment\n * chain of their choice. Therefore, the fee should account for destination fee transaction costs, the\n * relayer's opportunity cost of capital while they wait to be refunded following an optimistic challenge\n * window in the HubPool, and a system fee charged to relayers.\n * @dev The hash of the relayData will be used to uniquely identify the deposit to fill, so\n * modifying any params in it will result in a different hash and a different deposit. The hash will comprise\n * all parameters passed to deposit() on the origin chain along with that chain's chainId(). This chain's\n * chainId() must therefore match the destinationChainId passed into deposit.\n * Relayers are only refunded for filling deposits with deposit hashes that map exactly to the one emitted by the\n * origin SpokePool therefore the relayer should not modify any params in relayData.\n * @dev Cannot fill more than once. Partial fills are not supported.\n * @param relayData struct containing all the data needed to identify the deposit to be filled. Should match\n * all the same-named parameters emitted in the origin chain FundsDeposited event.\n * - depositor: The account credited with the deposit who can request to \"speed up\" this deposit by modifying\n * the output amount, recipient, and message.\n * - recipient The account receiving funds on this chain. Can be an EOA or a contract. If\n * the output token is the wrapped native token for the chain, then the recipient will receive native token if\n * an EOA or wrapped native token if a contract.\n * - inputToken: The token pulled from the caller's account to initiate the deposit. The equivalent of this\n * token on the repayment chain will be sent as a refund to the caller.\n * - outputToken The token that the caller will send to the recipient on the destination chain. Must be an\n * ERC20.\n * - inputAmount: This amount, less a system fee, will be sent to the caller on their repayment chain of choice as a refund\n * following an optimistic challenge window in the HubPool.\n * - outputAmount: The amount of output tokens that the caller will send to the recipient.\n * - originChainId: The origin chain identifier.\n * - exclusiveRelayer The relayer that will be exclusively allowed to fill this deposit before the\n * exclusivity deadline timestamp.\n * - fillDeadline The deadline for the caller to fill the deposit. After this timestamp,\n * the fill will revert on the destination chain.\n * - exclusivityDeadline: The deadline for the exclusive relayer to fill the deposit. After this\n * timestamp, anyone can fill this deposit. Note that if this value was set in deposit by adding an offset\n * to the deposit's block.timestamp, there is re-org risk for the caller of this method because the event's\n * block.timestamp can change. Read the comments in `deposit` about the `exclusivityParameter` for more details.\n * - message The message to send to the recipient if the recipient is a contract that implements a\n * handleV3AcrossMessage() public function\n * @param repaymentChainId Chain of SpokePool where relayer wants to be refunded after the challenge window has\n * passed. Will receive inputAmount of the equivalent token to inputToken on the repayment chain.\n * @param repaymentAddress Address the relayer wants to be receive their refund at.\n */\n function fillRelay(\n V3RelayData memory relayData,\n uint256 repaymentChainId,\n bytes32 repaymentAddress\n ) public override nonReentrant unpausedFills {\n // Exclusivity deadline is inclusive and is the latest timestamp that the exclusive relayer has sole right\n // to fill the relay.\n if (\n _fillIsExclusive(relayData.exclusivityDeadline, uint32(getCurrentTime())) &&\n relayData.exclusiveRelayer.toAddress() != msg.sender\n ) {\n revert NotExclusiveRelayer();\n }\n\n V3RelayExecutionParams memory relayExecution = V3RelayExecutionParams({\n relay: relayData,\n relayHash: getV3RelayHash(relayData),\n updatedOutputAmount: relayData.outputAmount,\n updatedRecipient: relayData.recipient,\n updatedMessage: relayData.message,\n repaymentChainId: repaymentChainId\n });\n\n _fillRelayV3(relayExecution, repaymentAddress, false);\n }\n\n // Exposes the same function as fillRelay but with a legacy V3RelayData struct that takes in address types. Inner\n // function fillV3Relay() applies reentrancy & non-paused checks.\n function fillV3Relay(V3RelayDataLegacy calldata relayData, uint256 repaymentChainId) public override {\n // Convert V3RelayDataLegacy to V3RelayData using the .toBytes32() method.\n V3RelayData memory convertedRelayData = V3RelayData({\n depositor: relayData.depositor.toBytes32(),\n recipient: relayData.recipient.toBytes32(),\n exclusiveRelayer: relayData.exclusiveRelayer.toBytes32(),\n inputToken: relayData.inputToken.toBytes32(),\n outputToken: relayData.outputToken.toBytes32(),\n inputAmount: relayData.inputAmount,\n outputAmount: relayData.outputAmount,\n originChainId: relayData.originChainId,\n depositId: relayData.depositId,\n fillDeadline: relayData.fillDeadline,\n exclusivityDeadline: relayData.exclusivityDeadline,\n message: relayData.message\n });\n\n fillRelay(convertedRelayData, repaymentChainId, msg.sender.toBytes32());\n }\n\n /**\n * @notice Identical to fillV3Relay except that the relayer wants to use a depositor's updated output amount,\n * recipient, and/or message. The relayer should only use this function if they can supply a message signed\n * by the depositor that contains the fill's matching deposit ID along with updated relay parameters.\n * If the signature can be verified, then this function will emit a FilledV3Event that will be used by\n * the system for refund verification purposes. In other words, this function is an alternative way to fill a\n * a deposit than fillV3Relay.\n * @dev Subject to same exclusivity deadline rules as fillV3Relay().\n * @param relayData struct containing all the data needed to identify the deposit to be filled. See fillV3Relay().\n * @param repaymentChainId Chain of SpokePool where relayer wants to be refunded after the challenge window has\n * passed. See fillV3Relay().\n * @param repaymentAddress Address the relayer wants to be receive their refund at.\n * @param updatedOutputAmount New output amount to use for this deposit.\n * @param updatedRecipient New recipient to use for this deposit.\n * @param updatedMessage New message to use for this deposit.\n * @param depositorSignature Signed EIP712 hashstruct containing the deposit ID. Should be signed by the depositor\n * account.\n */\n function fillRelayWithUpdatedDeposit(\n V3RelayData calldata relayData,\n uint256 repaymentChainId,\n bytes32 repaymentAddress,\n uint256 updatedOutputAmount,\n bytes32 updatedRecipient,\n bytes calldata updatedMessage,\n bytes calldata depositorSignature\n ) public override nonReentrant unpausedFills {\n // Exclusivity deadline is inclusive and is the latest timestamp that the exclusive relayer has sole right\n // to fill the relay.\n if (\n _fillIsExclusive(relayData.exclusivityDeadline, uint32(getCurrentTime())) &&\n relayData.exclusiveRelayer.toAddress() != msg.sender\n ) {\n revert NotExclusiveRelayer();\n }\n\n V3RelayExecutionParams memory relayExecution = V3RelayExecutionParams({\n relay: relayData,\n relayHash: getV3RelayHash(relayData),\n updatedOutputAmount: updatedOutputAmount,\n updatedRecipient: updatedRecipient,\n updatedMessage: updatedMessage,\n repaymentChainId: repaymentChainId\n });\n\n _verifyUpdateV3DepositMessage(\n relayData.depositor.toAddress(),\n relayData.depositId,\n relayData.originChainId,\n updatedOutputAmount,\n updatedRecipient,\n updatedMessage,\n depositorSignature,\n UPDATE_BYTES32_DEPOSIT_DETAILS_HASH\n );\n\n _fillRelayV3(relayExecution, repaymentAddress, false);\n }\n\n /**\n * @notice Request Across to send LP funds to this contract to fulfill a slow fill relay\n * for a deposit in the next bundle.\n * @dev Slow fills are not possible unless the input and output tokens are \"equivalent\", i.e.\n * they route to the same L1 token via PoolRebalanceRoutes.\n * @dev Slow fills are created by inserting slow fill objects into a merkle tree that is included\n * in the next HubPool \"root bundle\". Once the optimistic challenge window has passed, the HubPool\n * will relay the slow root to this chain via relayRootBundle(). Once the slow root is relayed,\n * the slow fill can be executed by anyone who calls executeSlowRelayLeaf().\n * @dev Cannot request a slow fill if the fill deadline has passed.\n * @dev Cannot request a slow fill if the relay has already been filled or a slow fill has already been requested.\n * @param relayData struct containing all the data needed to identify the deposit that should be\n * slow filled. If any of the params are missing or different from the origin chain deposit,\n * then Across will not include a slow fill for the intended deposit.\n */\n function requestSlowFill(V3RelayData calldata relayData) public override nonReentrant unpausedFills {\n uint32 currentTime = uint32(getCurrentTime());\n // If a depositor has set an exclusivity deadline, then only the exclusive relayer should be able to\n // fast fill within this deadline. Moreover, the depositor should expect to get *fast* filled within\n // this deadline, not slow filled. As a simplifying assumption, we will not allow slow fills to be requested\n // during this exclusivity period.\n if (_fillIsExclusive(relayData.exclusivityDeadline, currentTime)) {\n revert NoSlowFillsInExclusivityWindow();\n }\n if (relayData.fillDeadline < currentTime) revert ExpiredFillDeadline();\n\n bytes32 relayHash = getV3RelayHash(relayData);\n if (fillStatuses[relayHash] != uint256(FillStatus.Unfilled)) revert InvalidSlowFillRequest();\n fillStatuses[relayHash] = uint256(FillStatus.RequestedSlowFill);\n\n emit RequestedSlowFill(\n relayData.inputToken,\n relayData.outputToken,\n relayData.inputAmount,\n relayData.outputAmount,\n relayData.originChainId,\n relayData.depositId,\n relayData.fillDeadline,\n relayData.exclusivityDeadline,\n relayData.exclusiveRelayer,\n relayData.depositor,\n relayData.recipient,\n _hashNonEmptyMessage(relayData.message)\n );\n }\n\n /**\n * @notice Fills a single leg of a particular order on the destination chain\n * @dev ERC-7683 fill function.\n * @param orderId Unique order identifier for this order\n * @param originData Data emitted on the origin to parameterize the fill\n * @param fillerData Data provided by the filler to inform the fill or express their preferences\n */\n function fill(bytes32 orderId, bytes calldata originData, bytes calldata fillerData) external {\n if (keccak256(abi.encode(originData, chainId())) != orderId) {\n revert WrongERC7683OrderId();\n }\n\n // Ensure that the call is not malformed. If the call is malformed, abi.decode will fail.\n V3SpokePoolInterface.V3RelayData memory relayData = abi.decode(originData, (V3SpokePoolInterface.V3RelayData));\n AcrossDestinationFillerData memory destinationFillerData = abi.decode(\n fillerData,\n (AcrossDestinationFillerData)\n );\n\n // Must do a delegatecall because the function requires the inputs to be calldata.\n (bool success, bytes memory data) = address(this).delegatecall(\n abi.encodeCall(\n V3SpokePoolInterface.fillRelay,\n (relayData, destinationFillerData.repaymentChainId, msg.sender.toBytes32())\n )\n );\n if (!success) {\n revert LowLevelCallFailed(data);\n }\n }\n\n /**************************************\n * DATA WORKER FUNCTIONS *\n **************************************/\n\n /**\n * @notice Executes a slow relay leaf stored as part of a root bundle relayed by the HubPool.\n * @dev Executing a slow fill leaf is equivalent to filling the relayData so this function cannot be used to\n * double fill a recipient. The relayData that is filled is included in the slowFillLeaf and is hashed\n * like any other fill sent through a fill method.\n * @dev There is no relayer credited with filling this relay since funds are sent directly out of this contract.\n * @param slowFillLeaf Contains all data necessary to uniquely identify a relay for this chain. This struct is\n * hashed and included in a merkle root that is relayed to all spoke pools.\n * - relayData: struct containing all the data needed to identify the original deposit to be slow filled.\n * - chainId: chain identifier where slow fill leaf should be executed. If this doesn't match this chain's\n * chainId, then this function will revert.\n * - updatedOutputAmount: Amount to be sent to recipient out of this contract's balance. Can be set differently\n * from relayData.outputAmount to charge a different fee because this deposit was \"slow\" filled. Usually,\n * this will be set higher to reimburse the recipient for waiting for the slow fill.\n * @param rootBundleId Unique ID of root bundle containing slow relay root that this leaf is contained in.\n * @param proof Inclusion proof for this leaf in slow relay root in root bundle.\n */\n function executeSlowRelayLeaf(\n V3SlowFill calldata slowFillLeaf,\n uint32 rootBundleId,\n bytes32[] calldata proof\n ) public override nonReentrant {\n V3RelayData memory relayData = slowFillLeaf.relayData;\n\n _preExecuteLeafHook(relayData.outputToken.toAddress());\n\n // @TODO In the future consider allowing way for slow fill leaf to be created with updated\n // deposit params like outputAmount, message and recipient.\n V3RelayExecutionParams memory relayExecution = V3RelayExecutionParams({\n relay: relayData,\n relayHash: getV3RelayHash(relayData),\n updatedOutputAmount: slowFillLeaf.updatedOutputAmount,\n updatedRecipient: relayData.recipient,\n updatedMessage: relayData.message,\n repaymentChainId: EMPTY_REPAYMENT_CHAIN_ID // Repayment not relevant for slow fills.\n });\n\n _verifyV3SlowFill(relayExecution, rootBundleId, proof);\n\n // - No relayer to refund for slow fill executions.\n _fillRelayV3(relayExecution, EMPTY_RELAYER, true);\n }\n\n /**\n * @notice Executes a relayer refund leaf stored as part of a root bundle. Will send the relayer the amount they\n * sent to the recipient plus a relayer fee.\n * @param rootBundleId Unique ID of root bundle containing relayer refund root that this leaf is contained in.\n * @param relayerRefundLeaf Contains all data necessary to reconstruct leaf contained in root bundle and to\n * refund relayer. This data structure is explained in detail in the SpokePoolInterface.\n * @param proof Inclusion proof for this leaf in relayer refund root in root bundle.\n */\n function executeRelayerRefundLeaf(\n uint32 rootBundleId,\n SpokePoolInterface.RelayerRefundLeaf memory relayerRefundLeaf,\n bytes32[] memory proof\n ) public payable virtual override nonReentrant {\n _preExecuteLeafHook(relayerRefundLeaf.l2TokenAddress);\n\n if (relayerRefundLeaf.chainId != chainId()) revert InvalidChainId();\n\n RootBundle storage rootBundle = rootBundles[rootBundleId];\n\n // Check that proof proves that relayerRefundLeaf is contained within the relayer refund root.\n // Note: This should revert if the relayerRefundRoot is uninitialized.\n if (!MerkleLib.verifyRelayerRefund(rootBundle.relayerRefundRoot, relayerRefundLeaf, proof)) {\n revert InvalidMerkleProof();\n }\n\n _setClaimedLeaf(rootBundleId, relayerRefundLeaf.leafId);\n\n bool deferredRefunds = _distributeRelayerRefunds(\n relayerRefundLeaf.chainId,\n relayerRefundLeaf.amountToReturn,\n relayerRefundLeaf.refundAmounts,\n relayerRefundLeaf.leafId,\n relayerRefundLeaf.l2TokenAddress,\n relayerRefundLeaf.refundAddresses\n );\n\n emit ExecutedRelayerRefundRoot(\n relayerRefundLeaf.amountToReturn,\n relayerRefundLeaf.chainId,\n relayerRefundLeaf.refundAmounts,\n rootBundleId,\n relayerRefundLeaf.leafId,\n relayerRefundLeaf.l2TokenAddress,\n relayerRefundLeaf.refundAddresses,\n deferredRefunds,\n msg.sender\n );\n }\n\n /**\n * @notice Enables a relayer to claim outstanding repayments. Should virtually never be used, unless for some reason\n * relayer repayment transfer fails for reasons such as token transfer reverts due to blacklisting. In this case,\n * the relayer can still call this method and claim the tokens to a new address.\n * @param l2TokenAddress Address of the L2 token to claim refunds for.\n * @param refundAddress Address to send the refund to.\n */\n function claimRelayerRefund(bytes32 l2TokenAddress, bytes32 refundAddress) external {\n uint256 refund = relayerRefund[l2TokenAddress.toAddress()][msg.sender];\n if (refund == 0) revert NoRelayerRefundToClaim();\n relayerRefund[l2TokenAddress.toAddress()][msg.sender] = 0;\n IERC20Upgradeable(l2TokenAddress.toAddress()).safeTransfer(refundAddress.toAddress(), refund);\n\n emit ClaimedRelayerRefund(l2TokenAddress, refundAddress, refund, msg.sender);\n }\n\n /**************************************\n * VIEW FUNCTIONS *\n **************************************/\n\n /**\n * @notice Returns chain ID for this network.\n * @dev Some L2s like ZKSync don't support the CHAIN_ID opcode so we allow the implementer to override this.\n */\n function chainId() public view virtual override returns (uint256) {\n return block.chainid;\n }\n\n /**\n * @notice Gets the current time.\n * @return uint for the current timestamp.\n */\n function getCurrentTime() public view virtual returns (uint256) {\n return block.timestamp; // solhint-disable-line not-rely-on-time\n }\n\n /**\n * @notice Returns the deposit ID for an unsafe deposit. This function is used to compute the deposit ID\n * in unsafeDeposit and is provided as a convenience.\n * @dev msgSender and depositor are both used as inputs to allow passthrough depositors to create unique\n * deposit hash spaces for unique depositors.\n * @param msgSender The caller of the transaction used as input to produce the deposit ID.\n * @param depositor The depositor address used as input to produce the deposit ID.\n * @param depositNonce The nonce used as input to produce the deposit ID.\n * @return The deposit ID for the unsafe deposit.\n */\n function getUnsafeDepositId(\n address msgSender,\n bytes32 depositor,\n uint256 depositNonce\n ) public pure returns (uint256) {\n return uint256(keccak256(abi.encodePacked(msgSender, depositor, depositNonce)));\n }\n\n function getRelayerRefund(address l2TokenAddress, address refundAddress) public view returns (uint256) {\n return relayerRefund[l2TokenAddress][refundAddress];\n }\n\n function getV3RelayHash(V3RelayData memory relayData) public view returns (bytes32) {\n return keccak256(abi.encode(relayData, chainId()));\n }\n\n /**************************************\n * INTERNAL FUNCTIONS *\n **************************************/\n\n function _depositV3(DepositV3Params memory params) internal {\n // Verify depositor is a valid EVM address.\n params.depositor.checkAddress();\n\n // Require that quoteTimestamp has a maximum age so that depositors pay an LP fee based on recent HubPool usage.\n // It is assumed that cross-chain timestamps are normally loosely in-sync, but clock drift can occur. If the\n // SpokePool time stalls or lags significantly, it is still possible to make deposits by setting quoteTimestamp\n // within the configured buffer. The owner should pause deposits/fills if this is undesirable.\n // This will underflow if quoteTimestamp is more than depositQuoteTimeBuffer;\n // this is safe but will throw an unintuitive error.\n\n // slither-disable-next-line timestamp\n uint256 currentTime = getCurrentTime();\n if (currentTime < params.quoteTimestamp || currentTime - params.quoteTimestamp > depositQuoteTimeBuffer)\n revert InvalidQuoteTimestamp();\n\n // fillDeadline is relative to the destination chain.\n // Don’t allow fillDeadline to be more than several bundles into the future.\n // This limits the maximum required lookback for dataworker and relayer instances.\n if (params.fillDeadline > currentTime + fillDeadlineBuffer) revert InvalidFillDeadline();\n\n // There are three cases for setting the exclusivity deadline using the exclusivity parameter:\n // 1. If this parameter is 0, then there is no exclusivity period and emit 0 for the deadline. This\n // means that fillers of this deposit do not have to worry about the block.timestamp of this event changing\n // due to re-orgs when filling this deposit.\n // 2. If the exclusivity parameter is less than or equal to MAX_EXCLUSIVITY_PERIOD_SECONDS, then the exclusivity\n // deadline is set to the block.timestamp of this event plus the exclusivity parameter. This means that the\n // filler of this deposit assumes re-org risk when filling this deposit because the block.timestamp of this\n // event affects the exclusivity deadline.\n // 3. Otherwise, interpret this parameter as a timestamp and emit it as the exclusivity deadline. This means\n // that the filler of this deposit will not assume re-org risk related to the block.timestamp of this\n // event changing.\n uint32 exclusivityDeadline = params.exclusivityParameter;\n if (exclusivityDeadline > 0) {\n if (exclusivityDeadline <= MAX_EXCLUSIVITY_PERIOD_SECONDS) {\n exclusivityDeadline += uint32(currentTime);\n }\n\n // As a safety measure, prevent caller from inadvertently locking funds during exclusivity period\n // by forcing them to specify an exclusive relayer.\n if (params.exclusiveRelayer == bytes32(0)) revert InvalidExclusiveRelayer();\n }\n\n // If the address of the origin token is a wrappedNativeToken contract and there is a msg.value with the\n // transaction then the user is sending the native token. In this case, the native token should be\n // wrapped.\n if (params.inputToken == address(wrappedNativeToken).toBytes32() && msg.value > 0) {\n if (msg.value != params.inputAmount) revert MsgValueDoesNotMatchInputAmount();\n wrappedNativeToken.deposit{ value: msg.value }();\n // Else, it is a normal ERC20. In this case pull the token from the caller as per normal.\n // Note: this includes the case where the L2 caller has WETH (already wrapped ETH) and wants to bridge them.\n // In this case the msg.value will be set to 0, indicating a \"normal\" ERC20 bridging action.\n } else {\n // msg.value should be 0 if input token isn't the wrapped native token.\n if (msg.value != 0) revert MsgValueDoesNotMatchInputAmount();\n IERC20Upgradeable(params.inputToken.toAddress()).safeTransferFrom(\n msg.sender,\n address(this),\n params.inputAmount\n );\n }\n\n emit FundsDeposited(\n params.inputToken,\n params.outputToken,\n params.inputAmount,\n params.outputAmount,\n params.destinationChainId,\n params.depositId,\n params.quoteTimestamp,\n params.fillDeadline,\n exclusivityDeadline,\n params.depositor,\n params.recipient,\n params.exclusiveRelayer,\n params.message\n );\n }\n\n function _deposit(\n address depositor,\n address recipient,\n address originToken,\n uint256 amount,\n uint256 destinationChainId,\n int64 relayerFeePct,\n uint32 quoteTimestamp,\n bytes memory message\n ) internal {\n // We limit the relay fees to prevent the user spending all their funds on fees.\n if (SignedMath.abs(relayerFeePct) >= 0.5e18) revert InvalidRelayerFeePct();\n if (amount > MAX_TRANSFER_SIZE) revert MaxTransferSizeExceeded();\n\n // Require that quoteTimestamp has a maximum age so that depositors pay an LP fee based on recent HubPool usage.\n // It is assumed that cross-chain timestamps are normally loosely in-sync, but clock drift can occur. If the\n // SpokePool time stalls or lags significantly, it is still possible to make deposits by setting quoteTimestamp\n // within the configured buffer. The owner should pause deposits if this is undesirable. This will underflow if\n // quoteTimestamp is more than depositQuoteTimeBuffer; this is safe but will throw an unintuitive error.\n\n // slither-disable-next-line timestamp\n if (getCurrentTime() - quoteTimestamp > depositQuoteTimeBuffer) revert InvalidQuoteTimestamp();\n\n // Increment count of deposits so that deposit ID for this spoke pool is unique.\n uint32 newDepositId = numberOfDeposits++;\n\n // If the address of the origin token is a wrappedNativeToken contract and there is a msg.value with the\n // transaction then the user is sending ETH. In this case, the ETH should be deposited to wrappedNativeToken.\n if (originToken == address(wrappedNativeToken) && msg.value > 0) {\n if (msg.value != amount) revert MsgValueDoesNotMatchInputAmount();\n wrappedNativeToken.deposit{ value: msg.value }();\n // Else, it is a normal ERC20. In this case pull the token from the user's wallet as per normal.\n // Note: this includes the case where the L2 user has WETH (already wrapped ETH) and wants to bridge them.\n // In this case the msg.value will be set to 0, indicating a \"normal\" ERC20 bridging action.\n } else {\n IERC20Upgradeable(originToken).safeTransferFrom(msg.sender, address(this), amount);\n }\n\n emit FundsDeposited(\n originToken.toBytes32(), // inputToken\n bytes32(0), // outputToken. Setting this to 0x0 means that the outputToken should be assumed to be the\n // canonical token for the destination chain matching the inputToken. Therefore, this deposit\n // can always be slow filled.\n // - setting token to 0x0 will signal to off-chain validator that the \"equivalent\"\n // token as the inputToken for the destination chain should be replaced here.\n amount, // inputAmount\n _computeAmountPostFees(amount, relayerFeePct), // outputAmount\n // - output amount will be the deposit amount less relayerFeePct, which should now be set\n // equal to realizedLpFeePct + gasFeePct + capitalCostFeePct where (gasFeePct + capitalCostFeePct)\n // is equal to the old usage of `relayerFeePct`.\n destinationChainId,\n newDepositId,\n quoteTimestamp,\n INFINITE_FILL_DEADLINE, // fillDeadline. Default to infinite expiry because\n // expired deposits refunds could be a breaking change for existing users of this function.\n 0, // exclusivityDeadline. Setting this to 0 along with the exclusiveRelayer to 0x0 means that there\n // is no exclusive deadline\n depositor.toBytes32(),\n recipient.toBytes32(),\n bytes32(0), // exclusiveRelayer. Setting this to 0x0 will signal to off-chain validator that there\n // is no exclusive relayer.\n message\n );\n }\n\n function _distributeRelayerRefunds(\n uint256 _chainId,\n uint256 amountToReturn,\n uint256[] memory refundAmounts,\n uint32 leafId,\n address l2TokenAddress,\n address[] memory refundAddresses\n ) internal returns (bool deferredRefunds) {\n uint256 numRefunds = refundAmounts.length;\n if (refundAddresses.length != numRefunds) revert InvalidMerkleLeaf();\n\n if (numRefunds > 0) {\n uint256 spokeStartBalance = IERC20Upgradeable(l2TokenAddress).balanceOf(address(this));\n uint256 totalRefundedAmount = 0; // Track the total amount refunded.\n\n // Send each relayer refund address the associated refundAmount for the L2 token address.\n // Note: Even if the L2 token is not enabled on this spoke pool, we should still refund relayers.\n for (uint256 i = 0; i < numRefunds; ++i) {\n if (refundAmounts[i] > 0) {\n totalRefundedAmount += refundAmounts[i];\n\n // Only if the total refunded amount exceeds the spoke starting balance, should we revert. This\n // ensures that bundles are atomic, if we have sufficient balance to refund all relayers and\n // prevents can only re-pay some of the relayers.\n if (totalRefundedAmount > spokeStartBalance) revert InsufficientSpokePoolBalanceToExecuteLeaf();\n\n bool success = _noRevertTransfer(l2TokenAddress, refundAddresses[i], refundAmounts[i]);\n\n // If the transfer failed then track a deferred transfer for the relayer. Given this function would\n // have reverted if there was insufficient balance, this will only happen if the transfer call\n // reverts. This will only occur if the underlying transfer method on the l2Token reverts due to\n // recipient blacklisting or other related modifications to the l2Token.transfer method.\n if (!success) {\n relayerRefund[l2TokenAddress][refundAddresses[i]] += refundAmounts[i];\n deferredRefunds = true;\n }\n }\n }\n }\n // If leaf's amountToReturn is positive, then send L2 --> L1 message to bridge tokens back via\n // chain-specific bridging method.\n if (amountToReturn > 0) {\n _bridgeTokensToHubPool(amountToReturn, l2TokenAddress);\n\n emit TokensBridged(amountToReturn, _chainId, leafId, l2TokenAddress.toBytes32(), msg.sender);\n }\n }\n\n // Re-implementation of OZ _callOptionalReturnBool to use private logic. Function executes a transfer and returns a\n // bool indicating if the external call was successful, rather than reverting. Original method:\n // https://github.com/OpenZeppelin/openzeppelin-contracts/blob/28aed34dc5e025e61ea0390c18cac875bfde1a78/contracts/token/ERC20/utils/SafeERC20.sol#L188\n function _noRevertTransfer(address token, address to, uint256 amount) internal returns (bool) {\n bool success;\n uint256 returnSize;\n uint256 returnValue;\n bytes memory data = abi.encodeCall(IERC20Upgradeable.transfer, (to, amount));\n assembly {\n success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)\n returnSize := returndatasize()\n returnValue := mload(0)\n }\n return success && (returnSize == 0 ? address(token).code.length > 0 : returnValue == 1);\n }\n\n function _setCrossDomainAdmin(address newCrossDomainAdmin) internal {\n if (newCrossDomainAdmin == address(0)) revert InvalidCrossDomainAdmin();\n crossDomainAdmin = newCrossDomainAdmin;\n emit SetXDomainAdmin(newCrossDomainAdmin);\n }\n\n function _setWithdrawalRecipient(address newWithdrawalRecipient) internal {\n if (newWithdrawalRecipient == address(0)) revert InvalidWithdrawalRecipient();\n withdrawalRecipient = newWithdrawalRecipient;\n emit SetWithdrawalRecipient(newWithdrawalRecipient);\n }\n\n function _preExecuteLeafHook(address) internal virtual {\n // This method by default is a no-op. Different child spoke pools might want to execute functionality here\n // such as wrapping any native tokens owned by the contract into wrapped tokens before proceeding with\n // executing the leaf.\n }\n\n // Should be overriden by implementing contract depending on how L2 handles sending tokens to L1.\n function _bridgeTokensToHubPool(uint256 amountToReturn, address l2TokenAddress) internal virtual;\n\n function _setClaimedLeaf(uint32 rootBundleId, uint32 leafId) internal {\n RootBundle storage rootBundle = rootBundles[rootBundleId];\n\n // Verify the leafId in the leaf has not yet been claimed.\n if (MerkleLib.isClaimed(rootBundle.claimedBitmap, leafId)) revert ClaimedMerkleLeaf();\n\n // Set leaf as claimed in bitmap. This is passed by reference to the storage rootBundle.\n MerkleLib.setClaimed(rootBundle.claimedBitmap, leafId);\n }\n\n function _verifyUpdateV3DepositMessage(\n address depositor,\n uint256 depositId,\n uint256 originChainId,\n uint256 updatedOutputAmount,\n bytes32 updatedRecipient,\n bytes memory updatedMessage,\n bytes memory depositorSignature,\n bytes32 hashType\n ) internal view {\n // A depositor can request to modify an un-relayed deposit by signing a hash containing the updated\n // details and information uniquely identifying the deposit to relay. This information ensures\n // that this signature cannot be re-used for other deposits.\n bytes32 expectedTypedDataV4Hash = _hashTypedDataV4(\n keccak256(\n abi.encode(\n hashType,\n depositId,\n originChainId,\n updatedOutputAmount,\n updatedRecipient,\n keccak256(updatedMessage)\n )\n ),\n originChainId\n );\n _verifyDepositorSignature(depositor, expectedTypedDataV4Hash, depositorSignature);\n }\n\n // This function is isolated and made virtual to allow different L2's to implement chain specific recovery of\n // signers from signatures because some L2s might not support ecrecover. To be safe, consider always reverting\n // this function for L2s where ecrecover is different from how it works on Ethereum, otherwise there is the\n // potential to forge a signature from the depositor using a different private key than the original depositor's.\n function _verifyDepositorSignature(\n address depositor,\n bytes32 ethSignedMessageHash,\n bytes memory depositorSignature\n ) internal view virtual {\n // Note:\n // - We don't need to worry about re-entrancy from a contract deployed at the depositor address since the method\n // `SignatureChecker.isValidSignatureNow` is a view method. Re-entrancy can happen, but it cannot affect state.\n // - EIP-1271 signatures are supported. This means that a signature valid now, may not be valid later and vice-versa.\n // - For an EIP-1271 signature to work, the depositor contract address must map to a deployed contract on the destination\n // chain that can validate the signature.\n // - Regular signatures from an EOA are also supported.\n bool isValid = SignatureChecker.isValidSignatureNow(depositor, ethSignedMessageHash, depositorSignature);\n if (!isValid) revert InvalidDepositorSignature();\n }\n\n function _verifyV3SlowFill(\n V3RelayExecutionParams memory relayExecution,\n uint32 rootBundleId,\n bytes32[] memory proof\n ) internal view {\n V3SlowFill memory slowFill = V3SlowFill({\n relayData: relayExecution.relay,\n chainId: chainId(),\n updatedOutputAmount: relayExecution.updatedOutputAmount\n });\n\n if (!MerkleLib.verifyV3SlowRelayFulfillment(rootBundles[rootBundleId].slowRelayRoot, slowFill, proof)) {\n revert InvalidMerkleProof();\n }\n }\n\n function _computeAmountPostFees(uint256 amount, int256 feesPct) private pure returns (uint256) {\n return (amount * uint256(int256(1e18) - feesPct)) / 1e18;\n }\n\n // Unwraps ETH and does a transfer to a recipient address. If the recipient is a smart contract then sends wrappedNativeToken.\n function _unwrapwrappedNativeTokenTo(address payable to, uint256 amount) internal {\n if (!address(to).isContract() || _is7702DelegatedWallet(to)) {\n wrappedNativeToken.withdraw(amount);\n AddressLibUpgradeable.sendValue(to, amount);\n } else {\n IERC20Upgradeable(address(wrappedNativeToken)).safeTransfer(to, amount);\n }\n }\n\n /**\n * @notice Checks if an address is a 7702 delegated wallet (EOA with delegated code).\n * @param account The address to check.\n * @return True if the address is a 7702 delegated wallet, false otherwise.\n */\n function _is7702DelegatedWallet(address account) internal view virtual returns (bool) {\n return bytes3(account.code) == EIP7702_PREFIX;\n }\n\n // @param relayer: relayer who is actually credited as filling this deposit. Can be different from\n // exclusiveRelayer if passed exclusivityDeadline or if slow fill.\n function _fillRelayV3(V3RelayExecutionParams memory relayExecution, bytes32 relayer, bool isSlowFill) internal {\n V3RelayData memory relayData = relayExecution.relay;\n\n if (relayData.fillDeadline < getCurrentTime()) revert ExpiredFillDeadline();\n\n bytes32 relayHash = relayExecution.relayHash;\n\n // If a slow fill for this fill was requested then the relayFills value for this hash will be\n // FillStatus.RequestedSlowFill. Therefore, if this is the status, then this fast fill\n // will be replacing the slow fill. If this is a slow fill execution, then the following variable\n // is trivially true. We'll emit this value in the FilledRelay\n // event to assist the Dataworker in knowing when to return funds back to the HubPool that can no longer\n // be used for a slow fill execution.\n FillType fillType = isSlowFill\n ? FillType.SlowFill // The following is true if this is a fast fill that was sent after a slow fill request.\n : (\n fillStatuses[relayExecution.relayHash] == uint256(FillStatus.RequestedSlowFill)\n ? FillType.ReplacedSlowFill\n : FillType.FastFill\n );\n\n // @dev This function doesn't support partial fills. Therefore, we associate the relay hash with\n // an enum tracking its fill status. All filled relays, whether slow or fast fills, are set to the Filled\n // status. However, we also use this slot to track whether this fill had a slow fill requested. Therefore\n // we can include a bool in the FilledRelay event making it easy for the dataworker to compute if this\n // fill was a fast fill that replaced a slow fill and therefore this SpokePool has excess funds that it\n // needs to send back to the HubPool.\n if (fillStatuses[relayHash] == uint256(FillStatus.Filled)) revert RelayFilled();\n fillStatuses[relayHash] = uint256(FillStatus.Filled);\n\n _emitFilledRelayEvent(relayExecution, relayData, relayer, fillType);\n _transferTokensToRecipient(relayExecution, relayData, isSlowFill);\n }\n\n /**\n * @notice Emits the FilledRelay event for a completed relay fill.\n * @param relayExecution The relay execution parameters.\n * @param relayData The relay data.\n * @param relayer The relayer address.\n * @param fillType The type of fill being executed.\n */\n function _emitFilledRelayEvent(\n V3RelayExecutionParams memory relayExecution,\n V3RelayData memory relayData,\n bytes32 relayer,\n FillType fillType\n ) internal {\n emit FilledRelay(\n relayData.inputToken,\n relayData.outputToken,\n relayData.inputAmount,\n relayData.outputAmount,\n relayExecution.repaymentChainId,\n relayData.originChainId,\n relayData.depositId,\n relayData.fillDeadline,\n relayData.exclusivityDeadline,\n relayData.exclusiveRelayer,\n relayer,\n relayData.depositor,\n relayData.recipient,\n _hashNonEmptyMessage(relayData.message),\n V3RelayExecutionEventInfo({\n updatedRecipient: relayExecution.updatedRecipient,\n updatedMessageHash: _hashNonEmptyMessage(relayExecution.updatedMessage),\n updatedOutputAmount: relayExecution.updatedOutputAmount,\n fillType: fillType\n })\n );\n }\n\n /**\n * @notice Transfers tokens to the recipient based on the relay execution parameters.\n * @param relayExecution The relay execution parameters.\n * @param relayData The relay data.\n * @param isSlowFill Whether this is a slow fill execution.\n */\n function _transferTokensToRecipient(\n V3RelayExecutionParams memory relayExecution,\n V3RelayData memory relayData,\n bool isSlowFill\n ) internal {\n address outputToken = relayData.outputToken.toAddress();\n uint256 amountToSend = relayExecution.updatedOutputAmount;\n address recipientToSend = relayExecution.updatedRecipient.toAddress();\n\n // If relay token is wrappedNativeToken then unwrap and send native token.\n if (outputToken == address(wrappedNativeToken)) {\n // Note: useContractFunds is True if we want to send funds to the recipient directly out of this contract,\n // otherwise we expect the caller to send funds to the recipient. If useContractFunds is True and the\n // recipient wants wrappedNativeToken, then we can assume that wrappedNativeToken is already in the\n // contract, otherwise we'll need the user to send wrappedNativeToken to this contract. Regardless, we'll\n // need to unwrap it to native token before sending to the user.\n if (!isSlowFill) IERC20Upgradeable(outputToken).safeTransferFrom(msg.sender, address(this), amountToSend);\n _unwrapwrappedNativeTokenTo(payable(recipientToSend), amountToSend);\n // Else, this is a normal ERC20 token. Send to recipient.\n } else {\n // Note: Similar to note above, send token directly from the contract to the user in the slow relay case.\n if (!isSlowFill) IERC20Upgradeable(outputToken).safeTransferFrom(msg.sender, recipientToSend, amountToSend);\n else IERC20Upgradeable(outputToken).safeTransfer(recipientToSend, amountToSend);\n }\n\n bytes memory updatedMessage = relayExecution.updatedMessage;\n if (updatedMessage.length > 0 && recipientToSend.isContract()) {\n AcrossMessageHandler(recipientToSend).handleV3AcrossMessage(\n outputToken,\n amountToSend,\n msg.sender,\n updatedMessage\n );\n }\n }\n\n // Determine whether the exclusivityDeadline implies active exclusivity.\n function _fillIsExclusive(uint32 exclusivityDeadline, uint32 currentTime) internal pure returns (bool) {\n return exclusivityDeadline >= currentTime;\n }\n\n // Helper for emitting message hash. For easier easier human readability we return bytes32(0) for empty message.\n function _hashNonEmptyMessage(bytes memory message) internal pure returns (bytes32) {\n if (message.length == 0) return bytes32(0);\n else return keccak256(message);\n }\n\n function _setOftMessenger(address _token, address _messenger) private {\n if (_messenger != address(0) && IOFT(_messenger).token() != _token) {\n revert OFTTokenMismatch();\n }\n oftMessengers[_token] = _messenger;\n emit SetOFTMessenger(_token, _messenger);\n }\n\n function _getOftMessenger(address _token) internal view returns (address) {\n return oftMessengers[_token];\n }\n\n /**\n * @notice Perform an OFT transfer where the caller supplies the native fee via msg.value.\n * @dev Supports overpayment: any excess native token is refunded to msg.sender before executing the transfer.\n * This function does not re-quote and uses the provided `fee` with `_sendOftTransfer`.\n * Must be invoked from a payable context.\n * @param _token ERC-20 token to transfer.\n * @param _messenger OFT messenger contract on the current chain for `_token`.\n * @param _to Destination address on the remote chain.\n * @param _amount Amount of tokens to transfer.\n */\n function _fundedTransferViaOft(IERC20 _token, IOFT _messenger, address _to, uint256 _amount) internal {\n (SendParam memory sendParam, MessagingFee memory fee) = _buildOftTransfer(_messenger, _to, _amount);\n\n if (fee.nativeFee > msg.value) {\n revert OFTFeeUnderpaid();\n }\n // Refund any overpayment to the caller using a safe native transfer.\n uint256 refund = msg.value - fee.nativeFee;\n if (refund > 0) {\n AddressLibUpgradeable.sendValue(payable(msg.sender), refund);\n }\n _sendOftTransfer(_token, _messenger, sendParam, fee);\n }\n\n // Implementing contract needs to override this to ensure that only the appropriate cross chain admin can execute\n // certain admin functions. For L2 contracts, the cross chain admin refers to some L1 address or contract, and for\n // L1, this would just be the same admin of the HubPool.\n function _requireAdminSender() internal virtual;\n\n // Added to enable the this contract to receive native token (ETH). Used when unwrapping wrappedNativeToken.\n receive() external payable {}\n\n // Reserve storage slots for future versions of this base contract to add state variables without\n // affecting the storage layout of child contracts. Decrement the size of __gap whenever state variables\n // are added, so that the total number of slots taken by this contract remains constant. Per-contract\n // storage layout information can be found in storage-layouts/\n // This is at bottom of contract to make sure it's always at the end of storage.\n uint256[997] private __gap;\n}\n"
+ },
+ "contracts/SpokePoolPeriphery.sol": {
+ "content": "// SPDX-License-Identifier: GPL-3.0-or-later\npragma solidity ^0.8.0;\n\nimport { IERC20 } from \"@openzeppelin/contracts-v4/token/ERC20/IERC20.sol\";\nimport { SafeERC20 } from \"@openzeppelin/contracts-v4/token/ERC20/utils/SafeERC20.sol\";\nimport { IERC20Permit } from \"@openzeppelin/contracts-v4/token/ERC20/extensions/IERC20Permit.sol\";\nimport { Address } from \"@openzeppelin/contracts-v4/utils/Address.sol\";\nimport { MultiCaller } from \"contracts/external/uma/core/contracts/common/implementation/MultiCaller.sol\";\nimport { ReentrancyGuard } from \"@openzeppelin/contracts-v4/security/ReentrancyGuard.sol\";\nimport { SignatureChecker } from \"@openzeppelin/contracts-v4/utils/cryptography/SignatureChecker.sol\";\nimport { EIP712 } from \"@openzeppelin/contracts-v4/utils/cryptography/EIP712.sol\";\nimport { V3SpokePoolInterface } from \"./interfaces/V3SpokePoolInterface.sol\";\nimport { IERC20Auth } from \"./external/interfaces/IERC20Auth.sol\";\nimport { WETH9Interface } from \"./external/interfaces/WETH9Interface.sol\";\nimport { IPermit2 } from \"./external/interfaces/IPermit2.sol\";\nimport { PeripherySigningLib } from \"./libraries/PeripherySigningLib.sol\";\nimport { SpokePoolPeripheryInterface } from \"./interfaces/SpokePoolPeripheryInterface.sol\";\nimport { AddressToBytes32 } from \"./libraries/AddressConverters.sol\";\n\n/**\n * @title SwapProxy\n * @notice A dedicated proxy contract that isolates swap execution to mitigate frontrunning vulnerabilities.\n * The SpokePoolPeriphery transfers tokens to this contract, which performs the swap and returns tokens back to the periphery.\n * @custom:security-contact bugs@across.to\n */\ncontract SwapProxy is ReentrancyGuard {\n using SafeERC20 for IERC20;\n using Address for address;\n\n // Canonical Permit2 contract address\n IPermit2 public immutable permit2;\n\n // EIP 1271 magic bytes indicating a valid signature.\n bytes4 private constant EIP1271_VALID_SIGNATURE = 0x1626ba7e;\n\n // EIP 1271 bytes indicating an invalid signature.\n bytes4 private constant EIP1271_INVALID_SIGNATURE = 0xffffffff;\n\n // Mapping from (token, spender) to nonce for Permit2 operations\n mapping(address => mapping(address => uint48)) private permit2Nonces;\n\n // Slot for checking whether this contract is expecting a callback from permit2. Used to confirm whether it should return a valid signature response.\n bool private expectingPermit2Callback;\n\n // Errors\n error SwapFailed();\n error UnsupportedTransferType();\n error InvalidExchange();\n\n /**\n * @notice Constructs a new SwapProxy.\n * @param _permit2 Address of the canonical permit2 contract.\n */\n constructor(address _permit2) {\n permit2 = IPermit2(_permit2);\n }\n\n /**\n * @notice Executes a swap on the given exchange with the provided calldata.\n * @param inputToken The token to swap from\n * @param outputToken The token to swap to\n * @param inputAmount The amount of input tokens to swap\n * @param exchange The exchange to perform the swap\n * @param transferType The method of transferring tokens to the exchange\n * @param routerCalldata The calldata to execute on the exchange\n * @return outputAmount The actual amount of output tokens received from the swap\n */\n function performSwap(\n address inputToken,\n address outputToken,\n uint256 inputAmount,\n address exchange,\n SpokePoolPeripheryInterface.TransferType transferType,\n bytes calldata routerCalldata\n ) external nonReentrant returns (uint256 outputAmount) {\n // Prevent nonce invalidation attack by disallowing exchange to be the permit2 address\n if (exchange == address(permit2)) revert InvalidExchange();\n\n // We'll return the final balance of output tokens\n\n // The exchange will either receive funds from this contract via:\n // 1. A direct approval to spend funds on this contract (TransferType.Approval),\n // 2. A direct transfer of funds to the exchange (TransferType.Transfer), or\n // 3. A permit2 approval (TransferType.Permit2Approval)\n if (transferType == SpokePoolPeripheryInterface.TransferType.Approval) {\n IERC20(inputToken).forceApprove(exchange, inputAmount);\n } else if (transferType == SpokePoolPeripheryInterface.TransferType.Transfer) {\n IERC20(inputToken).safeTransfer(exchange, inputAmount);\n } else if (transferType == SpokePoolPeripheryInterface.TransferType.Permit2Approval) {\n IERC20(inputToken).forceApprove(address(permit2), inputAmount);\n expectingPermit2Callback = true;\n permit2.permit(\n address(this), // owner\n IPermit2.PermitSingle({\n details: IPermit2.PermitDetails({\n token: inputToken,\n amount: uint160(inputAmount),\n expiration: uint48(block.timestamp),\n nonce: permit2Nonces[inputToken][exchange]++\n }),\n spender: exchange,\n sigDeadline: block.timestamp\n }), // permitSingle\n \"\" // signature is unused. The only verification for a valid signature is if we are at this code block.\n );\n expectingPermit2Callback = false;\n } else {\n revert UnsupportedTransferType();\n }\n\n // Execute the swap\n (bool success, ) = exchange.call(routerCalldata);\n if (!success) revert SwapFailed();\n\n // Get the final output token balance\n uint256 outputBalance = IERC20(outputToken).balanceOf(address(this));\n\n // Transfer all output tokens back to the periphery\n IERC20(outputToken).safeTransfer(msg.sender, outputBalance);\n\n // Return the net amount received from the swap\n return outputBalance;\n }\n\n /**\n * @notice Verifies that the signer is the owner of the signing contract.\n * @dev This function is called by Permit2 during the permit process\n * and we need to return a valid signature result to allow permit2 to succeed.\n */\n function isValidSignature(bytes32, bytes calldata) external view returns (bytes4 magicBytes) {\n magicBytes = (msg.sender == address(permit2) && expectingPermit2Callback)\n ? EIP1271_VALID_SIGNATURE\n : EIP1271_INVALID_SIGNATURE;\n }\n}\n\n/**\n * @title SpokePoolPeriphery\n * @notice Contract for performing more complex interactions with an Across spoke pool deployment.\n * @custom:security-contact bugs@across.to\n */\ncontract SpokePoolPeriphery is SpokePoolPeripheryInterface, ReentrancyGuard, MultiCaller, EIP712 {\n using SafeERC20 for IERC20;\n using Address for address;\n using AddressToBytes32 for address;\n\n // Canonical Permit2 contract address.\n IPermit2 public immutable permit2;\n\n // Swap proxy used for isolating all swap operations\n SwapProxy public immutable swapProxy;\n\n // Mapping from user address to their current nonce\n mapping(address => uint256) public permitNonces;\n\n event SwapBeforeBridge(\n address exchange,\n bytes exchangeCalldata,\n address indexed swapToken,\n address indexed acrossInputToken,\n uint256 swapTokenAmount,\n uint256 acrossInputAmount,\n bytes32 indexed acrossOutputToken,\n uint256 acrossOutputAmount\n );\n\n /****************************************\n * ERRORS *\n ****************************************/\n error MinimumExpectedInputAmount();\n error InvalidMsgValue();\n error InvalidSignature();\n error InvalidMinExpectedInputAmount();\n error InvalidNonce();\n\n /**\n * @notice Construct a new Periphery contract.\n * @param _permit2 Address of the canonical permit2 contract.\n */\n constructor(IPermit2 _permit2) EIP712(\"ACROSS-PERIPHERY\", \"1.0.0\") {\n require(address(_permit2) != address(0), \"Permit2 cannot be zero address\");\n require(_isContract(address(_permit2)), \"Permit2 must be a contract\");\n permit2 = _permit2;\n\n // Deploy the swap proxy with reference to the permit2 address\n swapProxy = new SwapProxy(address(_permit2));\n }\n\n /**\n * @inheritdoc SpokePoolPeripheryInterface\n */\n function depositNative(\n address spokePool,\n bytes32 recipient,\n address inputToken,\n uint256 inputAmount,\n bytes32 outputToken,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityParameter,\n bytes memory message\n ) external payable override nonReentrant {\n // Set msg.sender as the depositor so that msg.sender can speed up the deposit.\n V3SpokePoolInterface(spokePool).deposit{ value: msg.value }(\n msg.sender.toBytes32(),\n recipient,\n inputToken.toBytes32(),\n outputToken,\n inputAmount,\n outputAmount,\n destinationChainId,\n exclusiveRelayer,\n quoteTimestamp,\n fillDeadline,\n exclusivityParameter,\n message\n );\n }\n\n /**\n * @inheritdoc SpokePoolPeripheryInterface\n * @dev Revert case: When enableProportionalAdjustment is true, the calculation\n * depositData.outputAmount * returnAmount may overflow if the product exceeds 2^256-1,\n * causing immediate transaction revert even when the final division result would fit.\n * This case should be extremely rare as both values would need to be > 1e18 * 1e18.\n * Users will only see a generic failure without explanatory error message.\n * @dev Does not support native tokens as swap output. Only ERC20 tokens can be deposited via this function.\n */\n function swapAndBridge(SwapAndDepositData calldata swapAndDepositData) external payable override nonReentrant {\n // If a user performs a swapAndBridge with the swap token as the native token, wrap the value and treat the rest of transaction\n // as though the user deposited a wrapped native token.\n if (msg.value != 0) {\n if (msg.value != swapAndDepositData.swapTokenAmount) revert InvalidMsgValue();\n // Assume swapToken implements WETH9 interface if sending value\n WETH9Interface(swapAndDepositData.swapToken).deposit{ value: msg.value }();\n } else {\n // Transfer ERC20 tokens from sender to this contract\n IERC20(swapAndDepositData.swapToken).safeTransferFrom(\n msg.sender,\n address(this),\n swapAndDepositData.swapTokenAmount\n );\n }\n\n _swapAndBridge(swapAndDepositData);\n }\n\n /**\n * @inheritdoc SpokePoolPeripheryInterface\n * @dev Revert case: When enableProportionalAdjustment is true, the calculation\n * depositData.outputAmount * returnAmount may overflow if the product exceeds 2^256-1,\n * causing immediate transaction revert even when the final division result would fit.\n * This case should be extremely rare as both values would need to be > 1e18 * 1e18.\n * Users will only see a generic failure without explanatory error message.\n * @dev Does not support native tokens as swap output. Only ERC20 tokens can be deposited via this function.\n */\n function swapAndBridgeWithPermit(\n address signatureOwner,\n SwapAndDepositData calldata swapAndDepositData,\n uint256 deadline,\n bytes calldata permitSignature,\n bytes calldata swapAndDepositDataSignature\n ) external override nonReentrant {\n (bytes32 r, bytes32 s, uint8 v) = PeripherySigningLib.deserializeSignature(permitSignature);\n // Load variables used in this function onto the stack.\n address _swapToken = swapAndDepositData.swapToken;\n uint256 _swapTokenAmount = swapAndDepositData.swapTokenAmount;\n uint256 _submissionFeeAmount = swapAndDepositData.submissionFees.amount;\n address _submissionFeeRecipient = swapAndDepositData.submissionFees.recipient;\n uint256 _pullAmount = _submissionFeeAmount + _swapTokenAmount;\n\n // For permit transactions, we wrap the call in a try/catch block so that the transaction will continue even if the call to\n // permit fails. For example, this may be useful if the permit signature, which can be redeemed by anyone, is executed by somebody\n // other than this contract.\n try IERC20Permit(_swapToken).permit(signatureOwner, address(this), _pullAmount, deadline, v, r, s) {} catch {}\n IERC20(_swapToken).safeTransferFrom(signatureOwner, address(this), _pullAmount);\n _paySubmissionFees(_swapToken, _submissionFeeRecipient, _submissionFeeAmount);\n // Verify and increment nonce to prevent replay attacks.\n _validateAndIncrementNonce(signatureOwner, swapAndDepositData.nonce);\n // Verify that the signatureOwner signed the input swapAndDepositData.\n _validateSignature(\n signatureOwner,\n PeripherySigningLib.hashSwapAndDepositData(swapAndDepositData),\n swapAndDepositDataSignature\n );\n _swapAndBridge(swapAndDepositData);\n }\n\n /**\n * @inheritdoc SpokePoolPeripheryInterface\n * @dev Revert case: When enableProportionalAdjustment is true, the calculation\n * depositData.outputAmount * returnAmount may overflow if the product exceeds 2^256-1,\n * causing immediate transaction revert even when the final division result would fit.\n * This case should be extremely rare as both values would need to be > 1e18 * 1e18.\n * Users will only see a generic failure without explanatory error message.\n * @dev Does not support native tokens as swap output. Only ERC20 tokens can be deposited via this function.\n */\n function swapAndBridgeWithPermit2(\n address signatureOwner,\n SwapAndDepositData calldata swapAndDepositData,\n IPermit2.PermitTransferFrom calldata permit,\n bytes calldata signature\n ) external override nonReentrant {\n bytes32 witness = PeripherySigningLib.hashSwapAndDepositData(swapAndDepositData);\n uint256 _submissionFeeAmount = swapAndDepositData.submissionFees.amount;\n IPermit2.SignatureTransferDetails memory transferDetails = IPermit2.SignatureTransferDetails({\n to: address(this),\n requestedAmount: swapAndDepositData.swapTokenAmount + _submissionFeeAmount\n });\n\n permit2.permitWitnessTransferFrom(\n permit,\n transferDetails,\n signatureOwner,\n witness,\n PeripherySigningLib.EIP712_SWAP_AND_DEPOSIT_TYPE_STRING,\n signature\n );\n _paySubmissionFees(\n swapAndDepositData.swapToken,\n swapAndDepositData.submissionFees.recipient,\n _submissionFeeAmount\n );\n _swapAndBridge(swapAndDepositData);\n }\n\n /**\n * @inheritdoc SpokePoolPeripheryInterface\n * @dev Revert case: When enableProportionalAdjustment is true, the calculation\n * depositData.outputAmount * returnAmount may overflow if the product exceeds 2^256-1,\n * causing immediate transaction revert even when the final division result would fit.\n * This case should be extremely rare as both values would need to be > 1e18 * 1e18.\n * Users will only see a generic failure without explanatory error message.\n * @dev Does not support native tokens as swap output. Only ERC20 tokens can be deposited via this function.\n */\n function swapAndBridgeWithAuthorization(\n address signatureOwner,\n SwapAndDepositData calldata swapAndDepositData,\n uint256 validAfter,\n uint256 validBefore,\n bytes calldata receiveWithAuthSignature,\n bytes calldata swapAndDepositDataSignature\n ) external override nonReentrant {\n (bytes32 r, bytes32 s, uint8 v) = PeripherySigningLib.deserializeSignature(receiveWithAuthSignature);\n uint256 _submissionFeeAmount = swapAndDepositData.submissionFees.amount;\n // While any contract can vacuously implement `receiveWithAuthorization` (or just have a fallback),\n // if tokens were not sent to this contract, by this call to swapData.swapToken, this function will revert\n // when attempting to swap tokens it does not own.\n IERC20Auth(address(swapAndDepositData.swapToken)).receiveWithAuthorization(\n signatureOwner,\n address(this),\n swapAndDepositData.swapTokenAmount + _submissionFeeAmount,\n validAfter,\n validBefore,\n bytes32(swapAndDepositData.nonce),\n v,\n r,\n s\n );\n _paySubmissionFees(\n swapAndDepositData.swapToken,\n swapAndDepositData.submissionFees.recipient,\n _submissionFeeAmount\n );\n\n // Note: No need to validate our internal nonce for receiveWithAuthorization\n // as EIP-3009 has its own nonce mechanism that prevents replay attacks.\n //\n // Design Decision: We reuse the receiveWithAuthorization nonce for our signatures,\n // but not for permit, which creates a theoretical replay attack that we think is\n // incredibly unlikely because this would require:\n // 1. A token implementing both ERC-2612 and ERC-3009\n // 2. A user using the same nonces for swapAndBridgeWithPermit and for swapAndBridgeWithAuthorization\n // 3. Issuing these signatures within a short amount of time (limited by fillDeadlineBuffer)\n // Verify that the signatureOwner signed the input swapAndDepositData.\n _validateSignature(\n signatureOwner,\n PeripherySigningLib.hashSwapAndDepositData(swapAndDepositData),\n swapAndDepositDataSignature\n );\n _swapAndBridge(swapAndDepositData);\n }\n\n /**\n * @inheritdoc SpokePoolPeripheryInterface\n */\n function depositWithPermit(\n address signatureOwner,\n DepositData calldata depositData,\n uint256 deadline,\n bytes calldata permitSignature,\n bytes calldata depositDataSignature\n ) external override nonReentrant {\n (bytes32 r, bytes32 s, uint8 v) = PeripherySigningLib.deserializeSignature(permitSignature);\n // Load variables used in this function onto the stack.\n address _inputToken = depositData.baseDepositData.inputToken;\n uint256 _inputAmount = depositData.inputAmount;\n uint256 _submissionFeeAmount = depositData.submissionFees.amount;\n address _submissionFeeRecipient = depositData.submissionFees.recipient;\n uint256 _pullAmount = _submissionFeeAmount + _inputAmount;\n\n // For permit transactions, we wrap the call in a try/catch block so that the transaction will continue even if the call to\n // permit fails. For example, this may be useful if the permit signature, which can be redeemed by anyone, is executed by somebody\n // other than this contract.\n try IERC20Permit(_inputToken).permit(signatureOwner, address(this), _pullAmount, deadline, v, r, s) {} catch {}\n IERC20(_inputToken).safeTransferFrom(signatureOwner, address(this), _pullAmount);\n _paySubmissionFees(_inputToken, _submissionFeeRecipient, _submissionFeeAmount);\n\n // Verify and increment nonce to prevent replay attacks.\n _validateAndIncrementNonce(signatureOwner, depositData.nonce);\n // Verify that the signatureOwner signed the input depositData.\n _validateSignature(signatureOwner, PeripherySigningLib.hashDepositData(depositData), depositDataSignature);\n _deposit(\n depositData.spokePool,\n depositData.baseDepositData.depositor,\n depositData.baseDepositData.recipient,\n _inputToken,\n depositData.baseDepositData.outputToken,\n _inputAmount,\n depositData.baseDepositData.outputAmount,\n depositData.baseDepositData.destinationChainId,\n depositData.baseDepositData.exclusiveRelayer,\n depositData.baseDepositData.quoteTimestamp,\n depositData.baseDepositData.fillDeadline,\n depositData.baseDepositData.exclusivityParameter,\n depositData.baseDepositData.message\n );\n }\n\n /**\n * @inheritdoc SpokePoolPeripheryInterface\n */\n function depositWithPermit2(\n address signatureOwner,\n DepositData calldata depositData,\n IPermit2.PermitTransferFrom calldata permit,\n bytes calldata signature\n ) external override nonReentrant {\n bytes32 witness = PeripherySigningLib.hashDepositData(depositData);\n uint256 _submissionFeeAmount = depositData.submissionFees.amount;\n IPermit2.SignatureTransferDetails memory transferDetails = IPermit2.SignatureTransferDetails({\n to: address(this),\n requestedAmount: depositData.inputAmount + _submissionFeeAmount\n });\n\n permit2.permitWitnessTransferFrom(\n permit,\n transferDetails,\n signatureOwner,\n witness,\n PeripherySigningLib.EIP712_DEPOSIT_TYPE_STRING,\n signature\n );\n _paySubmissionFees(\n depositData.baseDepositData.inputToken,\n depositData.submissionFees.recipient,\n _submissionFeeAmount\n );\n\n _deposit(\n depositData.spokePool,\n depositData.baseDepositData.depositor,\n depositData.baseDepositData.recipient,\n depositData.baseDepositData.inputToken,\n depositData.baseDepositData.outputToken,\n depositData.inputAmount,\n depositData.baseDepositData.outputAmount,\n depositData.baseDepositData.destinationChainId,\n depositData.baseDepositData.exclusiveRelayer,\n depositData.baseDepositData.quoteTimestamp,\n depositData.baseDepositData.fillDeadline,\n depositData.baseDepositData.exclusivityParameter,\n depositData.baseDepositData.message\n );\n }\n\n /**\n * @inheritdoc SpokePoolPeripheryInterface\n */\n function depositWithAuthorization(\n address signatureOwner,\n DepositData calldata depositData,\n uint256 validAfter,\n uint256 validBefore,\n bytes calldata receiveWithAuthSignature,\n bytes calldata depositDataSignature\n ) external override nonReentrant {\n // Load variables used multiple times onto the stack.\n uint256 _inputAmount = depositData.inputAmount;\n uint256 _submissionFeeAmount = depositData.submissionFees.amount;\n\n // Redeem the receiveWithAuthSignature.\n (bytes32 r, bytes32 s, uint8 v) = PeripherySigningLib.deserializeSignature(receiveWithAuthSignature);\n IERC20Auth(depositData.baseDepositData.inputToken).receiveWithAuthorization(\n signatureOwner,\n address(this),\n _inputAmount + _submissionFeeAmount,\n validAfter,\n validBefore,\n bytes32(depositData.nonce),\n v,\n r,\n s\n );\n _paySubmissionFees(\n depositData.baseDepositData.inputToken,\n depositData.submissionFees.recipient,\n _submissionFeeAmount\n );\n\n // Note: No need to validate our internal nonce for receiveWithAuthorization\n // as EIP-3009 has its own nonce mechanism that prevents replay attacks.\n //\n // Design Decision: We reuse the receiveWithAuthorization nonce for our signatures,\n // but not for permit, which creates a theoretical replay attack that we think is\n // incredibly unlikely because this would require:\n // 1. A token implementing both ERC-2612 and ERC-3009\n // 2. A user using the same nonces for depositWithPermit and for depositWithAuthorization\n // 3. Issuing these signatures within a short amount of time (limited by fillDeadlineBuffer)\n // Verify that the signatureOwner signed the input depositData.\n _validateSignature(signatureOwner, PeripherySigningLib.hashDepositData(depositData), depositDataSignature);\n _deposit(\n depositData.spokePool,\n depositData.baseDepositData.depositor,\n depositData.baseDepositData.recipient,\n depositData.baseDepositData.inputToken,\n depositData.baseDepositData.outputToken,\n _inputAmount,\n depositData.baseDepositData.outputAmount,\n depositData.baseDepositData.destinationChainId,\n depositData.baseDepositData.exclusiveRelayer,\n depositData.baseDepositData.quoteTimestamp,\n depositData.baseDepositData.fillDeadline,\n depositData.baseDepositData.exclusivityParameter,\n depositData.baseDepositData.message\n );\n }\n\n /**\n * @notice Returns the contract's EIP712 domain separator, used to sign hashed DepositData/SwapAndDepositData types.\n */\n function domainSeparator() external view returns (bytes32) {\n return _domainSeparatorV4();\n }\n\n /**\n * @notice Validates that the typed data hash corresponds to the input signature owner and corresponding signature.\n * @param signatureOwner The alledged signer of the input hash.\n * @param typedDataHash The EIP712 data hash to check the signature against.\n * @param signature The signature to validate.\n */\n function _validateSignature(address signatureOwner, bytes32 typedDataHash, bytes calldata signature) private view {\n if (!SignatureChecker.isValidSignatureNow(signatureOwner, _hashTypedDataV4(typedDataHash), signature)) {\n revert InvalidSignature();\n }\n }\n\n /**\n * @notice Validates and increments the user's nonce to prevent replay attacks.\n * @param user The user whose nonce is being validated.\n * @param providedNonce The provided nonce value.\n */\n function _validateAndIncrementNonce(address user, uint256 providedNonce) private {\n if (permitNonces[user] != providedNonce) {\n revert InvalidNonce();\n }\n permitNonces[user]++;\n }\n\n /**\n * @notice Approves the spoke pool and calls `depositV3` function with the specified input parameters.\n * @param depositor The address on the origin chain which should be treated as the depositor by Across, and will therefore receive refunds if this deposit\n * is unfilled.\n * @param recipient The address on the destination chain which should receive outputAmount of outputToken.\n * @param inputToken The token to deposit on the origin chain.\n * @param outputToken The token to receive on the destination chain.\n * @param inputAmount The amount of the input token to deposit.\n * @param outputAmount The amount of the output token to receive.\n * @param destinationChainId The network ID for the destination chain.\n * @param exclusiveRelayer The optional address for an Across relayer which may fill the deposit exclusively.\n * @param quoteTimestamp The timestamp at which the relay and LP fee was calculated.\n * @param fillDeadline The timestamp at which the deposit must be filled before it will be refunded by Across.\n * @param exclusivityParameter The deadline or offset during which the exclusive relayer has rights to fill the deposit without contention.\n * @param message The message to execute on the destination chain.\n */\n function _deposit(\n address spokePool,\n address depositor,\n bytes32 recipient,\n address inputToken,\n bytes32 outputToken,\n uint256 inputAmount,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityParameter,\n bytes calldata message\n ) private {\n IERC20(inputToken).forceApprove(spokePool, inputAmount);\n V3SpokePoolInterface(spokePool).deposit(\n depositor.toBytes32(),\n recipient,\n inputToken.toBytes32(),\n outputToken,\n inputAmount,\n outputAmount,\n destinationChainId,\n exclusiveRelayer,\n quoteTimestamp,\n fillDeadline,\n exclusivityParameter,\n message\n );\n }\n\n /**\n * @notice Swaps a token on the origin chain before depositing into the Across spoke pool atomically.\n * @param swapAndDepositData The parameters to use when calling both the swap on an exchange and bridging via an Across spoke pool.\n */\n function _swapAndBridge(SwapAndDepositData calldata swapAndDepositData) private {\n // Load variables we use multiple times onto the stack.\n IERC20 _swapToken = IERC20(swapAndDepositData.swapToken);\n IERC20 _acrossInputToken = IERC20(swapAndDepositData.depositData.inputToken);\n address _exchange = swapAndDepositData.exchange;\n uint256 _swapTokenAmount = swapAndDepositData.swapTokenAmount;\n\n // Transfer tokens to the swap proxy for executing the swap\n _swapToken.safeTransfer(address(swapProxy), _swapTokenAmount);\n\n // Execute the swap via the swap proxy using the appropriate transfer type\n // This function will swap _swapToken for _acrossInputToken and return the amount of _acrossInputToken received\n uint256 returnAmount = swapProxy.performSwap(\n address(_swapToken),\n address(_acrossInputToken),\n _swapTokenAmount,\n _exchange,\n swapAndDepositData.transferType,\n swapAndDepositData.routerCalldata\n );\n\n // Sanity check that received amount from swap is enough to submit Across deposit with.\n if (returnAmount < swapAndDepositData.minExpectedInputTokenAmount) revert MinimumExpectedInputAmount();\n\n // Calculate adjusted output amount based on whether proportional adjustment is enabled\n if (swapAndDepositData.minExpectedInputTokenAmount == 0) revert InvalidMinExpectedInputAmount();\n uint256 adjustedOutputAmount;\n if (swapAndDepositData.enableProportionalAdjustment) {\n // Adjust the output amount proportionally based on the returned input amount\n adjustedOutputAmount =\n (swapAndDepositData.depositData.outputAmount * returnAmount) /\n swapAndDepositData.minExpectedInputTokenAmount;\n } else {\n // Use the fixed output amount without adjustment\n adjustedOutputAmount = swapAndDepositData.depositData.outputAmount;\n }\n\n emit SwapBeforeBridge(\n _exchange,\n swapAndDepositData.routerCalldata,\n address(_swapToken),\n address(_acrossInputToken),\n _swapTokenAmount,\n returnAmount,\n swapAndDepositData.depositData.outputToken,\n adjustedOutputAmount\n );\n\n // Deposit the swapped tokens into Across and bridge them using remainder of input params.\n _deposit(\n swapAndDepositData.spokePool,\n swapAndDepositData.depositData.depositor,\n swapAndDepositData.depositData.recipient,\n address(_acrossInputToken),\n swapAndDepositData.depositData.outputToken,\n returnAmount,\n adjustedOutputAmount,\n swapAndDepositData.depositData.destinationChainId,\n swapAndDepositData.depositData.exclusiveRelayer,\n swapAndDepositData.depositData.quoteTimestamp,\n swapAndDepositData.depositData.fillDeadline,\n swapAndDepositData.depositData.exclusivityParameter,\n swapAndDepositData.depositData.message\n );\n }\n\n function _paySubmissionFees(address feeToken, address recipient, uint256 amount) private {\n if (amount > 0) {\n // Use msg.sender as recipient if recipient is zero address, otherwise use the specified recipient\n address feeRecipient = recipient == address(0) ? msg.sender : recipient;\n IERC20(feeToken).safeTransfer(feeRecipient, amount);\n }\n }\n\n /**\n * @notice Internal function to check if an address is a contract\n * @dev This is a replacement for OpenZeppelin's isContract function which is deprecated\n * @param addr The address to check\n * @return True if the address is a contract, false otherwise\n */\n function _isContract(address addr) private view returns (bool) {\n uint256 size;\n assembly {\n size := extcodesize(addr)\n }\n return size > 0;\n }\n}\n"
+ },
+ "contracts/SpokePoolVerifier.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\nimport \"@openzeppelin/contracts-v4/utils/Address.sol\";\nimport \"./interfaces/V3SpokePoolInterface.sol\";\nimport { AddressToBytes32 } from \"./libraries/AddressConverters.sol\";\n\n/**\n * @notice SpokePoolVerifier is a contract that verifies that the SpokePool exists on this chain before sending ETH to it.\n * @dev This contract must be deployed via Create2 to the same address on all chains. That way, an errant transaction sent\n * to the wrong chain will be blocked by this contract rather than hitting a dead address. This means that this contract\n * will not work to protect chains, like zkSync, where Create2 address derivations don't match other chains.\n * Source: https://era.zksync.io/docs/reference/architecture/differences-with-ethereum.html#create-create2\n * @custom:security-contact bugs@across.to\n */\ncontract SpokePoolVerifier {\n using Address for address;\n using AddressToBytes32 for address;\n\n error InvalidMsgValue();\n error InvalidSpokePool();\n\n /**\n * @notice Passthrough function to `deposit()` on the SpokePool contract.\n * @dev Protects the caller from losing their ETH (or other native token) by reverting if the SpokePool address\n * they intended to call does not exist on this chain. Because this contract can be deployed at the same address\n * everywhere callers should be protected even if the transaction is submitted to an unintended network.\n * This contract should only be used for native token deposits, as this problem only exists for native tokens.\n * @param spokePool Address of the SpokePool contract that the user is intending to call.\n * @param recipient Address to receive funds at on destination chain.\n * @param inputToken Token to lock into this contract to initiate deposit.\n * @param inputAmount Amount of tokens to deposit.\n * @param outputAmount Amount of tokens to receive on destination chain.\n * @param destinationChainId Denotes network where user will receive funds from SpokePool by a relayer.\n * @param quoteTimestamp Timestamp used by relayers to compute this deposit's realizedLPFeePct which is paid\n * to LP pool on HubPool.\n * @param message Arbitrary data that can be used to pass additional information to the recipient along with the tokens.\n * Note: this is intended to be used to pass along instructions for how a contract should use or allocate the tokens.\n * @param exclusiveRelayer Address of the relayer who has exclusive rights to fill this deposit. Can be set to\n * 0x0 if no exclusivity period is desired. If so, then must set exclusivityDeadline to 0.\n * @param exclusivityDeadline Timestamp after which any relayer can fill this deposit. Must set\n * to 0 if exclusiveRelayer is set to 0x0, and vice versa.\n * @param fillDeadline Timestamp after which this deposit can no longer be filled.\n */\n function deposit(\n V3SpokePoolInterface spokePool,\n bytes32 recipient,\n bytes32 inputToken,\n uint256 inputAmount,\n bytes32 outputToken,\n uint256 outputAmount,\n uint256 destinationChainId,\n bytes32 exclusiveRelayer,\n uint32 quoteTimestamp,\n uint32 fillDeadline,\n uint32 exclusivityDeadline,\n bytes memory message\n ) external payable {\n if (msg.value != inputAmount) revert InvalidMsgValue();\n if (!address(spokePool).isContract()) revert InvalidSpokePool();\n // Set msg.sender as the depositor so that msg.sender can speed up the deposit.\n spokePool.deposit{ value: msg.value }(\n msg.sender.toBytes32(),\n recipient,\n inputToken,\n outputToken,\n inputAmount,\n outputAmount,\n destinationChainId,\n exclusiveRelayer,\n quoteTimestamp,\n fillDeadline,\n exclusivityDeadline,\n message\n );\n }\n}\n"
+ },
+ "contracts/upgradeable/AddressLibUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @title AddressUpgradeable\n * @dev Collection of functions related to the address type\n * @notice Logic is 100% copied from \"@openzeppelin/contracts-upgradeable-v4/contracts/utils/AddressUpgradeable.sol\" but one\n * comment is added to clarify why we allow delegatecall() in this contract, which is typically unsafe for use in\n * upgradeable implementation contracts.\n * @dev See https://docs.openzeppelin.com/upgrades-plugins/1.x/faq#delegatecall-selfdestruct for more details.\n * @custom:security-contact bugs@across.to\n */\nlibrary AddressLibUpgradeable {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n *\n * Furthermore, `isContract` will also return true if the target contract within\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\n * which only has an effect at the end of a transaction.\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{ value: amount }(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n (bool success, bytes memory returndata) = target.call{ value: value }(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n /// @custom:oz-upgrades-unsafe-allow delegatecall\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n *\n * _Available since v4.8._\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n if (success) {\n if (returndata.length == 0) {\n // only check isContract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n require(isContract(target), \"Address: call to non-contract\");\n }\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason or using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n _revert(returndata, errorMessage);\n }\n }\n\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n /// @solidity memory-safe-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n}\n"
+ },
+ "contracts/upgradeable/EIP712CrossChainUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\nimport \"@openzeppelin/contracts-upgradeable-v4/utils/cryptography/ECDSAUpgradeable.sol\";\nimport \"@openzeppelin/contracts-upgradeable-v4/proxy/utils/Initializable.sol\";\n\n/**\n * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.\n *\n * This contract is based on OpenZeppelin's implementation:\n * https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable/blob/master/contracts/utils/cryptography/EIP712Upgradeable.sol\n *\n * NOTE: Modified version that allows to build a domain separator that relies on a different chain id than the chain this\n * contract is deployed to. An example use case we want to support is:\n * - User A signs a message on chain with id = 1\n * - User B executes a method by verifying user A's EIP-712 compliant signature on a chain with id != 1\n * @custom:security-contact bugs@across.to\n */\nabstract contract EIP712CrossChainUpgradeable is Initializable {\n /* solhint-disable var-name-mixedcase */\n bytes32 private _HASHED_NAME;\n bytes32 private _HASHED_VERSION;\n bytes32 private constant _TYPE_HASH = keccak256(\"EIP712Domain(string name,string version,uint256 chainId)\");\n\n /* solhint-enable var-name-mixedcase */\n\n /**\n * @dev Initializes the domain separator and parameter caches.\n *\n * The meaning of `name` and `version` is specified in\n * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:\n *\n * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.\n * - `version`: the current major version of the signing domain.\n *\n * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart\n * contract upgrade].\n */\n function __EIP712_init(string memory name, string memory version) internal onlyInitializing {\n __EIP712_init_unchained(name, version);\n }\n\n function __EIP712_init_unchained(string memory name, string memory version) internal onlyInitializing {\n bytes32 hashedName = keccak256(bytes(name));\n bytes32 hashedVersion = keccak256(bytes(version));\n _HASHED_NAME = hashedName;\n _HASHED_VERSION = hashedVersion;\n }\n\n /**\n * @dev Returns the domain separator depending on the `originChainId`.\n * @param originChainId Chain id of network where message originates from.\n * @return bytes32 EIP-712-compliant domain separator.\n */\n function _domainSeparatorV4(uint256 originChainId) internal view returns (bytes32) {\n return keccak256(abi.encode(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION, originChainId));\n }\n\n /**\n * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this\n * function returns the hash of the fully encoded EIP712 message for this domain.\n *\n * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:\n *\n * ```solidity\n * bytes32 structHash = keccak256(abi.encode(\n * keccak256(\"Mail(address to,string contents)\"),\n * mailTo,\n * keccak256(bytes(mailContents))\n * ));\n * bytes32 digest = _hashTypedDataV4(structHash, originChainId);\n * address signer = ECDSA.recover(digest, signature);\n * ```\n * @param structHash Hashed struct as defined in https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct.\n * @param originChainId Chain id of network where message originates from.\n * @return bytes32 Hash digest that is recoverable via `EDCSA.recover`.\n */\n function _hashTypedDataV4(bytes32 structHash, uint256 originChainId) internal view virtual returns (bytes32) {\n return ECDSAUpgradeable.toTypedDataHash(_domainSeparatorV4(originChainId), structHash);\n }\n\n // Reserve storage slots for future versions of this base contract to add state variables without\n // affecting the storage layout of child contracts. Decrement the size of __gap whenever state variables\n // are added, so that the total number of slots taken by this contract remains constant. Per-contract\n // storage layout information can be found in storage-layouts/\n // This is at bottom of contract to make sure it's always at the end of storage.\n uint256[1000] private __gap;\n}\n"
+ },
+ "contracts/upgradeable/MultiCallerUpgradeable.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\n/**\n * @title MultiCallerUpgradeable\n * @notice Logic is 100% copied from \"contracts/external/uma/core/contracts/common/implementation/MultiCaller.sol\" but one\n * comment is added to clarify why we allow delegatecall() in this contract, which is typically unsafe for use in\n * upgradeable implementation contracts.\n * @dev See https://docs.openzeppelin.com/upgrades-plugins/1.x/faq#delegatecall-selfdestruct for more details.\n * @custom:security-contact bugs@across.to\n */\ncontract MultiCallerUpgradeable {\n struct Result {\n bool success;\n bytes returnData;\n }\n\n function _validateMulticallData(bytes[] calldata data) internal virtual {\n // no-op\n }\n\n function multicall(bytes[] calldata data) external returns (bytes[] memory results) {\n _validateMulticallData(data);\n\n uint256 dataLength = data.length;\n results = new bytes[](dataLength);\n\n //slither-disable-start calls-loop\n for (uint256 i = 0; i < dataLength; ++i) {\n // Typically, implementation contracts used in the upgradeable proxy pattern shouldn't call `delegatecall`\n // because it could allow a malicious actor to call this implementation contract directly (rather than\n // through a proxy contract) and then selfdestruct() the contract, thereby freezing the upgradeable\n // proxy. However, since we're only delegatecall-ing into this contract, then we can consider this\n // use of delegatecall() safe.\n\n //slither-disable-start low-level-calls\n /// @custom:oz-upgrades-unsafe-allow delegatecall\n (bool success, bytes memory result) = address(this).delegatecall(data[i]);\n //slither-disable-end low-level-calls\n\n if (!success) {\n // Next 5 lines from https://ethereum.stackexchange.com/a/83577\n if (result.length < 68) revert();\n //slither-disable-next-line assembly\n assembly {\n result := add(result, 0x04)\n }\n revert(abi.decode(result, (string)));\n }\n\n results[i] = result;\n }\n //slither-disable-end calls-loop\n }\n\n function tryMulticall(bytes[] calldata data) external returns (Result[] memory results) {\n _validateMulticallData(data);\n\n uint256 dataLength = data.length;\n results = new Result[](dataLength);\n\n //slither-disable-start calls-loop\n for (uint256 i = 0; i < dataLength; ++i) {\n // The delegatecall here is safe for the same reasons outlined in the first multicall function.\n Result memory result = results[i];\n //slither-disable-start low-level-calls\n /// @custom:oz-upgrades-unsafe-allow delegatecall\n (result.success, result.returnData) = address(this).delegatecall(data[i]);\n //slither-disable-end low-level-calls\n }\n //slither-disable-end calls-loop\n }\n\n // Reserve storage slots for future versions of this base contract to add state variables without\n // affecting the storage layout of child contracts. Decrement the size of __gap whenever state variables\n // are added, so that the total number of slots taken by this contract remains constant. Per-contract\n // storage layout information can be found in storage-layouts/\n // This is at bottom of contract to make sure it's always at the end of storage.\n uint256[1000] private __gap;\n}\n"
+ },
+ "contracts/ZkSync_SpokePool.sol": {
+ "content": "// SPDX-License-Identifier: BUSL-1.1\npragma solidity ^0.8.0;\n\nimport \"@openzeppelin/contracts-v4/token/ERC20/utils/SafeERC20.sol\";\nimport { CircleCCTPAdapter, CircleDomainIds, ITokenMessenger } from \"./libraries/CircleCCTPAdapter.sol\";\nimport { CrossDomainAddressUtils } from \"./libraries/CrossDomainAddressUtils.sol\";\nimport \"./SpokePool.sol\";\n\n// https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/bridge/asset-router/L2AssetRouter.sol#L321\ninterface IL2AssetRouter {\n function withdraw(bytes32 _assetId, bytes memory _assetData) external returns (bytes32);\n}\n\n// https://github.com/matter-labs/era-contracts/blob/6391c0d7bf6184d7f6718060e3991ba6f0efe4a7/zksync/contracts/bridge/L2ERC20Bridge.sol#L104\ninterface ZkBridgeLike {\n function withdraw(address _l1Receiver, address _l2Token, uint256 _amount) external;\n}\n\ninterface IL2ETH {\n function withdraw(address _l1Receiver) external payable;\n}\n\n/**\n * @notice ZkSync specific SpokePool, intended to be compiled with `@matterlabs/hardhat-zksync-solc`.\n * @dev Resources for compiling and deploying contracts with hardhat: https://era.zksync.io/docs/tools/hardhat/hardhat-zksync-solc.html\n * @custom:security-contact bugs@across.to\n */\ncontract ZkSync_SpokePool is SpokePool, CircleCCTPAdapter {\n using SafeERC20 for IERC20;\n\n // On Ethereum, avoiding constructor parameters and putting them into constants reduces some of the gas cost\n // upon contract deployment. On zkSync the opposite is true: deploying the same bytecode for contracts,\n // while changing only constructor parameters can lead to substantial fee savings. So, the following params\n // are all set by passing in constructor params where possible.\n\n // ETH on ZkSync implements a subset of the ERC-20 interface, with additional built-in support to bridge to L1.\n address public l2Eth;\n\n // Legacy bridge used to withdraw ERC20's to L1, replaced by `l2AssetRouter`.\n address public DEPRECATED_zkErc20Bridge;\n\n /// @dev Legacy bridge used to withdraw USDC to L1, for withdrawing all other ERC20's we use `l2AssetRouter`.\n ZkBridgeLike public immutable zkUSDCBridge;\n\n /// @dev The offset from which the built-in, but user space contracts are located.\n /// Source: https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/common/l2-helpers/L2ContractAddresses.sol#L12C1-L13C58\n uint160 constant USER_CONTRACTS_OFFSET = 0x10000; // 2^16\n\n /// Contract used to withdraw ERC20's to L1.\n /// Source: https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/common/l2-helpers/L2ContractAddresses.sol#L68\n address constant L2_ASSET_ROUTER_ADDR = address(USER_CONTRACTS_OFFSET + 0x03);\n IL2AssetRouter public constant l2AssetRouter = IL2AssetRouter(L2_ASSET_ROUTER_ADDR);\n\n /// @dev An l2 system contract address, used in the assetId calculation for native assets.\n /// This is needed for automatic bridging, i.e. without deploying the AssetHandler contract,\n /// if the assetId can be calculated with this address then it is in fact an NTV asset\n /// Source: https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/common/l2-helpers/L2ContractAddresses.sol#L70C1-L73C85\n address constant L2_NATIVE_TOKEN_VAULT_ADDR = address(USER_CONTRACTS_OFFSET + 0x04);\n\n // Used to compute asset ID needed to withdraw tokens.\n uint256 public immutable l1ChainId;\n\n event SetZkBridge(address indexed erc20Bridge, address indexed oldErc20Bridge);\n\n error InvalidBridgeConfig();\n\n /**\n * @notice Constructor.\n * @param _zkUSDCBridge Legacy bridge used to withdraw USDC to L1, for withdrawing all other ERC20's we use `l2AssetRouter`.\n * @param _wrappedNativeTokenAddress wrappedNativeToken address for this network to set.\n * @param _circleUSDC Circle USDC address on the SpokePool. Set to 0x0 to use the standard ERC20 bridge instead.\n * If not set to zero, then either the zkUSDCBridge or cctpTokenMessenger must be set and will be used to\n * bridge this token.\n * @param _zkUSDCBridge Elastic chain custom bridge address for USDC (if deployed, or address(0) to disable).\n * @param _l1ChainId Chain ID of the L1 chain.\n * @param _cctpTokenMessenger TokenMessenger contract to bridge via CCTP. If the zero address is passed, CCTP bridging will be disabled.\n * @param _depositQuoteTimeBuffer depositQuoteTimeBuffer to set. Quote timestamps can't be set more than this amount\n * into the past from the block time of the deposit.\n * @param _fillDeadlineBuffer fillDeadlineBuffer to set. Fill deadlines can't be set more than this amount\n * into the future from the block time of the deposit.\n */\n /// @custom:oz-upgrades-unsafe-allow constructor\n constructor(\n address _wrappedNativeTokenAddress,\n IERC20 _circleUSDC,\n ZkBridgeLike _zkUSDCBridge,\n uint256 _l1ChainId,\n ITokenMessenger _cctpTokenMessenger,\n uint32 _depositQuoteTimeBuffer,\n uint32 _fillDeadlineBuffer\n )\n SpokePool(\n _wrappedNativeTokenAddress,\n _depositQuoteTimeBuffer,\n _fillDeadlineBuffer,\n // ZkSync_SpokePool does not use OFT messaging; setting destination eid and fee cap to 0\n 0,\n 0\n )\n CircleCCTPAdapter(_circleUSDC, _cctpTokenMessenger, CircleDomainIds.Ethereum)\n {\n address zero = address(0);\n if (address(_circleUSDC) != zero) {\n bool zkUSDCBridgeDisabled = address(_zkUSDCBridge) == zero;\n bool cctpUSDCBridgeDisabled = address(_cctpTokenMessenger) == zero;\n // Bridged and Native USDC are mutually exclusive.\n if (zkUSDCBridgeDisabled == cctpUSDCBridgeDisabled) {\n revert InvalidBridgeConfig();\n }\n }\n\n zkUSDCBridge = _zkUSDCBridge;\n l1ChainId = _l1ChainId;\n }\n\n /**\n * @notice Initialize the ZkSync SpokePool.\n * @param _initialDepositId Starting deposit ID. Set to 0 unless this is a re-deployment in order to mitigate\n * relay hash collisions.\n * @param _crossDomainAdmin Cross domain admin to set. Can be changed by admin.\n * @param _withdrawalRecipient Address which receives token withdrawals. Can be changed by admin. For Spoke Pools on L2, this will\n * likely be the hub pool.\n */\n function initialize(\n uint32 _initialDepositId,\n address _crossDomainAdmin,\n address _withdrawalRecipient\n ) public initializer {\n l2Eth = 0x000000000000000000000000000000000000800A;\n __SpokePool_init(_initialDepositId, _crossDomainAdmin, _withdrawalRecipient);\n }\n\n modifier onlyFromCrossDomainAdmin() {\n require(msg.sender == CrossDomainAddressUtils.applyL1ToL2Alias(crossDomainAdmin), \"ONLY_COUNTERPART_GATEWAY\");\n _;\n }\n\n /**************************************\n * INTERNAL FUNCTIONS *\n **************************************/\n\n /**\n * @notice Checks if an address is a 7702 delegated wallet (EOA with delegated code).\n * @return False Since eraVM does not support 7702 delegated wallets, this function always returns false.\n */\n function _is7702DelegatedWallet(address) internal pure override returns (bool) {\n return false;\n }\n\n /**\n * @notice Wraps any ETH into WETH before executing base function. This is necessary because SpokePool receives\n * ETH over the canonical token bridge instead of WETH.\n */\n function _preExecuteLeafHook(address l2TokenAddress) internal override {\n if (l2TokenAddress == address(wrappedNativeToken)) _depositEthToWeth();\n }\n\n // Wrap any ETH owned by this contract so we can send expected L2 token to recipient. This is necessary because\n // this SpokePool will receive ETH from the canonical token bridge instead of WETH. This may not be neccessary\n // if ETH on ZkSync is treated as ETH and the fallback() function is triggered when this contract receives\n // ETH. We will have to test this but this function for now allows the contract to safely convert all of its\n // held ETH into WETH at the cost of higher gas costs.\n function _depositEthToWeth() internal {\n //slither-disable-next-line arbitrary-send-eth\n if (address(this).balance > 0) wrappedNativeToken.deposit{ value: address(this).balance }();\n }\n\n function _bridgeTokensToHubPool(uint256 amountToReturn, address l2TokenAddress) internal override {\n // SpokePool is expected to receive ETH from the L1 HubPool and currently, withdrawing ETH directly\n // over the ERC20 Bridge is blocked at the contract level. Therefore, we need to unwrap it before withdrawing.\n if (l2TokenAddress == address(wrappedNativeToken)) {\n WETH9Interface(l2TokenAddress).withdraw(amountToReturn); // Unwrap into ETH.\n // To withdraw tokens, we actually call 'withdraw' on the L2 eth token itself.\n IL2ETH(l2Eth).withdraw{ value: amountToReturn }(withdrawalRecipient);\n } else if (l2TokenAddress == address(usdcToken)) {\n if (_isCCTPEnabled()) {\n // Circle native USDC via CCTP.\n _transferUsdc(withdrawalRecipient, amountToReturn);\n } else {\n // Matter Labs custom USDC bridge for Circle Bridged (upgradable) USDC.\n IERC20(l2TokenAddress).forceApprove(address(zkUSDCBridge), amountToReturn);\n zkUSDCBridge.withdraw(withdrawalRecipient, l2TokenAddress, amountToReturn);\n }\n } else {\n bytes32 assetId = _getAssetId(l2TokenAddress);\n bytes memory data = _encodeBridgeBurnData(amountToReturn, withdrawalRecipient, l2TokenAddress);\n l2AssetRouter.withdraw(assetId, data);\n }\n }\n\n // Implementation from https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/common/libraries/DataEncoding.sol#L117C14-L117C62\n function _getAssetId(address _tokenAddress) internal view returns (bytes32) {\n return keccak256(abi.encode(l1ChainId, L2_NATIVE_TOKEN_VAULT_ADDR, _tokenAddress));\n }\n\n // Implementation from https://github.com/matter-labs/era-contracts/blob/48e189814aabb43964ed29817a7f05aa36f09fd6/l1-contracts/contracts/common/libraries/DataEncoding.sol#L24C1-L30C6\n function _encodeBridgeBurnData(\n uint256 _amount,\n address _remoteReceiver,\n address _l2TokenAddress\n ) internal pure returns (bytes memory) {\n return abi.encode(_amount, _remoteReceiver, _l2TokenAddress);\n }\n\n function _requireAdminSender() internal override onlyFromCrossDomainAdmin {}\n\n // Reserve storage slots for future versions of this base contract to add state variables without\n // affecting the storage layout of child contracts. Decrement the size of __gap whenever state variables\n // are added, so that the total number of slots taken by this contract remains constant. Per-contract\n // storage layout information can be found in storage-layouts/\n // This is at bottom of contract to make sure it's always at the end of storage.\n uint256[999] private __gap;\n}\n"
+ }
+ },
+ "settings": {
+ "optimizer": {
+ "enabled": true,
+ "mode": "3"
+ },
+ "viaIR": true,
+ "evmVersion": "prague",
+ "debug": {
+ "revertStrings": "strip"
+ },
+ "outputSelection": {
+ "*": {
+ "*": ["abi", "evm.methodIdentifiers", "metadata", "devdoc", "userdoc", "storageLayout"],
+ "": ["ast"]
+ }
+ },
+ "detectMissingLibraries": false,
+ "forceEVMLA": false,
+ "enableEraVMExtensions": false
+ },
+ "suppressedErrors": ["sendtransfer"]
+}
diff --git a/generated/constants.json b/generated/constants.json
index d41261354..7f9f9d81a 100644
--- a/generated/constants.json
+++ b/generated/constants.json
@@ -613,13 +613,11 @@
"cctpV2TokenMessenger": "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d"
},
"232": {
- "zkErc20Bridge": "0xfBEC23c5BB0E076F2ef4d0AaD7fe331aE5A01143",
"zkUSDCBridge": "0x7188B6975EeC82ae914b6eC7AC32b3c9a18b2c81",
"cctpTokenMessenger": "0x0000000000000000000000000000000000000000",
"permit2": "0x0000000000225e31D15943971F47aD3022F714Fa"
},
"324": {
- "zkErc20Bridge": "0x11f943b2c77b743AB90f4A0Ae7d5A4e7FCA3E102",
"cctpTokenMessenger": "0x0000000000000000000000000000000000000000",
"1inchV6Router": "0x6fd4383cB451173D5f9304F041C7BCBf27d561fF",
"permit2": "0x0000000000225e31d15943971f47ad3022f714fa"
diff --git a/hardhat.config.ts b/hardhat.config.ts
index 24549c4c5..14ecdfbf6 100644
--- a/hardhat.config.ts
+++ b/hardhat.config.ts
@@ -113,7 +113,7 @@ const config: HardhatUserConfig = {
},
},
zksolc: {
- version: "1.5.7",
+ version: "1.5.15",
settings: {
optimizer: {
enabled: true,
diff --git a/storage-layouts/ZkSync_SpokePool.json b/storage-layouts/ZkSync_SpokePool.json
index 3cf37900a..6de17818a 100644
--- a/storage-layouts/ZkSync_SpokePool.json
+++ b/storage-layouts/ZkSync_SpokePool.json
@@ -170,7 +170,7 @@
},
{
"contract": "contracts/ZkSync_SpokePool.sol:ZkSync_SpokePool",
- "label": "zkErc20Bridge",
+ "label": "DEPRECATED_zkErc20Bridge",
"offset": 0,
"slot": "3163"
},
diff --git a/test/evm/foundry/local/eraVM_EIP7702.sol b/test/evm/foundry/local/eraVM_EIP7702.sol
index 26017f0a5..b52e6732e 100644
--- a/test/evm/foundry/local/eraVM_EIP7702.sol
+++ b/test/evm/foundry/local/eraVM_EIP7702.sol
@@ -24,6 +24,7 @@ contract TestableMockSpokePool is ZkSync_SpokePool {
_wrappedNativeTokenAddress,
IERC20(address(0)),
ZkBridgeLike(address(0)),
+ 1,
ITokenMessenger(address(0)),
1 hours,
9 hours
@@ -73,7 +74,7 @@ contract SpokePoolEIP7702Test is Test {
vm.startPrank(owner);
ERC1967Proxy proxy = new ERC1967Proxy(
address(new TestableMockSpokePool(address(weth))),
- abi.encodeCall(ZkSync_SpokePool.initialize, (0, ZkBridgeLike(address(0)), owner, makeAddr("hubPool")))
+ abi.encodeCall(ZkSync_SpokePool.initialize, (0, owner, makeAddr("hubPool")))
);
spokePool = TestableMockSpokePool(payable(proxy));
vm.stopPrank();
diff --git a/test/evm/hardhat/chain-specific-spokepools/ZkSync_SpokePool.ts b/test/evm/hardhat/chain-specific-spokepools/ZkSync_SpokePool.ts
index 0c90fa097..319d423a8 100644
--- a/test/evm/hardhat/chain-specific-spokepools/ZkSync_SpokePool.ts
+++ b/test/evm/hardhat/chain-specific-spokepools/ZkSync_SpokePool.ts
@@ -10,6 +10,8 @@ import {
randomAddress,
seedContract,
avmL1ToL2Alias,
+ keccak256,
+ defaultAbiCoder,
} from "../../../../utils/utils";
import { hre } from "../../../../utils/utils.hre";
@@ -17,11 +19,33 @@ import { hubPoolFixture } from "../fixtures/HubPool.Fixture";
import { constructSingleRelayerRefundTree } from "../MerkleLib.utils";
import { smock } from "@defi-wonderland/smock";
+const L2_ASSET_ROUTER = "0x0000000000000000000000000000000000010003";
+const L1_NATIVE_TOKEN_VAULT_ADDR = "0x0000000000000000000000000000000000010004";
// TODO: Grab the following from relayer/CONTRACT_ADDRESSES dictionary?
-const ERC20_BRIDGE = "0x11f943b2c77b743ab90f4a0ae7d5a4e7fca3e102";
const USDC_BRIDGE = "0x350ACF3d84A6E668E53d4AA682989DCA15Ea27E2";
const abiData = {
+ l2AssetRouter: {
+ abi: [
+ {
+ inputs: [
+ { internalType: "bytes32", name: "_assetId", type: "bytes32" },
+ { internalType: "bytes", name: "_assetData", type: "bytes" },
+ ],
+ name: "withdraw",
+ outputs: [{ internalType: "bytes32", name: "", type: "bytes32" }],
+ stateMutability: "nonpayable",
+ type: "function",
+ },
+ {
+ inputs: [{ internalType: "address", name: "_l2TokenAddress", type: "address" }],
+ name: "l1TokenAddress",
+ outputs: [{ internalType: "address", name: "", type: "address" }],
+ stateMutability: "view",
+ type: "function",
+ },
+ ],
+ },
erc20DefaultBridge: {
abi: [
{
@@ -60,7 +84,7 @@ describe("ZkSync Spoke Pool", function () {
let hubPool: Contract, zkSyncSpokePool: Contract, dai: Contract, usdc: Contract, weth: Contract;
let l2Dai: string, crossDomainAliasAddress, crossDomainAlias: SignerWithAddress;
let owner: SignerWithAddress, relayer: SignerWithAddress, rando: SignerWithAddress;
- let zkErc20Bridge: FakeContract, zkUSDCBridge: FakeContract, l2Eth: FakeContract;
+ let l2AssetRouter: FakeContract, zkUSDCBridge: FakeContract, l2Eth: FakeContract;
let constructorArgs: unknown[];
beforeEach(async function () {
@@ -73,14 +97,14 @@ describe("ZkSync Spoke Pool", function () {
crossDomainAlias = await ethers.getSigner(crossDomainAliasAddress);
await owner.sendTransaction({ to: crossDomainAliasAddress, value: toWei("1") });
- zkErc20Bridge = await smock.fake(abiData.erc20DefaultBridge.abi, { address: ERC20_BRIDGE });
+ l2AssetRouter = await smock.fake(abiData.l2AssetRouter.abi, { address: L2_ASSET_ROUTER });
zkUSDCBridge = await smock.fake(abiData.erc20DefaultBridge.abi, { address: USDC_BRIDGE });
l2Eth = await smock.fake(abiData.eth.abi, { address: abiData.eth.address });
- constructorArgs = [weth.address, usdc.address, zkUSDCBridge.address, cctpTokenMessenger, 60 * 60, 9 * 60 * 60];
+ constructorArgs = [weth.address, usdc.address, zkUSDCBridge.address, 1, cctpTokenMessenger, 60 * 60, 9 * 60 * 60];
zkSyncSpokePool = await hre.upgrades.deployProxy(
await getContractFactory("ZkSync_SpokePool", owner),
- [0, zkErc20Bridge.address, owner.address, hubPool.address],
+ [0, owner.address, hubPool.address],
{ kind: "uups", unsafeAllow: ["delegatecall"], constructorArgs }
);
@@ -98,16 +122,11 @@ describe("ZkSync Spoke Pool", function () {
await expect(zkSyncSpokePool.upgradeTo(implementation)).to.be.revertedWith("ONLY_COUNTERPART_GATEWAY");
await zkSyncSpokePool.connect(crossDomainAlias).upgradeTo(implementation);
});
- it("Only cross domain owner can set ZKBridge", async function () {
- await expect(zkSyncSpokePool.setZkBridge(rando.address)).to.be.reverted;
- await zkSyncSpokePool.connect(crossDomainAlias).setZkBridge(rando.address);
- expect(await zkSyncSpokePool.zkErc20Bridge()).to.equal(rando.address);
- });
it("Invalid USDC bridge configuration is rejected", async function () {
let _constructorArgs = [...constructorArgs];
expect(_constructorArgs[1]).to.equal(usdc.address);
expect(_constructorArgs[2]).to.equal(zkUSDCBridge.address);
- expect(_constructorArgs[3]).to.equal(cctpTokenMessenger);
+ expect(_constructorArgs[4]).to.equal(cctpTokenMessenger);
// Verify successful deployment.
let implementation = hre.upgrades.deployImplementation(await getContractFactory("ZkSync_SpokePool", owner), {
@@ -120,7 +139,7 @@ describe("ZkSync Spoke Pool", function () {
// Configure cctp
_constructorArgs = [...constructorArgs];
_constructorArgs[2] = ZERO_ADDRESS;
- _constructorArgs[3] = randomAddress();
+ _constructorArgs[4] = randomAddress();
implementation = hre.upgrades.deployImplementation(await getContractFactory("ZkSync_SpokePool", owner), {
kind: "uups",
unsafeAllow: ["delegatecall"],
@@ -130,7 +149,7 @@ describe("ZkSync Spoke Pool", function () {
// Configure bridged USDC
_constructorArgs = [...constructorArgs];
- _constructorArgs[3] = ZERO_ADDRESS;
+ _constructorArgs[4] = ZERO_ADDRESS;
implementation = hre.upgrades.deployImplementation(await getContractFactory("ZkSync_SpokePool", owner), {
kind: "uups",
unsafeAllow: ["delegatecall"],
@@ -141,7 +160,7 @@ describe("ZkSync Spoke Pool", function () {
// Configure none (misconfigured)
_constructorArgs = [...constructorArgs];
_constructorArgs[2] = ZERO_ADDRESS;
- _constructorArgs[3] = ZERO_ADDRESS;
+ _constructorArgs[4] = ZERO_ADDRESS;
implementation = hre.upgrades.deployImplementation(await getContractFactory("ZkSync_SpokePool", owner), {
kind: "uups",
unsafeAllow: ["delegatecall"],
@@ -152,7 +171,7 @@ describe("ZkSync Spoke Pool", function () {
// Configure both (misconfigured)
_constructorArgs = [...constructorArgs];
_constructorArgs[2] = zkUSDCBridge.address;
- _constructorArgs[3] = randomAddress();
+ _constructorArgs[4] = randomAddress();
implementation = hre.upgrades.deployImplementation(await getContractFactory("ZkSync_SpokePool", owner), {
kind: "uups",
unsafeAllow: ["delegatecall"],
@@ -166,19 +185,34 @@ describe("ZkSync Spoke Pool", function () {
"ONLY_COUNTERPART_GATEWAY"
);
});
- it("Bridge tokens to hub pool correctly calls the Standard L2 Bridge for standard ERC20s", async function () {
+ it("Bridge tokens to hub pool correctly calls the L2 Asset Router for standard ERC20s", async function () {
const { leaves, tree } = await constructSingleRelayerRefundTree(l2Dai, await zkSyncSpokePool.callStatic.chainId());
await zkSyncSpokePool.connect(crossDomainAlias).relayRootBundle(tree.getHexRoot(), mockTreeRoot);
await zkSyncSpokePool.connect(relayer).executeRelayerRefundLeaf(0, leaves[0], tree.getHexProof(leaves[0]));
- // This should have sent tokens back to L1. Check the correct methods on the gateway are correctly called.
- expect(zkErc20Bridge.withdraw).to.have.been.calledOnce;
- expect(zkErc20Bridge.withdraw).to.have.been.calledWith(hubPool.address, l2Dai, amountToReturn);
+ // This should have sent tokens back to L1.
+ expect(l2AssetRouter.withdraw).to.have.been.calledOnce;
+ const expectedAssetId = keccak256(
+ defaultAbiCoder.encode(["uint256", "address", "address"], [1, L1_NATIVE_TOKEN_VAULT_ADDR, l2Dai])
+ );
+ const expectedData = defaultAbiCoder.encode(
+ ["uint256", "address", "address"],
+ [amountToReturn, hubPool.address, l2Dai]
+ );
+ expect(l2AssetRouter.withdraw).to.have.been.calledWith(expectedAssetId, expectedData);
});
it("Bridge tokens to hub pool correctly calls the Standard L2 Bridge for zkSync Bridged USDC.e", async function () {
// Redeploy the SpokePool with usdc address -> 0x0
const usdcAddress = ZERO_ADDRESS;
- const constructorArgs = [weth.address, usdcAddress, zkUSDCBridge.address, cctpTokenMessenger, 60 * 60, 9 * 60 * 60];
+ const constructorArgs = [
+ weth.address,
+ usdcAddress,
+ zkUSDCBridge.address,
+ 1,
+ cctpTokenMessenger,
+ 60 * 60,
+ 9 * 60 * 60,
+ ];
const implementation = await hre.upgrades.deployImplementation(
await getContractFactory("ZkSync_SpokePool", owner),
{ kind: "uups", unsafeAllow: ["delegatecall"], constructorArgs }
@@ -193,8 +227,15 @@ describe("ZkSync Spoke Pool", function () {
await zkSyncSpokePool.connect(relayer).executeRelayerRefundLeaf(0, leaves[0], tree.getHexProof(leaves[0]));
// This should have sent tokens back to L1. Check the correct methods on the gateway are correctly called.
- expect(zkErc20Bridge.withdraw).to.have.been.calledOnce;
- expect(zkErc20Bridge.withdraw).to.have.been.calledWith(hubPool.address, usdc.address, amountToReturn);
+ expect(l2AssetRouter.withdraw).to.have.been.calledOnce;
+ const expectedAssetId = keccak256(
+ defaultAbiCoder.encode(["uint256", "address", "address"], [1, L1_NATIVE_TOKEN_VAULT_ADDR, usdc.address])
+ );
+ const expectedData = defaultAbiCoder.encode(
+ ["uint256", "address", "address"],
+ [amountToReturn, hubPool.address, usdc.address]
+ );
+ expect(l2AssetRouter.withdraw).to.have.been.calledWith(expectedAssetId, expectedData);
});
it("Bridge tokens to hub pool correctly calls the custom USDC L2 Bridge for Circle Bridged USDC", async function () {
const { leaves, tree } = await constructSingleRelayerRefundTree(