ERC-20
Overview
Max Total Supply
1,915,810.876523843354406314 unkMav
Holders
1,159
Total Transfers
-
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
UnkMaverick
Compiler Version
v0.8.17+commit.8df45f5f
ZkSolc Version
v1.3.13
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; import {Address} from "lib/openzeppelin-contracts/contracts/utils/Address.sol"; import {SafeERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol"; import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; import {OFT} from "lib/solidity-examples/contracts/token/oft/OFT.sol"; /** * @title unkMaverick Token * @author Unlock * @notice OFT Token that allows the operator (mavDepositor) to mint and burn tokens */ contract UnkMaverick is OFT { using SafeERC20 for IERC20; using Address for address; address public operator; /// @notice Throws if not operator. error NO_OPERATOR(); modifier onlyOperator(){ if (msg.sender != operator) revert NO_OPERATOR(); _; } constructor(string memory _nameArg, string memory _symbolArg, address _layerZeroEndpoint) OFT(_nameArg, _symbolArg, _layerZeroEndpoint) { operator = msg.sender; } /** * @notice Allows the initial operator (deployer) to set the operator. * Note - mavDepositor has no way to change this back, so it's effectively immutable */ function setOperator(address _operator) external onlyOperator { operator = _operator; } /** * @notice Allows the mavDepositor to mint */ function mint(address _to, uint256 _amount) external onlyOperator { _mint(_to, _amount); } /** * @notice Allows the mavDepositor to burn */ function burn(address _from, uint256 _amount) external onlyOperator { _burn(_from, _amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Compatible with tokens that require the approval to be set to * 0 before setting it to a non-zero value. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import "./ILayerZeroUserApplicationConfig.sol"; interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig { // @notice send a LayerZero message to the specified address at a LayerZero endpoint. // @param _dstChainId - the destination chain identifier // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains // @param _payload - a custom bytes payload to send to the destination contract // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination function send(uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable; // @notice used by the messaging library to publish verified payload // @param _srcChainId - the source chain identifier // @param _srcAddress - the source contract (as bytes) at the source chain // @param _dstAddress - the address on destination chain // @param _nonce - the unbound message ordering nonce // @param _gasLimit - the gas limit for external contract execution // @param _payload - verified payload to send to the destination contract function receivePayload(uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload) external; // @notice get the inboundNonce of a lzApp from a source chain which could be EVM or non-EVM chain // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64); // @notice get the outboundNonce from this source chain which, consequently, is always an EVM // @param _srcAddress - the source chain contract address function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64); // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery // @param _dstChainId - the destination chain identifier // @param _userApplication - the user app address on this EVM chain // @param _payload - the custom message to send over LayerZero // @param _payInZRO - if false, user app pays the protocol fee in native token // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain function estimateFees(uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam) external view returns (uint nativeFee, uint zroFee); // @notice get this Endpoint's immutable source identifier function getChainId() external view returns (uint16); // @notice the interface to retry failed message on this Endpoint destination // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address // @param _payload - the payload to be retried function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external; // @notice query if any STORED payload (message blocking) at the endpoint. // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool); // @notice query if the _libraryAddress is valid for sending msgs. // @param _userApplication - the user app address on this EVM chain function getSendLibraryAddress(address _userApplication) external view returns (address); // @notice query if the _libraryAddress is valid for receiving msgs. // @param _userApplication - the user app address on this EVM chain function getReceiveLibraryAddress(address _userApplication) external view returns (address); // @notice query if the non-reentrancy guard for send() is on // @return true if the guard is on. false otherwise function isSendingPayload() external view returns (bool); // @notice query if the non-reentrancy guard for receive() is on // @return true if the guard is on. false otherwise function isReceivingPayload() external view returns (bool); // @notice get the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _userApplication - the contract address of the user application // @param _configType - type of configuration. every messaging library has its own convention. function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint _configType) external view returns (bytes memory); // @notice get the send() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getSendVersion(address _userApplication) external view returns (uint16); // @notice get the lzReceive() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getReceiveVersion(address _userApplication) external view returns (uint16); }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface ILayerZeroReceiver { // @notice LayerZero endpoint will invoke this function to deliver the message on the destination // @param _srcChainId - the source endpoint identifier // @param _srcAddress - the source sending contract address from the source chain // @param _nonce - the ordered message nonce // @param _payload - the signed payload is the UA bytes has encoded to be sent function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface ILayerZeroUserApplicationConfig { // @notice set the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _configType - type of configuration. every messaging library has its own convention. // @param _config - configuration in the bytes. can encode arbitrary content. function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external; // @notice set the send() LayerZero messaging library version to _version // @param _version - new messaging library version function setSendVersion(uint16 _version) external; // @notice set the lzReceive() LayerZero messaging library version to _version // @param _version - new messaging library version function setReceiveVersion(uint16 _version) external; // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload // @param _srcChainId - the chainId of the source chain // @param _srcAddress - the contract address of the source contract at the source chain function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; import "../interfaces/ILayerZeroReceiver.sol"; import "../interfaces/ILayerZeroUserApplicationConfig.sol"; import "../interfaces/ILayerZeroEndpoint.sol"; import "../util/BytesLib.sol"; /* * a generic LzReceiver implementation */ abstract contract LzApp is Ownable, ILayerZeroReceiver, ILayerZeroUserApplicationConfig { using BytesLib for bytes; // ua can not send payload larger than this by default, but it can be changed by the ua owner uint constant public DEFAULT_PAYLOAD_SIZE_LIMIT = 10000; ILayerZeroEndpoint public immutable lzEndpoint; mapping(uint16 => bytes) public trustedRemoteLookup; mapping(uint16 => mapping(uint16 => uint)) public minDstGasLookup; mapping(uint16 => uint) public payloadSizeLimitLookup; address public precrime; event SetPrecrime(address precrime); event SetTrustedRemote(uint16 _remoteChainId, bytes _path); event SetTrustedRemoteAddress(uint16 _remoteChainId, bytes _remoteAddress); event SetMinDstGas(uint16 _dstChainId, uint16 _type, uint _minDstGas); constructor(address _endpoint) { lzEndpoint = ILayerZeroEndpoint(_endpoint); } function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual override { // lzReceive must be called by the endpoint for security require(_msgSender() == address(lzEndpoint), "LzApp: invalid endpoint caller"); bytes memory trustedRemote = trustedRemoteLookup[_srcChainId]; // if will still block the message pathway from (srcChainId, srcAddress). should not receive message from untrusted remote. require(_srcAddress.length == trustedRemote.length && trustedRemote.length > 0 && keccak256(_srcAddress) == keccak256(trustedRemote), "LzApp: invalid source sending contract"); _blockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload); } // abstract function - the default behaviour of LayerZero is blocking. See: NonblockingLzApp if you dont need to enforce ordered messaging function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual; function _lzSend(uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams, uint _nativeFee) internal virtual { bytes memory trustedRemote = trustedRemoteLookup[_dstChainId]; require(trustedRemote.length != 0, "LzApp: destination chain is not a trusted source"); _checkPayloadSize(_dstChainId, _payload.length); lzEndpoint.send{value: _nativeFee}(_dstChainId, trustedRemote, _payload, _refundAddress, _zroPaymentAddress, _adapterParams); } function _checkGasLimit(uint16 _dstChainId, uint16 _type, bytes memory _adapterParams, uint _extraGas) internal view virtual { uint providedGasLimit = _getGasLimit(_adapterParams); uint minGasLimit = minDstGasLookup[_dstChainId][_type] + _extraGas; require(minGasLimit > 0, "LzApp: minGasLimit not set"); require(providedGasLimit >= minGasLimit, "LzApp: gas limit is too low"); } function _getGasLimit(bytes memory _adapterParams) internal pure virtual returns (uint gasLimit) { require(_adapterParams.length >= 34, "LzApp: invalid adapterParams"); assembly { gasLimit := mload(add(_adapterParams, 34)) } } function _checkPayloadSize(uint16 _dstChainId, uint _payloadSize) internal view virtual { uint payloadSizeLimit = payloadSizeLimitLookup[_dstChainId]; if (payloadSizeLimit == 0) { // use default if not set payloadSizeLimit = DEFAULT_PAYLOAD_SIZE_LIMIT; } require(_payloadSize <= payloadSizeLimit, "LzApp: payload size is too large"); } //---------------------------UserApplication config---------------------------------------- function getConfig(uint16 _version, uint16 _chainId, address, uint _configType) external view returns (bytes memory) { return lzEndpoint.getConfig(_version, _chainId, address(this), _configType); } // generic config for LayerZero user Application function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external override onlyOwner { lzEndpoint.setConfig(_version, _chainId, _configType, _config); } function setSendVersion(uint16 _version) external override onlyOwner { lzEndpoint.setSendVersion(_version); } function setReceiveVersion(uint16 _version) external override onlyOwner { lzEndpoint.setReceiveVersion(_version); } function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external override onlyOwner { lzEndpoint.forceResumeReceive(_srcChainId, _srcAddress); } // _path = abi.encodePacked(remoteAddress, localAddress) // this function set the trusted path for the cross-chain communication function setTrustedRemote(uint16 _remoteChainId, bytes calldata _path) external onlyOwner { trustedRemoteLookup[_remoteChainId] = _path; emit SetTrustedRemote(_remoteChainId, _path); } function setTrustedRemoteAddress(uint16 _remoteChainId, bytes calldata _remoteAddress) external onlyOwner { trustedRemoteLookup[_remoteChainId] = abi.encodePacked(_remoteAddress, address(this)); emit SetTrustedRemoteAddress(_remoteChainId, _remoteAddress); } function getTrustedRemoteAddress(uint16 _remoteChainId) external view returns (bytes memory) { bytes memory path = trustedRemoteLookup[_remoteChainId]; require(path.length != 0, "LzApp: no trusted path record"); return path.slice(0, path.length - 20); // the last 20 bytes should be address(this) } function setPrecrime(address _precrime) external onlyOwner { precrime = _precrime; emit SetPrecrime(_precrime); } function setMinDstGas(uint16 _dstChainId, uint16 _packetType, uint _minGas) external onlyOwner { require(_minGas > 0, "LzApp: invalid minGas"); minDstGasLookup[_dstChainId][_packetType] = _minGas; emit SetMinDstGas(_dstChainId, _packetType, _minGas); } // if the size is 0, it means default size limit function setPayloadSizeLimit(uint16 _dstChainId, uint _size) external onlyOwner { payloadSizeLimitLookup[_dstChainId] = _size; } //--------------------------- VIEW FUNCTION ---------------------------------------- function isTrustedRemote(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool) { bytes memory trustedSource = trustedRemoteLookup[_srcChainId]; return keccak256(trustedSource) == keccak256(_srcAddress); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./LzApp.sol"; import "../util/ExcessivelySafeCall.sol"; /* * the default LayerZero messaging behaviour is blocking, i.e. any failed message will block the channel * this abstract class try-catch all fail messages and store locally for future retry. hence, non-blocking * NOTE: if the srcAddress is not configured properly, it will still block the message pathway from (srcChainId, srcAddress) */ abstract contract NonblockingLzApp is LzApp { using ExcessivelySafeCall for address; constructor(address _endpoint) LzApp(_endpoint) {} mapping(uint16 => mapping(bytes => mapping(uint64 => bytes32))) public failedMessages; event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload, bytes _reason); event RetryMessageSuccess(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _payloadHash); // overriding the virtual function in LzReceiver function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override { (bool success, bytes memory reason) = address(this).excessivelySafeCall(gasleft(), 150, abi.encodeWithSelector(this.nonblockingLzReceive.selector, _srcChainId, _srcAddress, _nonce, _payload)); // try-catch all errors/exceptions if (!success) { _storeFailedMessage(_srcChainId, _srcAddress, _nonce, _payload, reason); } } function _storeFailedMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload, bytes memory _reason) internal virtual { failedMessages[_srcChainId][_srcAddress][_nonce] = keccak256(_payload); emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload, _reason); } function nonblockingLzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual { // only internal transaction require(_msgSender() == address(this), "NonblockingLzApp: caller must be LzApp"); _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload); } //@notice override this function function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual; function retryMessage(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public payable virtual { // assert there is message to retry bytes32 payloadHash = failedMessages[_srcChainId][_srcAddress][_nonce]; require(payloadHash != bytes32(0), "NonblockingLzApp: no stored message"); require(keccak256(_payload) == payloadHash, "NonblockingLzApp: invalid payload"); // clear the stored message failedMessages[_srcChainId][_srcAddress][_nonce] = bytes32(0); // execute the message. revert if it fails again _nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload); emit RetryMessageSuccess(_srcChainId, _srcAddress, _nonce, payloadHash); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import "./IOFTCore.sol"; import "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; /** * @dev Interface of the OFT standard */ interface IOFT is IOFTCore, IERC20 { }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import "lib/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol"; /** * @dev Interface of the IOFT core standard */ interface IOFTCore is IERC165 { /** * @dev estimate send token `_tokenId` to (`_dstChainId`, `_toAddress`) * _dstChainId - L0 defined chain id to send tokens too * _toAddress - dynamic bytes array which contains the address to whom you are sending tokens to on the dstChain * _amount - amount of the tokens to transfer * _useZro - indicates to use zro to pay L0 fees * _adapterParam - flexible bytes array to indicate messaging adapter services in L0 */ function estimateSendFee(uint16 _dstChainId, bytes calldata _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee); /** * @dev send `_amount` amount of token to (`_dstChainId`, `_toAddress`) from `_from` * `_from` the owner of token * `_dstChainId` the destination chain identifier * `_toAddress` can be any size depending on the `dstChainId`. * `_amount` the quantity of tokens in wei * `_refundAddress` the address LayerZero refunds if too much message fee is sent * `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (LayerZero Token) * `_adapterParams` is a flexible bytes array to indicate messaging adapter services */ function sendFrom(address _from, uint16 _dstChainId, bytes calldata _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable; /** * @dev returns the circulating amount of tokens on current chain */ function circulatingSupply() external view returns (uint); /** * @dev returns the address of the ERC20 token */ function token() external view returns (address); /** * @dev Emitted when `_amount` tokens are moved from the `_sender` to (`_dstChainId`, `_toAddress`) * `_nonce` is the outbound nonce */ event SendToChain(uint16 indexed _dstChainId, address indexed _from, bytes _toAddress, uint _amount); /** * @dev Emitted when `_amount` tokens are received from `_srcChainId` into the `_toAddress` on the local chain. * `_nonce` is the inbound nonce. */ event ReceiveFromChain(uint16 indexed _srcChainId, address indexed _to, uint _amount); event SetUseCustomAdapterParams(bool _useCustomAdapterParams); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; import "lib/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol"; import "./IOFT.sol"; import "./OFTCore.sol"; // override decimal() function is needed contract OFT is OFTCore, ERC20, IOFT { constructor(string memory _name, string memory _symbol, address _lzEndpoint) ERC20(_name, _symbol) OFTCore(_lzEndpoint) {} function supportsInterface(bytes4 interfaceId) public view virtual override(OFTCore, IERC165) returns (bool) { return interfaceId == type(IOFT).interfaceId || interfaceId == type(IERC20).interfaceId || super.supportsInterface(interfaceId); } function token() public view virtual override returns (address) { return address(this); } function circulatingSupply() public view virtual override returns (uint) { return totalSupply(); } function _debitFrom(address _from, uint16, bytes memory, uint _amount) internal virtual override returns(uint) { address spender = _msgSender(); if (_from != spender) _spendAllowance(_from, spender, _amount); _burn(_from, _amount); return _amount; } function _creditTo(uint16, address _toAddress, uint _amount) internal virtual override returns(uint) { _mint(_toAddress, _amount); return _amount; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../lzApp/NonblockingLzApp.sol"; import "./IOFTCore.sol"; import "lib/openzeppelin-contracts/contracts/utils/introspection/ERC165.sol"; abstract contract OFTCore is NonblockingLzApp, ERC165, IOFTCore { using BytesLib for bytes; uint public constant NO_EXTRA_GAS = 0; // packet type uint16 public constant PT_SEND = 0; bool public useCustomAdapterParams; constructor(address _lzEndpoint) NonblockingLzApp(_lzEndpoint) {} function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IOFTCore).interfaceId || super.supportsInterface(interfaceId); } function estimateSendFee(uint16 _dstChainId, bytes calldata _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) public view virtual override returns (uint nativeFee, uint zroFee) { // mock the payload for sendFrom() bytes memory payload = abi.encode(PT_SEND, _toAddress, _amount); return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams); } function sendFrom(address _from, uint16 _dstChainId, bytes calldata _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) public payable virtual override { _send(_from, _dstChainId, _toAddress, _amount, _refundAddress, _zroPaymentAddress, _adapterParams); } function setUseCustomAdapterParams(bool _useCustomAdapterParams) public virtual onlyOwner { useCustomAdapterParams = _useCustomAdapterParams; emit SetUseCustomAdapterParams(_useCustomAdapterParams); } function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override { uint16 packetType; assembly { packetType := mload(add(_payload, 32)) } if (packetType == PT_SEND) { _sendAck(_srcChainId, _srcAddress, _nonce, _payload); } else { revert("OFTCore: unknown packet type"); } } function _send(address _from, uint16 _dstChainId, bytes memory _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams) internal virtual { _checkAdapterParams(_dstChainId, PT_SEND, _adapterParams, NO_EXTRA_GAS); uint amount = _debitFrom(_from, _dstChainId, _toAddress, _amount); bytes memory lzPayload = abi.encode(PT_SEND, _toAddress, amount); _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value); emit SendToChain(_dstChainId, _from, _toAddress, amount); } function _sendAck(uint16 _srcChainId, bytes memory, uint64, bytes memory _payload) internal virtual { (, bytes memory toAddressBytes, uint amount) = abi.decode(_payload, (uint16, bytes, uint)); address to = toAddressBytes.toAddress(0); amount = _creditTo(_srcChainId, to, amount); emit ReceiveFromChain(_srcChainId, to, amount); } function _checkAdapterParams(uint16 _dstChainId, uint16 _pkType, bytes memory _adapterParams, uint _extraGas) internal virtual { if (useCustomAdapterParams) { _checkGasLimit(_dstChainId, _pkType, _adapterParams, _extraGas); } else { require(_adapterParams.length == 0, "OFTCore: _adapterParams must be empty."); } } function _debitFrom(address _from, uint16 _dstChainId, bytes memory _toAddress, uint _amount) internal virtual returns(uint); function _creditTo(uint16 _srcChainId, address _toAddress, uint _amount) internal virtual returns(uint); }
// SPDX-License-Identifier: Unlicense /* * @title Solidity Bytes Arrays Utils * @author Gonçalo Sá <[email protected]> * * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. * The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. */ pragma solidity >=0.8.0 <0.9.0; library BytesLib { function concat( bytes memory _preBytes, bytes memory _postBytes ) internal pure returns (bytes memory) { bytes memory tempBytes; assembly { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // Store the length of the first bytes array at the beginning of // the memory for tempBytes. let length := mload(_preBytes) mstore(tempBytes, length) // Maintain a memory counter for the current write location in the // temp bytes array by adding the 32 bytes for the array length to // the starting location. let mc := add(tempBytes, 0x20) // Stop copying when the memory counter reaches the length of the // first bytes array. let end := add(mc, length) for { // Initialize a copy counter to the start of the _preBytes data, // 32 bytes into its memory. let cc := add(_preBytes, 0x20) } lt(mc, end) { // Increase both counters by 32 bytes each iteration. mc := add(mc, 0x20) cc := add(cc, 0x20) } { // Write the _preBytes data into the tempBytes memory 32 bytes // at a time. mstore(mc, mload(cc)) } // Add the length of _postBytes to the current length of tempBytes // and store it as the new length in the first 32 bytes of the // tempBytes memory. length := mload(_postBytes) mstore(tempBytes, add(length, mload(tempBytes))) // Move the memory counter back from a multiple of 0x20 to the // actual end of the _preBytes data. mc := end // Stop copying when the memory counter reaches the new combined // length of the arrays. end := add(mc, length) for { let cc := add(_postBytes, 0x20) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } // Update the free-memory pointer by padding our last write location // to 32 bytes: add 31 bytes to the end of tempBytes to move to the // next 32 byte block, then round down to the nearest multiple of // 32. If the sum of the length of the two arrays is zero then add // one before rounding down to leave a blank 32 bytes (the length block with 0). mstore(0x40, and( add(add(end, iszero(add(length, mload(_preBytes)))), 31), not(31) // Round down to the nearest 32 bytes. )) } return tempBytes; } function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal { assembly { // Read the first 32 bytes of _preBytes storage, which is the length // of the array. (We don't need to use the offset into the slot // because arrays use the entire slot.) let fslot := sload(_preBytes.slot) // Arrays of 31 bytes or less have an even value in their slot, // while longer arrays have an odd value. The actual length is // the slot divided by two for odd values, and the lowest order // byte divided by two for even values. // If the slot is even, bitwise and the slot with 255 and divide by // two to get the length. If the slot is odd, bitwise and the slot // with -1 and divide by two. let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) let newlength := add(slength, mlength) // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage switch add(lt(slength, 32), lt(newlength, 32)) case 2 { // Since the new array still fits in the slot, we just need to // update the contents of the slot. // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length sstore( _preBytes.slot, // all the modifications to the slot are inside this // next block add( // we can just add to the slot contents because the // bytes we want to change are the LSBs fslot, add( mul( div( // load the bytes from memory mload(add(_postBytes, 0x20)), // zero all bytes to the right exp(0x100, sub(32, mlength)) ), // and now shift left the number of bytes to // leave space for the length in the slot exp(0x100, sub(32, newlength)) ), // increase length by the double of the memory // bytes length mul(mlength, 2) ) ) ) } case 1 { // The stored value fits in the slot, but the combined value // will exceed it. // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // The contents of the _postBytes array start 32 bytes into // the structure. Our first read should obtain the `submod` // bytes that can fit into the unused space in the last word // of the stored array. To get this, we read 32 bytes starting // from `submod`, so the data we read overlaps with the array // contents by `submod` bytes. Masking the lowest-order // `submod` bytes allows us to add that value directly to the // stored value. let submod := sub(32, slength) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore( sc, add( and( fslot, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00 ), and(mload(mc), mask) ) ) for { mc := add(mc, 0x20) sc := add(sc, 1) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } default { // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) // Start copying to the last used word of the stored array. let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // Copy over the first `submod` bytes of the new data as in // case 1 above. let slengthmod := mod(slength, 32) let mlengthmod := mod(mlength, 32) let submod := sub(32, slengthmod) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore(sc, add(sload(sc), and(mload(mc), mask))) for { sc := add(sc, 1) mc := add(mc, 0x20) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } } } function slice( bytes memory _bytes, uint256 _start, uint256 _length ) internal pure returns (bytes memory) { require(_length + 31 >= _length, "slice_overflow"); require(_bytes.length >= _start + _length, "slice_outOfBounds"); bytes memory tempBytes; assembly { switch iszero(_length) case 0 { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // The first word of the slice result is potentially a partial // word read from the original array. To read it, we calculate // the length of that partial word and start copying that many // bytes into the array. The first word we copy will start with // data we don't care about, but the last `lengthmod` bytes will // land at the beginning of the contents of the new array. When // we're done copying, we overwrite the full first word with // the actual length of the slice. let lengthmod := and(_length, 31) // The multiplication in the next line is necessary // because when slicing multiples of 32 bytes (lengthmod == 0) // the following copy loop was copying the origin's length // and then ending prematurely not copying everything it should. let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod))) let end := add(mc, _length) for { // The multiplication in the next line has the same exact purpose // as the one above. let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } mstore(tempBytes, _length) //update free-memory pointer //allocating the array padded to 32 bytes like the compiler does now mstore(0x40, and(add(mc, 31), not(31))) } //if we want a zero-length slice let's just return a zero-length array default { tempBytes := mload(0x40) //zero out the 32 bytes slice we are about to return //we need to do it because Solidity does not garbage collect mstore(tempBytes, 0) mstore(0x40, add(tempBytes, 0x20)) } } return tempBytes; } function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) { require(_bytes.length >= _start + 20, "toAddress_outOfBounds"); address tempAddress; assembly { tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000) } return tempAddress; } function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) { require(_bytes.length >= _start + 1 , "toUint8_outOfBounds"); uint8 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x1), _start)) } return tempUint; } function toUint16(bytes memory _bytes, uint256 _start) internal pure returns (uint16) { require(_bytes.length >= _start + 2, "toUint16_outOfBounds"); uint16 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x2), _start)) } return tempUint; } function toUint32(bytes memory _bytes, uint256 _start) internal pure returns (uint32) { require(_bytes.length >= _start + 4, "toUint32_outOfBounds"); uint32 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x4), _start)) } return tempUint; } function toUint64(bytes memory _bytes, uint256 _start) internal pure returns (uint64) { require(_bytes.length >= _start + 8, "toUint64_outOfBounds"); uint64 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x8), _start)) } return tempUint; } function toUint96(bytes memory _bytes, uint256 _start) internal pure returns (uint96) { require(_bytes.length >= _start + 12, "toUint96_outOfBounds"); uint96 tempUint; assembly { tempUint := mload(add(add(_bytes, 0xc), _start)) } return tempUint; } function toUint128(bytes memory _bytes, uint256 _start) internal pure returns (uint128) { require(_bytes.length >= _start + 16, "toUint128_outOfBounds"); uint128 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x10), _start)) } return tempUint; } function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) { require(_bytes.length >= _start + 32, "toUint256_outOfBounds"); uint256 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) { require(_bytes.length >= _start + 32, "toBytes32_outOfBounds"); bytes32 tempBytes32; assembly { tempBytes32 := mload(add(add(_bytes, 0x20), _start)) } return tempBytes32; } function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) { bool success = true; assembly { let length := mload(_preBytes) // if lengths don't match the arrays are not equal switch eq(length, mload(_postBytes)) case 1 { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 let mc := add(_preBytes, 0x20) let end := add(mc, length) for { let cc := add(_postBytes, 0x20) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) } eq(add(lt(mc, end), cb), 2) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { // if any of these checks fails then arrays are not equal if iszero(eq(mload(mc), mload(cc))) { // unsuccess: success := 0 cb := 0 } } } default { // unsuccess: success := 0 } } return success; } function equalStorage( bytes storage _preBytes, bytes memory _postBytes ) internal view returns (bool) { bool success = true; assembly { // we know _preBytes_offset is 0 let fslot := sload(_preBytes.slot) // Decode the length of the stored array like in concatStorage(). let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) // if lengths don't match the arrays are not equal switch eq(slength, mlength) case 1 { // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage if iszero(iszero(slength)) { switch lt(slength, 32) case 1 { // blank the last byte which is the length fslot := mul(div(fslot, 0x100), 0x100) if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) { // unsuccess: success := 0 } } default { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := keccak256(0x0, 0x20) let mc := add(_postBytes, 0x20) let end := add(mc, mlength) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) for {} eq(add(lt(mc, end), cb), 2) { sc := add(sc, 1) mc := add(mc, 0x20) } { if iszero(eq(sload(sc), mload(mc))) { // unsuccess: success := 0 cb := 0 } } } } } default { // unsuccess: success := 0 } } return success; } }
// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity >=0.7.6; library ExcessivelySafeCall { uint256 constant LOW_28_MASK = 0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff; /// @notice Use when you _really_ really _really_ don't trust the called /// contract. This prevents the called contract from causing reversion of /// the caller in as many ways as we can. /// @dev The main difference between this and a solidity low-level call is /// that we limit the number of bytes that the callee can cause to be /// copied to caller memory. This prevents stupid things like malicious /// contracts returning 10,000,000 bytes causing a local OOG when copying /// to memory. /// @param _target The address to call /// @param _gas The amount of gas to forward to the remote contract /// @param _maxCopy The maximum number of bytes of returndata to copy /// to memory. /// @param _calldata The data to send to the remote contract /// @return success and returndata, as `.call()`. Returndata is capped to /// `_maxCopy` bytes. function excessivelySafeCall( address _target, uint256 _gas, uint16 _maxCopy, bytes memory _calldata ) internal returns (bool, bytes memory) { // set up for assembly call uint256 _toCopy; bool _success; bytes memory _returnData = new bytes(_maxCopy); // dispatch message to recipient // by assembly calling "handle" function // we call via assembly to avoid memcopying a very large returndata // returned by a malicious contract assembly { _success := call( _gas, // gas _target, // recipient 0, // ether value add(_calldata, 0x20), // inloc mload(_calldata), // inlen 0, // outloc 0 // outlen ) // limit our copy to 256 bytes _toCopy := returndatasize() if gt(_toCopy, _maxCopy) { _toCopy := _maxCopy } // Store the length of the copied bytes mstore(_returnData, _toCopy) // copy the bytes from returndata[0:_toCopy] returndatacopy(add(_returnData, 0x20), 0, _toCopy) } return (_success, _returnData); } /// @notice Use when you _really_ really _really_ don't trust the called /// contract. This prevents the called contract from causing reversion of /// the caller in as many ways as we can. /// @dev The main difference between this and a solidity low-level call is /// that we limit the number of bytes that the callee can cause to be /// copied to caller memory. This prevents stupid things like malicious /// contracts returning 10,000,000 bytes causing a local OOG when copying /// to memory. /// @param _target The address to call /// @param _gas The amount of gas to forward to the remote contract /// @param _maxCopy The maximum number of bytes of returndata to copy /// to memory. /// @param _calldata The data to send to the remote contract /// @return success and returndata, as `.call()`. Returndata is capped to /// `_maxCopy` bytes. function excessivelySafeStaticCall( address _target, uint256 _gas, uint16 _maxCopy, bytes memory _calldata ) internal view returns (bool, bytes memory) { // set up for assembly call uint256 _toCopy; bool _success; bytes memory _returnData = new bytes(_maxCopy); // dispatch message to recipient // by assembly calling "handle" function // we call via assembly to avoid memcopying a very large returndata // returned by a malicious contract assembly { _success := staticcall( _gas, // gas _target, // recipient add(_calldata, 0x20), // inloc mload(_calldata), // inlen 0, // outloc 0 // outlen ) // limit our copy to 256 bytes _toCopy := returndatasize() if gt(_toCopy, _maxCopy) { _toCopy := _maxCopy } // Store the length of the copied bytes mstore(_returnData, _toCopy) // copy the bytes from returndata[0:_toCopy] returndatacopy(add(_returnData, 0x20), 0, _toCopy) } return (_success, _returnData); } /** * @notice Swaps function selectors in encoded contract calls * @dev Allows reuse of encoded calldata for functions with identical * argument types but different names. It simply swaps out the first 4 bytes * for the new selector. This function modifies memory in place, and should * only be used with caution. * @param _newSelector The new 4-byte selector * @param _buf The encoded contract args */ function swapSelector(bytes4 _newSelector, bytes memory _buf) internal pure { require(_buf.length >= 4); uint256 _mask = LOW_28_MASK; assembly { // load the first word of let _word := mload(add(_buf, 0x20)) // mask out the top 4 bytes // /x _word := and(_word, _mask) _word := or(_newSelector, _word) mstore(add(_buf, 0x20), _word) } } }
{ "compilerPath": "C:\\Users\\mamin\\AppData\\Local\\hardhat-nodejs\\Cache\\compilers-v2\\zksolc\\zksolc-v1.3.13", "experimental": {}, "optimizer": { "enabled": true, "mode": "3" } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_nameArg","type":"string"},{"internalType":"string","name":"_symbolArg","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"NO_OPERATOR","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"_reason","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ReceiveFromChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"_payloadHash","type":"bytes32"}],"name":"RetryMessageSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"bytes","name":"_toAddress","type":"bytes"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"SendToChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"_type","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_minDstGas","type":"uint256"}],"name":"SetMinDstGas","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"precrime","type":"address"}],"name":"SetPrecrime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_path","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"SetTrustedRemoteAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"SetUseCustomAdapterParams","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_PAYLOAD_SIZE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NO_EXTRA_GAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"failedMessages","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_configType","type":"uint256"}],"name":"getConfig","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"}],"name":"getTrustedRemoteAddress","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"isTrustedRemote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lzEndpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"payloadSizeLimitLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address payable","name":"_refundAddress","type":"address"},{"internalType":"address","name":"_zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"sendFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint16","name":"_packetType","type":"uint16"},{"internalType":"uint256","name":"_minGas","type":"uint256"}],"name":"setMinDstGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_size","type":"uint256"}],"name":"setPayloadSizeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_precrime","type":"address"}],"name":"setPrecrime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_path","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setTrustedRemoteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"setUseCustomAdapterParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useCustomAdapterParams","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010009079198f68c66ba54072181f2bb550286aee546fccd7b9547edde814ea4000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000009b896c0e23220469c7ae69cb4bbae391eaa4c8da000000000000000000000000000000000000000000000000000000000000000f756e6c6f636b204d6176657269636b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006756e6b4d61760000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0004000000000002000900000000000200000000030100190000006003300270000008610430019700030000004103550002000000010355000008610030019d000100000000001f0000000101200190000000530000c13d0000008001000039000000400010043f0000000001000031000000040110008c000006ee0000413d0000000201000367000000000101043b000000e0011002700000086a0210009c0000017b0000a13d0000086b0210009c000001b70000a13d0000086c0210009c000002070000a13d0000086d0210009c000002a70000a13d0000086e0210009c000003e20000213d000008710210009c000004000000613d000008720110009c000006ee0000c13d0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000200310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d00000004010000390000000201100367000000000601043b000008640160009c000006ee0000213d000000000100041a00000864021001970000000005000411000000000252004b000006f10000c13d000000000206004b0000075c0000c13d000000400100043d0000006402100039000008ac0300004100000000003204350000004402100039000008ad030000410000000000320435000000240210003900000026030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c70000218100010430000000a001000039000000400010043f0000000001000416000000000101004b000006ee0000c13d00000000020000310000001f01200039000000200a00008a0000000004a1016f000000400100043d0000000003140019000000000443004b00000000040000190000000104004039000008620530009c000002a10000213d0000000104400190000002a10000c13d000000400030043f0000001f0320018f00000002040003670000000505200272000000730000613d000000000600001900000005076002100000000008710019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b0000006b0000413d000000000603004b000000820000613d0000000505500210000000000454034f00000000055100190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000086303000041000000600420008c000000000400001900000000040340190000086305200197000000000605004b000000000300a019000008630550009c000000000304c019000000000303004b000006ee0000c13d0000000034010434000008620540009c000006ee0000213d000000000221001900000000041400190000001f054000390000086306000041000000000725004b0000000007000019000000000706801900000863055001970000086308200197000000000985004b0000000006008019000000000585013f000008630550009c00000000050700190000000005066019000000000505004b000006ee0000c13d0000000005040433000008620650009c000002a10000213d0000003f065000390000000006a6016f000000400900043d0000000006690019000000000796004b00000000070000190000000107004039000008620860009c000002a10000213d0000000107700190000002a10000c13d000000400060043f000900000009001d0000000006590436000800000006001d00000020065000390000000007460019000000000727004b000006ee0000213d000000000705004b000000090b000029000000c20000613d000000000700001900000020077000390000000008b70019000000000947001900000000090904330000000000980435000000000857004b000000bb0000413d00000000046b001900000000000404350000000003030433000008620430009c000006ee0000213d00000000031300190000001f043000390000086305000041000000000624004b0000000006000019000000000605801900000863044001970000086307200197000000000874004b0000000005008019000000000474013f000008630440009c00000000040600190000000004056019000000000404004b000006ee0000c13d0000000004030433000008620540009c000002a10000213d0000003f054000390000000005a5016f000000400800043d0000000005580019000000000685004b00000000060000190000000106004039000008620750009c000002a10000213d0000000106600190000002a10000c13d000000400050043f000700000008001d0000000005480436000600000005001d00000020054000390000000006350019000000000226004b000006ee0000213d000000000204004b0000000708000029000000f80000613d000000000200001900000020022000390000000006820019000000000732001900000000070704330000000000760435000000000642004b000000f10000413d00000000025800190000000000020435000000400110003900000000010104330000086402100197000500000002001d000008640110009c000006ee0000213d000000000200041a00000865012001970000000006000411000000000116019f000000000010041b00000861010000410000000003000414000008610430009c0000000001034019000000c00110021000000866011001c700000864052001970000800d0200003900000003030000390000086704000041000300000006001d00040000000a001d217f21750000040f0000000101200190000006ee0000613d0000000501000029000000800010043f00000009010000290000000001010433000500000001001d000008620110009c000002a10000213d0000000a01000039000200000001001d000000000101041a000000010210019000000001011002700000007f0310018f0000000001036019000100000001001d0000001f0110008c00000000010000190000000101002039000000010110018f000000000112004b000002ff0000c13d0000000101000029000000200110008c000001490000413d0000000201000029000000000010043500000861010000410000000002000414000008610320009c0000000001024019000000c00110021000000868011001c70000801002000039217f217a0000040f0000000102200190000006ee0000613d00000005030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000001490000813d000000000002041b0000000102200039000000000312004b000001450000413d00000005010000290000001f0110008c000007bf0000a13d0000000201000029000000000010043500000861010000410000000002000414000008610320009c0000000001024019000000c00110021000000868011001c70000801002000039217f217a0000040f00000001022001900000000402000029000006ee0000613d000000050300002900000000032301700000002002000039000000000101043b0000000906000029000001690000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000001610000413d0000000504000029000000000343004b000001770000813d00000005030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f000000090400002900000000024200190000000002020433000000000232016f000000000021041b0000000501000029000000010110021000000001011001bf000007cd0000013d0000088c0210009c000001dc0000213d0000089c0210009c000002290000213d000008a40210009c000002ae0000213d000008a80210009c0000041e0000613d000008a90210009c0000041f0000613d000008aa0110009c000006ee0000c13d0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000000301004b000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d0000000a04000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f0000000102200190000002ff0000c13d000000400100043d0000000002710436000000000505004b0000072c0000613d0000000000400435000000000307004b0000000003000019000007320000613d000008bc0400004100000000030000190000000005320019000000000604041a000000000065043500000001044000390000002003300039000000000573004b000001af0000413d000007320000013d0000087d0210009c000002620000213d000008850210009c000002db0000213d000008890210009c0000044b0000613d0000088a0210009c0000047f0000613d0000088b0110009c000006ee0000c13d0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000000301004b000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d000000000100041a0000086401100197000000400200043d00000000001204350000086101000041000008610320009c00000000010240190000004001100210000008ab011001c7000021800001042e0000088d0210009c0000026b0000213d000008950210009c000003050000213d000008990210009c000004ab0000613d0000089a0210009c000004d60000613d0000089b0110009c000006ee0000c13d0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000400310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d00000002020003670000000401200370000000000101043b000008640310009c000006ee0000213d0000000c03000039000000000303041a00000864033001970000000004000411000000000334004b000007020000c13d0000002402200370000000000202043b217f20ef0000040f0000000001000019000021800001042e000008760210009c0000030f0000213d0000087a0210009c000004fb0000613d0000087b0210009c0000051c0000613d0000087c0110009c000006ee0000c13d0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000000301004b000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d000000400100043d000027100200003900000000002104350000086102000041000008610310009c00000000010280190000004001100210000008ab011001c7000021800001042e0000089d0210009c000003410000213d000008a10210009c0000054e0000613d000008a20210009c0000054f0000613d000008a30110009c000006ee0000c13d0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000600310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d00000002010003670000000402100370000000000202043b0000000003020019000008640220009c000006ee0000213d0000002402100370000000000202043b000900000002001d000008640220009c000006ee0000213d0000004401100370000000000401043b000800000004001d00000000020004110000000001030019000700000001001d0000000003040019217f1d440000040f000000070100002900000009020000290000000803000029217f1c450000040f0000000101000039000000400200043d00000000001204350000086101000041000008610320009c00000000010240190000004001100210000008ab011001c7000021800001042e0000087e0210009c0000038c0000213d000008820210009c000005530000613d000008830210009c000005740000613d000008840110009c000006ee0000c13d217f13cd0000040f0000088e0210009c000003b60000213d000008920210009c000005750000613d000008930210009c000005760000613d000008940110009c000006ee0000c13d0000000001000416000000000101004b000006ee0000c13d0000000002000031000000040120008a0000086303000041000000600410008c000000000400001900000000040340190000086301100197000000000501004b000000000300a019000008630110009c00000000010400190000000001036019000000000101004b000006ee0000c13d00000002030003670000000401300370000000000101043b0000ffff0410008c000006ee0000213d0000002404300370000000000404043b000008620540009c000006ee0000213d00000023054000390000086306000041000000000725004b0000000007000019000000000706801900000863082001970000086305500197000000000985004b0000000006008019000000000585013f000008630550009c00000000050700190000000005066019000000000505004b000006ee0000c13d0000000405400039000000000353034f000000000303043b000008620530009c0000076d0000a13d000008b60100004100000000001004350000004101000039000000040010043f000008b7010000410000218100010430000008730210009c000005920000613d000008740210009c000005930000613d000008750110009c000006ee0000c13d217f1a180000040f000008a50210009c000005ca0000613d000008a60210009c000005cb0000613d000008a70110009c000006ee0000c13d0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000400310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d00000004010000390000000201100367000000000101043b000900000001001d0000ffff0110008c000006ee0000213d217f1c1d0000040f000000090100002900000000001004350000000301000039000000200010043f00000024010000390000000201100367000000000101043b000900000001001d00000040020000390000000001000019217f08530000040f0000000902000029000000000021041b0000000001000019000021800001042e000008860210009c000005ee0000613d000008870210009c000006090000613d000008880110009c000006ee0000c13d0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000000301004b000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d0000000b04000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f00000001022001900000070b0000613d000008b60100004100000000001004350000002201000039000000040010043f000008b7010000410000218100010430000008960210009c000006250000613d000008970210009c000006260000613d000008980110009c000006ee0000c13d0000000001000416000000000101004b000006290000613d000006ee0000013d000008770210009c0000063f0000613d000008780210009c000006400000613d000008790110009c000006ee0000c13d0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000400310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d00000002020003670000000401200370000000000101043b000008640310009c000006ee0000213d0000002402200370000000000202043b000900000002001d000008640220009c000006ee0000213d00000000001004350000000801000039000000200010043f00000040020000390000000001000019217f08530000040f0000000902000029217f1c340000040f000000000101041a000000400200043d00000000001204350000086101000041000008610320009c00000000010240190000004001100210000008ab011001c7000021800001042e0000089e0210009c000006410000613d0000089f0210009c000006990000613d000008a00110009c000006ee0000c13d0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000400310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d00000004010000390000000201100367000000000101043b000900000001001d000008640110009c000006ee0000213d0000000001000411000800000001001d00000000001004350000000801000039000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f0000000102200190000006ee0000613d000000000101043b00000009020000290000000000200435000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f0000000102200190000006ee0000613d000000000101043b000000000101041a00000024020000390000000202200367000000000202043b0000000003120019000000000123004b000000000100001900000001010040390000000101100190000007b30000613d000008b60100004100000000001004350000001101000039000000040010043f000008b70100004100002181000104300000087f0210009c000006b30000613d000008800210009c000006b40000613d000008810110009c000006ee0000c13d0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000000301004b000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d000000400100043d000900000001001d000008b201000041000000000010043900000000010004120000000400100443000000240000044300008005010000390000004402000039217f08690000040f0000086401100197000000090300002900000000001304350000086101000041000008610230009c00000000010340190000004001100210000008ab011001c7000021800001042e0000088f0210009c000006d70000613d000008900210009c000006d80000613d000008910110009c000006ee0000c13d0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000000301004b000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d000000000100041a00000864021001970000000005000411000000000252004b000006f10000c13d0000086501100197000000000010041b00000861010000410000000002000414000008610320009c0000000001024019000000c00110021000000866011001c70000800d02000039000000030300003900000867040000410000000006000019217f21750000040f0000000101200190000006ee0000613d0000076b0000013d0000086f0210009c000006f00000613d000008700110009c000006ee0000c13d0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000000301004b000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d000000400100043d000000000200041000000000002104350000086102000041000008610310009c00000000010280190000004001100210000008ab011001c7000021800001042e0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000000301004b000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d0000000601000039000000000101041a000000ff011001900000000001000019000000010100c039000000400200043d00000000001204350000086101000041000008610320009c00000000010240190000004001100210000008ab011001c7000021800001042e217f08950000040f0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000200310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d00000004010000390000000201100367000000000101043b000008bd02100197000000000221004b000006ee0000c13d0000000102000039000000000301004b000004420000613d000008be0310009c000004420000613d000008bf0210009c00000000020000190000000102006039000008c00110009c00000000010000190000000101006039000000000221019f000000010120018f000000400200043d00000000001204350000086101000041000008610320009c00000000010240190000004001100210000008ab011001c7000021800001042e0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000200310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c000006ee0000213d00000000001004350000000101000039000000200010043f00000040020000390000000001000019217f08530000040f000000400200043d000900000002001d217f12eb0000040f000000090300002900000000023100490000000001030019217f10c10000040f0000002001000039000000400200043d000800000002001d00000000021204360000000901000029217f09f70000040f000000080400002900000000014100490000086102000041000008610310009c0000000001028019000008610340009c000000000204401900000040022002100000006001100210000000000121019f000021800001042e0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000400310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d00000002020003670000000401200370000000000101043b0000ffff0310008c000006ee0000213d0000002402200370000000000202043b000900000002001d0000ffff0220008c000006ee0000213d00000000001004350000000201000039000000200010043f00000040020000390000000001000019217f08530000040f0000000902000029217f0ba60000040f000000000101041a000000400200043d00000000001204350000086101000041000008610320009c00000000010240190000004001100210000008ab011001c7000021800001042e0000000001000416000000000101004b000006ee0000c13d0000000001000031217f0b620000040f000800000002001d000700000003001d0000ffff0110018f00000000001004350000000101000039000000200010043f00000040020000390000000001000019217f08530000040f000000400200043d000900000002001d217f12eb0000040f000000090300002900000000023100490000000001030019217f10c10000040f00000009010000290000000012010434217f08530000040f000900000001001d000000000300003100000008010000290000000702000029217f10d40000040f0000000012010434217f08530000040f0000000902000029000000000112004b00000000010000190000000101006039000000400200043d00000000001204350000086101000041000008610320009c00000000010240190000004001100210000008ab011001c7000021800001042e0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000200310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c000006ee0000213d00000000001004350000000301000039000000200010043f00000040020000390000000001000019217f08530000040f000000000101041a000000400200043d00000000001204350000086101000041000008610320009c00000000010240190000004001100210000008ab011001c7000021800001042e0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000200310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d00000004010000390000000201100367000000000101043b000008640210009c000006ee0000213d0000000c02000039000000000302041a00000864043001970000000005000411000000000445004b000007020000c13d0000086503300197000000000113019f000000000012041b0000000001000019000021800001042e0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000200310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d00000004020000390000000201200367000000000101043b000008640310009c000006ee0000213d000000000300041a00000864033001970000000004000411000000000343004b000006f10000c13d000000000302041a0000086503300197000000000313019f000000000032041b000000400200043d000000000012043500000861010000410000000003000414000008610430009c0000000003018019000008610420009c00000000010240190000004001100210000000c002300210000000000112019f00000868011001c70000800d020000390000000103000039000008b104000041217f21750000040f00000001012001900000076b0000c13d000006ee0000013d217f0ac10000040f0000000001000416000000000101004b000006ee0000c13d000005f10000013d0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000400310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d00000002020003670000000401200370000000000101043b000008640310009c000006ee0000213d0000000c03000039000000000303041a00000864033001970000000004000411000000000334004b000007020000c13d0000002402200370000000000202043b217f207e0000040f0000000001000019000021800001042e217f13280000040f217f0ca40000040f0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000000301004b000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d0000000c01000039000000000101041a0000086401100197000000400200043d00000000001204350000086101000041000008610320009c00000000010240190000004001100210000008ab011001c7000021800001042e217f19940000040f0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000200310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d00000004010000390000000201100367000000000101043b000000000201004b0000000002000019000000010200c039000000000221004b000006ee0000c13d000000000200041a00000864022001970000000003000411000000000232004b000006f10000c13d0000000602000039000000000302041a000001000400008a000000000343016f000000000313019f000000000032041b000000400200043d000000000012043500000861010000410000000003000414000008610430009c0000000003018019000008610420009c00000000010240190000004001100210000000c002300210000000000112019f00000868011001c70000800d020000390000000103000039000008b004000041217f21750000040f00000001012001900000076b0000c13d000006ee0000013d217f0a200000040f0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000400310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d00000002010003670000000402100370000000000202043b000008640320009c000006ee0000213d0000002401100370000000000301043b0000000001000411217f1cdd0000040f0000000101000039000000400200043d00000000001204350000086101000041000008610320009c00000000010240190000004001100210000008ab011001c7000021800001042e0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000000301004b000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d0000000901000039000000000101041a000000400200043d00000000001204350000086101000041000008610320009c00000000010240190000004001100210000008ab011001c7000021800001042e0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000000301004b000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d0000000401000039000000000101041a0000086401100197000000400200043d00000000001204350000086101000041000008610320009c00000000010240190000004001100210000008ab011001c7000021800001042e217f0bb70000040f0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000000301004b000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d000000400100043d00000000000104350000086102000041000008610310009c00000000010280190000004001100210000008ab011001c7000021800001042e217f15870000040f217f16810000040f0000000001000416000000000101004b000006ee0000c13d0000000002000031000000040120008a0000086303000041000000a00410008c000000000400001900000000040340190000086301100197000000000501004b000000000300a019000008630110009c00000000010400190000000001036019000000000101004b000006ee0000c13d00000002010003670000000403100370000000000303043b000900000003001d0000ffff0330008c000006ee0000213d0000002403100370000000000303043b000008620430009c000006ee0000213d00000023043000390000086305000041000000000624004b0000000006000019000000000605801900000863072001970000086304400197000000000874004b0000000005008019000000000474013f000008630440009c00000000040600190000000004056019000000000404004b000006ee0000c13d0000000404300039000000000441034f000000000404043b000800000004001d000008620440009c000006ee0000213d00000024043000390000000803000029000700000004001d0000000003430019000000000323004b000006ee0000213d0000006403100370000000000403043b000000000304004b0000000003000019000000010300c039000600000004001d000000000334004b000006ee0000c13d0000008401100370000000000101043b000008620310009c000006ee0000213d0000000401100039217f087a0000040f00000044030000390000000203300367000000000403043b000000000601001900000000070200190000000901000029000000070200002900000008030000290000000605000029217f1f660000040f000000400300043d0000002004300039000000000024043500000000001304350000086101000041000008610230009c00000000010340190000004001100210000008bb011001c7000021800001042e0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000000301004b000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d000000400100043d000000120200003900000000002104350000086102000041000008610310009c00000000010280190000004001100210000008ab011001c7000021800001042e217f142e0000040f0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000400310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d00000002010003670000000402100370000000000202043b000008640320009c000006ee0000213d0000002401100370000000000301043b0000000001000411217f1c450000040f0000000101000039000000400200043d00000000001204350000086101000041000008610320009c00000000010240190000004001100210000008ab011001c7000021800001042e217f11460000040f0000000001000416000000000101004b000006ee0000c13d000000040100008a00000000011000310000086302000041000000200310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000006ee0000c13d00000004010000390000000201100367000000000101043b000008640210009c0000071d0000a13d00000000010000190000218100010430217f1b260000040f000000400100043d0000004402100039000008b4030000410000000000320435000008ae020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c70000218100010430000000400100043d000008b80200004100000000002104350000086102000041000008610310009c00000000010280190000004001100210000008b9011001c70000218100010430000000400100043d0000000002710436000000000505004b000007440000613d0000000000400435000000000307004b00000000030000190000074a0000613d000008b30400004100000000030000190000000005320019000000000604041a000000000065043500000001044000390000002003300039000000000573004b000007150000413d0000074a0000013d00000000001004350000000701000039000000200010043f00000040020000390000000001000019217f08530000040f000000000101041a000000400200043d00000000001204350000086101000041000008610320009c00000000010240190000004001100210000008ab011001c7000021800001042e000001000400008a000000000343016f0000000000320435000000000207004b000000200300003900000000030060190000002002300039000900000001001d217f10c10000040f000000400100043d000800000001001d0000000902000029217f0a0a0000040f000000080400002900000000014100490000086102000041000008610310009c0000000001028019000008610340009c000000000204401900000040022002100000006001100210000000000121019f000021800001042e000001000400008a000000000343016f0000000000320435000000000207004b000000200300003900000000030060190000002002300039000900000001001d217f10c10000040f000000400100043d000800000001001d0000000902000029217f0a0a0000040f000000080400002900000000014100490000086102000041000008610310009c0000000001028019000008610340009c000000000204401900000040022002100000006001100210000000000121019f000021800001042e0000086501100197000000000161019f000000000010041b00000861010000410000000002000414000008610320009c0000000001024019000000c00110021000000866011001c70000800d0200003900000003030000390000086704000041217f21750000040f0000000101200190000006ee0000613d0000000001000019000021800001042e0000003f05300039000000200600008a000000000565016f000000400800043d0000000005580019000000000685004b00000000060000190000000106004039000008620750009c000002a10000213d0000000106600190000002a10000c13d0000002406400039000000400050043f000900000008001d00000000043804360000000005630019000000000225004b000006ee0000213d0000001f0230018f000000020560036700000005063002720000078d0000613d000000000700001900000005087002100000000009840019000000000885034f000000000808043b00000000008904350000000107700039000000000867004b000007850000413d000000000702004b0000079c0000613d0000000506600210000000000565034f00000000066400190000000302200210000000000706043300000000072701cf000000000727022f000000000505043b0000010002200089000000000525022f00000000022501cf000000000272019f00000000002604350000000002340019000000000002043500000044020000390000000202200367000000000202043b000800000002001d000008620220009c000006ee0000213d217f0b940000040f00000000020100190000000901000029217f110f0000040f0000000802000029217f11350000040f000000000101041a000000400200043d00000000001204350000086101000041000008610320009c00000000010240190000004001100210000008ab011001c7000021800001042e00000008010000290000000902000029217f1cdd0000040f0000000101000039000000400200043d00000000001204350000086101000041000008610320009c00000000010240190000004001100210000008ab011001c7000021800001042e0000000501000029000000000101004b0000000001000019000007c50000613d0000000801000029000000000101043300000005040000290000000302400210000000010300008a000000000223022f000000000232013f000000000121016f0000000102400210000000000121019f0000000202000029000000000012041b00000007010000290000000001010433000900000001001d000008620110009c000002a10000213d0000000b01000039000800000001001d000000000101041a000000010210019000000001021002700000007f0320018f0000000002036019000500000002001d0000001f0220008c00000000020000190000000102002039000000000121013f0000000101100190000002ff0000c13d0000000501000029000000200110008c000008020000413d0000000801000029000000000010043500000861010000410000000002000414000008610320009c0000000001024019000000c00110021000000868011001c70000801002000039217f217a0000040f0000000102200190000006ee0000613d00000009030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b00000005010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000008020000813d000000000002041b0000000102200039000000000312004b000007fe0000413d00000009010000290000001f0110008c000008340000a13d0000000801000029000000000010043500000861010000410000000002000414000008610320009c0000000001024019000000c00110021000000868011001c70000801002000039217f217a0000040f00000001022001900000000402000029000006ee0000613d000000090300002900000000032301700000002002000039000000000101043b0000000706000029000008220000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b0000081a0000413d0000000904000029000000000343004b000008300000813d00000009030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f000000070400002900000000024200190000000002020433000000000232016f000000000021041b000000010100003900000009020000290000000102200210000008410000013d0000000901000029000000000101004b00000000010000190000083a0000613d0000000601000029000000000101043300000009040000290000000302400210000000010300008a000000000223022f000000000232013f000000000221016f0000000101400210000000000112019f0000000802000029000000000012041b0000000c01000039000000000201041a00000865022001970000000303000029000000000232019f000000000021041b000000800100043d0000014000000443000001600010044300000020010000390000010000100443000000010100003900000120001004430000086901000041000021800001042e0000086103000041000008610410009c00000000010380190000004001100210000008610420009c00000000020380190000006002200210000000000112019f0000000002000414000008610420009c0000000002038019000000c002200210000000000112019f00000866011001c70000801002000039217f217a0000040f0000000102200190000008670000613d000000000101043b000000000001042d00000000010000190000218100010430000000000301001900000861010000410000000004000414000008610540009c0000000001044019000000c00110021000000060022002100000000001120019000008c1011000410000000002030019217f217a0000040f0000000102200190000008780000613d000000000101043b000000000001042d000000000100001900002181000104300000001f031000390000086304000041000000000523004b0000000005000019000000000504401900000863062001970000086303300197000000000763004b000000000400a019000000000363013f000008630330009c00000000030500190000000003046019000000000303004b000008930000613d0000000203100367000000000303043b000008620430009c000008930000213d00000020011000390000000004310019000000000224004b000008930000213d0000000002030019000000000001042d00000000010000190000218100010430000a0000000000020000000001000416000000000101004b000008ac0000c13d0000000001000031000000040210008a0000086303000041000000800420008c000000000400001900000000040340190000086302200197000000000502004b000000000300a019000008630220009c00000000020400190000000002036019000000000202004b000008ac0000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c000008ae0000a13d000000000100001900002181000104300000002403200370000000000303043b000008620430009c000008ac0000213d00000023043000390000086305000041000000000614004b0000000006000019000000000605801900000863071001970000086304400197000000000874004b0000000005008019000000000474013f000008630440009c00000000040600190000000004056019000000000404004b000008ac0000c13d0000000404300039000000000442034f000000000b04043b0000086204b0009c000008ac0000213d000000240c300039000000000dcb001900000000031d004b000008ac0000213d0000004403200370000000000a03043b0000086203a0009c000008ac0000213d0000006403200370000000000303043b000008620430009c000008ac0000213d00000023043000390000086305000041000000000614004b0000000006000019000000000605801900000863071001970000086304400197000000000874004b0000000005008019000000000474013f000008630440009c00000000040600190000000004056019000000000404004b000008ac0000c13d0000000404300039000000000242034f000000000402043b000008620240009c000008ac0000213d0000002402300039000a00000002001d0000000002240019000000000112004b000008ac0000213d000008b201000041000000000010043900000000010004120000000400100443000000240000044300000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008c2011001c70000800502000039000900000009001d00060000000a001d00080000000b001d00070000000c001d000500000004001d00040000000d001d217f217a0000040f00000009030000290000000102200190000008ac0000613d000000000101043b00000864011001970000000002000411000000000112004b000009250000c13d00000000003004350000000101000039000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f0000000102200190000008ac0000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f000000000504c0190000001f0450008c00000000040000190000000104002039000000010440018f000000000443004b000009370000613d000008b60100004100000000001004350000002201000039000000040010043f000008b7010000410000218100010430000000400100043d0000004402100039000008c303000041000000000032043500000024021000390000001e030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c70000218100010430000000400400043d000200000004001d000100000005001d0000000004540436000300000004001d000000000303004b0000094f0000613d000000000010043500000861010000410000000002000414000008610320009c0000000001024019000000c00110021000000868011001c70000801002000039217f217a0000040f0000000102200190000008ac0000613d0000000102000029000000000202004b000009eb0000c13d00000000010000190000000305000029000009570000013d000001000100008a000000000112016f000000030500002900000000001504350000000101000029000000000101004b000000200100003900000000010060190000000204000029000300000005001d000000000245004900000000011200190000001f01100039000000200200008a000000000321016f0000000001430019000000000331004b00000000030000190000000103004039000008620410009c000009e50000213d0000000103300190000009e50000c13d000000400010043f000000020300002900000000030304330000000804000029000000000334004b0000000003000019000009d30000c13d0000000803000029000000000303004b0000000003000019000009d30000613d00000008030000290000003f03300039000000000223016f0000000002210019000000000312004b00000000030000190000000103004039000008620420009c000009e50000213d0000000103300190000009e50000c13d0000000003000031000000400020043f000000080500002900000000025104360000000404000029000000000334004b0000000704000029000008ac0000213d0000001f0350018f00000002044003670000000505500272000009910000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000009890000413d000000000603004b000009a00000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000803000029000000000332001900000000000304350000086103000041000008610420009c000000000203801900000040022002100000000001010433000008610410009c00000000010380190000006001100210000000000121019f0000000002000414000008610420009c0000000002038019000000c002200210000000000112019f00000866011001c70000801002000039217f217a0000040f0000000102200190000008ac0000613d00000861020000410000000304000029000008610340009c00000000030200190000000003044019000000400330021000000002040000290000000004040433000008610540009c00000000040280190000006004400210000000000334019f000000000101043b000400000001001d0000000001000414000008610410009c0000000001028019000000c001100210000000000131019f00000866011001c70000801002000039217f217a0000040f0000000102200190000008ac0000613d000000000101043b0000000402000029000000000112004b00000000030000190000000103006039000000010130018f217f1deb0000040f000000000300003100000007010000290000000802000029217f10d40000040f000800000001001d00000000030000310000000a010000290000000502000029217f10d40000040f0000000004010019000000090100002900000008020000290000000603000029217f1e030000040f0000000001000019000021800001042e000008b60100004100000000001004350000004101000039000000040010043f000008b7010000410000218100010430000000000201043b0000000001000019000000030500002900000001060000290000000003510019000000000402041a000000000043043500000001022000390000002001100039000000000361004b000009ef0000413d000009570000013d00000000030104330000000002320436000000000403004b00000a030000613d000000000400001900000000052400190000002004400039000000000614001900000000060604330000000000650435000000000534004b000009fc0000413d000000000123001900000000000104350000001f01300039000000200300008a000000000131016f0000000001120019000000000001042d00000020030000390000000004310436000000000302043300000000003404350000004001100039000000000403004b00000a190000613d000000000400001900000000051400190000002004400039000000000624001900000000060604330000000000650435000000000534004b00000a120000413d000000000213001900000000000204350000001f02300039000000200300008a000000000232016f0000000001120019000000000001042d00020000000000020000000001000416000000000101004b00000a370000c13d000000040100008a00000000011000310000086302000041000000200310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b00000a370000c13d00000004010000390000000201100367000000000301043b0000ffff0130008c00000a390000a13d00000000010000190000218100010430000000000100041a00000864011001970000000002000411000000000121004b00000a870000c13d000008b201000041000000000010043900000000010004120000000400100443000000240000044300000861010000410000000002000414000200000003001d000008610320009c0000000001024019000000c001100210000008c2011001c70000800502000039217f217a0000040f000000010220019000000a370000613d000000000101043b000008c40200004100000000002004390000086401100197000100000001001d000000040010044300000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008c5011001c70000800202000039217f217a0000040f0000000203000029000000010220019000000a370000613d000000000101043b000000000101004b00000a370000613d000000400500043d000008c60100004100000000001504350000000401500039000000000031043500000000010004140000000102000029000000040320008c00000a7f0000613d0000086104000041000008610310009c0000000001048019000008610350009c000000000304001900000000030540190000004003300210000000c001100210000000000131019f000008b7011001c7000200000005001d217f21750000040f000000020500002900000000030100190000006003300270000108610030019d00000861043001970003000000010355000000010220019000000a9b0000613d000008c70150009c00000a980000413d000008b60100004100000000001004350000004101000039000000040010043f000008b7010000410000218100010430000000400100043d0000004402100039000008b4030000410000000000320435000008ae020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c70000218100010430000000400050043f0000000001000019000021800001042e000000400200043d0000001f0340018f000000050440027200000aa80000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000aa00000413d000000000503004b00000ab70000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000861010000410000000103000031000008610430009c0000000003018019000008610420009c000000000102401900000040011002100000006002300210000000000112019f000021810001043000020000000000020000000001000416000000000101004b00000ad80000c13d000000040100008a00000000011000310000086302000041000000200310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b00000ad80000c13d00000004010000390000000201100367000000000301043b0000ffff0130008c00000ada0000a13d00000000010000190000218100010430000000000100041a00000864011001970000000002000411000000000121004b00000b280000c13d000008b201000041000000000010043900000000010004120000000400100443000000240000044300000861010000410000000002000414000200000003001d000008610320009c0000000001024019000000c001100210000008c2011001c70000800502000039217f217a0000040f000000010220019000000ad80000613d000000000101043b000008c40200004100000000002004390000086401100197000100000001001d000000040010044300000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008c5011001c70000800202000039217f217a0000040f0000000203000029000000010220019000000ad80000613d000000000101043b000000000101004b00000ad80000613d000000400500043d000008c80100004100000000001504350000000401500039000000000031043500000000010004140000000102000029000000040320008c00000b200000613d0000086104000041000008610310009c0000000001048019000008610350009c000000000304001900000000030540190000004003300210000000c001100210000000000131019f000008b7011001c7000200000005001d217f21750000040f000000020500002900000000030100190000006003300270000108610030019d00000861043001970003000000010355000000010220019000000b3c0000613d000008c70150009c00000b390000413d000008b60100004100000000001004350000004101000039000000040010043f000008b7010000410000218100010430000000400100043d0000004402100039000008b4030000410000000000320435000008ae020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c70000218100010430000000400050043f0000000001000019000021800001042e000000400200043d0000001f0340018f000000050440027200000b490000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000b410000413d000000000503004b00000b580000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000861010000410000000103000031000008610430009c0000000003018019000008610420009c000000000102401900000040011002100000006002300210000000000112019f0000218100010430000000040210008a00000863030000410000003f0420008c000000000400001900000000040320190000086302200197000000000502004b0000000003008019000008630220009c00000000020400190000000002036019000000000202004b00000b920000613d00000002020003670000000403200370000000000403043b0000ffff0340008c00000b920000213d0000002403200370000000000503043b000008620350009c00000b920000213d00000023035000390000086306000041000000000713004b0000000007000019000000000706801900000863081001970000086303300197000000000983004b0000000006008019000000000383013f000008630330009c00000000030700190000000003066019000000000303004b00000b920000c13d0000000403500039000000000232034f000000000302043b000008620230009c00000b920000213d00000024025000390000000005230019000000000115004b00000b920000213d0000000001040019000000000001042d000000000100001900002181000104300000ffff0110018f00000000001004350000000501000039000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f000000010220019000000ba40000613d000000000101043b000000000001042d000000000100001900002181000104300000ffff0220018f0000000000200435000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f000000010220019000000bb50000613d000000000101043b000000000001042d0000000001000019000021810001043000040000000000020000000001000416000000000101004b00000bea0000c13d0000000001000031000000040210008a0000086303000041000000400420008c000000000400001900000000040340190000086302200197000000000502004b000000000300a019000008630220009c00000000020400190000000002036019000000000202004b00000bea0000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c00000bea0000213d0000002403200370000000000303043b000008620430009c00000bea0000213d00000023043000390000086305000041000000000614004b0000000006000019000000000605801900000863071001970000086304400197000000000874004b0000000005008019000000000474013f000008630440009c00000000040600190000000004056019000000000404004b00000bea0000c13d0000000404300039000000000242034f000000000402043b000008620240009c00000bea0000213d00000024053000390000000002540019000000000112004b00000bec0000a13d00000000010000190000218100010430000000000100041a00000864011001970000000002000411000000000121004b00000c6a0000c13d000008b201000041000000000010043900000000010004120000000400100443000000240000044300000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008c2011001c70000800502000039000400000004001d000300000009001d000200000005001d217f217a0000040f000000010220019000000bea0000613d000000000101043b000008c40200004100000000002004390000086401100197000100000001001d000000040010044300000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008c5011001c70000800202000039217f217a0000040f000000020400002900000003030000290000000408000029000000010220019000000bea0000613d000000000101043b000000000101004b00000bea0000613d000000400900043d000000240190003900000040020000390000000000210435000008c901000041000000000019043500000004019000390000000000310435000000440190003900000000008104350000001f0280018f00000064019000390000000203400367000000050480027200000c310000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b00000c290000413d000000000502004b00000c400000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000001810019000000000001043500000000010004140000000102000029000000040320008c00000c620000613d0000001f04800039000000200300008a000000000534016f000008ca03000041000008ca0450009c00000000050380190000086103000041000008610490009c0000000004030019000000000409401900000040044002100000006005500210000000000545019f000008610410009c0000000001038019000000c001100210000000000115019f000008b501100041000400000009001d217f21750000040f000000040900002900000000030100190000006003300270000108610030019d00000861043001970003000000010355000000010220019000000c7e0000613d000008c70190009c00000c7b0000413d000008b60100004100000000001004350000004101000039000000040010043f000008b7010000410000218100010430000000400100043d0000004402100039000008b4030000410000000000320435000008ae020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c70000218100010430000000400090043f0000000001000019000021800001042e000000400200043d0000001f0340018f000000050440027200000c8b0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000c830000413d000000000503004b00000c9a0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000861010000410000000103000031000008610430009c0000000003018019000008610420009c000000000102401900000040011002100000006002300210000000000112019f0000218100010430000e0000000000020000000003000031000000040130008a0000086302000041000000df0410008c000000000400001900000000040220190000086301100197000000000501004b0000000002008019000008630110009c00000000010400190000000001026019000000000101004b00000cbc0000613d00000002010003670000000402100370000000000c02043b0000086402c0009c00000cbc0000213d0000002402100370000000000d02043b0000ffff02d0008c00000cbe0000a13d000000000100001900002181000104300000004402100370000000000402043b000008620240009c00000cbc0000213d00000023024000390000086305000041000000000632004b0000000006000019000000000605801900000863073001970000086302200197000000000872004b0000000005008019000000000272013f000008630220009c00000000020600190000000002056019000000000202004b00000cbc0000c13d0000000402400039000000000221034f000000000202043b000008620520009c00000cbc0000213d00000024064000390000000004620019000000000434004b00000cbc0000213d0000008404100370000000000f04043b0000086404f0009c00000cbc0000213d000000a404100370000000000b04043b0000086404b0009c00000cbc0000213d000000c404100370000000000404043b000008620540009c00000cbc0000213d00000023054000390000086307000041000000000835004b0000000008000019000000000807801900000863093001970000086305500197000000000a95004b0000000007008019000000000595013f000008630550009c00000000050800190000000005076019000000000505004b00000cbc0000c13d0000000405400039000000000151034f000000000101043b000008620510009c00000cbc0000213d00000024044000390000000005410019000000000335004b00000cbc0000213d000e0000000d001d0000003f03200039000000200d00008a0000000003d3016f000000400e00043d00000000033e00190000000007e3004b00000000070000190000000107004039000008620830009c000010600000213d0000000107700190000010600000c13d000d0000000b001d000000400030043f0000001f0720018f00000000032e04360000000206600367000000050820027200000d1b0000613d0000000009000019000000050a900210000000000ba30019000000000aa6034f000000000a0a043b0000000000ab04350000000109900039000000000a89004b00000d130000413d000000000907004b00000d2a0000613d0000000508800210000000000686034f00000000088300190000000307700210000000000908043300000000097901cf000000000979022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000696019f0000000000680435000000000223001900000000000204350000003f021000390000000002d2016f000000400700043d0000000002270019000000000372004b00000000030000190000000103004039000008620620009c000010600000213d0000000103300190000010600000c13d000b0000000e001d000a0000000d001d0000000003000031000000400020043f000c00000007001d0000000002170436000000000335004b00000cbc0000213d00080000000f001d00090000000c001d0000001f0310018f0000000204400367000000050510027200000d4e0000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b00000d460000413d000000000603004b00000d5d0000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000112001900000000000104350000000c0100002900000000010104330000000602000039000000000202041a000000ff0220019000000d880000c13d000000000101004b00000d9c0000c13d00000064010000390000000201100367000000000101043b000700000001001d00000000020004110000000901000029000600000002001d000000000121004b00000de60000c13d0000000903000029000000000103004b00000e9c0000c13d000000400100043d0000006402100039000008de0300004100000000003204350000004402100039000008df030000410000000000320435000000240210003900000021030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c70000218100010430000000210110008c00000db10000213d000000400100043d0000004402100039000008cd03000041000000000032043500000024021000390000001c030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c70000218100010430000000400100043d0000006402100039000008ce0300004100000000003204350000004402100039000008cf030000410000000000320435000000240210003900000026030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c700002181000104300000000c0100002900000022011000390000000001010433000700000001001d0000000e0100002900000000001004350000000201000039000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f000000010220019000000cbc0000613d000000000101043b0000000000000435000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f000000010220019000000cbc0000613d000000000101043b000000000101041a000000000201004b00000e210000c13d000000400100043d0000004402100039000008cc03000041000000000032043500000024021000390000001a030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c70000218100010430000000090100002900000000001004350000000801000039000500000001001d000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f000000010220019000000cbc0000613d000000000101043b00000006020000290000086402200197000600000002001d0000000000200435000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f000000010220019000000cbc0000613d000000000101043b000000000201041a000000010100008a000400000002001d000000000112004b00000d700000613d00000007010000290000000402000029000000000112004b00000e360000813d000000400100043d0000004402100039000008d503000041000000000032043500000024021000390000001d030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c700002181000104300000000702000029000000000112004b00000d670000813d000000400100043d0000004402100039000008cb03000041000000000032043500000024021000390000001b030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c700002181000104300000000901000029000000000101004b00000e4e0000c13d000000400100043d0000006402100039000008d30300004100000000003204350000004402100039000008d4030000410000000000320435000000240210003900000024030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c700002181000104300000000601000029000000000101004b00000e660000c13d000000400100043d0000006402100039000008d10300004100000000003204350000004402100039000008d2030000410000000000320435000000240210003900000022030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c70000218100010430000000090100002900000000001004350000000501000029000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f000000010220019000000cbc0000613d000000000101043b00000006020000290000000000200435000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f0000000905000029000000010220019000000cbc0000613d000000070200002900000004030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000861020000410000000003000414000008610430009c0000000003028019000008610410009c00000000010280190000004001100210000000c002300210000000000112019f00000868011001c70000800d020000390000000303000039000008d0040000410000000606000029217f21750000040f0000000903000029000000010120019000000cbc0000613d00000000003004350000000701000039000600000001001d000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f000000010220019000000cbc0000613d000000000101043b000000000201041a0000000701000029000500000002001d000000000112004b00000ec50000813d000000400100043d0000006402100039000008dc0300004100000000003204350000004402100039000008dd030000410000000000320435000000240210003900000022030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c70000218100010430000000090100002900000000001004350000000601000029000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f0000000905000029000000010220019000000cbc0000613d000000070300002900000005020000290000000002320049000000000101043b000000000021041b0000000901000039000000000201041a0000000002320049000000000021041b000000400100043d000000000031043500000861020000410000000003000414000008610430009c0000000003028019000008610410009c00000000010280190000004001100210000000c002300210000000000112019f00000868011001c70000800d020000390000000303000039000008d604000041000500000003001d0000000006000019217f21750000040f000000010120019000000cbc0000613d000000400300043d000000400130003900000060020000390000000000210435000000200130003900000000000104350000000b06000029000000000106043300000080023000390000000000120435000600000003001d000000a002300039000000000301004b00000f070000613d000000000300001900000000042300190000002003300039000000000563001900000000050504330000000000540435000000000413004b00000f000000413d0000000002210019000000000002043500000006040000290000006002400039000000070300002900000000003204350000009f021000390000000a03000029000000000232016f0000000000240435000000bf01100039000000000231016f0000000001420019000000000221004b00000000020000190000000102004039000008620310009c000010600000213d0000000102200190000010600000c13d000000400010043f0000000e010000290000ffff0110018f0000000002000416000400000002001d000e00000001001d00000000001004350000000101000039000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f000000010220019000000cbc0000613d000000000101043b000000000201041a000000010320019000000001042002700000007f0540018f0000000004056019000300000004001d0000001f0440008c00000000040000190000000104002039000000010440018f000000000443004b00000f410000613d000008b60100004100000000001004350000002201000039000000040010043f000008b7010000410000218100010430000000400400043d000200000004001d00000003050000290000000004540436000100000004001d000000000303004b00000f590000613d000000000010043500000861010000410000000002000414000008610320009c0000000001024019000000c00110021000000868011001c70000801002000039217f217a0000040f000000010220019000000cbc0000613d0000000302000029000000000202004b00000fb10000c13d0000000001000019000000010500002900000f610000013d000001000100008a000000000112016f000000010500002900000000001504350000000301000029000000000101004b000000200100003900000000010060190000000203000029000000000235004900000000011200190000001f011000390000000a02000029000000000221016f0000000001320019000000000221004b00000000020000190000000102004039000008620310009c000010600000213d0000000102200190000010600000c13d000000400010043f00000002020000290000000002020433000000000202004b00000f880000c13d0000006402100039000008da0300004100000000003204350000004402100039000008db030000410000000000320435000000240210003900000030030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c7000021810001043000000006010000290000000001010433000300000001001d0000000e0100002900000000001004350000000501000029000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f000000010220019000000cbc0000613d000000000101043b000000000101041a000000000201004b00002710010060390000000302000029000000000121004b00000fbd0000813d000000400100043d0000004402100039000008d9030000410000000000320435000008ae020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c70000218100010430000000000201043b0000000001000019000000010500002900000003060000290000000003510019000000000402041a000000000043043500000001022000390000002001100039000000000361004b00000fb50000413d00000f610000013d000008b201000041000000000010043900000000010004120000000400100443000000240000044300000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008c2011001c70000800502000039217f217a0000040f000000010220019000000cbc0000613d000000000101043b000008c40200004100000000002004390000086401100197000500000001001d000000040010044300000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008c5011001c70000800202000039217f217a0000040f000000010220019000000cbc0000613d000000000101043b000000000101004b00000cbc0000613d000000400400043d0000002401400039000000c0020000390000000000210435000008d7010000410000000001140436000100000001001d00000004014000390000000e02000029000000000021043500000002070000290000000002070433000000c4034000390000000000230435000300000004001d000000e403400039000000000402004b00000ff90000613d000000000400001900000000053400190000002004400039000000000674001900000000060604330000000000650435000000000524004b00000ff20000413d000000000432001900000000000404350000001f022000390000000a04000029000000000242016f00000000023200190000000003120049000000030400002900000044044000390000000000340435000000060700002900000000030704330000000002320436000000000403004b000010100000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b000010090000413d000000000423001900000000000404350000000d04000029000008640440019700000003060000290000008405600039000000000045043500000008040000290000086404400197000000640560003900000000004504350000001f033000390000000a04000029000000000343016f00000000032300190000000001130049000000a40260003900000000001204350000000c0600002900000000020604330000000001230436000000000302004b0000102f0000613d000000000300001900000000041300190000002003300039000000000563001900000000050504330000000000540435000000000423004b000010280000413d0000000003120019000000000003043500000000030004140000000504000029000000040440008c0000105b0000613d0000001f022000390000000a04000029000000000242016f0000000305000029000000000151004900000000012100190000086102000041000008610410009c00000000010280190000006001100210000008610450009c000000000402001900000000040540190000004004400210000000000141019f000008610430009c0000000002034019000000c002200210000000000112019f0000000402000029000000000202004b0000104e0000c13d0000000502000029217f21750000040f000010540000013d00000866011001c70000800902000039000000040300002900000005040000290000000005000019217f21750000040f000300000001035500000000030100190000006003300270000108610030019d000008610430019700000001022001900000109b0000613d0000000301000029000008620110009c00000009030000290000000b02000029000010660000a13d000008b60100004100000000001004350000004101000039000000040010043f000008b70100004100002181000104300000000304000029000000400040043f0000004001000039000000000014043500000000010204330000004002400039000000000012043500000060024000390000086406300197000000000301004b0000107a0000613d0000000003000019000000000423001900000020033000390000000b05000029000000000553001900000000050504330000000000540435000000000413004b000010720000413d000000000221001900000000000204350000000702000029000000010300002900000000002304350000007f011000390000000a02000029000000000121016f00000861020000410000000304000029000008610340009c000000000302001900000000030440190000004003300210000008610410009c00000000010280190000006001100210000000000131019f0000000003000414000008610430009c0000000002034019000000c002200210000000000112019f00000866011001c70000800d020000390000000303000039000008d8040000410000000e05000029217f21750000040f000000010120019000000cbc0000613d0000000001000019000021800001042e000000400200043d0000001f0340018f0000000504400272000010a80000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000010a00000413d000000000503004b000010b70000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000861010000410000000103000031000008610430009c0000000003018019000008610420009c000000000102401900000040011002100000006002300210000000000112019f00002181000104300000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b00000000020000190000000102004039000008620310009c000010ce0000213d0000000102200190000010ce0000c13d000000400010043f000000000001042d000008b60100004100000000001004350000004101000039000000040010043f000008b70100004100002181000104300000000004010019000008c70120009c000011070000813d0000003f01200039000000200500008a000000000551016f000000400100043d0000000005510019000000000615004b00000000060000190000000106004039000008620750009c000011070000213d0000000106600190000011070000c13d000000400050043f00000000052104360000000006420019000000000336004b0000110d0000213d0000001f0320018f00000002044003670000000506200272000010f50000613d000000000700001900000005087002100000000009850019000000000884034f000000000808043b00000000008904350000000107700039000000000867004b000010ed0000413d000000000703004b000011040000613d0000000506600210000000000464034f00000000066500190000000303300210000000000706043300000000073701cf000000000737022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000373019f000000000036043500000000022500190000000000020435000000000001042d000008b60100004100000000001004350000004101000039000000040010043f000008b701000041000021810001043000000000010000190000218100010430000000400400043d0000000003010433000000000503004b0000111b0000613d000000000500001900000000064500190000002005500039000000000715001900000000070704330000000000760435000000000635004b000011140000413d000000000143001900000000002104350000086101000041000008610240009c0000000002010019000000000204401900000040022002100000002003300039000008610430009c00000000030180190000006003300210000000000223019f0000000003000414000008610430009c0000000001034019000000c001100210000000000121019f00000866011001c70000801002000039217f217a0000040f0000000102200190000011330000613d000000000101043b000000000001042d0000000001000019000021810001043000000862022001970000000000200435000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f0000000102200190000011440000613d000000000101043b000000000001042d0000000001000019000021810001043000030000000000020000000001000416000000000101004b000011990000c13d0000000001000031000000040210008a0000086303000041000000800420008c000000000400001900000000040340190000086302200197000000000502004b000000000300a019000008630220009c00000000020400190000000002036019000000000202004b000011990000c13d00000002030003670000000402300370000000000d02043b0000ffff02d0008c000011990000213d0000002402300370000000000402043b000008620240009c000011990000213d00000023024000390000086305000041000000000612004b0000000006000019000000000605801900000863071001970000086302200197000000000872004b0000000005008019000000000272013f000008630220009c00000000020600190000000002056019000000000202004b000011990000c13d0000000402400039000000000223034f000000000202043b000008620520009c000011990000213d00000024064000390000000004620019000000000414004b000011990000213d0000004404300370000000000404043b000008620440009c000011990000213d0000006404300370000000000404043b000008620540009c000011990000213d00000023054000390000086307000041000000000815004b0000000008000019000000000807801900000863091001970000086305500197000000000a95004b0000000007008019000000000595013f000008630550009c00000000050800190000000005076019000000000505004b000011990000c13d0000000405400039000000000353034f000000000303043b000008620530009c000011990000213d00000024044000390000000005430019000000000115004b0000119b0000a13d0000000001000019000021810001043000000000010004100000000007000411000000000117004b000012560000c13d0000003f07200039000000200100008a000000000817016f000000400700043d0000000008870019000000000978004b00000000090000190000000109004039000008620a80009c0000126b0000213d00000001099001900000126b0000c13d000000400080043f0000001f0820018f000000000727043600000002066003670000000509200272000011ba0000613d000000000a000019000000050ba00210000000000cb70019000000000bb6034f000000000b0b043b0000000000bc0435000000010aa00039000000000b9a004b000011b20000413d000000000a08004b000011c90000613d0000000509900210000000000696034f00000000099700190000000308800210000000000a090433000000000a8a01cf000000000a8a022f000000000606043b0000010008800089000000000686022f00000000068601cf0000000006a6019f0000000000690435000000000227001900000000000204350000003f02300039000000000612016f000000400200043d0000000006620019000000000726004b00000000070000190000000107004039000008620860009c0000126b0000213d00000001077001900000126b0000c13d0000000007000031000000400060043f0000000006320436000000000575004b000011990000213d00030000000d001d0000001f0530018f00000002044003670000000507300272000011e90000613d00000000080000190000000509800210000000000a960019000000000994034f000000000909043b00000000009a04350000000108800039000000000978004b000011e10000413d000000000805004b000011f80000613d0000000507700210000000000474034f00000000077600190000000305500210000000000807043300000000085801cf000000000858022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000484019f00000000004704350000000003360019000000000003043500000000040604330000ffff03400190000012710000c13d00000000030204330000086305000041000000600730008c000000000700001900000000070540190000086308300197000000000908004b000000000500a019000008630880009c000000000507c019000000000505004b000011990000c13d0000ffff0440008c000011990000213d00000040042000390000000005040433000008620450009c000011990000213d000000000436001900000000052500190000003f035000390000086306000041000000000743004b0000000007000019000000000706801900000863033001970000086308400197000000000983004b0000000006008019000000000383013f000008630330009c00000000030700190000000003066019000000000303004b000011990000c13d00000020035000390000000003030433000008620630009c0000126b0000213d0000003f06300039000000000616016f000000400100043d0000000006610019000000000716004b00000000070000190000000107004039000008620860009c0000126b0000213d00000001077001900000126b0000c13d000000400060043f000000000631043600000040055000390000000007530019000000000447004b000011990000213d000000000403004b0000123f0000613d000000000400001900000000076400190000000008540019000000000808043300000000008704350000002004400039000000000734004b000012380000413d000000000336001900000000000304350000000001010433000000130110008c000012830000213d000000400100043d0000004402100039000008e6030000410000000000320435000000240210003900000015030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c70000218100010430000000400100043d0000006402100039000008e00300004100000000003204350000004402100039000008e1030000410000000000320435000000240210003900000026030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c70000218100010430000008b60100004100000000001004350000004101000039000000040010043f000008b7010000410000218100010430000000400100043d0000004402100039000008e203000041000000000032043500000024021000390000001c030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c7000021810001043000000060012000390000000001010433000200000001001d0000000001060433000008e30210009c0000129b0000213d000000400100043d0000004402100039000008e503000041000000000032043500000024021000390000001f030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c700002181000104300000000902000039000000000402041a00000002030000290000000003340019000000000443004b000000000400001900000001040040390000000104400190000012aa0000613d000008b60100004100000000001004350000001101000039000000040010043f000008b70100004100002181000104300000006001100270000000000032041b000100000001001d00000000001004350000000701000039000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f0000000102200190000011990000613d000000000101043b000000000201041a00000002030000290000000002320019000000000021041b000000400100043d000000000031043500000861020000410000000003000414000008610430009c0000000003028019000008610410009c00000000010280190000004001100210000000c002300210000000000112019f00000868011001c70000800d020000390000000303000039000008d60400004100000000050000190000000106000029217f21750000040f00000003050000290000000101200190000011990000613d000000400100043d0000000202000029000000000021043500000861020000410000000003000414000008610430009c0000000003028019000008610410009c00000000010280190000004001100210000000c002300210000000000112019f00000868011001c70000ffff0550018f0000800d020000390000000303000039000008e4040000410000000106000029217f21750000040f0000000101200190000011990000613d0000000001000019000021800001042e0002000000000002000000000301041a000000010430019000000001053002700000007f0650018f000000000605c0190000001f0560008c00000000050000190000000105002039000000010550018f000000000554004b000013200000c13d0000000005620436000000000204004b000013150000613d000200000006001d000100000005001d000000000010043500000861010000410000000002000414000008610320009c0000000001024019000000c00110021000000868011001c70000801002000039217f217a0000040f0000000102200190000013260000613d0000000206000029000000000206004b0000131c0000613d000000000201043b000000000100001900000001050000290000000003150019000000000402041a000000000043043500000001022000390000002001100039000000000361004b0000130d0000413d0000131e0000013d000001000100008a000000000113016f0000000000150435000000000106004b000000200100003900000000010060190000131e0000013d000000000100001900000001050000290000000001150019000000000001042d000008b60100004100000000001004350000002201000039000000040010043f000008b70100004100002181000104300000000001000019000021810001043000030000000000020000000001000416000000000101004b000013770000c13d000000040100008a00000000011000310000086302000041000000200310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000013770000c13d00000004010000390000000201100367000000000101043b0000ffff0210008c000013770000213d00000000001004350000000101000039000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f0000000102200190000013770000613d000000000601043b000000000206041a000000010320019000000001042002700000007f0540018f000000000504c0190000001f0450008c00000000040000190000000104002039000000010440018f000000000443004b0000135e0000613d000008b60100004100000000001004350000002201000039000000040010043f000008b7010000410000218100010430000000400100043d0000000007510436000000000303004b000013790000613d000300000005001d000100000007001d000200000001001d000000000060043500000861010000410000000002000414000008610320009c0000000001024019000000c00110021000000868011001c70000801002000039217f217a0000040f0000000102200190000013770000613d0000000306000029000000000206004b000013b00000c13d0000000005000019000000020100002900000001070000290000137f0000013d00000000010000190000218100010430000001000300008a000000000232016f0000000000270435000000000205004b00000020050000390000000005006019000000000217004900000000025200190000001f03200039000000200200008a000000000223016f0000000004120019000000000224004b00000000020000190000000102004039000008620340009c000013a20000213d0000000102200190000013a20000c13d000000400040043f0000000002010433000000000302004b000013a80000c13d0000004402400039000008e703000041000000000032043500000024024000390000001d030000390000000000320435000008ae0200004100000000002404350000000402400039000000200300003900000000003204350000086102000041000008610340009c000000000102001900000000010440190000004001100210000008b5011001c70000218100010430000008b60100004100000000001004350000004101000039000000040010043f000008b7010000410000218100010430000000130320008c000013bc0000213d000008b60100004100000000001004350000001101000039000000040010043f000008b7010000410000218100010430000000000201043b0000000005000019000000020100002900000001070000290000000003750019000000000402041a000000000043043500000001022000390000002005500039000000000365004b000013b40000413d0000137f0000013d000000140220008a217f213e0000040f0000000002010019000000400100043d000300000001001d217f0a0a0000040f000000030400002900000000014100490000086102000041000008610310009c0000000001028019000008610340009c000000000204401900000040022002100000006001100210000000000121019f000021800001042e00030000000000020000000001000416000000000101004b0000141f0000c13d000000040100008a00000000011000310000086302000041000000400310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b0000141f0000c13d00000002010003670000000402100370000000000202043b000300000002001d000008640220009c0000141f0000213d0000002401100370000000000101043b000200000001001d0000000001000411000100000001001d00000000001004350000000801000039000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f00000001022001900000141f0000613d000000000101043b00000003020000290000000000200435000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f00000001022001900000141f0000613d000000000101043b000000000101041a0000000203000029000000000231004b000014210000813d000000400100043d0000006402100039000008e80300004100000000003204350000004402100039000008e9030000410000000000320435000000240210003900000025030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c7000021810001043000000000010000190000218100010430000000000331004900000001010000290000000302000029217f1cdd0000040f0000000101000039000000400200043d00000000001204350000086101000041000008610320009c00000000010240190000004001100210000008ab011001c7000021800001042e000b0000000000020000000001000416000000000101004b000014450000c13d0000000001000031000000040210008a0000086303000041000000400420008c000000000400001900000000040340190000086302200197000000000502004b000000000300a019000008630220009c00000000020400190000000002036019000000000202004b000014450000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c000014470000a13d000000000100001900002181000104300000002403200370000000000303043b000008620430009c000014450000213d00000023043000390000086305000041000000000614004b0000000006000019000000000605801900000863071001970000086304400197000000000874004b0000000005008019000000000474013f000008630440009c00000000040600190000000004056019000000000404004b000014450000c13d0000000404300039000000000442034f000000000504043b000008620450009c000014450000213d00000024083000390000000003850019000000000113004b000014450000213d000000400a00043d000000000100041a00000864011001970000000003000411000000000131004b000014bf0000c13d000000000182034f0000001f0650018f000000200ba000390000000507500272000014770000613d0000000002000019000000050320021000000000043b0019000000000331034f000000000303043b00000000003404350000000102200039000000000372004b0000146f0000413d000000000206004b000014860000613d0000000502700210000000000121034f00000000022b00190000000303600210000000000402043300000000043401cf000000000434022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f000000000012043500000000015b0019000000000200041000000060022002100000000000210435000000140150003900000000001a04350000005301500039000000200400008a000000000141016f00000000011a00190000000002a1004b00000000020000190000000102004039000008620310009c000014b90000213d0000000102200190000014b90000c13d00050000000b001d00040000000a001d000800000004001d000600000007001d000700000006001d000000400010043f00000000009004350000000101000039000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039000b00000005001d000a00000009001d000900000008001d217f217a0000040f00000009050000290000000a040000290000000b070000290000000102200190000014450000613d000000000601043b0000000401000029000000000c0104330000086201c0009c00000007080000290000000609000029000000080a000029000000050b000029000014cf0000a13d000008b60100004100000000001004350000004101000039000000040010043f000008b70100004100002181000104300000004401a00039000008b4020000410000000000210435000008ae0100004100000000001a04350000002401a00039000000200200003900000000002104350000000401a00039000000000021043500000861010000410000086102a0009c00000000010a40190000004001100210000008b5011001c70000218100010430000000000106041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000014e00000613d000008b60100004100000000001004350000002201000039000000040010043f000008b7010000410000218100010430000000200130008c000015090000413d000100000003001d00020000000c001d000300000006001d000000000060043500000861010000410000000002000414000008610320009c0000000001024019000000c00110021000000868011001c70000801002000039217f217a0000040f00000009050000290000000a040000290000000b070000290000000102200190000014450000613d000000020c0000290000001f02c0003900000005022002700000002003c0008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000007080000290000000609000029000000080a0000290000000306000029000000050b000029000015090000813d000000000002041b0000000102200039000000000312004b000015050000413d0000001f01c0008c0000153e0000a13d00020000000c001d000300000006001d000000000060043500000861010000410000000002000414000008610320009c0000000001024019000000c00110021000000868011001c70000801002000039217f217a0000040f0000000102200190000014450000613d0000000802000029000000020700002900000000032701700000002002000039000000000101043b0000000406000029000015290000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000015210000413d000000000373004b000015340000813d0000000303700210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000002020433000000000232016f000000000021041b000000010170021000000001011001bf0000000b070000290000000a04000029000000070800002900000006090000290000000905000029000000080a0000290000000306000029000015490000013d00000000010c004b0000000001000019000015420000613d00000000010b04330000000302c00210000000010300008a000000000223022f000000000232013f000000000121016f0000000102c00210000000000121019f000000000016041b000000400100043d00000020021000390000004003000039000000000032043500000000004104350000004002100039000000000072043500000060021000390000000203500367000000000409004b0000155e0000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000594004b000015560000413d000000000408004b0000156d0000613d0000000504900210000000000343034f00000000044200190000000305800210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000000000272001900000000000204350000007f027000390000000002a2016f0000086103000041000008610410009c00000000010380190000004001100210000008610420009c00000000020380190000006002200210000000000112019f0000000002000414000008610420009c0000000002038019000000c002200210000000000112019f00000866011001c70000800d020000390000000103000039000008ea04000041217f21750000040f0000000101200190000014450000613d0000000001000019000021800001042e00050000000000020000000001000416000000000101004b000015be0000c13d0000000001000031000000040210008a0000086303000041000000800420008c000000000400001900000000040340190000086302200197000000000502004b000000000300a019000008630220009c00000000020400190000000002036019000000000202004b000015be0000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c000015be0000213d0000002403200370000000000a03043b0000ffff03a0008c000015be0000213d0000006403200370000000000303043b000008620430009c000015be0000213d00000023043000390000086305000041000000000614004b0000000006000019000000000605801900000863071001970000086304400197000000000874004b0000000005008019000000000474013f000008630440009c00000000040600190000000004056019000000000404004b000015be0000c13d0000000404300039000000000242034f000000000402043b000008620240009c000015be0000213d00000024053000390000000002540019000000000112004b000015c00000a13d00000000010000190000218100010430000000000100041a00000864011001970000000002000411000000000121004b000016470000c13d000008b201000041000000000010043900000000010004120000000400100443000000240000044300000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008c2011001c70000800502000039000500000004001d000400000009001d00030000000a001d000200000005001d217f217a0000040f0000000102200190000015be0000613d000000000101043b000008c40200004100000000002004390000086401100197000100000001001d000000040010044300000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008c5011001c70000800202000039217f217a0000040f00000002050000290000000304000029000000040300002900000005080000290000000102200190000015be0000613d000000000101043b000000000101004b000015be0000613d000000400900043d00000024019000390000000000410435000008eb0100004100000000001904350000000401900039000000000031043500000044010000390000000201100367000000000101043b00000064029000390000008003000039000000000032043500000044029000390000000000120435000000840190003900000000008104350000001f0280018f000000a401900039000000020350036700000005048002720000160e0000613d000000000500001900000005065002100000000007610019000000000663034f000000000606043b00000000006704350000000105500039000000000645004b000016060000413d000000000502004b0000161d0000613d0000000504400210000000000343034f00000000044100190000000302200210000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000000001810019000000000001043500000000010004140000000102000029000000040320008c0000163f0000613d0000001f04800039000000200300008a000000000534016f000008ec03000041000008ec0450009c00000000050380190000086103000041000008610490009c0000000004030019000000000409401900000040044002100000006005500210000000000545019f000008610410009c0000000001038019000000c001100210000000000115019f000008ed01100041000500000009001d217f21750000040f000000050900002900000000030100190000006003300270000108610030019d0000086104300197000300000001035500000001022001900000165b0000613d000008c70190009c000016580000413d000008b60100004100000000001004350000004101000039000000040010043f000008b7010000410000218100010430000000400100043d0000004402100039000008b4030000410000000000320435000008ae020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c70000218100010430000000400090043f0000000001000019000021800001042e000000400200043d0000001f0340018f0000000504400272000016680000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000016600000413d000000000503004b000016770000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000861010000410000000103000031000008610430009c0000000003018019000008610420009c000000000102401900000040011002100000006002300210000000000112019f000021810001043000110000000000020000000001000031000000040210008a00000863030000410000007f0420008c000000000400001900000000040320190000086302200197000000000502004b0000000003008019000008630220009c00000000020400190000000002036019000000000202004b000016950000613d00000002020003670000000403200370000000000b03043b0000ffff03b0008c000016970000a13d000000000100001900002181000104300000002403200370000000000303043b000008620430009c000016950000213d00000023043000390000086305000041000000000614004b0000000006000019000000000605801900000863071001970000086304400197000000000874004b0000000005008019000000000474013f000008630440009c00000000040600190000000004056019000000000404004b000016950000c13d0000000404300039000000000442034f000000000904043b000008620490009c000016950000213d000000240c300039000000000dc9001900000000031d004b000016950000213d0000004403200370000000000a03043b0000086203a0009c000016950000213d0000006403200370000000000303043b000008620430009c000016950000213d00000023043000390000086305000041000000000614004b0000000006000019000000000605801900000863071001970000086304400197000000000874004b0000000005008019000000000474013f000008630440009c00000000040600190000000004056019000000000404004b000016950000c13d0000000404300039000000000242034f000000000402043b000008620240009c000016950000213d0000002402300039001000000002001d0000000002240019001100000002001d000000000112004b000016950000213d0000000000b004350000000501000039000a00000001001d000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039000e00000009001d000d0000000a001d000b0000000b001d000f0000000c001d000c00000004001d00090000000d001d217f217a0000040f0000000f030000290000000e070000290000000102200190000016950000613d000000400200043d0000001f0870018f0000000203300367000000000101043b0000000509700272000016fa0000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000594004b000016f20000413d000000000408004b000017090000613d0000000504900210000000000343034f00000000044200190000000305800210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f0000000000340435000800000009001d000700000008001d00000000037200190000000000130435000008ee01000041000008ee0370009c000000000107401900000861030000410000000004000414000008610540009c0000000004038019000008610520009c000000000203801900000040022002100000006001100210000008ab01100041000600000001001d000000000112019f000000c002400210000000000112019f00000866011001c70000801002000039217f217a0000040f00000001022001900000000d02000029000016950000613d000000000101043b0000000000200435000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f0000000c060000290000000102200190000016950000613d000000000101043b000000000201041a000000000102004b0000174a0000c13d000000400100043d0000006402100039000008f20300004100000000003204350000004402100039000008f3030000410000000000320435000000240210003900000023030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c70000218100010430000500000002001d0000003f01600039000000200500008a000000000251016f000000400100043d000400000002001d0000000002210019000000000312004b00000000030000190000000103004039000008620420009c000018830000213d0000000103300190000018830000c13d000200000005001d0000000003000031000000400020043f00000000026104360000001104000029000000000334004b000016950000213d0000001f0360018f000300000003001d0000001003000029000000020330036700000005076002720000176e0000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b000017660000413d000100000007001d0000000304000029000000000404004b000017810000613d00000001040000290000000504400210000000000343034f000000000442001900000003050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000c03000029000000000332001900000000000304350000086103000041000008610420009c000000000203801900000040022002100000000001010433000008610410009c00000000010380190000006001100210000000000121019f0000000002000414000008610420009c0000000002038019000000c002200210000000000112019f00000866011001c70000801002000039217f217a0000040f0000000102200190000016950000613d000000000101043b0000000502000029000000000121004b000018890000c13d0000000b0100002900000000001004350000000a01000029000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f00000001022001900000000f03000029000016950000613d000000400200043d0000000203300367000000000101043b0000000807000029000000000407004b000017b90000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b000017b10000413d0000000704000029000000000404004b000017cb0000613d00000008040000290000000504400210000000000343034f000000000442001900000007050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000e03000029000000000332001900000000001304350000086101000041000008610320009c000000000201801900000040022002100000000603000029000000000232019f0000000003000414000008610430009c0000000001034019000000c001100210000000000121019f00000866011001c70000801002000039217f217a0000040f00000001022001900000000d02000029000016950000613d000000000101043b0000000000200435000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f00000009070000290000000f060000290000000e050000290000000102200190000016950000613d000000000101043b000000000001041b0000003f015000390000000202000029000000000221016f000000400100043d0000000002210019000000000312004b00000000030000190000000103004039000008620420009c000018830000213d0000000103300190000018830000c13d0000000003000031000000400020043f0000000001510436000000000237004b000016950000213d00000002026003670000000806000029000000000306004b0000180f0000613d000000000300001900000005043002100000000005410019000000000442034f000000000404043b00000000004504350000000103300039000000000463004b000018070000413d0000000703000029000000000303004b000018210000613d00000008030000290000000503300210000000000232034f000000000331001900000007040000290000000304400210000000000503043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002304350000000e0200002900000000012100190000000000010435000000400100043d00000004020000290000000002210019000000000312004b00000000030000190000000103004039000008620420009c0000000c04000029000018830000213d0000000103300190000018830000c13d0000000003000031000000400020043f00000000024104360000001104000029000000000334004b000016950000213d000000100300002900000002033003670000000107000029000000000407004b000018430000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b00000000005604350000000104400039000000000574004b0000183b0000413d0000000304000029000000000404004b000018550000613d00000001040000290000000504400210000000000343034f000000000442001900000003050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000c030000290000000003320019000000000003043500000000040204330000ffff034001900000189e0000c13d00000000030104330000086305000041000000600630008c000000000600001900000000060540190000086307300197000000000807004b000000000500a019000008630770009c000000000506c019000000000505004b000016950000c13d0000ffff0440008c000016950000213d00000040041000390000000004040433000008620540009c000016950000213d000000000323001900000000051400190000003f025000390000086304000041000000000632004b0000000006000019000000000604801900000863022001970000086307300197000000000872004b0000000004008019000000000272013f000008630220009c00000000020600190000000002046019000000000202004b000016950000c13d00000020025000390000000002020433000008620420009c0000000206000029000018b00000a13d000008b60100004100000000001004350000004101000039000000040010043f000008b7010000410000218100010430000000400100043d0000006402100039000008ef0300004100000000003204350000004402100039000008f0030000410000000000320435000000240210003900000021030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c70000218100010430000000400100043d0000004402100039000008e203000041000000000032043500000024021000390000001c030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c700002181000104300000003f04200039000000000664016f000000400400043d0000000006640019000000000746004b00000000070000190000000107004039000008620860009c000018830000213d0000000107700190000018830000c13d000000400060043f000000000624043600000040055000390000000007520019000000000337004b000016950000213d000000000302004b000018cb0000613d000000000300001900000000076300190000000008530019000000000808043300000000008704350000002003300039000000000723004b000018c40000413d000000000226001900000000000204350000000002040433000000130220008c000018e20000213d000000400100043d0000004402100039000008e6030000410000000000320435000000240210003900000015030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c7000021810001043000000060011000390000000001010433001100000001001d0000000001060433000008e30210009c000018fa0000213d000000400100043d0000004402100039000008e503000041000000000032043500000024021000390000001f030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c700002181000104300000000902000039000000000402041a00000011030000290000000003340019000000000443004b000000000400001900000001040040390000000104400190000019090000613d000008b60100004100000000001004350000001101000039000000040010043f000008b70100004100002181000104300000006001100270000000000032041b001000000001001d00000000001004350000000701000039000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f0000000102200190000016950000613d000000000101043b000000000201041a00000011030000290000000002320019000000000021041b000000400100043d000000000031043500000861020000410000000003000414000008610430009c0000000003028019000008610410009c00000000010280190000004001100210000000c002300210000000000112019f00000868011001c70000800d020000390000000303000039000008d60400004100000000050000190000001006000029217f21750000040f0000000b050000290000000101200190000016950000613d000000400100043d0000001102000029000000000021043500000861020000410000000003000414000008610430009c0000000003028019000008610410009c00000000010280190000004001100210000000c002300210000000000112019f00000868011001c70000800d020000390000000303000039000008e4040000410000001006000029217f21750000040f0000000f060000290000000b050000290000000e040000290000000101200190000016950000613d000000400100043d000000200210003900000080030000390000000000320435000000000051043500000080021000390000000000420435000000a00210003900000002036003670000000804000029000000000404004b000019600000613d000000000400001900000005054002100000000006520019000000000553034f000000000505043b000000000056043500000001044000390000000805000029000000000554004b000019570000413d0000000704000029000000000404004b000019720000613d00000008040000290000000504400210000000000343034f000000000442001900000007050000290000000305500210000000000604043300000000065601cf000000000656022f000000000303043b0000010005500089000000000353022f00000000035301cf000000000363019f00000000003404350000000e030000290000000002320019000000000002043500000060021000390000000504000029000000000042043500000040021000390000000d040000290000000000420435000000bf023000390000000203000029000000000232016f0000086103000041000008610410009c00000000010380190000004001100210000008610420009c00000000020380190000006002200210000000000112019f0000000002000414000008610420009c0000000002038019000000c002200210000000000112019f00000866011001c70000800d020000390000000103000039000008f104000041217f21750000040f0000000101200190000016950000613d0000000001000019000021800001042e00030000000000020000000001000416000000000101004b000019af0000c13d000000040100008a00000000011000310000086302000041000000600310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b000019af0000c13d00000002010003670000000402100370000000000302043b0000ffff0230008c000019af0000213d0000002402100370000000000402043b0000ffff0240008c000019b10000a13d000000000100001900002181000104300000004401100370000000000501043b000000000100041a00000864011001970000000002000411000000000121004b000019cc0000c13d000000000105004b000019dd0000c13d000000400100043d0000004402100039000008f6030000410000000000320435000000240210003900000015030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c70000218100010430000000400100043d0000004402100039000008b4030000410000000000320435000008ae020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c70000218100010430000100000005001d00000000003004350000000201000039000000200010043f00000861010000410000000002000414000200000003001d000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039000300000004001d217f217a0000040f00000003030000290000000102200190000019af0000613d000000000101043b0000000000300435000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f000000030400002900000002030000290000000102200190000019af0000613d000000000101043b0000000105000029000000000051041b000000400100043d0000004002100039000000000052043500000020021000390000000000420435000000000031043500000861020000410000000003000414000008610430009c0000000003028019000008610410009c00000000010280190000004001100210000000c002300210000000000112019f000008f4011001c70000800d020000390000000103000039000008f504000041217f21750000040f0000000101200190000019af0000613d0000000001000019000021800001042e00050000000000020000000001000416000000000101004b00001a2f0000c13d0000000001000031000000040210008a0000086303000041000000400420008c000000000400001900000000040340190000086302200197000000000502004b000000000300a019000008630220009c00000000020400190000000002036019000000000202004b00001a2f0000c13d00000002020003670000000403200370000000000903043b0000ffff0390008c00001a310000a13d000000000100001900002181000104300000002403200370000000000303043b000008620430009c00001a2f0000213d00000023043000390000086305000041000000000614004b0000000006000019000000000605801900000863071001970000086304400197000000000874004b0000000005008019000000000474013f000008630440009c00000000040600190000000004056019000000000404004b00001a2f0000c13d0000000404300039000000000242034f000000000402043b000008620240009c00001a2f0000213d00000024053000390000000002540019000000000112004b00001a2f0000213d000000000100041a00000864011001970000000002000411000000000121004b00001a770000c13d00000000009004350000000101000039000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039000500000004001d000400000009001d000300000005001d217f217a0000040f000000030600002900000004050000290000000509000029000000010220019000001a2f0000613d000000000401043b000000000104041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b00001a880000613d000008b60100004100000000001004350000002201000039000000040010043f000008b7010000410000218100010430000000400100043d0000004402100039000008b4030000410000000000320435000008ae020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c70000218100010430000000200130008c00001aab0000413d000100000003001d000200000004001d000000000040043500000861010000410000000002000414000008610320009c0000000001024019000000c00110021000000868011001c70000801002000039217f217a0000040f000000030600002900000004050000290000000509000029000000010220019000001a2f0000613d0000001f029000390000000502200270000000200390008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000000020400002900001aab0000813d000000000002041b0000000102200039000000000312004b00001aa70000413d0000001f0190008c00001ada0000a13d000200000004001d000000000040043500000861010000410000000002000414000008610320009c0000000001024019000000c00110021000000868011001c70000801002000039217f217a0000040f000000030600002900000004050000290000000509000029000000010220019000001a2f0000613d000000200200008a0000000003290170000000000101043b000000000200001900001aca0000613d000000000200001900000000046200190000000204400367000000000404043b000000000041041b00000001011000390000002002200039000000000432004b00001ac20000413d000000000393004b00001ad60000813d0000000303900210000000f80330018f000000010400008a000000000334022f000000000343013f00000000026200190000000202200367000000000202043b000000000232016f000000000021041b000000010190021000000001011001bf000000020400002900001ae60000013d000000000109004b000000000100001900001adf0000613d0000000201600367000000000101043b0000000302900210000000010300008a000000000223022f000000000232013f000000000121016f0000000102900210000000000121019f000000000014041b000000400100043d0000002002100039000000400300003900000000003204350000000000510435000000400210003900000000009204350000001f0390018f00000060021000390000000204600367000000050590027200001afc0000613d000000000600001900000005076002100000000008720019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b00001af40000413d000000000603004b00001b0b0000613d0000000505500210000000000454034f00000000055200190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000000000292001900000000000204350000007f02900039000000200300008a000000000232016f0000086103000041000008610410009c00000000010380190000004001100210000008610420009c00000000020380190000006002200210000000000112019f0000000002000414000008610420009c0000000002038019000000c002200210000000000112019f00000866011001c70000800d020000390000000103000039000008f704000041217f21750000040f000000010120019000001a2f0000613d0000000001000019000021800001042e00010000000000020000000001000416000000000101004b00001c010000c13d000000040100008a00000000011000310000086302000041000000800310008c000000000300001900000000030240190000086301100197000000000401004b000000000200a019000008630110009c00000000010300190000000001026019000000000101004b00001c010000c13d00000002030003670000000401300370000000000101043b0000ffff0210008c00001c010000213d0000002402300370000000000202043b0000ffff0420008c00001c010000213d0000004403300370000000000303043b000008640330009c00001c010000213d000000400500043d00000044035000390000000004000410000000000043043500000024035000390000000000230435000008f80200004100000000002504350000000402500039000000000012043500000064010000390000000201100367000000000101043b000100000005001d00000064025000390000000000120435000008b201000041000000000010043900000000010004120000000400100443000000240000044300000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008c2011001c70000800502000039217f217a0000040f000000010220019000001c010000613d000000000201043b00000000010004140000086402200197000000040320008c00001b6d0000c13d00000003010003670000000103000031000000010800002900001b800000013d0000086103000041000008610410009c00000000010380190000000105000029000008610450009c00000000030540190000004003300210000000c001100210000000000131019f000008af011001c7217f217a0000040f000000010800002900000000030100190000006003300270000108610030019d00000861033001970003000000010355000000010220019000001bd60000613d0000001f0230018f000000050430027200001b8c0000613d000000000500001900000005065002100000000007680019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00001b840000413d000000000502004b00001b9b0000613d0000000504400210000000000141034f00000000044800190000000302200210000000000504043300000000052501cf000000000525022f000000000101043b0000010002200089000000000121022f00000000012101cf000000000151019f00000000001404350000001f02300039000000200100008a000000000412016f0000000002840019000000000442004b00000000040000190000000104004039000008620520009c00001bd00000213d000000010440019000001bd00000c13d0000086304000041000000200530008c000000000500001900000000050440190000086306300197000000000706004b000000000400a019000008630660009c000000000405c019000000400020043f000000000404004b00001c010000c13d00000001040000290000000004040433000008620540009c00001c010000213d0000000106000029000000000563001900000000036400190000001f043000390000086306000041000000000754004b0000000007000019000000000706801900000863044001970000086308500197000000000984004b0000000006008019000000000484013f000008630440009c00000000040700190000000004066019000000000404004b00001c010000c13d0000000043030434000008620630009c00001bd00000213d0000003f06300039000000000116016f0000000001210019000008620610009c00001bfc0000a13d000008b60100004100000000001004350000004101000039000000040010043f000008b7010000410000218100010430000000400200043d0000001f0430018f000000050330027200001be30000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b00001bdb0000413d000000000504004b00001bf20000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000861010000410000000103000031000008610430009c0000000003018019000008610420009c000000000102401900000040011002100000006002300210000000000112019f0000218100010430000000400010043f00000000013204360000000006430019000000000556004b00001c030000a13d00000000010000190000218100010430000000000503004b00001c0d0000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000635004b00001c060000413d00000000011300190000000000010435000000400100043d000100000001001d217f0a0a0000040f000000010400002900000000014100490000086102000041000008610310009c0000000001028019000008610340009c000000000204401900000040022002100000006001100210000000000121019f000021800001042e000000000100041a00000864011001970000000002000411000000000121004b00001c230000c13d000000000001042d000000400100043d0000004402100039000008b4030000410000000000320435000008ae020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c7000021810001043000000864022001970000000000200435000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f000000010220019000001c430000613d000000000101043b000000000001042d000000000100001900002181000104300005000000000002000500000003001d000008640110019800001c9e0000613d0000086402200198000200000002001d00001cb30000613d000300000001001d00000000001004350000000701000039000400000001001d000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f000000010220019000001c9c0000613d0000000402000029000000000101043b000000000301041a0000000501000029000100000003001d000000000113004b00001cc80000413d00000003010000290000000000100435000000200020043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f000000010220019000001c9c0000613d000000050200002900000001030000290000000002230049000000000101043b000000000021041b000000020100002900000000001004350000000401000029000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f000000010220019000001c9c0000613d000000000101043b000000000201041a00000005030000290000000002320019000000000021041b000000400100043d000000000031043500000861020000410000000003000414000008610430009c0000000003028019000008610410009c00000000010280190000004001100210000000c002300210000000000112019f00000868011001c70000800d020000390000000303000039000008d60400004100000003050000290000000206000029217f21750000040f000000010120019000001c9c0000613d000000000001042d00000000010000190000218100010430000000400100043d0000006402100039000008fd0300004100000000003204350000004402100039000008fe030000410000000000320435000000240210003900000025030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c70000218100010430000000400100043d0000006402100039000008fb0300004100000000003204350000004402100039000008fc030000410000000000320435000000240210003900000023030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c70000218100010430000000400100043d0000006402100039000008f90300004100000000003204350000004402100039000008fa030000410000000000320435000000240210003900000026030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c700002181000104300003000000000002000008640110019800001d1a0000613d000200000003001d0000086402200198000300000002001d00001d2f0000613d000100000001001d00000000001004350000000801000039000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f0000000102200190000000030400002900001d180000613d000000000101043b0000000000400435000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f0000000306000029000000010220019000001d180000613d000000000101043b0000000202000029000000000021041b000000400100043d000000000021043500000861020000410000000003000414000008610430009c0000000003028019000008610410009c00000000010280190000004001100210000000c002300210000000000112019f00000868011001c70000800d020000390000000303000039000008d0040000410000000105000029217f21750000040f000000010120019000001d180000613d000000000001042d00000000010000190000218100010430000000400100043d0000006402100039000008d30300004100000000003204350000004402100039000008d4030000410000000000320435000000240210003900000024030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c70000218100010430000000400100043d0000006402100039000008d10300004100000000003204350000004402100039000008d2030000410000000000320435000000240210003900000022030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c700002181000104300005000000000002000300000003001d000400000002001d0000086401100197000500000001001d00000000001004350000000801000039000100000001001d000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f000000010220019000001dad0000613d000000000101043b00000004020000290000086402200197000400000002001d0000000000200435000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f000000010220019000001dad0000613d000000000101043b000000000201041a000000010100008a000200000002001d000000000112004b00001dac0000613d00000003010000290000000202000029000000000112004b00001daf0000413d0000000501000029000000000101004b00001dc10000613d0000000401000029000000000101004b00001dd60000613d000000050100002900000000001004350000000101000029000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f000000010220019000001dad0000613d000000000101043b00000004020000290000000000200435000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f000000010220019000001dad0000613d000000030200002900000002030000290000000002230049000000000101043b000000000021041b000000400100043d000000000021043500000861020000410000000003000414000008610430009c0000000003028019000008610410009c00000000010280190000004001100210000000c002300210000000000112019f00000868011001c70000800d020000390000000303000039000008d00400004100000005050000290000000406000029217f21750000040f000000010120019000001dad0000613d000000000001042d00000000010000190000218100010430000000400100043d0000004402100039000008d503000041000000000032043500000024021000390000001d030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c70000218100010430000000400100043d0000006402100039000008d30300004100000000003204350000004402100039000008d4030000410000000000320435000000240210003900000024030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c70000218100010430000000400100043d0000006402100039000008d10300004100000000003204350000004402100039000008d2030000410000000000320435000000240210003900000022030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c70000218100010430000000000101004b00001dee0000613d000000000001042d000000400100043d0000006402100039000008ff030000410000000000320435000000440210003900000900030000410000000000320435000000240210003900000026030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c700002181000104300008000000000002000000000b020019000000000a000414000000400500043d0000004402500039000000800600003900000000006204350000002006500039000009010200004100000000002604350000ffff0210018f0000002401500039000500000002001d000000000021043500000000020b0433000000a4015000390000000000210435000000c401500039000000000702004b00001e1f0000613d0000000007000019000000000817001900000020077000390000000009b7001900000000090904330000000000980435000000000827004b00001e180000413d000000000712001900000000000704350000001f02200039000000200700008a000800000007001d000000000272016f000000a0072000390000008408500039000000000078043500000862073001970000006403500039000400000007001d0000000000730435000000000212001900000000910404340000000002120436000000000301004b00001e390000613d000000000300001900000000072300190000002003300039000000000843001900000000080804330000000000870435000000000713004b00001e320000413d0000000003210019000000000003043500000000025200490000001f011000390000000803000029000000000131016f0000000001120019000000200210008a00000000002504350000001f01100039000000000131016f0000000008510019000000000118004b00000000010000190000000101004039000008620280009c00001f600000213d000000010110019000001f600000c13d000000400080043f000009020180009c00001f600000213d000000c001800039000000400010043f0000009601000039000000000c180436000000000100003100000002011003670000000002000019000000050320021000000000073c0019000000000331034f000000000303043b00000000003704350000000102200039000000050320008c00001e560000413d0000000002000410000000040120008c000700000004001d00030000000b001d000600000008001d00001e670000c13d0000000102000039000000010100003100001e810000013d0000086101000041000008610360009c0000000003010019000000000306401900000040033002100000000005050433000008610650009c00000000050180190000006005500210000000000335019f0000086105a0009c00000000010a4019000000c001100210000000000113019f000200000009001d00010000000c001d217f21750000040f000000010c000029000000020900002900000006080000290000000704000029000000010220018f00030000000103550000006001100270000108610010019d0000086101100197000000960310008c0000009605000039000000000501401900000000005804350000000101000031000000000115004b00001f5e0000213d00000003030003670000001f0150018f000000050850027200001e950000613d0000000005000019000000050650021000000000076c0019000000000663034f000000000606043b00000000006704350000000105500039000000000685004b00001e8d0000413d000000000501004b00001ea40000613d0000000505800210000000000353034f00000000065c00190000000301100210000000000506043300000000051501cf000000000515022f000000000303043b0000010001100089000000000313022f00000000011301cf000000000151019f0000000000160435000000000102004b00001f5d0000c13d0000086101000041000008610290009c0000000002010019000000000209401900000040022002100000000003040433000008610430009c00000000030180190000006003300210000000000223019f0000000003000414000008610430009c0000000001034019000000c001100210000000000121019f00000866011001c70000801002000039217f217a0000040f000000010220019000001f5e0000613d000000000101043b000200000001001d000000050100002900000000001004350000000501000039000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f0000000307000029000000010220019000001f5e0000613d000000400200043d000000000301043b0000000001070433000000000401004b00001ed80000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000514004b00001ed10000413d000000000421001900000000003404350000086103000041000008610420009c000000000203801900000040022002100000002001100039000008610410009c00000000010380190000006001100210000000000121019f0000000002000414000008610420009c0000000002038019000000c002200210000000000112019f00000866011001c70000801002000039217f217a0000040f000000010220019000001f5e0000613d000000000101043b00000004020000290000000000200435000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f00000003080000290000000707000029000000010220019000001f5e0000613d000000000101043b0000000202000029000000000021041b000000400100043d0000002002100039000000a0030000390000000000320435000000050200002900000000002104350000000002080433000000a0031000390000000000230435000000c003100039000000000402004b00001f140000613d000000000400001900000000053400190000002004400039000000000684001900000000060604330000000000650435000000000524004b00001f0d0000413d000000000432001900000000000404350000004004100039000000040500002900000000005404350000001f022000390000000804000029000000000242016f000000000232001900000000031200490000006004100039000000000034043500000000030704330000000002320436000000000403004b00001f2c0000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b00001f250000413d000000000423001900000000000404350000001f033000390000000804000029000000000343016f0000000002230019000000000312004900000080041000390000000000340435000000060700002900000000030704330000000002320436000000000403004b00001f420000613d000000000400001900000000052400190000002004400039000000000674001900000000060604330000000000650435000000000534004b00001f3b0000413d0000001f043000390000000805000029000000000454016f00000000032300190000000000030435000000000212004900000000024200190000086103000041000008610420009c00000000020380190000006002200210000008610410009c00000000010380190000004001100210000000000112019f0000000002000414000008610420009c0000000002038019000000c002200210000000000112019f00000866011001c70000800d0200003900000001030000390000090304000041217f21750000040f000000010120019000001f5e0000613d000000000001042d00000000010000190000218100010430000008b60100004100000000001004350000004101000039000000040010043f000008b70100004100002181000104300005000000000002000000400e00043d0000004008e00039000000600900003900000000009804350000008008e0003900000000003804350000002008e0003900000000000804350000001f0930018f000000a008e000390000000202200367000000050a30027200001f7d0000613d000000000b000019000000050cb00210000000000dc80019000000000cc2034f000000000c0c043b0000000000cd0435000000010bb00039000000000cab004b00001f750000413d000000000b09004b00001f8c0000613d000000050aa002100000000002a2034f000000000aa800190000000309900210000000000b0a0433000000000b9b01cf000000000b9b022f000000000202043b0000010009900089000000000292022f00000000029201cf0000000002b2019f00000000002a0435000000000238001900000000000204350000006002e0003900000000004204350000009f02300039000000200b00008a0000000002b2016f00000000002e0435000000bf023000390000000002b2016f000000000ae2001900000000022a004b000000000200001900000001020040390000086203a0009c000020500000213d0000000102200190000020500000c13d0000004000a0043f0000004402a00039000000a0030000390000000000320435000000000200041000000864022001970000002403a000390000000000230435000009040200004100000000022a0436000300000002001d0000ffff0210018f0000000401a00039000000000021043500000000020e0433000000a403a000390000000000230435000000c403a00039000000000402004b00001fba0000613d0000000004000019000000000834001900000020044000390000000009e4001900000000090904330000000000980435000000000824004b00001fb30000413d00000000043200190000000000040435000000000405004b0000000004000019000000010400c0390000006405a0003900000000004504350000001f022000390000000002b2016f000000000232001900000000011200490000008403a0003900000000001304350000001f0170018f00000000087204360000000202600367000000050370027200001fd50000613d000000000400001900000005054002100000000006580019000000000552034f000000000505043b00000000005604350000000104400039000000000534004b00001fcd0000413d00040000000b001d00050000000a001d000000000401004b00001fe60000613d0000000503300210000000000232034f00000000033800190000000301100210000000000403043300000000041401cf000000000414022f000000000202043b0000010001100089000000000212022f00000000011201cf000000000141019f0000000000130435000200000007001d000100000008001d00000000017800190000000000010435000008b201000041000000000010043900000000010004120000000400100443000000240000044300000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008c2011001c70000800502000039217f217a0000040f0000000102200190000000050a000029000020560000613d000000000201043b00000000010004140000086402200197000000040320008c0000000404000029000020050000c13d0000000103000031000000400130008c000000400400003900000000040340190000203f0000013d00000002030000290000001f03300039000000000343016f0000000003a300490000000104000029000000000343001900000861040000410000086105a0009c000000000504001900000000050a40190000004005500210000008610630009c00000000030480190000006003300210000000000353019f000008610510009c0000000001048019000000c001100210000000000131019f217f217a0000040f000000050a000029000000000301001900000060033002700000086103300197000000400430008c000000400400003900000000040340190000001f0540018f00000005064002720000202c0000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b000020240000413d000000000705004b0000203b0000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f0000000000560435000100000003001f00030000000103550000000102200190000020580000613d0000001f01400039000000e00210018f0000000001a20019000000000221004b00000000020000190000000102004039000008620410009c000020500000213d0000000102200190000020500000c13d000000400010043f000000400130008c000020560000413d00000000010a043300000003020000290000000002020433000000000001042d000008b60100004100000000001004350000004101000039000000040010043f000008b701000041000021810001043000000000010000190000218100010430000000400200043d0000001f0430018f0000000503300272000020650000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000635004b0000205d0000413d000000000504004b000020740000613d0000000503300210000000000131034f00000000033200190000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000861010000410000000103000031000008610430009c0000000003018019000008610420009c000000000102401900000040011002100000006002300210000000000112019f00002181000104300004000000000002000400000002001d0000086404100198000020c50000613d00000000004004350000000701000039000200000001001d000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039000300000004001d217f217a0000040f0000000102200190000020c30000613d0000000302000029000000000101043b000000000301041a0000000401000029000100000003001d000000000113004b000020da0000413d00000000002004350000000201000029000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039217f217a0000040f0000000102200190000020c30000613d000000040300002900000001020000290000000002320049000000000101043b000000000021041b0000000901000039000000000201041a0000000002320049000000000021041b000000400100043d000000000031043500000861020000410000000003000414000008610430009c0000000003028019000008610410009c00000000010280190000004001100210000000c002300210000000000112019f00000868011001c70000800d020000390000000303000039000008d60400004100000003050000290000000006000019217f21750000040f0000000101200190000020c30000613d000000000001042d00000000010000190000218100010430000000400100043d0000006402100039000008de0300004100000000003204350000004402100039000008df030000410000000000320435000000240210003900000021030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c70000218100010430000000400100043d0000006402100039000008dc0300004100000000003204350000004402100039000008dd030000410000000000320435000000240210003900000022030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008af011001c7000021810001043000020000000000020000086404100198000021260000613d0000000901000039000000000301041a000200000002001d0000000002230019000000000332004b000000000300001900000001030040390000000103300190000021380000c13d000000000021041b00000000004004350000000701000039000000200010043f00000861010000410000000002000414000008610320009c0000000001024019000000c001100210000008ba011001c70000801002000039000100000004001d217f217a0000040f0000000102200190000021240000613d000000000101043b000000000201041a00000002030000290000000002320019000000000021041b000000400100043d000000000031043500000861020000410000000003000414000008610430009c0000000003028019000008610410009c00000000010280190000004001100210000000c002300210000000000112019f00000868011001c70000800d020000390000000303000039000008d60400004100000000050000190000000106000029217f21750000040f0000000101200190000021240000613d000000000001042d00000000010000190000218100010430000000400100043d0000004402100039000008e503000041000000000032043500000024021000390000001f030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c70000218100010430000008b60100004100000000001004350000001101000039000000040010043f000008b701000041000021810001043000000000030100190000001f0100008a000000000112004b0000215d0000813d0000000001030433000000000121004b000021630000413d000000400100043d000000000402004b0000215a0000613d0000001f0420019000000000050000190000002005006039000000000645019f00000000041600190000000005240019000000000754004b000021550000813d000000000336001900000000360304340000000004640436000000000654004b000021510000413d00000000002104350000001f02400039000000200300008a000000000232016f0000215b0000013d0000000002010436000000400020043f000000000001042d000008b60100004100000000001004350000001101000039000000040010043f000008b7010000410000218100010430000000400100043d000000440210003900000905030000410000000000320435000000240210003900000011030000390000000000320435000008ae0200004100000000002104350000000402100039000000200300003900000000003204350000086102000041000008610310009c00000000010280190000004001100210000008b5011001c7000021810001043000002178002104210000000102000039000000000001042d0000000002000019000000000001042d0000217d002104230000000102000039000000000001042d0000000002000019000000000001042d0000217f00000432000021800001042e00002181000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e002000000000000000000000000000000000000200000000000000000000000000000000200000000000000000000000000000080000001000000000000000000000000000000000000000000000000000000000000000000000000007533d78700000000000000000000000000000000000000000000000000000000b3ab15fa00000000000000000000000000000000000000000000000000000000df2a5b3a00000000000000000000000000000000000000000000000000000000ed629c5b00000000000000000000000000000000000000000000000000000000f5ecbdbb00000000000000000000000000000000000000000000000000000000f5ecbdbc00000000000000000000000000000000000000000000000000000000fc0c546a00000000000000000000000000000000000000000000000000000000ed629c5c00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000df2a5b3b00000000000000000000000000000000000000000000000000000000eab45d9c00000000000000000000000000000000000000000000000000000000eb8d72b700000000000000000000000000000000000000000000000000000000cbed8b9b00000000000000000000000000000000000000000000000000000000cbed8b9c00000000000000000000000000000000000000000000000000000000d1deba1f00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000b3ab15fb00000000000000000000000000000000000000000000000000000000baf3292d00000000000000000000000000000000000000000000000000000000c4461834000000000000000000000000000000000000000000000000000000009dc29fab00000000000000000000000000000000000000000000000000000000a6c3d16400000000000000000000000000000000000000000000000000000000a6c3d16500000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000b353aaa7000000000000000000000000000000000000000000000000000000009dc29fac000000000000000000000000000000000000000000000000000000009f38369a00000000000000000000000000000000000000000000000000000000a457c2d7000000000000000000000000000000000000000000000000000000009358928a000000000000000000000000000000000000000000000000000000009358928b00000000000000000000000000000000000000000000000000000000950c8a740000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000007533d788000000000000000000000000000000000000000000000000000000008cfd8f5c000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000003d8b38f500000000000000000000000000000000000000000000000000000000519056350000000000000000000000000000000000000000000000000000000066ad5c890000000000000000000000000000000000000000000000000000000066ad5c8a0000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000005190563600000000000000000000000000000000000000000000000000000000570ca735000000000000000000000000000000000000000000000000000000005b8c41e60000000000000000000000000000000000000000000000000000000042d65a8c0000000000000000000000000000000000000000000000000000000042d65a8d0000000000000000000000000000000000000000000000000000000044770515000000000000000000000000000000000000000000000000000000004c42899a000000000000000000000000000000000000000000000000000000003d8b38f6000000000000000000000000000000000000000000000000000000003f1f4fa40000000000000000000000000000000000000000000000000000000040c10f190000000000000000000000000000000000000000000000000000000010ddb136000000000000000000000000000000000000000000000000000000002a205e3c000000000000000000000000000000000000000000000000000000002a205e3d00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000010ddb1370000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000007e0db160000000000000000000000000000000000000000000000000000000007e0db1700000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000df3748300000000000000000000000000000000000000000000000000000000001d35670000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000002000000000000000000000000064647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206108c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000840000000000000000000000001584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a45db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db94f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000640000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000003d85cf4b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000002000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000040000000000000000000000000c65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a8ffffffff0000000000000000000000000000000000000000000000000000000036372b070000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000014e4ceea00000000000000000000000000000000000000000000000000000000020000020000000000000000000000000000000000000000000000000000000002000002000000000000000000000000000000440000000000000000000000004c7a4170703a20696e76616c696420656e64706f696e742063616c6c657200001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000007e0db1700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000010ddb1370000000000000000000000000000000000000000000000000000000042d65a8d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff9b4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000004c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000004c7a4170703a20696e76616c69642061646170746572506172616d7300000000656d7074792e00000000000000000000000000000000000000000000000000004f4654436f72653a205f61646170746572506172616d73206d757374206265208c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646445524332303a20696e73756666696369656e7420616c6c6f77616e6365000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efc58031000000000000000000000000000000000000000000000000000000000039a4c66499bcf4b56d79f0dde8ed7a9d4925a0df55825206b2b8531e202be0d04c7a4170703a207061796c6f61642073697a6520697320746f6f206c6172676561207472757374656420736f75726365000000000000000000000000000000004c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f7420636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f20616464726573204c7a41707000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062654f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000000000000000000000000000000000000000000000ffffffffffffffffffffffffbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf45524332303a206d696e7420746f20746865207a65726f206164647265737300746f416464726573735f6f75744f66426f756e647300000000000000000000004c7a4170703a206e6f20747275737465642070617468207265636f7264000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f778c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572cecbed8b9c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffff5b00000000000000000000000000000000000000a400000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffdf64000000000000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f61c264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e561676500000000000000000000000000000000000000000000000000000000004e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737302000000000000000000000000000000000000600000000000000000000000009d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac04c7a4170703a20696e76616c6964206d696e4761730000000000000000000000fa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dabf5ecbdbc00000000000000000000000000000000000000000000000000000000616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061646e747261637400000000000000000000000000000000000000000000000000004c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f66ad5c8a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff3fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c40a7bb1000000000000000000000000000000000000000000000000000000000736c6963655f6f75744f66426f756e6473000000000000000000000000000000cdbd2c83bce9692d3857fc960213a9cbcf7e1bf906705d69f0cb02ac57368b79
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0x000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000009b896c0e23220469c7ae69cb4bbae391eaa4c8da000000000000000000000000000000000000000000000000000000000000000f756e6c6f636b204d6176657269636b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006756e6b4d61760000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _nameArg (string): unlock Maverick
Arg [1] : _symbolArg (string): unkMav
Arg [2] : _layerZeroEndpoint (address): 0x9b896c0e23220469C7AE69cb4BbAE391eAa4C8da
-----Encoded View---------------
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.