Overview
AVAX Balance
AVAX Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,109 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 52243669 | 179 days ago | IN | 0 AVAX | 0.00128474 | ||||
Set Approval For... | 47229597 | 300 days ago | IN | 0 AVAX | 0.00078455 | ||||
Set Approval For... | 44041898 | 377 days ago | IN | 0 AVAX | 0.0012358 | ||||
Set Approval For... | 32426995 | 652 days ago | IN | 0 AVAX | 0.00078455 | ||||
Set Approval For... | 31840376 | 666 days ago | IN | 0 AVAX | 0.0012358 | ||||
Approve | 31130369 | 683 days ago | IN | 0 AVAX | 0.00132757 | ||||
Approve | 31100291 | 684 days ago | IN | 0 AVAX | 0.00130589 | ||||
Set Approval For... | 31069104 | 684 days ago | IN | 0 AVAX | 0.00123802 | ||||
Set Approval For... | 31065778 | 684 days ago | IN | 0 AVAX | 0.00123802 | ||||
Set Approval For... | 31065082 | 684 days ago | IN | 0 AVAX | 0.00123802 | ||||
Approve | 30973709 | 687 days ago | IN | 0 AVAX | 0.00130589 | ||||
Set Approval For... | 30853163 | 689 days ago | IN | 0 AVAX | 0.00123802 | ||||
Set Approval For... | 30852336 | 689 days ago | IN | 0 AVAX | 0.00124799 | ||||
Approve | 30809715 | 690 days ago | IN | 0 AVAX | 0.00130589 | ||||
Set Approval For... | 30772325 | 691 days ago | IN | 0 AVAX | 0.00123802 | ||||
Approve | 30749661 | 692 days ago | IN | 0 AVAX | 0.00130589 | ||||
Approve | 30726674 | 692 days ago | IN | 0 AVAX | 0.00132307 | ||||
Approve | 30550289 | 697 days ago | IN | 0 AVAX | 0.00130589 | ||||
Approve | 30527923 | 697 days ago | IN | 0 AVAX | 0.00130589 | ||||
Set Approval For... | 30475415 | 698 days ago | IN | 0 AVAX | 0.00129887 | ||||
Set Approval For... | 30474870 | 698 days ago | IN | 0 AVAX | 0.00123638 | ||||
Set Approval For... | 30470143 | 699 days ago | IN | 0 AVAX | 0.00132112 | ||||
Set Approval For... | 30461421 | 699 days ago | IN | 0 AVAX | 0.00127125 | ||||
Approve | 30434737 | 699 days ago | IN | 0 AVAX | 0.00188715 | ||||
Set Approval For... | 30431590 | 699 days ago | IN | 0 AVAX | 0.00138067 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
14074958 | 1089 days ago | 0.001 AVAX | ||||
14072077 | 1089 days ago | 0.001 AVAX | ||||
14071896 | 1089 days ago | 0.001 AVAX | ||||
14071829 | 1089 days ago | 0.001 AVAX | ||||
14071805 | 1089 days ago | 0.001 AVAX | ||||
14071757 | 1089 days ago | 0.001 AVAX | ||||
14071722 | 1089 days ago | 0.001 AVAX | ||||
14071661 | 1089 days ago | 0.001 AVAX | ||||
14069569 | 1089 days ago | 0.001 AVAX | ||||
14069556 | 1089 days ago | 0.001 AVAX | ||||
14069539 | 1089 days ago | 0.001 AVAX | ||||
14069506 | 1089 days ago | 0.001 AVAX | ||||
14069486 | 1089 days ago | 0.001 AVAX | ||||
14069466 | 1089 days ago | 0.001 AVAX | ||||
14069451 | 1089 days ago | 0.001 AVAX | ||||
14069386 | 1089 days ago | 0.001 AVAX | ||||
14069272 | 1089 days ago | 0.001 AVAX | ||||
14069239 | 1089 days ago | 0.001 AVAX | ||||
14069221 | 1089 days ago | 0.001 AVAX | ||||
14069119 | 1089 days ago | 0.001 AVAX | ||||
14064550 | 1089 days ago | 0.1 AVAX | ||||
14064519 | 1089 days ago | 0.1 AVAX | ||||
14064505 | 1089 days ago | 0.1 AVAX | ||||
14064501 | 1089 days ago | 0.1 AVAX | ||||
14064501 | 1089 days ago | 0.1 AVAX |
Loading...
Loading
Contract Name:
BuildABuddy
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at snowscan.xyz on 2022-04-29 */ /** *Submitted for verification at BscScan.com on 2022-04-12 */ // SPDX-License-Identifier: GPL-3.0 // File: contracts/interfaces/ILayerZeroUserApplicationConfig.sol 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, uint256 _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; } // File: contracts/interfaces/ILayerZeroEndpoint.sol pragma solidity >=0.5.0; 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, uint256 _gasLimit, bytes calldata _payload ) external; // @notice get the inboundNonce of a receiver 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 (uint256 nativeFee, uint256 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, uint256 _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); } // File: contracts/interfaces/ILayerZeroReceiver.sol 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; } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev 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) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` 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 tokenId ) internal virtual {} } // File: contracts/NonblockingReceiver.sol pragma solidity ^0.8.6; abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver { ILayerZeroEndpoint internal endpoint; struct FailedMessages { uint256 payloadLength; bytes32 payloadHash; } mapping(uint16 => mapping(bytes => mapping(uint256 => FailedMessages))) public failedMessages; mapping(uint16 => bytes) public trustedRemoteLookup; event MessageFailed( uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload ); function lzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) external override { require(msg.sender == address(endpoint)); // boilerplate! lzReceive must be called by the endpoint for security require( _srcAddress.length == trustedRemoteLookup[_srcChainId].length && keccak256(_srcAddress) == keccak256(trustedRemoteLookup[_srcChainId]), "NonblockingReceiver: invalid source sending contract" ); // try-catch all errors/exceptions // having failed messages does not block messages passing try this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload) { // do nothing } catch { // error / exception failedMessages[_srcChainId][_srcAddress][_nonce] = FailedMessages( _payload.length, keccak256(_payload) ); emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload); } } function onLzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) public { // only internal transaction require( msg.sender == address(this), "NonblockingReceiver: caller must be Bridge." ); // handle incoming message _LzReceive(_srcChainId, _srcAddress, _nonce, _payload); } // abstract function function _LzReceive( 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 _txParam ) internal { endpoint.send{value: msg.value}( _dstChainId, trustedRemoteLookup[_dstChainId], _payload, _refundAddress, _zroPaymentAddress, _txParam ); } function retryMessage( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes calldata _payload ) external payable { // assert there is message to retry FailedMessages storage failedMsg = failedMessages[_srcChainId][ _srcAddress ][_nonce]; require( failedMsg.payloadHash != bytes32(0), "NonblockingReceiver: no stored message" ); require( _payload.length == failedMsg.payloadLength && keccak256(_payload) == failedMsg.payloadHash, "LayerZero: invalid payload" ); // clear the stored message failedMsg.payloadLength = 0; failedMsg.payloadHash = bytes32(0); // execute the message. revert if it fails again this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload); } function setTrustedRemote(uint16 _chainId, bytes calldata _trustedRemote) external onlyOwner { trustedRemoteLookup[_chainId] = _trustedRemote; } } pragma solidity ^0.8.7; contract BuildABuddy is Ownable, ERC721, NonblockingReceiver { address public _owner; string private baseURI; uint256 nextTokenId = 4001; uint256 MAX_MINT_SUPPLY = 6800; mapping(address=>uint256) minted; uint256 gasForDestinationLzReceive = 350000; constructor(string memory baseURI_, address _layerZeroEndpoint) ERC721("BuildABuddy", "BAB") { _owner = msg.sender; endpoint = ILayerZeroEndpoint(_layerZeroEndpoint); baseURI = baseURI_; } // mint function // you can choose from mint 1 to 3 // mint is free, but donations are also accepted function mint(uint8 numTokens) external payable { require(numTokens < 5, "Max 4 NFTs per transaction"); require( nextTokenId + numTokens <= MAX_MINT_SUPPLY, "Mint exceeds supply" ); require(minted[msg.sender] + numTokens < 13, "Exceeds max overall mint"); minted[msg.sender] = minted[msg.sender] + 4; for (uint256 i = 1; i <= numTokens; i++) { _safeMint(msg.sender, nextTokenId++); } } // This function transfers the nft from your address on the // source chain to the same address on the destination chain function traverseChains(uint16 _chainId, uint256 tokenId) public payable { require( msg.sender == ownerOf(tokenId), "You must own the token to traverse" ); require( trustedRemoteLookup[_chainId].length > 0, "This chain is currently unavailable for travel" ); // burn NFT, eliminating it from circulation on src chain _burn(tokenId); // abi.encode() the payload with the values to send bytes memory payload = abi.encode(msg.sender, tokenId); // encode adapterParams to specify more gas for the destination uint16 version = 1; bytes memory adapterParams = abi.encodePacked( version, gasForDestinationLzReceive ); // get the fees we need to pay to LayerZero + Relayer to cover message delivery // you will be refunded for extra gas paid (uint256 messageFee, ) = endpoint.estimateFees( _chainId, address(this), payload, false, adapterParams ); require( msg.value >= messageFee, "msg.value not enough to cover messageFee. Send gas for message fees" ); endpoint.send{value: msg.value}( _chainId, // destination chainId trustedRemoteLookup[_chainId], // destination address of nft contract payload, // abi.encoded()'ed bytes payable(msg.sender), // refund address address(0x0), // 'zroPaymentAddress' unused for this adapterParams // txParameters ); } function setBaseURI(string memory URI) external onlyOwner { baseURI = URI; } // just in case this fixed variable limits us from future integrations function setGasForDestinationLzReceive(uint256 newVal) external onlyOwner { gasForDestinationLzReceive = newVal; } // ------------------ // Internal Functions // ------------------ function _LzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) internal override { // decode (address toAddr, uint256 tokenId) = abi.decode( _payload, (address, uint256) ); // mint the tokens back into existence on destination chain _safeMint(toAddr, tokenId); } function _baseURI() internal view override returns (string memory) { return baseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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"}],"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":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint8","name":"numTokens","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"onLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedRemote","type":"bytes"}],"name":"setTrustedRemote","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052610fa1600c55611a90600d5562055730600f553480156200002457600080fd5b50604051620051ce380380620051ce83398181016040528101906200004a9190620003be565b6040518060400160405280600b81526020017f4275696c644142756464790000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4241420000000000000000000000000000000000000000000000000000000000815250620000d6620000ca620001ad60201b60201c565b620001b560201b60201c565b8160019080519060200190620000ee92919062000279565b5080600290805190602001906200010792919062000279565b50505033600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600b9080519060200190620001a492919062000279565b505050620005f6565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028790620004ed565b90600052602060002090601f016020900481019282620002ab5760008555620002f7565b82601f10620002c657805160ff1916838001178555620002f7565b82800160010185558215620002f7579182015b82811115620002f6578251825591602001919060010190620002d9565b5b5090506200030691906200030a565b5090565b5b80821115620003255760008160009055506001016200030b565b5090565b6000620003406200033a846200044d565b62000424565b9050828152602081018484840111156200035f576200035e620005bc565b5b6200036c848285620004b7565b509392505050565b6000815190506200038581620005dc565b92915050565b600082601f830112620003a357620003a2620005b7565b5b8151620003b584826020860162000329565b91505092915050565b60008060408385031215620003d857620003d7620005c6565b5b600083015167ffffffffffffffff811115620003f957620003f8620005c1565b5b62000407858286016200038b565b92505060206200041a8582860162000374565b9150509250929050565b60006200043062000443565b90506200043e828262000523565b919050565b6000604051905090565b600067ffffffffffffffff8211156200046b576200046a62000588565b5b6200047682620005cb565b9050602081019050919050565b6000620004908262000497565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004d7578082015181840152602081019050620004ba565b83811115620004e7576000848401525b50505050565b600060028204905060018216806200050657607f821691505b602082108114156200051d576200051c62000559565b5b50919050565b6200052e82620005cb565b810181811067ffffffffffffffff8211171562000550576200054f62000588565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005e78162000483565b8114620005f357600080fd5b50565b614bc880620006066000396000f3fe60806040526004361061019b5760003560e01c80637533d788116100ec578063b88d4fde1161008a578063d1deba1f11610064578063d1deba1f146105b8578063e985e9c5146105d4578063eb8d72b714610611578063f2fde38b1461063a5761019b565b8063b88d4fde14610536578063c87b56dd1461055f578063cf89fa031461059c5761019b565b8063943fb872116100c6578063943fb8721461048e57806395d89b41146104b7578063a22cb465146104e2578063b2bdfa7b1461050b5761019b565b80637533d788146103e85780638da5cb5b146104255780638ee74912146104505761019b565b806323b872dd116101595780636352211e116101335780636352211e1461033b5780636ecd23061461037857806370a0823114610394578063715018a6146103d15761019b565b806323b872dd146102c057806342842e0e146102e957806355f804b3146103125761019b565b80621d3567146101a057806301ffc9a7146101c957806306fdde0314610206578063081812fc14610231578063095ea7b31461026e5780631c37a82214610297575b600080fd5b3480156101ac57600080fd5b506101c760048036038101906101c29190613138565b610663565b005b3480156101d557600080fd5b506101f060048036038101906101eb9190612ef5565b6108a5565b6040516101fd91906139ff565b60405180910390f35b34801561021257600080fd5b5061021b610987565b6040516102289190613a3c565b60405180910390f35b34801561023d57600080fd5b5061025860048036038101906102539190613217565b610a19565b604051610265919061396f565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190612eb5565b610a9e565b005b3480156102a357600080fd5b506102be60048036038101906102b99190613138565b610bb6565b005b3480156102cc57600080fd5b506102e760048036038101906102e29190612d9f565b610c36565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612d9f565b610c96565b005b34801561031e57600080fd5b5061033960048036038101906103349190612f4f565b610cb6565b005b34801561034757600080fd5b50610362600480360381019061035d9190613217565b610d4c565b60405161036f919061396f565b60405180910390f35b610392600480360381019061038d9190613284565b610dfe565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190612cf2565b611000565b6040516103c89190613efd565b60405180910390f35b3480156103dd57600080fd5b506103e66110b8565b005b3480156103f457600080fd5b5061040f600480360381019061040a9190612f98565b611140565b60405161041c9190613a1a565b60405180910390f35b34801561043157600080fd5b5061043a6111e0565b604051610447919061396f565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190613025565b611209565b604051610485929190613f18565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190613217565b61125d565b005b3480156104c357600080fd5b506104cc6112e3565b6040516104d99190613a3c565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190612e75565b611375565b005b34801561051757600080fd5b5061052061138b565b60405161052d919061396f565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612df2565b6113b1565b005b34801561056b57600080fd5b5061058660048036038101906105819190613217565b611413565b6040516105939190613a3c565b60405180910390f35b6105b660048036038101906105b191906131d7565b6114ba565b005b6105d260048036038101906105cd9190613094565b6117ad565b005b3480156105e057600080fd5b506105fb60048036038101906105f69190612d5f565b61194d565b60405161060891906139ff565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190612fc5565b6119e1565b005b34801561064657600080fd5b50610661600480360381019061065c9190612cf2565b611a8d565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106bd57600080fd5b600960008561ffff1661ffff16815260200190815260200160002080546106e3906141e7565b905083511480156107295750600960008561ffff1661ffff1681526020019081526020016000206040516107179190613908565b60405180910390208380519060200120145b610768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075f90613c7e565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b81526004016107a79493929190613e34565b600060405180830381600087803b1580156107c157600080fd5b505af19250505080156107d2575060015b61089e576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff1681526020019081526020016000208460405161081c91906138f1565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d848484846040516108919493929190613e34565b60405180910390a161089f565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610980575061097f82611b85565b5b9050919050565b606060018054610996906141e7565b80601f01602080910402602001604051908101604052809291908181526020018280546109c2906141e7565b8015610a0f5780601f106109e457610100808354040283529160200191610a0f565b820191906000526020600020905b8154815290600101906020018083116109f257829003601f168201915b5050505050905090565b6000610a2482611bef565b610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90613c3e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa982610d4c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1190613cde565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b39611c5b565b73ffffffffffffffffffffffffffffffffffffffff161480610b685750610b6781610b62611c5b565b61194d565b5b610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e90613b9e565b60405180910390fd5b610bb18383611c63565b505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90613bfe565b60405180910390fd5b610c3084848484611d1c565b50505050565b610c47610c41611c5b565b82611d49565b610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90613d1e565b60405180910390fd5b610c91838383611e27565b505050565b610cb1838383604051806020016040528060008152506113b1565b505050565b610cbe611c5b565b73ffffffffffffffffffffffffffffffffffffffff16610cdc6111e0565b73ffffffffffffffffffffffffffffffffffffffff1614610d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2990613c5e565b60405180910390fd5b80600b9080519060200190610d489291906129c1565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec90613bde565b60405180910390fd5b80915050919050565b60058160ff1610610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b90613d5e565b60405180910390fd5b600d548160ff16600c54610e58919061402b565b1115610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090613b5e565b60405180910390fd5b600d8160ff16600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ee9919061402b565b10610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090613cfe565b60405180910390fd5b6004600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f75919061402b565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600190505b8160ff168111610ffc57610fe933600c6000815480929190610fe09061424a565b91905055612083565b8080610ff49061424a565b915050610fbf565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890613bbe565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110c0611c5b565b73ffffffffffffffffffffffffffffffffffffffff166110de6111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90613c5e565b60405180910390fd5b61113e60006120a1565b565b6009602052806000526040600020600091509050805461115f906141e7565b80601f016020809104026020016040519081016040528092919081815260200182805461118b906141e7565b80156111d85780601f106111ad576101008083540402835291602001916111d8565b820191906000526020600020905b8154815290600101906020018083116111bb57829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b611265611c5b565b73ffffffffffffffffffffffffffffffffffffffff166112836111e0565b73ffffffffffffffffffffffffffffffffffffffff16146112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090613c5e565b60405180910390fd5b80600f8190555050565b6060600280546112f2906141e7565b80601f016020809104026020016040519081016040528092919081815260200182805461131e906141e7565b801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b5050505050905090565b611387611380611c5b565b8383612165565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113c26113bc611c5b565b83611d49565b611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f890613d1e565b60405180910390fd5b61140d848484846122d2565b50505050565b606061141e82611bef565b61145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145490613cbe565b60405180910390fd5b600061146761232e565b9050600081511161148757604051806020016040528060008152506114b2565b80611491846123c0565b6040516020016114a292919061391f565b6040516020818303038152906040525b915050919050565b6114c381610d4c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152790613b3e565b60405180910390fd5b6000600960008461ffff1661ffff1681526020019081526020016000208054611558906141e7565b90501161159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190613afe565b60405180910390fd5b6115a381612521565b600033826040516020016115b89291906139d6565b6040516020818303038152906040529050600060019050600081600f546040516020016115e6929190613943565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b815260040161165d959493929190613d7e565b604080518083038186803b15801561167457600080fd5b505afa158015611688573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ac9190613244565b509050803410156116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990613a5e565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b815260040161177396959493929190613e87565b6000604051808303818588803b15801561178c57600080fd5b505af11580156117a0573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff168152602001908152602001600020856040516117d891906138f1565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b8160010154141561184d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184490613d3e565b60405180910390fd5b80600001548383905014801561187d5750806001015483836040516118739291906138d8565b6040518091039020145b6118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390613b1e565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b8152600401611913959493929190613ddf565b600060405180830381600087803b15801561192d57600080fd5b505af1158015611941573d6000803e3d6000fd5b50505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119e9611c5b565b73ffffffffffffffffffffffffffffffffffffffff16611a076111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490613c5e565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190611a87929190612a47565b50505050565b611a95611c5b565b73ffffffffffffffffffffffffffffffffffffffff16611ab36111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0090613c5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7090613a9e565b60405180910390fd5b611b82816120a1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cd683610d4c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611d339190612d1f565b91509150611d418282612083565b505050505050565b6000611d5482611bef565b611d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8a90613b7e565b60405180910390fd5b6000611d9e83610d4c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e0d57508373ffffffffffffffffffffffffffffffffffffffff16611df584610a19565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e1e5750611e1d818561194d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e4782610d4c565b73ffffffffffffffffffffffffffffffffffffffff1614611e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9490613c9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0490613abe565b60405180910390fd5b611f18838383612632565b611f23600082611c63565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f7391906140b2565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fca919061402b565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61209d828260405180602001604052806000815250612637565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cb90613ade565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122c591906139ff565b60405180910390a3505050565b6122dd848484611e27565b6122e984848484612692565b612328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231f90613a7e565b60405180910390fd5b50505050565b6060600b805461233d906141e7565b80601f0160208091040260200160405190810160405280929190818152602001828054612369906141e7565b80156123b65780601f1061238b576101008083540402835291602001916123b6565b820191906000526020600020905b81548152906001019060200180831161239957829003601f168201915b5050505050905090565b60606000821415612408576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061251c565b600082905060005b6000821461243a5780806124239061424a565b915050600a826124339190614081565b9150612410565b60008167ffffffffffffffff8111156124565761245561439c565b5b6040519080825280601f01601f1916602001820160405280156124885781602001600182028036833780820191505090505b5090505b60008514612515576001826124a191906140b2565b9150600a856124b091906142af565b60306124bc919061402b565b60f81b8183815181106124d2576124d161436d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561250e9190614081565b945061248c565b8093505050505b919050565b600061252c82610d4c565b905061253a81600084612632565b612545600083611c63565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461259591906140b2565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6126418383612829565b61264e6000848484612692565b61268d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268490613a7e565b60405180910390fd5b505050565b60006126b38473ffffffffffffffffffffffffffffffffffffffff166129ae565b1561281c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126dc611c5b565b8786866040518563ffffffff1660e01b81526004016126fe949392919061398a565b602060405180830381600087803b15801561271857600080fd5b505af192505050801561274957506040513d601f19601f820116820180604052508101906127469190612f22565b60015b6127cc573d8060008114612779576040519150601f19603f3d011682016040523d82523d6000602084013e61277e565b606091505b506000815114156127c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bb90613a7e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612821565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289090613c1e565b60405180910390fd5b6128a560008383612632565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128f5919061402b565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546129cd906141e7565b90600052602060002090601f0160209004810192826129ef5760008555612a36565b82601f10612a0857805160ff1916838001178555612a36565b82800160010185558215612a36579182015b82811115612a35578251825591602001919060010190612a1a565b5b509050612a439190612acd565b5090565b828054612a53906141e7565b90600052602060002090601f016020900481019282612a755760008555612abc565b82601f10612a8e57803560ff1916838001178555612abc565b82800160010185558215612abc579182015b82811115612abb578235825591602001919060010190612aa0565b5b509050612ac99190612acd565b5090565b5b80821115612ae6576000816000905550600101612ace565b5090565b6000612afd612af884613f66565b613f41565b905082815260208101848484011115612b1957612b186143da565b5b612b248482856141a5565b509392505050565b6000612b3f612b3a84613f97565b613f41565b905082815260208101848484011115612b5b57612b5a6143da565b5b612b668482856141a5565b509392505050565b600081359050612b7d81614ada565b92915050565b600081519050612b9281614af1565b92915050565b600081359050612ba781614b08565b92915050565b600081359050612bbc81614b1f565b92915050565b600081519050612bd181614b1f565b92915050565b60008083601f840112612bed57612bec6143d0565b5b8235905067ffffffffffffffff811115612c0a57612c096143cb565b5b602083019150836001820283011115612c2657612c256143d5565b5b9250929050565b600082601f830112612c4257612c416143d0565b5b8135612c52848260208601612aea565b91505092915050565b600082601f830112612c7057612c6f6143d0565b5b8135612c80848260208601612b2c565b91505092915050565b600081359050612c9881614b36565b92915050565b600081359050612cad81614b4d565b92915050565b600081519050612cc281614b4d565b92915050565b600081359050612cd781614b64565b92915050565b600081359050612cec81614b7b565b92915050565b600060208284031215612d0857612d076143e4565b5b6000612d1684828501612b6e565b91505092915050565b60008060408385031215612d3657612d356143e4565b5b6000612d4485828601612b83565b9250506020612d5585828601612cb3565b9150509250929050565b60008060408385031215612d7657612d756143e4565b5b6000612d8485828601612b6e565b9250506020612d9585828601612b6e565b9150509250929050565b600080600060608486031215612db857612db76143e4565b5b6000612dc686828701612b6e565b9350506020612dd786828701612b6e565b9250506040612de886828701612c9e565b9150509250925092565b60008060008060808587031215612e0c57612e0b6143e4565b5b6000612e1a87828801612b6e565b9450506020612e2b87828801612b6e565b9350506040612e3c87828801612c9e565b925050606085013567ffffffffffffffff811115612e5d57612e5c6143df565b5b612e6987828801612c2d565b91505092959194509250565b60008060408385031215612e8c57612e8b6143e4565b5b6000612e9a85828601612b6e565b9250506020612eab85828601612b98565b9150509250929050565b60008060408385031215612ecc57612ecb6143e4565b5b6000612eda85828601612b6e565b9250506020612eeb85828601612c9e565b9150509250929050565b600060208284031215612f0b57612f0a6143e4565b5b6000612f1984828501612bad565b91505092915050565b600060208284031215612f3857612f376143e4565b5b6000612f4684828501612bc2565b91505092915050565b600060208284031215612f6557612f646143e4565b5b600082013567ffffffffffffffff811115612f8357612f826143df565b5b612f8f84828501612c5b565b91505092915050565b600060208284031215612fae57612fad6143e4565b5b6000612fbc84828501612c89565b91505092915050565b600080600060408486031215612fde57612fdd6143e4565b5b6000612fec86828701612c89565b935050602084013567ffffffffffffffff81111561300d5761300c6143df565b5b61301986828701612bd7565b92509250509250925092565b60008060006060848603121561303e5761303d6143e4565b5b600061304c86828701612c89565b935050602084013567ffffffffffffffff81111561306d5761306c6143df565b5b61307986828701612c2d565b925050604061308a86828701612c9e565b9150509250925092565b6000806000806000608086880312156130b0576130af6143e4565b5b60006130be88828901612c89565b955050602086013567ffffffffffffffff8111156130df576130de6143df565b5b6130eb88828901612c2d565b94505060406130fc88828901612cc8565b935050606086013567ffffffffffffffff81111561311d5761311c6143df565b5b61312988828901612bd7565b92509250509295509295909350565b60008060008060808587031215613152576131516143e4565b5b600061316087828801612c89565b945050602085013567ffffffffffffffff811115613181576131806143df565b5b61318d87828801612c2d565b935050604061319e87828801612cc8565b925050606085013567ffffffffffffffff8111156131bf576131be6143df565b5b6131cb87828801612c2d565b91505092959194509250565b600080604083850312156131ee576131ed6143e4565b5b60006131fc85828601612c89565b925050602061320d85828601612c9e565b9150509250929050565b60006020828403121561322d5761322c6143e4565b5b600061323b84828501612c9e565b91505092915050565b6000806040838503121561325b5761325a6143e4565b5b600061326985828601612cb3565b925050602061327a85828601612cb3565b9150509250929050565b60006020828403121561329a576132996143e4565b5b60006132a884828501612cdd565b91505092915050565b6132ba816140f8565b82525050565b6132c9816140e6565b82525050565b6132d88161410a565b82525050565b6132e781614116565b82525050565b60006132f98385613ff3565b93506133068385846141a5565b61330f836143e9565b840190509392505050565b60006133268385614004565b93506133338385846141a5565b82840190509392505050565b600061334a82613fdd565b6133548185613ff3565b93506133648185602086016141b4565b61336d816143e9565b840191505092915050565b600061338382613fdd565b61338d8185614004565b935061339d8185602086016141b4565b80840191505092915050565b600081546133b6816141e7565b6133c08186613ff3565b945060018216600081146133db57600181146133ed57613420565b60ff1983168652602086019350613420565b6133f685613fc8565b60005b83811015613418578154818901526001820191506020810190506133f9565b808801955050505b50505092915050565b60008154613436816141e7565b6134408186614004565b9450600182166000811461345b576001811461346c5761349f565b60ff1983168652818601935061349f565b61347585613fc8565b60005b8381101561349757815481890152600182019150602081019050613478565b838801955050505b50505092915050565b60006134b382613fe8565b6134bd818561400f565b93506134cd8185602086016141b4565b6134d6816143e9565b840191505092915050565b60006134ec82613fe8565b6134f68185614020565b93506135068185602086016141b4565b80840191505092915050565b600061351f60438361400f565b915061352a82614407565b606082019050919050565b600061354260328361400f565b915061354d8261447c565b604082019050919050565b600061356560268361400f565b9150613570826144cb565b604082019050919050565b600061358860248361400f565b91506135938261451a565b604082019050919050565b60006135ab60198361400f565b91506135b682614569565b602082019050919050565b60006135ce602e8361400f565b91506135d982614592565b604082019050919050565b60006135f1601a8361400f565b91506135fc826145e1565b602082019050919050565b600061361460228361400f565b915061361f8261460a565b604082019050919050565b600061363760138361400f565b915061364282614659565b602082019050919050565b600061365a602c8361400f565b915061366582614682565b604082019050919050565b600061367d60388361400f565b9150613688826146d1565b604082019050919050565b60006136a0602a8361400f565b91506136ab82614720565b604082019050919050565b60006136c360298361400f565b91506136ce8261476f565b604082019050919050565b60006136e6602b8361400f565b91506136f1826147be565b604082019050919050565b600061370960208361400f565b91506137148261480d565b602082019050919050565b600061372c602c8361400f565b915061373782614836565b604082019050919050565b600061374f60208361400f565b915061375a82614885565b602082019050919050565b600061377260348361400f565b915061377d826148ae565b604082019050919050565b600061379560298361400f565b91506137a0826148fd565b604082019050919050565b60006137b8602f8361400f565b91506137c38261494c565b604082019050919050565b60006137db60218361400f565b91506137e68261499b565b604082019050919050565b60006137fe60188361400f565b9150613809826149ea565b602082019050919050565b600061382160318361400f565b915061382c82614a13565b604082019050919050565b600061384460268361400f565b915061384f82614a62565b604082019050919050565b6000613867601a8361400f565b915061387282614ab1565b602082019050919050565b6138868161414c565b82525050565b61389d6138988261414c565b614293565b82525050565b6138ac8161417a565b82525050565b6138c36138be8261417a565b6142a5565b82525050565b6138d281614184565b82525050565b60006138e582848661331a565b91508190509392505050565b60006138fd8284613378565b915081905092915050565b60006139148284613429565b915081905092915050565b600061392b82856134e1565b915061393782846134e1565b91508190509392505050565b600061394f828561388c565b60028201915061395f82846138b2565b6020820191508190509392505050565b600060208201905061398460008301846132c0565b92915050565b600060808201905061399f60008301876132c0565b6139ac60208301866132c0565b6139b960408301856138a3565b81810360608301526139cb818461333f565b905095945050505050565b60006040820190506139eb60008301856132c0565b6139f860208301846138a3565b9392505050565b6000602082019050613a1460008301846132cf565b92915050565b60006020820190508181036000830152613a34818461333f565b905092915050565b60006020820190508181036000830152613a5681846134a8565b905092915050565b60006020820190508181036000830152613a7781613512565b9050919050565b60006020820190508181036000830152613a9781613535565b9050919050565b60006020820190508181036000830152613ab781613558565b9050919050565b60006020820190508181036000830152613ad78161357b565b9050919050565b60006020820190508181036000830152613af78161359e565b9050919050565b60006020820190508181036000830152613b17816135c1565b9050919050565b60006020820190508181036000830152613b37816135e4565b9050919050565b60006020820190508181036000830152613b5781613607565b9050919050565b60006020820190508181036000830152613b778161362a565b9050919050565b60006020820190508181036000830152613b978161364d565b9050919050565b60006020820190508181036000830152613bb781613670565b9050919050565b60006020820190508181036000830152613bd781613693565b9050919050565b60006020820190508181036000830152613bf7816136b6565b9050919050565b60006020820190508181036000830152613c17816136d9565b9050919050565b60006020820190508181036000830152613c37816136fc565b9050919050565b60006020820190508181036000830152613c578161371f565b9050919050565b60006020820190508181036000830152613c7781613742565b9050919050565b60006020820190508181036000830152613c9781613765565b9050919050565b60006020820190508181036000830152613cb781613788565b9050919050565b60006020820190508181036000830152613cd7816137ab565b9050919050565b60006020820190508181036000830152613cf7816137ce565b9050919050565b60006020820190508181036000830152613d17816137f1565b9050919050565b60006020820190508181036000830152613d3781613814565b9050919050565b60006020820190508181036000830152613d5781613837565b9050919050565b60006020820190508181036000830152613d778161385a565b9050919050565b600060a082019050613d93600083018861387d565b613da060208301876132c0565b8181036040830152613db2818661333f565b9050613dc160608301856132cf565b8181036080830152613dd3818461333f565b90509695505050505050565b6000608082019050613df4600083018861387d565b8181036020830152613e06818761333f565b9050613e1560408301866138c9565b8181036060830152613e288184866132ed565b90509695505050505050565b6000608082019050613e49600083018761387d565b8181036020830152613e5b818661333f565b9050613e6a60408301856138c9565b8181036060830152613e7c818461333f565b905095945050505050565b600060c082019050613e9c600083018961387d565b8181036020830152613eae81886133a9565b90508181036040830152613ec2818761333f565b9050613ed160608301866132b1565b613ede60808301856132c0565b81810360a0830152613ef0818461333f565b9050979650505050505050565b6000602082019050613f1260008301846138a3565b92915050565b6000604082019050613f2d60008301856138a3565b613f3a60208301846132de565b9392505050565b6000613f4b613f5c565b9050613f578282614219565b919050565b6000604051905090565b600067ffffffffffffffff821115613f8157613f8061439c565b5b613f8a826143e9565b9050602081019050919050565b600067ffffffffffffffff821115613fb257613fb161439c565b5b613fbb826143e9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140368261417a565b91506140418361417a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614076576140756142e0565b5b828201905092915050565b600061408c8261417a565b91506140978361417a565b9250826140a7576140a661430f565b5b828204905092915050565b60006140bd8261417a565b91506140c88361417a565b9250828210156140db576140da6142e0565b5b828203905092915050565b60006140f18261415a565b9050919050565b60006141038261415a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156141d25780820151818401526020810190506141b7565b838111156141e1576000848401525b50505050565b600060028204905060018216806141ff57607f821691505b602082108114156142135761421261433e565b5b50919050565b614222826143e9565b810181811067ffffffffffffffff821117156142415761424061439c565b5b80604052505050565b60006142558261417a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614288576142876142e0565b5b600182019050919050565b600061429e826143fa565b9050919050565b6000819050919050565b60006142ba8261417a565b91506142c58361417a565b9250826142d5576142d461430f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f6d73672e76616c7565206e6f7420656e6f75676820746f20636f766572206d6560008201527f73736167654665652e2053656e642067617320666f72206d657373616765206660208201527f6565730000000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c6160008201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206578636565647320737570706c7900000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178206f766572616c6c206d696e740000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b7f4d61782034204e46547320706572207472616e73616374696f6e000000000000600082015250565b614ae3816140e6565b8114614aee57600080fd5b50565b614afa816140f8565b8114614b0557600080fd5b50565b614b118161410a565b8114614b1c57600080fd5b50565b614b2881614120565b8114614b3357600080fd5b50565b614b3f8161414c565b8114614b4a57600080fd5b50565b614b568161417a565b8114614b6157600080fd5b50565b614b6d81614184565b8114614b7857600080fd5b50565b614b8481614198565b8114614b8f57600080fd5b5056fea26469706673582212208b27b5a97e3db25ea00ccae2e541048c5b616943839b8b2cd9f0fe3b7c71f84964736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000003c2269811836af69497e5f486a85d7316753cf62000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f6275696c646162756464792e6d7970696e6174612e636c6f75642f697066732f516d633143653959336f42665461354c576e324c387875636b414d4454346977786e5a71724a695342717456794d2f000000000000000000
Deployed Bytecode
0x60806040526004361061019b5760003560e01c80637533d788116100ec578063b88d4fde1161008a578063d1deba1f11610064578063d1deba1f146105b8578063e985e9c5146105d4578063eb8d72b714610611578063f2fde38b1461063a5761019b565b8063b88d4fde14610536578063c87b56dd1461055f578063cf89fa031461059c5761019b565b8063943fb872116100c6578063943fb8721461048e57806395d89b41146104b7578063a22cb465146104e2578063b2bdfa7b1461050b5761019b565b80637533d788146103e85780638da5cb5b146104255780638ee74912146104505761019b565b806323b872dd116101595780636352211e116101335780636352211e1461033b5780636ecd23061461037857806370a0823114610394578063715018a6146103d15761019b565b806323b872dd146102c057806342842e0e146102e957806355f804b3146103125761019b565b80621d3567146101a057806301ffc9a7146101c957806306fdde0314610206578063081812fc14610231578063095ea7b31461026e5780631c37a82214610297575b600080fd5b3480156101ac57600080fd5b506101c760048036038101906101c29190613138565b610663565b005b3480156101d557600080fd5b506101f060048036038101906101eb9190612ef5565b6108a5565b6040516101fd91906139ff565b60405180910390f35b34801561021257600080fd5b5061021b610987565b6040516102289190613a3c565b60405180910390f35b34801561023d57600080fd5b5061025860048036038101906102539190613217565b610a19565b604051610265919061396f565b60405180910390f35b34801561027a57600080fd5b5061029560048036038101906102909190612eb5565b610a9e565b005b3480156102a357600080fd5b506102be60048036038101906102b99190613138565b610bb6565b005b3480156102cc57600080fd5b506102e760048036038101906102e29190612d9f565b610c36565b005b3480156102f557600080fd5b50610310600480360381019061030b9190612d9f565b610c96565b005b34801561031e57600080fd5b5061033960048036038101906103349190612f4f565b610cb6565b005b34801561034757600080fd5b50610362600480360381019061035d9190613217565b610d4c565b60405161036f919061396f565b60405180910390f35b610392600480360381019061038d9190613284565b610dfe565b005b3480156103a057600080fd5b506103bb60048036038101906103b69190612cf2565b611000565b6040516103c89190613efd565b60405180910390f35b3480156103dd57600080fd5b506103e66110b8565b005b3480156103f457600080fd5b5061040f600480360381019061040a9190612f98565b611140565b60405161041c9190613a1a565b60405180910390f35b34801561043157600080fd5b5061043a6111e0565b604051610447919061396f565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190613025565b611209565b604051610485929190613f18565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190613217565b61125d565b005b3480156104c357600080fd5b506104cc6112e3565b6040516104d99190613a3c565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190612e75565b611375565b005b34801561051757600080fd5b5061052061138b565b60405161052d919061396f565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612df2565b6113b1565b005b34801561056b57600080fd5b5061058660048036038101906105819190613217565b611413565b6040516105939190613a3c565b60405180910390f35b6105b660048036038101906105b191906131d7565b6114ba565b005b6105d260048036038101906105cd9190613094565b6117ad565b005b3480156105e057600080fd5b506105fb60048036038101906105f69190612d5f565b61194d565b60405161060891906139ff565b60405180910390f35b34801561061d57600080fd5b5061063860048036038101906106339190612fc5565b6119e1565b005b34801561064657600080fd5b50610661600480360381019061065c9190612cf2565b611a8d565b005b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106bd57600080fd5b600960008561ffff1661ffff16815260200190815260200160002080546106e3906141e7565b905083511480156107295750600960008561ffff1661ffff1681526020019081526020016000206040516107179190613908565b60405180910390208380519060200120145b610768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075f90613c7e565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b81526004016107a79493929190613e34565b600060405180830381600087803b1580156107c157600080fd5b505af19250505080156107d2575060015b61089e576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff1681526020019081526020016000208460405161081c91906138f1565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d848484846040516108919493929190613e34565b60405180910390a161089f565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610980575061097f82611b85565b5b9050919050565b606060018054610996906141e7565b80601f01602080910402602001604051908101604052809291908181526020018280546109c2906141e7565b8015610a0f5780601f106109e457610100808354040283529160200191610a0f565b820191906000526020600020905b8154815290600101906020018083116109f257829003601f168201915b5050505050905090565b6000610a2482611bef565b610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90613c3e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa982610d4c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1190613cde565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b39611c5b565b73ffffffffffffffffffffffffffffffffffffffff161480610b685750610b6781610b62611c5b565b61194d565b5b610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e90613b9e565b60405180910390fd5b610bb18383611c63565b505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90613bfe565b60405180910390fd5b610c3084848484611d1c565b50505050565b610c47610c41611c5b565b82611d49565b610c86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7d90613d1e565b60405180910390fd5b610c91838383611e27565b505050565b610cb1838383604051806020016040528060008152506113b1565b505050565b610cbe611c5b565b73ffffffffffffffffffffffffffffffffffffffff16610cdc6111e0565b73ffffffffffffffffffffffffffffffffffffffff1614610d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2990613c5e565b60405180910390fd5b80600b9080519060200190610d489291906129c1565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec90613bde565b60405180910390fd5b80915050919050565b60058160ff1610610e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3b90613d5e565b60405180910390fd5b600d548160ff16600c54610e58919061402b565b1115610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090613b5e565b60405180910390fd5b600d8160ff16600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ee9919061402b565b10610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090613cfe565b60405180910390fd5b6004600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f75919061402b565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000600190505b8160ff168111610ffc57610fe933600c6000815480929190610fe09061424a565b91905055612083565b8080610ff49061424a565b915050610fbf565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611071576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106890613bbe565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110c0611c5b565b73ffffffffffffffffffffffffffffffffffffffff166110de6111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90613c5e565b60405180910390fd5b61113e60006120a1565b565b6009602052806000526040600020600091509050805461115f906141e7565b80601f016020809104026020016040519081016040528092919081815260200182805461118b906141e7565b80156111d85780601f106111ad576101008083540402835291602001916111d8565b820191906000526020600020905b8154815290600101906020018083116111bb57829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b611265611c5b565b73ffffffffffffffffffffffffffffffffffffffff166112836111e0565b73ffffffffffffffffffffffffffffffffffffffff16146112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090613c5e565b60405180910390fd5b80600f8190555050565b6060600280546112f2906141e7565b80601f016020809104026020016040519081016040528092919081815260200182805461131e906141e7565b801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b5050505050905090565b611387611380611c5b565b8383612165565b5050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113c26113bc611c5b565b83611d49565b611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f890613d1e565b60405180910390fd5b61140d848484846122d2565b50505050565b606061141e82611bef565b61145d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145490613cbe565b60405180910390fd5b600061146761232e565b9050600081511161148757604051806020016040528060008152506114b2565b80611491846123c0565b6040516020016114a292919061391f565b6040516020818303038152906040525b915050919050565b6114c381610d4c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152790613b3e565b60405180910390fd5b6000600960008461ffff1661ffff1681526020019081526020016000208054611558906141e7565b90501161159a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159190613afe565b60405180910390fd5b6115a381612521565b600033826040516020016115b89291906139d6565b6040516020818303038152906040529050600060019050600081600f546040516020016115e6929190613943565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108730876000876040518663ffffffff1660e01b815260040161165d959493929190613d7e565b604080518083038186803b15801561167457600080fd5b505afa158015611688573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ac9190613244565b509050803410156116f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e990613a5e565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003488600960008b61ffff1661ffff16815260200190815260200160002088336000896040518863ffffffff1660e01b815260040161177396959493929190613e87565b6000604051808303818588803b15801561178c57600080fd5b505af11580156117a0573d6000803e3d6000fd5b5050505050505050505050565b6000600860008761ffff1661ffff168152602001908152602001600020856040516117d891906138f1565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b8160010154141561184d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184490613d3e565b60405180910390fd5b80600001548383905014801561187d5750806001015483836040516118739291906138d8565b6040518091039020145b6118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390613b1e565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b8152600401611913959493929190613ddf565b600060405180830381600087803b15801561192d57600080fd5b505af1158015611941573d6000803e3d6000fd5b50505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119e9611c5b565b73ffffffffffffffffffffffffffffffffffffffff16611a076111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490613c5e565b60405180910390fd5b8181600960008661ffff1661ffff1681526020019081526020016000209190611a87929190612a47565b50505050565b611a95611c5b565b73ffffffffffffffffffffffffffffffffffffffff16611ab36111e0565b73ffffffffffffffffffffffffffffffffffffffff1614611b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0090613c5e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7090613a9e565b60405180910390fd5b611b82816120a1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cd683610d4c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611d339190612d1f565b91509150611d418282612083565b505050505050565b6000611d5482611bef565b611d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8a90613b7e565b60405180910390fd5b6000611d9e83610d4c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e0d57508373ffffffffffffffffffffffffffffffffffffffff16611df584610a19565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e1e5750611e1d818561194d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e4782610d4c565b73ffffffffffffffffffffffffffffffffffffffff1614611e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9490613c9e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0490613abe565b60405180910390fd5b611f18838383612632565b611f23600082611c63565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f7391906140b2565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fca919061402b565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61209d828260405180602001604052806000815250612637565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cb90613ade565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122c591906139ff565b60405180910390a3505050565b6122dd848484611e27565b6122e984848484612692565b612328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231f90613a7e565b60405180910390fd5b50505050565b6060600b805461233d906141e7565b80601f0160208091040260200160405190810160405280929190818152602001828054612369906141e7565b80156123b65780601f1061238b576101008083540402835291602001916123b6565b820191906000526020600020905b81548152906001019060200180831161239957829003601f168201915b5050505050905090565b60606000821415612408576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061251c565b600082905060005b6000821461243a5780806124239061424a565b915050600a826124339190614081565b9150612410565b60008167ffffffffffffffff8111156124565761245561439c565b5b6040519080825280601f01601f1916602001820160405280156124885781602001600182028036833780820191505090505b5090505b60008514612515576001826124a191906140b2565b9150600a856124b091906142af565b60306124bc919061402b565b60f81b8183815181106124d2576124d161436d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561250e9190614081565b945061248c565b8093505050505b919050565b600061252c82610d4c565b905061253a81600084612632565b612545600083611c63565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461259591906140b2565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6126418383612829565b61264e6000848484612692565b61268d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268490613a7e565b60405180910390fd5b505050565b60006126b38473ffffffffffffffffffffffffffffffffffffffff166129ae565b1561281c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126dc611c5b565b8786866040518563ffffffff1660e01b81526004016126fe949392919061398a565b602060405180830381600087803b15801561271857600080fd5b505af192505050801561274957506040513d601f19601f820116820180604052508101906127469190612f22565b60015b6127cc573d8060008114612779576040519150601f19603f3d011682016040523d82523d6000602084013e61277e565b606091505b506000815114156127c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127bb90613a7e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612821565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289090613c1e565b60405180910390fd5b6128a560008383612632565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128f5919061402b565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546129cd906141e7565b90600052602060002090601f0160209004810192826129ef5760008555612a36565b82601f10612a0857805160ff1916838001178555612a36565b82800160010185558215612a36579182015b82811115612a35578251825591602001919060010190612a1a565b5b509050612a439190612acd565b5090565b828054612a53906141e7565b90600052602060002090601f016020900481019282612a755760008555612abc565b82601f10612a8e57803560ff1916838001178555612abc565b82800160010185558215612abc579182015b82811115612abb578235825591602001919060010190612aa0565b5b509050612ac99190612acd565b5090565b5b80821115612ae6576000816000905550600101612ace565b5090565b6000612afd612af884613f66565b613f41565b905082815260208101848484011115612b1957612b186143da565b5b612b248482856141a5565b509392505050565b6000612b3f612b3a84613f97565b613f41565b905082815260208101848484011115612b5b57612b5a6143da565b5b612b668482856141a5565b509392505050565b600081359050612b7d81614ada565b92915050565b600081519050612b9281614af1565b92915050565b600081359050612ba781614b08565b92915050565b600081359050612bbc81614b1f565b92915050565b600081519050612bd181614b1f565b92915050565b60008083601f840112612bed57612bec6143d0565b5b8235905067ffffffffffffffff811115612c0a57612c096143cb565b5b602083019150836001820283011115612c2657612c256143d5565b5b9250929050565b600082601f830112612c4257612c416143d0565b5b8135612c52848260208601612aea565b91505092915050565b600082601f830112612c7057612c6f6143d0565b5b8135612c80848260208601612b2c565b91505092915050565b600081359050612c9881614b36565b92915050565b600081359050612cad81614b4d565b92915050565b600081519050612cc281614b4d565b92915050565b600081359050612cd781614b64565b92915050565b600081359050612cec81614b7b565b92915050565b600060208284031215612d0857612d076143e4565b5b6000612d1684828501612b6e565b91505092915050565b60008060408385031215612d3657612d356143e4565b5b6000612d4485828601612b83565b9250506020612d5585828601612cb3565b9150509250929050565b60008060408385031215612d7657612d756143e4565b5b6000612d8485828601612b6e565b9250506020612d9585828601612b6e565b9150509250929050565b600080600060608486031215612db857612db76143e4565b5b6000612dc686828701612b6e565b9350506020612dd786828701612b6e565b9250506040612de886828701612c9e565b9150509250925092565b60008060008060808587031215612e0c57612e0b6143e4565b5b6000612e1a87828801612b6e565b9450506020612e2b87828801612b6e565b9350506040612e3c87828801612c9e565b925050606085013567ffffffffffffffff811115612e5d57612e5c6143df565b5b612e6987828801612c2d565b91505092959194509250565b60008060408385031215612e8c57612e8b6143e4565b5b6000612e9a85828601612b6e565b9250506020612eab85828601612b98565b9150509250929050565b60008060408385031215612ecc57612ecb6143e4565b5b6000612eda85828601612b6e565b9250506020612eeb85828601612c9e565b9150509250929050565b600060208284031215612f0b57612f0a6143e4565b5b6000612f1984828501612bad565b91505092915050565b600060208284031215612f3857612f376143e4565b5b6000612f4684828501612bc2565b91505092915050565b600060208284031215612f6557612f646143e4565b5b600082013567ffffffffffffffff811115612f8357612f826143df565b5b612f8f84828501612c5b565b91505092915050565b600060208284031215612fae57612fad6143e4565b5b6000612fbc84828501612c89565b91505092915050565b600080600060408486031215612fde57612fdd6143e4565b5b6000612fec86828701612c89565b935050602084013567ffffffffffffffff81111561300d5761300c6143df565b5b61301986828701612bd7565b92509250509250925092565b60008060006060848603121561303e5761303d6143e4565b5b600061304c86828701612c89565b935050602084013567ffffffffffffffff81111561306d5761306c6143df565b5b61307986828701612c2d565b925050604061308a86828701612c9e565b9150509250925092565b6000806000806000608086880312156130b0576130af6143e4565b5b60006130be88828901612c89565b955050602086013567ffffffffffffffff8111156130df576130de6143df565b5b6130eb88828901612c2d565b94505060406130fc88828901612cc8565b935050606086013567ffffffffffffffff81111561311d5761311c6143df565b5b61312988828901612bd7565b92509250509295509295909350565b60008060008060808587031215613152576131516143e4565b5b600061316087828801612c89565b945050602085013567ffffffffffffffff811115613181576131806143df565b5b61318d87828801612c2d565b935050604061319e87828801612cc8565b925050606085013567ffffffffffffffff8111156131bf576131be6143df565b5b6131cb87828801612c2d565b91505092959194509250565b600080604083850312156131ee576131ed6143e4565b5b60006131fc85828601612c89565b925050602061320d85828601612c9e565b9150509250929050565b60006020828403121561322d5761322c6143e4565b5b600061323b84828501612c9e565b91505092915050565b6000806040838503121561325b5761325a6143e4565b5b600061326985828601612cb3565b925050602061327a85828601612cb3565b9150509250929050565b60006020828403121561329a576132996143e4565b5b60006132a884828501612cdd565b91505092915050565b6132ba816140f8565b82525050565b6132c9816140e6565b82525050565b6132d88161410a565b82525050565b6132e781614116565b82525050565b60006132f98385613ff3565b93506133068385846141a5565b61330f836143e9565b840190509392505050565b60006133268385614004565b93506133338385846141a5565b82840190509392505050565b600061334a82613fdd565b6133548185613ff3565b93506133648185602086016141b4565b61336d816143e9565b840191505092915050565b600061338382613fdd565b61338d8185614004565b935061339d8185602086016141b4565b80840191505092915050565b600081546133b6816141e7565b6133c08186613ff3565b945060018216600081146133db57600181146133ed57613420565b60ff1983168652602086019350613420565b6133f685613fc8565b60005b83811015613418578154818901526001820191506020810190506133f9565b808801955050505b50505092915050565b60008154613436816141e7565b6134408186614004565b9450600182166000811461345b576001811461346c5761349f565b60ff1983168652818601935061349f565b61347585613fc8565b60005b8381101561349757815481890152600182019150602081019050613478565b838801955050505b50505092915050565b60006134b382613fe8565b6134bd818561400f565b93506134cd8185602086016141b4565b6134d6816143e9565b840191505092915050565b60006134ec82613fe8565b6134f68185614020565b93506135068185602086016141b4565b80840191505092915050565b600061351f60438361400f565b915061352a82614407565b606082019050919050565b600061354260328361400f565b915061354d8261447c565b604082019050919050565b600061356560268361400f565b9150613570826144cb565b604082019050919050565b600061358860248361400f565b91506135938261451a565b604082019050919050565b60006135ab60198361400f565b91506135b682614569565b602082019050919050565b60006135ce602e8361400f565b91506135d982614592565b604082019050919050565b60006135f1601a8361400f565b91506135fc826145e1565b602082019050919050565b600061361460228361400f565b915061361f8261460a565b604082019050919050565b600061363760138361400f565b915061364282614659565b602082019050919050565b600061365a602c8361400f565b915061366582614682565b604082019050919050565b600061367d60388361400f565b9150613688826146d1565b604082019050919050565b60006136a0602a8361400f565b91506136ab82614720565b604082019050919050565b60006136c360298361400f565b91506136ce8261476f565b604082019050919050565b60006136e6602b8361400f565b91506136f1826147be565b604082019050919050565b600061370960208361400f565b91506137148261480d565b602082019050919050565b600061372c602c8361400f565b915061373782614836565b604082019050919050565b600061374f60208361400f565b915061375a82614885565b602082019050919050565b600061377260348361400f565b915061377d826148ae565b604082019050919050565b600061379560298361400f565b91506137a0826148fd565b604082019050919050565b60006137b8602f8361400f565b91506137c38261494c565b604082019050919050565b60006137db60218361400f565b91506137e68261499b565b604082019050919050565b60006137fe60188361400f565b9150613809826149ea565b602082019050919050565b600061382160318361400f565b915061382c82614a13565b604082019050919050565b600061384460268361400f565b915061384f82614a62565b604082019050919050565b6000613867601a8361400f565b915061387282614ab1565b602082019050919050565b6138868161414c565b82525050565b61389d6138988261414c565b614293565b82525050565b6138ac8161417a565b82525050565b6138c36138be8261417a565b6142a5565b82525050565b6138d281614184565b82525050565b60006138e582848661331a565b91508190509392505050565b60006138fd8284613378565b915081905092915050565b60006139148284613429565b915081905092915050565b600061392b82856134e1565b915061393782846134e1565b91508190509392505050565b600061394f828561388c565b60028201915061395f82846138b2565b6020820191508190509392505050565b600060208201905061398460008301846132c0565b92915050565b600060808201905061399f60008301876132c0565b6139ac60208301866132c0565b6139b960408301856138a3565b81810360608301526139cb818461333f565b905095945050505050565b60006040820190506139eb60008301856132c0565b6139f860208301846138a3565b9392505050565b6000602082019050613a1460008301846132cf565b92915050565b60006020820190508181036000830152613a34818461333f565b905092915050565b60006020820190508181036000830152613a5681846134a8565b905092915050565b60006020820190508181036000830152613a7781613512565b9050919050565b60006020820190508181036000830152613a9781613535565b9050919050565b60006020820190508181036000830152613ab781613558565b9050919050565b60006020820190508181036000830152613ad78161357b565b9050919050565b60006020820190508181036000830152613af78161359e565b9050919050565b60006020820190508181036000830152613b17816135c1565b9050919050565b60006020820190508181036000830152613b37816135e4565b9050919050565b60006020820190508181036000830152613b5781613607565b9050919050565b60006020820190508181036000830152613b778161362a565b9050919050565b60006020820190508181036000830152613b978161364d565b9050919050565b60006020820190508181036000830152613bb781613670565b9050919050565b60006020820190508181036000830152613bd781613693565b9050919050565b60006020820190508181036000830152613bf7816136b6565b9050919050565b60006020820190508181036000830152613c17816136d9565b9050919050565b60006020820190508181036000830152613c37816136fc565b9050919050565b60006020820190508181036000830152613c578161371f565b9050919050565b60006020820190508181036000830152613c7781613742565b9050919050565b60006020820190508181036000830152613c9781613765565b9050919050565b60006020820190508181036000830152613cb781613788565b9050919050565b60006020820190508181036000830152613cd7816137ab565b9050919050565b60006020820190508181036000830152613cf7816137ce565b9050919050565b60006020820190508181036000830152613d17816137f1565b9050919050565b60006020820190508181036000830152613d3781613814565b9050919050565b60006020820190508181036000830152613d5781613837565b9050919050565b60006020820190508181036000830152613d778161385a565b9050919050565b600060a082019050613d93600083018861387d565b613da060208301876132c0565b8181036040830152613db2818661333f565b9050613dc160608301856132cf565b8181036080830152613dd3818461333f565b90509695505050505050565b6000608082019050613df4600083018861387d565b8181036020830152613e06818761333f565b9050613e1560408301866138c9565b8181036060830152613e288184866132ed565b90509695505050505050565b6000608082019050613e49600083018761387d565b8181036020830152613e5b818661333f565b9050613e6a60408301856138c9565b8181036060830152613e7c818461333f565b905095945050505050565b600060c082019050613e9c600083018961387d565b8181036020830152613eae81886133a9565b90508181036040830152613ec2818761333f565b9050613ed160608301866132b1565b613ede60808301856132c0565b81810360a0830152613ef0818461333f565b9050979650505050505050565b6000602082019050613f1260008301846138a3565b92915050565b6000604082019050613f2d60008301856138a3565b613f3a60208301846132de565b9392505050565b6000613f4b613f5c565b9050613f578282614219565b919050565b6000604051905090565b600067ffffffffffffffff821115613f8157613f8061439c565b5b613f8a826143e9565b9050602081019050919050565b600067ffffffffffffffff821115613fb257613fb161439c565b5b613fbb826143e9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006140368261417a565b91506140418361417a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614076576140756142e0565b5b828201905092915050565b600061408c8261417a565b91506140978361417a565b9250826140a7576140a661430f565b5b828204905092915050565b60006140bd8261417a565b91506140c88361417a565b9250828210156140db576140da6142e0565b5b828203905092915050565b60006140f18261415a565b9050919050565b60006141038261415a565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156141d25780820151818401526020810190506141b7565b838111156141e1576000848401525b50505050565b600060028204905060018216806141ff57607f821691505b602082108114156142135761421261433e565b5b50919050565b614222826143e9565b810181811067ffffffffffffffff821117156142415761424061439c565b5b80604052505050565b60006142558261417a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614288576142876142e0565b5b600182019050919050565b600061429e826143fa565b9050919050565b6000819050919050565b60006142ba8261417a565b91506142c58361417a565b9250826142d5576142d461430f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f6d73672e76616c7565206e6f7420656e6f75676820746f20636f766572206d6560008201527f73736167654665652e2053656e642067617320666f72206d657373616765206660208201527f6565730000000000000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5468697320636861696e2069732063757272656e746c7920756e617661696c6160008201527f626c6520666f722074726176656c000000000000000000000000000000000000602082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74206578636565647320737570706c7900000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178206f766572616c6c206d696e740000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b7f4d61782034204e46547320706572207472616e73616374696f6e000000000000600082015250565b614ae3816140e6565b8114614aee57600080fd5b50565b614afa816140f8565b8114614b0557600080fd5b50565b614b118161410a565b8114614b1c57600080fd5b50565b614b2881614120565b8114614b3357600080fd5b50565b614b3f8161414c565b8114614b4a57600080fd5b50565b614b568161417a565b8114614b6157600080fd5b50565b614b6d81614184565b8114614b7857600080fd5b50565b614b8481614198565b8114614b8f57600080fd5b5056fea26469706673582212208b27b5a97e3db25ea00ccae2e541048c5b616943839b8b2cd9f0fe3b7c71f84964736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000003c2269811836af69497e5f486a85d7316753cf62000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f6275696c646162756464792e6d7970696e6174612e636c6f75642f697066732f516d633143653959336f42665461354c576e324c387875636b414d4454346977786e5a71724a695342717456794d2f000000000000000000
-----Decoded View---------------
Arg [0] : baseURI_ (string): https://buildabuddy.mypinata.cloud/ipfs/Qmc1Ce9Y3oBfTa5LWn2L8xuckAMDT4iwxnZqrJiSBqtVyM/
Arg [1] : _layerZeroEndpoint (address): 0x3c2269811836af69497E5F486A85D7316753cf62
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000003c2269811836af69497e5f486a85d7316753cf62
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000057
Arg [3] : 68747470733a2f2f6275696c646162756464792e6d7970696e6174612e636c6f
Arg [4] : 75642f697066732f516d633143653959336f42665461354c576e324c38787563
Arg [5] : 6b414d4454346977786e5a71724a695342717456794d2f000000000000000000
Deployed Bytecode Sourcemap
50202:3901:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46860:1098;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32925:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34094:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35787:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35310:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47966:435;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36706:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37153:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53175:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33701:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50848:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33344:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13237:103;;;;;;;;;;;;;:::i;:::-;;46659:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12586:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46550:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;53349:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34263:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36167:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50270:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37409:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34438:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51479:1688;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49061:916;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36425:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49985:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13495:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46860:1098;47065:8;;;;;;;;;;;47043:31;;:10;:31;;;47035:40;;;;;;47200:19;:32;47220:11;47200:32;;;;;;;;;;;;;;;:39;;;;;:::i;:::-;;;47178:11;:18;:61;:168;;;;;47313:19;:32;47333:11;47313:32;;;;;;;;;;;;;;;47303:43;;;;;;:::i;:::-;;;;;;;;47270:11;47260:22;;;;;;:86;47178:168;47156:270;;;;;;;;;;;;:::i;:::-;;;;;;;;;47554:4;:16;;;47571:11;47584;47597:6;47605:8;47554:60;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47550:401;;47761:101;;;;;;;;47794:8;:15;47761:101;;;;47838:8;47828:19;;;;;;47761:101;;;47710:14;:27;47725:11;47710:27;;;;;;;;;;;;;;;47738:11;47710:40;;;;;;:::i;:::-;;;;;;;;;;;;;:48;47751:6;47710:48;;;;;;;;;;;;;:152;;;;;;;;;;;;;;;;;;;47882:57;47896:11;47909;47922:6;47930:8;47882:57;;;;;;;;;:::i;:::-;;;;;;;;47550:401;;;;46860:1098;;;;:::o;32925:355::-;33072:4;33129:25;33114:40;;;:11;:40;;;;:105;;;;33186:33;33171:48;;;:11;:48;;;;33114:105;:158;;;;33236:36;33260:11;33236:23;:36::i;:::-;33114:158;33094:178;;32925:355;;;:::o;34094:100::-;34148:13;34181:5;34174:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34094:100;:::o;35787:308::-;35908:7;35955:16;35963:7;35955;:16::i;:::-;35933:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;36063:15;:24;36079:7;36063:24;;;;;;;;;;;;;;;;;;;;;36056:31;;35787:308;;;:::o;35310:411::-;35391:13;35407:23;35422:7;35407:14;:23::i;:::-;35391:39;;35455:5;35449:11;;:2;:11;;;;35441:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;35549:5;35533:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;35558:37;35575:5;35582:12;:10;:12::i;:::-;35558:16;:37::i;:::-;35533:62;35511:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;35692:21;35701:2;35705:7;35692:8;:21::i;:::-;35380:341;35310:411;;:::o;47966:435::-;48214:4;48192:27;;:10;:27;;;48170:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;48339:54;48350:11;48363;48376:6;48384:8;48339:10;:54::i;:::-;47966:435;;;;:::o;36706:376::-;36915:41;36934:12;:10;:12::i;:::-;36948:7;36915:18;:41::i;:::-;36893:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;37046:28;37056:4;37062:2;37066:7;37046:9;:28::i;:::-;36706:376;;;:::o;37153:185::-;37291:39;37308:4;37314:2;37318:7;37291:39;;;;;;;;;;;;:16;:39::i;:::-;37153:185;;;:::o;53175:90::-;12817:12;:10;:12::i;:::-;12806:23;;:7;:5;:7::i;:::-;:23;;;12798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53254:3:::1;53244:7;:13;;;;;;;;;;;;:::i;:::-;;53175:90:::0;:::o;33701:326::-;33818:7;33843:13;33859:7;:16;33867:7;33859:16;;;;;;;;;;;;;;;;;;;;;33843:32;;33925:1;33908:19;;:5;:19;;;;33886:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;34014:5;34007:12;;;33701:326;;;:::o;50848:492::-;50927:1;50915:9;:13;;;50907:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;51019:15;;51006:9;50992:23;;:11;;:23;;;;:::i;:::-;:42;;50970:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;51133:2;51121:9;51100:30;;:6;:18;51107:10;51100:18;;;;;;;;;;;;;;;;:30;;;;:::i;:::-;:35;51092:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;51217:1;51196:6;:18;51203:10;51196:18;;;;;;;;;;;;;;;;:22;;;;:::i;:::-;51175:6;:18;51182:10;51175:18;;;;;;;;;;;;;;;:43;;;;51234:9;51246:1;51234:13;;51229:104;51254:9;51249:14;;:1;:14;51229:104;;51285:36;51295:10;51307:11;;:13;;;;;;;;;:::i;:::-;;;;;51285:9;:36::i;:::-;51265:3;;;;;:::i;:::-;;;;51229:104;;;;50848:492;:::o;33344:295::-;33461:7;33525:1;33508:19;;:5;:19;;;;33486:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;33615:9;:16;33625:5;33615:16;;;;;;;;;;;;;;;;33608:23;;33344:295;;;:::o;13237:103::-;12817:12;:10;:12::i;:::-;12806:23;;:7;:5;:7::i;:::-;:23;;;12798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13302:30:::1;13329:1;13302:18;:30::i;:::-;13237:103::o:0;46659:51::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;12586:87::-;12632:7;12659:6;;;;;;;;;;;12652:13;;12586:87;:::o;46550:102::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53349:128::-;12817:12;:10;:12::i;:::-;12806:23;;:7;:5;:7::i;:::-;:23;;;12798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53463:6:::1;53434:26;:35;;;;53349:128:::0;:::o;34263:104::-;34319:13;34352:7;34345:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34263:104;:::o;36167:187::-;36294:52;36313:12;:10;:12::i;:::-;36327:8;36337;36294:18;:52::i;:::-;36167:187;;:::o;50270:21::-;;;;;;;;;;;;;:::o;37409:365::-;37598:41;37617:12;:10;:12::i;:::-;37631:7;37598:18;:41::i;:::-;37576:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;37727:39;37741:4;37747:2;37751:7;37760:5;37727:13;:39::i;:::-;37409:365;;;;:::o;34438:468::-;34556:13;34609:16;34617:7;34609;:16::i;:::-;34587:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;34713:21;34737:10;:8;:10::i;:::-;34713:34;;34802:1;34784:7;34778:21;:25;:120;;;;;;;;;;;;;;;;;34847:7;34856:18;:7;:16;:18::i;:::-;34830:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34778:120;34758:140;;;34438:468;;;:::o;51479:1688::-;51599:16;51607:7;51599;:16::i;:::-;51585:30;;:10;:30;;;51563:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;51749:1;51710:19;:29;51730:8;51710:29;;;;;;;;;;;;;;;:36;;;;;:::i;:::-;;;:40;51688:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;51904:14;51910:7;51904:5;:14::i;:::-;51992:20;52026:10;52038:7;52015:31;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51992:54;;52132:14;52149:1;52132:18;;52161:26;52221:7;52243:26;;52190:90;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52161:119;;52435:18;52459:8;;;;;;;;;;;:21;;;52495:8;52526:4;52546:7;52568:5;52588:13;52459:153;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52434:178;;;52660:10;52647:9;:23;;52625:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;52778:8;;;;;;;;;;;:13;;;52799:9;52824:8;52870:19;:29;52890:8;52870:29;;;;;;;;;;;;;;;52953:7;53009:10;53061:3;53119:13;52778:381;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51552:1615;;;;51479:1688;;:::o;49061:916::-;49285:32;49320:14;:27;49335:11;49320:27;;;;;;;;;;;;;;;49362:11;49320:64;;;;;;:::i;:::-;;;;;;;;;;;;;:72;49385:6;49320:72;;;;;;;;;;;;;49285:107;;49458:1;49450:10;;49425:9;:21;;;:35;;49403:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;49578:9;:23;;;49559:8;;:15;;:42;:107;;;;;49645:9;:21;;;49632:8;;49622:19;;;;;;;:::i;:::-;;;;;;;;:44;49559:107;49537:183;;;;;;;;;;;;:::i;:::-;;;;;;;;;49794:1;49768:9;:23;;:27;;;;49838:1;49830:10;;49806:9;:21;;:34;;;;49909:4;:16;;;49926:11;49939;49952:6;49960:8;;49909:60;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49229:748;49061:916;;;;;:::o;36425:214::-;36567:4;36596:18;:25;36615:5;36596:25;;;;;;;;;;;;;;;:35;36622:8;36596:35;;;;;;;;;;;;;;;;;;;;;;;;;36589:42;;36425:214;;;;:::o;49985:181::-;12817:12;:10;:12::i;:::-;12806:23;;:7;:5;:7::i;:::-;:23;;;12798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50144:14:::1;;50112:19;:29;50132:8;50112:29;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;49985:181:::0;;;:::o;13495:238::-;12817:12;:10;:12::i;:::-;12806:23;;:7;:5;:7::i;:::-;:23;;;12798:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13618:1:::1;13598:22;;:8;:22;;;;13576:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;13697:28;13716:8;13697:18;:28::i;:::-;13495:238:::0;:::o;25512:207::-;25642:4;25686:25;25671:40;;;:11;:40;;;;25664:47;;25512:207;;;:::o;39321:127::-;39386:4;39438:1;39410:30;;:7;:16;39418:7;39410:16;;;;;;;;;;;;;;;;;;;;;:30;;;;39403:37;;39321:127;;;:::o;11289:98::-;11342:7;11369:10;11362:17;;11289:98;:::o;43375:174::-;43477:2;43450:15;:24;43466:7;43450:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43533:7;43529:2;43495:46;;43504:23;43519:7;43504:14;:23::i;:::-;43495:46;;;;;;;;;;;;43375:174;;:::o;53568:424::-;53764:14;53780:15;53824:8;53799:77;;;;;;;;;;;;:::i;:::-;53763:113;;;;53958:26;53968:6;53976:7;53958:9;:26::i;:::-;53733:259;;53568:424;;;;:::o;39615:452::-;39744:4;39788:16;39796:7;39788;:16::i;:::-;39766:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;39887:13;39903:23;39918:7;39903:14;:23::i;:::-;39887:39;;39956:5;39945:16;;:7;:16;;;:64;;;;40002:7;39978:31;;:20;39990:7;39978:11;:20::i;:::-;:31;;;39945:64;:113;;;;40026:32;40043:5;40050:7;40026:16;:32::i;:::-;39945:113;39937:122;;;39615:452;;;;:::o;42642:615::-;42815:4;42788:31;;:23;42803:7;42788:14;:23::i;:::-;:31;;;42766:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;42921:1;42907:16;;:2;:16;;;;42899:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;42977:39;42998:4;43004:2;43008:7;42977:20;:39::i;:::-;43081:29;43098:1;43102:7;43081:8;:29::i;:::-;43142:1;43123:9;:15;43133:4;43123:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;43171:1;43154:9;:13;43164:2;43154:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;43202:2;43183:7;:16;43191:7;43183:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;43241:7;43237:2;43222:27;;43231:4;43222:27;;;;;;;;;;;;42642:615;;;:::o;40409:110::-;40485:26;40495:2;40499:7;40485:26;;;;;;;;;;;;:9;:26::i;:::-;40409:110;;:::o;13893:191::-;13967:16;13986:6;;;;;;;;;;;13967:25;;14012:8;14003:6;;:17;;;;;;;;;;;;;;;;;;14067:8;14036:40;;14057:8;14036:40;;;;;;;;;;;;13956:128;13893:191;:::o;43691:315::-;43846:8;43837:17;;:5;:17;;;;43829:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;43933:8;43895:18;:25;43914:5;43895:25;;;;;;;;;;;;;;;:35;43921:8;43895:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;43979:8;43957:41;;43972:5;43957:41;;;43989:8;43957:41;;;;;;:::i;:::-;;;;;;;;43691:315;;;:::o;38656:352::-;38813:28;38823:4;38829:2;38833:7;38813:9;:28::i;:::-;38874:48;38897:4;38903:2;38907:7;38916:5;38874:22;:48::i;:::-;38852:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;38656:352;;;;:::o;54000:100::-;54052:13;54085:7;54078:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54000:100;:::o;8821:723::-;8877:13;9107:1;9098:5;:10;9094:53;;;9125:10;;;;;;;;;;;;;;;;;;;;;9094:53;9157:12;9172:5;9157:20;;9188:14;9213:78;9228:1;9220:4;:9;9213:78;;9246:8;;;;;:::i;:::-;;;;9277:2;9269:10;;;;;:::i;:::-;;;9213:78;;;9301:19;9333:6;9323:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9301:39;;9351:154;9367:1;9358:5;:10;9351:154;;9395:1;9385:11;;;;;:::i;:::-;;;9462:2;9454:5;:10;;;;:::i;:::-;9441:2;:24;;;;:::i;:::-;9428:39;;9411:6;9418;9411:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9491:2;9482:11;;;;;:::i;:::-;;;9351:154;;;9529:6;9515:21;;;;;8821:723;;;;:::o;41945:360::-;42005:13;42021:23;42036:7;42021:14;:23::i;:::-;42005:39;;42057:48;42078:5;42093:1;42097:7;42057:20;:48::i;:::-;42146:29;42163:1;42167:7;42146:8;:29::i;:::-;42208:1;42188:9;:16;42198:5;42188:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;42227:7;:16;42235:7;42227:16;;;;;;;;;;;;42220:23;;;;;;;;;;;42289:7;42285:1;42261:36;;42270:5;42261:36;;;;;;;;;;;;41994:311;41945:360;:::o;46123:126::-;;;;:::o;40746:321::-;40876:18;40882:2;40886:7;40876:5;:18::i;:::-;40927:54;40958:1;40962:2;40966:7;40975:5;40927:22;:54::i;:::-;40905:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;40746:321;;;:::o;44571:980::-;44726:4;44747:15;:2;:13;;;:15::i;:::-;44743:801;;;44816:2;44800:36;;;44859:12;:10;:12::i;:::-;44894:4;44921:7;44951:5;44800:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44779:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45175:1;45158:6;:13;:18;45154:320;;;45201:108;;;;;;;;;;:::i;:::-;;;;;;;;45154:320;45424:6;45418:13;45409:6;45405:2;45401:15;45394:38;44779:710;45049:41;;;45039:51;;;:6;:51;;;;45032:58;;;;;44743:801;45528:4;45521:11;;44571:980;;;;;;;:::o;41403:313::-;41497:1;41483:16;;:2;:16;;;;41475:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;41549:45;41578:1;41582:2;41586:7;41549:20;:45::i;:::-;41624:1;41607:9;:13;41617:2;41607:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;41655:2;41636:7;:16;41644:7;41636:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;41700:7;41696:2;41675:33;;41692:1;41675:33;;;;;;;;;;;;41403:313;;:::o;14909:387::-;14969:4;15177:12;15244:7;15232:20;15224:28;;15287:1;15280:4;:8;15273:15;;;14909:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:159::-;1051:5;1082:6;1076:13;1067:22;;1098:41;1133:5;1098:41;:::i;:::-;986:159;;;;:::o;1151:133::-;1194:5;1232:6;1219:20;1210:29;;1248:30;1272:5;1248:30;:::i;:::-;1151:133;;;;:::o;1290:137::-;1335:5;1373:6;1360:20;1351:29;;1389:32;1415:5;1389:32;:::i;:::-;1290:137;;;;:::o;1433:141::-;1489:5;1520:6;1514:13;1505:22;;1536:32;1562:5;1536:32;:::i;:::-;1433:141;;;;:::o;1593:552::-;1650:8;1660:6;1710:3;1703:4;1695:6;1691:17;1687:27;1677:122;;1718:79;;:::i;:::-;1677:122;1831:6;1818:20;1808:30;;1861:18;1853:6;1850:30;1847:117;;;1883:79;;:::i;:::-;1847:117;1997:4;1989:6;1985:17;1973:29;;2051:3;2043:4;2035:6;2031:17;2021:8;2017:32;2014:41;2011:128;;;2058:79;;:::i;:::-;2011:128;1593:552;;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:137::-;2913:5;2951:6;2938:20;2929:29;;2967:32;2993:5;2967:32;:::i;:::-;2868:137;;;;:::o;3011:139::-;3057:5;3095:6;3082:20;3073:29;;3111:33;3138:5;3111:33;:::i;:::-;3011:139;;;;:::o;3156:143::-;3213:5;3244:6;3238:13;3229:22;;3260:33;3287:5;3260:33;:::i;:::-;3156:143;;;;:::o;3305:137::-;3350:5;3388:6;3375:20;3366:29;;3404:32;3430:5;3404:32;:::i;:::-;3305:137;;;;:::o;3448:135::-;3492:5;3530:6;3517:20;3508:29;;3546:31;3571:5;3546:31;:::i;:::-;3448:135;;;;:::o;3589:329::-;3648:6;3697:2;3685:9;3676:7;3672:23;3668:32;3665:119;;;3703:79;;:::i;:::-;3665:119;3823:1;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3794:117;3589:329;;;;:::o;3924:523::-;4011:6;4019;4068:2;4056:9;4047:7;4043:23;4039:32;4036:119;;;4074:79;;:::i;:::-;4036:119;4194:1;4219:72;4283:7;4274:6;4263:9;4259:22;4219:72;:::i;:::-;4209:82;;4165:136;4340:2;4366:64;4422:7;4413:6;4402:9;4398:22;4366:64;:::i;:::-;4356:74;;4311:129;3924:523;;;;;:::o;4453:474::-;4521:6;4529;4578:2;4566:9;4557:7;4553:23;4549:32;4546:119;;;4584:79;;:::i;:::-;4546:119;4704:1;4729:53;4774:7;4765:6;4754:9;4750:22;4729:53;:::i;:::-;4719:63;;4675:117;4831:2;4857:53;4902:7;4893:6;4882:9;4878:22;4857:53;:::i;:::-;4847:63;;4802:118;4453:474;;;;;:::o;4933:619::-;5010:6;5018;5026;5075:2;5063:9;5054:7;5050:23;5046:32;5043:119;;;5081:79;;:::i;:::-;5043:119;5201:1;5226:53;5271:7;5262:6;5251:9;5247:22;5226:53;:::i;:::-;5216:63;;5172:117;5328:2;5354:53;5399:7;5390:6;5379:9;5375:22;5354:53;:::i;:::-;5344:63;;5299:118;5456:2;5482:53;5527:7;5518:6;5507:9;5503:22;5482:53;:::i;:::-;5472:63;;5427:118;4933:619;;;;;:::o;5558:943::-;5653:6;5661;5669;5677;5726:3;5714:9;5705:7;5701:23;5697:33;5694:120;;;5733:79;;:::i;:::-;5694:120;5853:1;5878:53;5923:7;5914:6;5903:9;5899:22;5878:53;:::i;:::-;5868:63;;5824:117;5980:2;6006:53;6051:7;6042:6;6031:9;6027:22;6006:53;:::i;:::-;5996:63;;5951:118;6108:2;6134:53;6179:7;6170:6;6159:9;6155:22;6134:53;:::i;:::-;6124:63;;6079:118;6264:2;6253:9;6249:18;6236:32;6295:18;6287:6;6284:30;6281:117;;;6317:79;;:::i;:::-;6281:117;6422:62;6476:7;6467:6;6456:9;6452:22;6422:62;:::i;:::-;6412:72;;6207:287;5558:943;;;;;;;:::o;6507:468::-;6572:6;6580;6629:2;6617:9;6608:7;6604:23;6600:32;6597:119;;;6635:79;;:::i;:::-;6597:119;6755:1;6780:53;6825:7;6816:6;6805:9;6801:22;6780:53;:::i;:::-;6770:63;;6726:117;6882:2;6908:50;6950:7;6941:6;6930:9;6926:22;6908:50;:::i;:::-;6898:60;;6853:115;6507:468;;;;;:::o;6981:474::-;7049:6;7057;7106:2;7094:9;7085:7;7081:23;7077:32;7074:119;;;7112:79;;:::i;:::-;7074:119;7232:1;7257:53;7302:7;7293:6;7282:9;7278:22;7257:53;:::i;:::-;7247:63;;7203:117;7359:2;7385:53;7430:7;7421:6;7410:9;7406:22;7385:53;:::i;:::-;7375:63;;7330:118;6981:474;;;;;:::o;7461:327::-;7519:6;7568:2;7556:9;7547:7;7543:23;7539:32;7536:119;;;7574:79;;:::i;:::-;7536:119;7694:1;7719:52;7763:7;7754:6;7743:9;7739:22;7719:52;:::i;:::-;7709:62;;7665:116;7461:327;;;;:::o;7794:349::-;7863:6;7912:2;7900:9;7891:7;7887:23;7883:32;7880:119;;;7918:79;;:::i;:::-;7880:119;8038:1;8063:63;8118:7;8109:6;8098:9;8094:22;8063:63;:::i;:::-;8053:73;;8009:127;7794:349;;;;:::o;8149:509::-;8218:6;8267:2;8255:9;8246:7;8242:23;8238:32;8235:119;;;8273:79;;:::i;:::-;8235:119;8421:1;8410:9;8406:17;8393:31;8451:18;8443:6;8440:30;8437:117;;;8473:79;;:::i;:::-;8437:117;8578:63;8633:7;8624:6;8613:9;8609:22;8578:63;:::i;:::-;8568:73;;8364:287;8149:509;;;;:::o;8664:327::-;8722:6;8771:2;8759:9;8750:7;8746:23;8742:32;8739:119;;;8777:79;;:::i;:::-;8739:119;8897:1;8922:52;8966:7;8957:6;8946:9;8942:22;8922:52;:::i;:::-;8912:62;;8868:116;8664:327;;;;:::o;8997:670::-;9075:6;9083;9091;9140:2;9128:9;9119:7;9115:23;9111:32;9108:119;;;9146:79;;:::i;:::-;9108:119;9266:1;9291:52;9335:7;9326:6;9315:9;9311:22;9291:52;:::i;:::-;9281:62;;9237:116;9420:2;9409:9;9405:18;9392:32;9451:18;9443:6;9440:30;9437:117;;;9473:79;;:::i;:::-;9437:117;9586:64;9642:7;9633:6;9622:9;9618:22;9586:64;:::i;:::-;9568:82;;;;9363:297;8997:670;;;;;:::o;9673:795::-;9758:6;9766;9774;9823:2;9811:9;9802:7;9798:23;9794:32;9791:119;;;9829:79;;:::i;:::-;9791:119;9949:1;9974:52;10018:7;10009:6;9998:9;9994:22;9974:52;:::i;:::-;9964:62;;9920:116;10103:2;10092:9;10088:18;10075:32;10134:18;10126:6;10123:30;10120:117;;;10156:79;;:::i;:::-;10120:117;10261:62;10315:7;10306:6;10295:9;10291:22;10261:62;:::i;:::-;10251:72;;10046:287;10372:2;10398:53;10443:7;10434:6;10423:9;10419:22;10398:53;:::i;:::-;10388:63;;10343:118;9673:795;;;;;:::o;10474:1137::-;10578:6;10586;10594;10602;10610;10659:3;10647:9;10638:7;10634:23;10630:33;10627:120;;;10666:79;;:::i;:::-;10627:120;10786:1;10811:52;10855:7;10846:6;10835:9;10831:22;10811:52;:::i;:::-;10801:62;;10757:116;10940:2;10929:9;10925:18;10912:32;10971:18;10963:6;10960:30;10957:117;;;10993:79;;:::i;:::-;10957:117;11098:62;11152:7;11143:6;11132:9;11128:22;11098:62;:::i;:::-;11088:72;;10883:287;11209:2;11235:52;11279:7;11270:6;11259:9;11255:22;11235:52;:::i;:::-;11225:62;;11180:117;11364:2;11353:9;11349:18;11336:32;11395:18;11387:6;11384:30;11381:117;;;11417:79;;:::i;:::-;11381:117;11530:64;11586:7;11577:6;11566:9;11562:22;11530:64;:::i;:::-;11512:82;;;;11307:297;10474:1137;;;;;;;;:::o;11617:1117::-;11719:6;11727;11735;11743;11792:3;11780:9;11771:7;11767:23;11763:33;11760:120;;;11799:79;;:::i;:::-;11760:120;11919:1;11944:52;11988:7;11979:6;11968:9;11964:22;11944:52;:::i;:::-;11934:62;;11890:116;12073:2;12062:9;12058:18;12045:32;12104:18;12096:6;12093:30;12090:117;;;12126:79;;:::i;:::-;12090:117;12231:62;12285:7;12276:6;12265:9;12261:22;12231:62;:::i;:::-;12221:72;;12016:287;12342:2;12368:52;12412:7;12403:6;12392:9;12388:22;12368:52;:::i;:::-;12358:62;;12313:117;12497:2;12486:9;12482:18;12469:32;12528:18;12520:6;12517:30;12514:117;;;12550:79;;:::i;:::-;12514:117;12655:62;12709:7;12700:6;12689:9;12685:22;12655:62;:::i;:::-;12645:72;;12440:287;11617:1117;;;;;;;:::o;12740:472::-;12807:6;12815;12864:2;12852:9;12843:7;12839:23;12835:32;12832:119;;;12870:79;;:::i;:::-;12832:119;12990:1;13015:52;13059:7;13050:6;13039:9;13035:22;13015:52;:::i;:::-;13005:62;;12961:116;13116:2;13142:53;13187:7;13178:6;13167:9;13163:22;13142:53;:::i;:::-;13132:63;;13087:118;12740:472;;;;;:::o;13218:329::-;13277:6;13326:2;13314:9;13305:7;13301:23;13297:32;13294:119;;;13332:79;;:::i;:::-;13294:119;13452:1;13477:53;13522:7;13513:6;13502:9;13498:22;13477:53;:::i;:::-;13467:63;;13423:117;13218:329;;;;:::o;13553:507::-;13632:6;13640;13689:2;13677:9;13668:7;13664:23;13660:32;13657:119;;;13695:79;;:::i;:::-;13657:119;13815:1;13840:64;13896:7;13887:6;13876:9;13872:22;13840:64;:::i;:::-;13830:74;;13786:128;13953:2;13979:64;14035:7;14026:6;14015:9;14011:22;13979:64;:::i;:::-;13969:74;;13924:129;13553:507;;;;;:::o;14066:325::-;14123:6;14172:2;14160:9;14151:7;14147:23;14143:32;14140:119;;;14178:79;;:::i;:::-;14140:119;14298:1;14323:51;14366:7;14357:6;14346:9;14342:22;14323:51;:::i;:::-;14313:61;;14269:115;14066:325;;;;:::o;14397:142::-;14500:32;14526:5;14500:32;:::i;:::-;14495:3;14488:45;14397:142;;:::o;14545:118::-;14632:24;14650:5;14632:24;:::i;:::-;14627:3;14620:37;14545:118;;:::o;14669:109::-;14750:21;14765:5;14750:21;:::i;:::-;14745:3;14738:34;14669:109;;:::o;14784:118::-;14871:24;14889:5;14871:24;:::i;:::-;14866:3;14859:37;14784:118;;:::o;14930:301::-;15026:3;15047:70;15110:6;15105:3;15047:70;:::i;:::-;15040:77;;15127:43;15163:6;15158:3;15151:5;15127:43;:::i;:::-;15195:29;15217:6;15195:29;:::i;:::-;15190:3;15186:39;15179:46;;14930:301;;;;;:::o;15259:314::-;15373:3;15394:88;15475:6;15470:3;15394:88;:::i;:::-;15387:95;;15492:43;15528:6;15523:3;15516:5;15492:43;:::i;:::-;15560:6;15555:3;15551:16;15544:23;;15259:314;;;;;:::o;15579:360::-;15665:3;15693:38;15725:5;15693:38;:::i;:::-;15747:70;15810:6;15805:3;15747:70;:::i;:::-;15740:77;;15826:52;15871:6;15866:3;15859:4;15852:5;15848:16;15826:52;:::i;:::-;15903:29;15925:6;15903:29;:::i;:::-;15898:3;15894:39;15887:46;;15669:270;15579:360;;;;:::o;15945:373::-;16049:3;16077:38;16109:5;16077:38;:::i;:::-;16131:88;16212:6;16207:3;16131:88;:::i;:::-;16124:95;;16228:52;16273:6;16268:3;16261:4;16254:5;16250:16;16228:52;:::i;:::-;16305:6;16300:3;16296:16;16289:23;;16053:265;15945:373;;;;:::o;16346:798::-;16429:3;16466:5;16460:12;16495:36;16521:9;16495:36;:::i;:::-;16547:70;16610:6;16605:3;16547:70;:::i;:::-;16540:77;;16648:1;16637:9;16633:17;16664:1;16659:135;;;;16808:1;16803:335;;;;16626:512;;16659:135;16743:4;16739:9;16728;16724:25;16719:3;16712:38;16779:4;16774:3;16770:14;16763:21;;16659:135;;16803:335;16870:37;16901:5;16870:37;:::i;:::-;16929:1;16943:154;16957:6;16954:1;16951:13;16943:154;;;17031:7;17025:14;17021:1;17016:3;17012:11;17005:35;17081:1;17072:7;17068:15;17057:26;;16979:4;16976:1;16972:12;16967:17;;16943:154;;;17126:1;17121:3;17117:11;17110:18;;16810:328;;16626:512;;16433:711;;16346:798;;;;:::o;17172:841::-;17273:3;17310:5;17304:12;17339:36;17365:9;17339:36;:::i;:::-;17391:88;17472:6;17467:3;17391:88;:::i;:::-;17384:95;;17510:1;17499:9;17495:17;17526:1;17521:137;;;;17672:1;17667:340;;;;17488:519;;17521:137;17605:4;17601:9;17590;17586:25;17581:3;17574:38;17641:6;17636:3;17632:16;17625:23;;17521:137;;17667:340;17734:37;17765:5;17734:37;:::i;:::-;17793:1;17807:154;17821:6;17818:1;17815:13;17807:154;;;17895:7;17889:14;17885:1;17880:3;17876:11;17869:35;17945:1;17936:7;17932:15;17921:26;;17843:4;17840:1;17836:12;17831:17;;17807:154;;;17990:6;17985:3;17981:16;17974:23;;17674:333;;17488:519;;17277:736;;17172:841;;;;:::o;18019:364::-;18107:3;18135:39;18168:5;18135:39;:::i;:::-;18190:71;18254:6;18249:3;18190:71;:::i;:::-;18183:78;;18270:52;18315:6;18310:3;18303:4;18296:5;18292:16;18270:52;:::i;:::-;18347:29;18369:6;18347:29;:::i;:::-;18342:3;18338:39;18331:46;;18111:272;18019:364;;;;:::o;18389:377::-;18495:3;18523:39;18556:5;18523:39;:::i;:::-;18578:89;18660:6;18655:3;18578:89;:::i;:::-;18571:96;;18676:52;18721:6;18716:3;18709:4;18702:5;18698:16;18676:52;:::i;:::-;18753:6;18748:3;18744:16;18737:23;;18499:267;18389:377;;;;:::o;18772:366::-;18914:3;18935:67;18999:2;18994:3;18935:67;:::i;:::-;18928:74;;19011:93;19100:3;19011:93;:::i;:::-;19129:2;19124:3;19120:12;19113:19;;18772:366;;;:::o;19144:::-;19286:3;19307:67;19371:2;19366:3;19307:67;:::i;:::-;19300:74;;19383:93;19472:3;19383:93;:::i;:::-;19501:2;19496:3;19492:12;19485:19;;19144:366;;;:::o;19516:::-;19658:3;19679:67;19743:2;19738:3;19679:67;:::i;:::-;19672:74;;19755:93;19844:3;19755:93;:::i;:::-;19873:2;19868:3;19864:12;19857:19;;19516:366;;;:::o;19888:::-;20030:3;20051:67;20115:2;20110:3;20051:67;:::i;:::-;20044:74;;20127:93;20216:3;20127:93;:::i;:::-;20245:2;20240:3;20236:12;20229:19;;19888:366;;;:::o;20260:::-;20402:3;20423:67;20487:2;20482:3;20423:67;:::i;:::-;20416:74;;20499:93;20588:3;20499:93;:::i;:::-;20617:2;20612:3;20608:12;20601:19;;20260:366;;;:::o;20632:::-;20774:3;20795:67;20859:2;20854:3;20795:67;:::i;:::-;20788:74;;20871:93;20960:3;20871:93;:::i;:::-;20989:2;20984:3;20980:12;20973:19;;20632:366;;;:::o;21004:::-;21146:3;21167:67;21231:2;21226:3;21167:67;:::i;:::-;21160:74;;21243:93;21332:3;21243:93;:::i;:::-;21361:2;21356:3;21352:12;21345:19;;21004:366;;;:::o;21376:::-;21518:3;21539:67;21603:2;21598:3;21539:67;:::i;:::-;21532:74;;21615:93;21704:3;21615:93;:::i;:::-;21733:2;21728:3;21724:12;21717:19;;21376:366;;;:::o;21748:::-;21890:3;21911:67;21975:2;21970:3;21911:67;:::i;:::-;21904:74;;21987:93;22076:3;21987:93;:::i;:::-;22105:2;22100:3;22096:12;22089:19;;21748:366;;;:::o;22120:::-;22262:3;22283:67;22347:2;22342:3;22283:67;:::i;:::-;22276:74;;22359:93;22448:3;22359:93;:::i;:::-;22477:2;22472:3;22468:12;22461:19;;22120:366;;;:::o;22492:::-;22634:3;22655:67;22719:2;22714:3;22655:67;:::i;:::-;22648:74;;22731:93;22820:3;22731:93;:::i;:::-;22849:2;22844:3;22840:12;22833:19;;22492:366;;;:::o;22864:::-;23006:3;23027:67;23091:2;23086:3;23027:67;:::i;:::-;23020:74;;23103:93;23192:3;23103:93;:::i;:::-;23221:2;23216:3;23212:12;23205:19;;22864:366;;;:::o;23236:::-;23378:3;23399:67;23463:2;23458:3;23399:67;:::i;:::-;23392:74;;23475:93;23564:3;23475:93;:::i;:::-;23593:2;23588:3;23584:12;23577:19;;23236:366;;;:::o;23608:::-;23750:3;23771:67;23835:2;23830:3;23771:67;:::i;:::-;23764:74;;23847:93;23936:3;23847:93;:::i;:::-;23965:2;23960:3;23956:12;23949:19;;23608:366;;;:::o;23980:::-;24122:3;24143:67;24207:2;24202:3;24143:67;:::i;:::-;24136:74;;24219:93;24308:3;24219:93;:::i;:::-;24337:2;24332:3;24328:12;24321:19;;23980:366;;;:::o;24352:::-;24494:3;24515:67;24579:2;24574:3;24515:67;:::i;:::-;24508:74;;24591:93;24680:3;24591:93;:::i;:::-;24709:2;24704:3;24700:12;24693:19;;24352:366;;;:::o;24724:::-;24866:3;24887:67;24951:2;24946:3;24887:67;:::i;:::-;24880:74;;24963:93;25052:3;24963:93;:::i;:::-;25081:2;25076:3;25072:12;25065:19;;24724:366;;;:::o;25096:::-;25238:3;25259:67;25323:2;25318:3;25259:67;:::i;:::-;25252:74;;25335:93;25424:3;25335:93;:::i;:::-;25453:2;25448:3;25444:12;25437:19;;25096:366;;;:::o;25468:::-;25610:3;25631:67;25695:2;25690:3;25631:67;:::i;:::-;25624:74;;25707:93;25796:3;25707:93;:::i;:::-;25825:2;25820:3;25816:12;25809:19;;25468:366;;;:::o;25840:::-;25982:3;26003:67;26067:2;26062:3;26003:67;:::i;:::-;25996:74;;26079:93;26168:3;26079:93;:::i;:::-;26197:2;26192:3;26188:12;26181:19;;25840:366;;;:::o;26212:::-;26354:3;26375:67;26439:2;26434:3;26375:67;:::i;:::-;26368:74;;26451:93;26540:3;26451:93;:::i;:::-;26569:2;26564:3;26560:12;26553:19;;26212:366;;;:::o;26584:::-;26726:3;26747:67;26811:2;26806:3;26747:67;:::i;:::-;26740:74;;26823:93;26912:3;26823:93;:::i;:::-;26941:2;26936:3;26932:12;26925:19;;26584:366;;;:::o;26956:::-;27098:3;27119:67;27183:2;27178:3;27119:67;:::i;:::-;27112:74;;27195:93;27284:3;27195:93;:::i;:::-;27313:2;27308:3;27304:12;27297:19;;26956:366;;;:::o;27328:::-;27470:3;27491:67;27555:2;27550:3;27491:67;:::i;:::-;27484:74;;27567:93;27656:3;27567:93;:::i;:::-;27685:2;27680:3;27676:12;27669:19;;27328:366;;;:::o;27700:::-;27842:3;27863:67;27927:2;27922:3;27863:67;:::i;:::-;27856:74;;27939:93;28028:3;27939:93;:::i;:::-;28057:2;28052:3;28048:12;28041:19;;27700:366;;;:::o;28072:115::-;28157:23;28174:5;28157:23;:::i;:::-;28152:3;28145:36;28072:115;;:::o;28193:153::-;28296:43;28315:23;28332:5;28315:23;:::i;:::-;28296:43;:::i;:::-;28291:3;28284:56;28193:153;;:::o;28352:118::-;28439:24;28457:5;28439:24;:::i;:::-;28434:3;28427:37;28352:118;;:::o;28476:157::-;28581:45;28601:24;28619:5;28601:24;:::i;:::-;28581:45;:::i;:::-;28576:3;28569:58;28476:157;;:::o;28639:115::-;28724:23;28741:5;28724:23;:::i;:::-;28719:3;28712:36;28639:115;;:::o;28760:291::-;28900:3;28922:103;29021:3;29012:6;29004;28922:103;:::i;:::-;28915:110;;29042:3;29035:10;;28760:291;;;;;:::o;29057:271::-;29187:3;29209:93;29298:3;29289:6;29209:93;:::i;:::-;29202:100;;29319:3;29312:10;;29057:271;;;;:::o;29334:265::-;29461:3;29483:90;29569:3;29560:6;29483:90;:::i;:::-;29476:97;;29590:3;29583:10;;29334:265;;;;:::o;29605:435::-;29785:3;29807:95;29898:3;29889:6;29807:95;:::i;:::-;29800:102;;29919:95;30010:3;30001:6;29919:95;:::i;:::-;29912:102;;30031:3;30024:10;;29605:435;;;;;:::o;30046:392::-;30184:3;30199:73;30268:3;30259:6;30199:73;:::i;:::-;30297:1;30292:3;30288:11;30281:18;;30309:75;30380:3;30371:6;30309:75;:::i;:::-;30409:2;30404:3;30400:12;30393:19;;30429:3;30422:10;;30046:392;;;;;:::o;30444:222::-;30537:4;30575:2;30564:9;30560:18;30552:26;;30588:71;30656:1;30645:9;30641:17;30632:6;30588:71;:::i;:::-;30444:222;;;;:::o;30672:640::-;30867:4;30905:3;30894:9;30890:19;30882:27;;30919:71;30987:1;30976:9;30972:17;30963:6;30919:71;:::i;:::-;31000:72;31068:2;31057:9;31053:18;31044:6;31000:72;:::i;:::-;31082;31150:2;31139:9;31135:18;31126:6;31082:72;:::i;:::-;31201:9;31195:4;31191:20;31186:2;31175:9;31171:18;31164:48;31229:76;31300:4;31291:6;31229:76;:::i;:::-;31221:84;;30672:640;;;;;;;:::o;31318:332::-;31439:4;31477:2;31466:9;31462:18;31454:26;;31490:71;31558:1;31547:9;31543:17;31534:6;31490:71;:::i;:::-;31571:72;31639:2;31628:9;31624:18;31615:6;31571:72;:::i;:::-;31318:332;;;;;:::o;31656:210::-;31743:4;31781:2;31770:9;31766:18;31758:26;;31794:65;31856:1;31845:9;31841:17;31832:6;31794:65;:::i;:::-;31656:210;;;;:::o;31872:309::-;31983:4;32021:2;32010:9;32006:18;31998:26;;32070:9;32064:4;32060:20;32056:1;32045:9;32041:17;32034:47;32098:76;32169:4;32160:6;32098:76;:::i;:::-;32090:84;;31872:309;;;;:::o;32187:313::-;32300:4;32338:2;32327:9;32323:18;32315:26;;32387:9;32381:4;32377:20;32373:1;32362:9;32358:17;32351:47;32415:78;32488:4;32479:6;32415:78;:::i;:::-;32407:86;;32187:313;;;;:::o;32506:419::-;32672:4;32710:2;32699:9;32695:18;32687:26;;32759:9;32753:4;32749:20;32745:1;32734:9;32730:17;32723:47;32787:131;32913:4;32787:131;:::i;:::-;32779:139;;32506:419;;;:::o;32931:::-;33097:4;33135:2;33124:9;33120:18;33112:26;;33184:9;33178:4;33174:20;33170:1;33159:9;33155:17;33148:47;33212:131;33338:4;33212:131;:::i;:::-;33204:139;;32931:419;;;:::o;33356:::-;33522:4;33560:2;33549:9;33545:18;33537:26;;33609:9;33603:4;33599:20;33595:1;33584:9;33580:17;33573:47;33637:131;33763:4;33637:131;:::i;:::-;33629:139;;33356:419;;;:::o;33781:::-;33947:4;33985:2;33974:9;33970:18;33962:26;;34034:9;34028:4;34024:20;34020:1;34009:9;34005:17;33998:47;34062:131;34188:4;34062:131;:::i;:::-;34054:139;;33781:419;;;:::o;34206:::-;34372:4;34410:2;34399:9;34395:18;34387:26;;34459:9;34453:4;34449:20;34445:1;34434:9;34430:17;34423:47;34487:131;34613:4;34487:131;:::i;:::-;34479:139;;34206:419;;;:::o;34631:::-;34797:4;34835:2;34824:9;34820:18;34812:26;;34884:9;34878:4;34874:20;34870:1;34859:9;34855:17;34848:47;34912:131;35038:4;34912:131;:::i;:::-;34904:139;;34631:419;;;:::o;35056:::-;35222:4;35260:2;35249:9;35245:18;35237:26;;35309:9;35303:4;35299:20;35295:1;35284:9;35280:17;35273:47;35337:131;35463:4;35337:131;:::i;:::-;35329:139;;35056:419;;;:::o;35481:::-;35647:4;35685:2;35674:9;35670:18;35662:26;;35734:9;35728:4;35724:20;35720:1;35709:9;35705:17;35698:47;35762:131;35888:4;35762:131;:::i;:::-;35754:139;;35481:419;;;:::o;35906:::-;36072:4;36110:2;36099:9;36095:18;36087:26;;36159:9;36153:4;36149:20;36145:1;36134:9;36130:17;36123:47;36187:131;36313:4;36187:131;:::i;:::-;36179:139;;35906:419;;;:::o;36331:::-;36497:4;36535:2;36524:9;36520:18;36512:26;;36584:9;36578:4;36574:20;36570:1;36559:9;36555:17;36548:47;36612:131;36738:4;36612:131;:::i;:::-;36604:139;;36331:419;;;:::o;36756:::-;36922:4;36960:2;36949:9;36945:18;36937:26;;37009:9;37003:4;36999:20;36995:1;36984:9;36980:17;36973:47;37037:131;37163:4;37037:131;:::i;:::-;37029:139;;36756:419;;;:::o;37181:::-;37347:4;37385:2;37374:9;37370:18;37362:26;;37434:9;37428:4;37424:20;37420:1;37409:9;37405:17;37398:47;37462:131;37588:4;37462:131;:::i;:::-;37454:139;;37181:419;;;:::o;37606:::-;37772:4;37810:2;37799:9;37795:18;37787:26;;37859:9;37853:4;37849:20;37845:1;37834:9;37830:17;37823:47;37887:131;38013:4;37887:131;:::i;:::-;37879:139;;37606:419;;;:::o;38031:::-;38197:4;38235:2;38224:9;38220:18;38212:26;;38284:9;38278:4;38274:20;38270:1;38259:9;38255:17;38248:47;38312:131;38438:4;38312:131;:::i;:::-;38304:139;;38031:419;;;:::o;38456:::-;38622:4;38660:2;38649:9;38645:18;38637:26;;38709:9;38703:4;38699:20;38695:1;38684:9;38680:17;38673:47;38737:131;38863:4;38737:131;:::i;:::-;38729:139;;38456:419;;;:::o;38881:::-;39047:4;39085:2;39074:9;39070:18;39062:26;;39134:9;39128:4;39124:20;39120:1;39109:9;39105:17;39098:47;39162:131;39288:4;39162:131;:::i;:::-;39154:139;;38881:419;;;:::o;39306:::-;39472:4;39510:2;39499:9;39495:18;39487:26;;39559:9;39553:4;39549:20;39545:1;39534:9;39530:17;39523:47;39587:131;39713:4;39587:131;:::i;:::-;39579:139;;39306:419;;;:::o;39731:::-;39897:4;39935:2;39924:9;39920:18;39912:26;;39984:9;39978:4;39974:20;39970:1;39959:9;39955:17;39948:47;40012:131;40138:4;40012:131;:::i;:::-;40004:139;;39731:419;;;:::o;40156:::-;40322:4;40360:2;40349:9;40345:18;40337:26;;40409:9;40403:4;40399:20;40395:1;40384:9;40380:17;40373:47;40437:131;40563:4;40437:131;:::i;:::-;40429:139;;40156:419;;;:::o;40581:::-;40747:4;40785:2;40774:9;40770:18;40762:26;;40834:9;40828:4;40824:20;40820:1;40809:9;40805:17;40798:47;40862:131;40988:4;40862:131;:::i;:::-;40854:139;;40581:419;;;:::o;41006:::-;41172:4;41210:2;41199:9;41195:18;41187:26;;41259:9;41253:4;41249:20;41245:1;41234:9;41230:17;41223:47;41287:131;41413:4;41287:131;:::i;:::-;41279:139;;41006:419;;;:::o;41431:::-;41597:4;41635:2;41624:9;41620:18;41612:26;;41684:9;41678:4;41674:20;41670:1;41659:9;41655:17;41648:47;41712:131;41838:4;41712:131;:::i;:::-;41704:139;;41431:419;;;:::o;41856:::-;42022:4;42060:2;42049:9;42045:18;42037:26;;42109:9;42103:4;42099:20;42095:1;42084:9;42080:17;42073:47;42137:131;42263:4;42137:131;:::i;:::-;42129:139;;41856:419;;;:::o;42281:::-;42447:4;42485:2;42474:9;42470:18;42462:26;;42534:9;42528:4;42524:20;42520:1;42509:9;42505:17;42498:47;42562:131;42688:4;42562:131;:::i;:::-;42554:139;;42281:419;;;:::o;42706:::-;42872:4;42910:2;42899:9;42895:18;42887:26;;42959:9;42953:4;42949:20;42945:1;42934:9;42930:17;42923:47;42987:131;43113:4;42987:131;:::i;:::-;42979:139;;42706:419;;;:::o;43131:822::-;43364:4;43402:3;43391:9;43387:19;43379:27;;43416:69;43482:1;43471:9;43467:17;43458:6;43416:69;:::i;:::-;43495:72;43563:2;43552:9;43548:18;43539:6;43495:72;:::i;:::-;43614:9;43608:4;43604:20;43599:2;43588:9;43584:18;43577:48;43642:76;43713:4;43704:6;43642:76;:::i;:::-;43634:84;;43728:66;43790:2;43779:9;43775:18;43766:6;43728:66;:::i;:::-;43842:9;43836:4;43832:20;43826:3;43815:9;43811:19;43804:49;43870:76;43941:4;43932:6;43870:76;:::i;:::-;43862:84;;43131:822;;;;;;;;:::o;43959:739::-;44178:4;44216:3;44205:9;44201:19;44193:27;;44230:69;44296:1;44285:9;44281:17;44272:6;44230:69;:::i;:::-;44346:9;44340:4;44336:20;44331:2;44320:9;44316:18;44309:48;44374:76;44445:4;44436:6;44374:76;:::i;:::-;44366:84;;44460:70;44526:2;44515:9;44511:18;44502:6;44460:70;:::i;:::-;44577:9;44571:4;44567:20;44562:2;44551:9;44547:18;44540:48;44605:86;44686:4;44677:6;44669;44605:86;:::i;:::-;44597:94;;43959:739;;;;;;;;:::o;44704:719::-;44913:4;44951:3;44940:9;44936:19;44928:27;;44965:69;45031:1;45020:9;45016:17;45007:6;44965:69;:::i;:::-;45081:9;45075:4;45071:20;45066:2;45055:9;45051:18;45044:48;45109:76;45180:4;45171:6;45109:76;:::i;:::-;45101:84;;45195:70;45261:2;45250:9;45246:18;45237:6;45195:70;:::i;:::-;45312:9;45306:4;45302:20;45297:2;45286:9;45282:18;45275:48;45340:76;45411:4;45402:6;45340:76;:::i;:::-;45332:84;;44704:719;;;;;;;:::o;45429:1058::-;45727:4;45765:3;45754:9;45750:19;45742:27;;45779:69;45845:1;45834:9;45830:17;45821:6;45779:69;:::i;:::-;45895:9;45889:4;45885:20;45880:2;45869:9;45865:18;45858:48;45923:73;45991:4;45982:6;45923:73;:::i;:::-;45915:81;;46043:9;46037:4;46033:20;46028:2;46017:9;46013:18;46006:48;46071:76;46142:4;46133:6;46071:76;:::i;:::-;46063:84;;46157:88;46241:2;46230:9;46226:18;46217:6;46157:88;:::i;:::-;46255:73;46323:3;46312:9;46308:19;46299:6;46255:73;:::i;:::-;46376:9;46370:4;46366:20;46360:3;46349:9;46345:19;46338:49;46404:76;46475:4;46466:6;46404:76;:::i;:::-;46396:84;;45429:1058;;;;;;;;;:::o;46493:222::-;46586:4;46624:2;46613:9;46609:18;46601:26;;46637:71;46705:1;46694:9;46690:17;46681:6;46637:71;:::i;:::-;46493:222;;;;:::o;46721:332::-;46842:4;46880:2;46869:9;46865:18;46857:26;;46893:71;46961:1;46950:9;46946:17;46937:6;46893:71;:::i;:::-;46974:72;47042:2;47031:9;47027:18;47018:6;46974:72;:::i;:::-;46721:332;;;;;:::o;47059:129::-;47093:6;47120:20;;:::i;:::-;47110:30;;47149:33;47177:4;47169:6;47149:33;:::i;:::-;47059:129;;;:::o;47194:75::-;47227:6;47260:2;47254:9;47244:19;;47194:75;:::o;47275:307::-;47336:4;47426:18;47418:6;47415:30;47412:56;;;47448:18;;:::i;:::-;47412:56;47486:29;47508:6;47486:29;:::i;:::-;47478:37;;47570:4;47564;47560:15;47552:23;;47275:307;;;:::o;47588:308::-;47650:4;47740:18;47732:6;47729:30;47726:56;;;47762:18;;:::i;:::-;47726:56;47800:29;47822:6;47800:29;:::i;:::-;47792:37;;47884:4;47878;47874:15;47866:23;;47588:308;;;:::o;47902:140::-;47950:4;47973:3;47965:11;;47996:3;47993:1;47986:14;48030:4;48027:1;48017:18;48009:26;;47902:140;;;:::o;48048:98::-;48099:6;48133:5;48127:12;48117:22;;48048:98;;;:::o;48152:99::-;48204:6;48238:5;48232:12;48222:22;;48152:99;;;:::o;48257:168::-;48340:11;48374:6;48369:3;48362:19;48414:4;48409:3;48405:14;48390:29;;48257:168;;;;:::o;48431:147::-;48532:11;48569:3;48554:18;;48431:147;;;;:::o;48584:169::-;48668:11;48702:6;48697:3;48690:19;48742:4;48737:3;48733:14;48718:29;;48584:169;;;;:::o;48759:148::-;48861:11;48898:3;48883:18;;48759:148;;;;:::o;48913:305::-;48953:3;48972:20;48990:1;48972:20;:::i;:::-;48967:25;;49006:20;49024:1;49006:20;:::i;:::-;49001:25;;49160:1;49092:66;49088:74;49085:1;49082:81;49079:107;;;49166:18;;:::i;:::-;49079:107;49210:1;49207;49203:9;49196:16;;48913:305;;;;:::o;49224:185::-;49264:1;49281:20;49299:1;49281:20;:::i;:::-;49276:25;;49315:20;49333:1;49315:20;:::i;:::-;49310:25;;49354:1;49344:35;;49359:18;;:::i;:::-;49344:35;49401:1;49398;49394:9;49389:14;;49224:185;;;;:::o;49415:191::-;49455:4;49475:20;49493:1;49475:20;:::i;:::-;49470:25;;49509:20;49527:1;49509:20;:::i;:::-;49504:25;;49548:1;49545;49542:8;49539:34;;;49553:18;;:::i;:::-;49539:34;49598:1;49595;49591:9;49583:17;;49415:191;;;;:::o;49612:96::-;49649:7;49678:24;49696:5;49678:24;:::i;:::-;49667:35;;49612:96;;;:::o;49714:104::-;49759:7;49788:24;49806:5;49788:24;:::i;:::-;49777:35;;49714:104;;;:::o;49824:90::-;49858:7;49901:5;49894:13;49887:21;49876:32;;49824:90;;;:::o;49920:77::-;49957:7;49986:5;49975:16;;49920:77;;;:::o;50003:149::-;50039:7;50079:66;50072:5;50068:78;50057:89;;50003:149;;;:::o;50158:89::-;50194:7;50234:6;50227:5;50223:18;50212:29;;50158:89;;;:::o;50253:126::-;50290:7;50330:42;50323:5;50319:54;50308:65;;50253:126;;;:::o;50385:77::-;50422:7;50451:5;50440:16;;50385:77;;;:::o;50468:101::-;50504:7;50544:18;50537:5;50533:30;50522:41;;50468:101;;;:::o;50575:86::-;50610:7;50650:4;50643:5;50639:16;50628:27;;50575:86;;;:::o;50667:154::-;50751:6;50746:3;50741;50728:30;50813:1;50804:6;50799:3;50795:16;50788:27;50667:154;;;:::o;50827:307::-;50895:1;50905:113;50919:6;50916:1;50913:13;50905:113;;;51004:1;50999:3;50995:11;50989:18;50985:1;50980:3;50976:11;50969:39;50941:2;50938:1;50934:10;50929:15;;50905:113;;;51036:6;51033:1;51030:13;51027:101;;;51116:1;51107:6;51102:3;51098:16;51091:27;51027:101;50876:258;50827:307;;;:::o;51140:320::-;51184:6;51221:1;51215:4;51211:12;51201:22;;51268:1;51262:4;51258:12;51289:18;51279:81;;51345:4;51337:6;51333:17;51323:27;;51279:81;51407:2;51399:6;51396:14;51376:18;51373:38;51370:84;;;51426:18;;:::i;:::-;51370:84;51191:269;51140:320;;;:::o;51466:281::-;51549:27;51571:4;51549:27;:::i;:::-;51541:6;51537:40;51679:6;51667:10;51664:22;51643:18;51631:10;51628:34;51625:62;51622:88;;;51690:18;;:::i;:::-;51622:88;51730:10;51726:2;51719:22;51509:238;51466:281;;:::o;51753:233::-;51792:3;51815:24;51833:5;51815:24;:::i;:::-;51806:33;;51861:66;51854:5;51851:77;51848:103;;;51931:18;;:::i;:::-;51848:103;51978:1;51971:5;51967:13;51960:20;;51753:233;;;:::o;51992:94::-;52030:7;52059:21;52074:5;52059:21;:::i;:::-;52048:32;;51992:94;;;:::o;52092:79::-;52131:7;52160:5;52149:16;;52092:79;;;:::o;52177:176::-;52209:1;52226:20;52244:1;52226:20;:::i;:::-;52221:25;;52260:20;52278:1;52260:20;:::i;:::-;52255:25;;52299:1;52289:35;;52304:18;;:::i;:::-;52289:35;52345:1;52342;52338:9;52333:14;;52177:176;;;;:::o;52359:180::-;52407:77;52404:1;52397:88;52504:4;52501:1;52494:15;52528:4;52525:1;52518:15;52545:180;52593:77;52590:1;52583:88;52690:4;52687:1;52680:15;52714:4;52711:1;52704:15;52731:180;52779:77;52776:1;52769:88;52876:4;52873:1;52866:15;52900:4;52897:1;52890:15;52917:180;52965:77;52962:1;52955:88;53062:4;53059:1;53052:15;53086:4;53083:1;53076:15;53103:180;53151:77;53148:1;53141:88;53248:4;53245:1;53238:15;53272:4;53269:1;53262:15;53289:117;53398:1;53395;53388:12;53412:117;53521:1;53518;53511:12;53535:117;53644:1;53641;53634:12;53658:117;53767:1;53764;53757:12;53781:117;53890:1;53887;53880:12;53904:117;54013:1;54010;54003:12;54027:102;54068:6;54119:2;54115:7;54110:2;54103:5;54099:14;54095:28;54085:38;;54027:102;;;:::o;54135:96::-;54169:8;54218:5;54213:3;54209:15;54188:36;;54135:96;;;:::o;54237:291::-;54377:34;54373:1;54365:6;54361:14;54354:58;54446:34;54441:2;54433:6;54429:15;54422:59;54515:5;54510:2;54502:6;54498:15;54491:30;54237:291;:::o;54534:237::-;54674:34;54670:1;54662:6;54658:14;54651:58;54743:20;54738:2;54730:6;54726:15;54719:45;54534:237;:::o;54777:225::-;54917:34;54913:1;54905:6;54901:14;54894:58;54986:8;54981:2;54973:6;54969:15;54962:33;54777:225;:::o;55008:223::-;55148:34;55144:1;55136:6;55132:14;55125:58;55217:6;55212:2;55204:6;55200:15;55193:31;55008:223;:::o;55237:175::-;55377:27;55373:1;55365:6;55361:14;55354:51;55237:175;:::o;55418:233::-;55558:34;55554:1;55546:6;55542:14;55535:58;55627:16;55622:2;55614:6;55610:15;55603:41;55418:233;:::o;55657:176::-;55797:28;55793:1;55785:6;55781:14;55774:52;55657:176;:::o;55839:221::-;55979:34;55975:1;55967:6;55963:14;55956:58;56048:4;56043:2;56035:6;56031:15;56024:29;55839:221;:::o;56066:169::-;56206:21;56202:1;56194:6;56190:14;56183:45;56066:169;:::o;56241:231::-;56381:34;56377:1;56369:6;56365:14;56358:58;56450:14;56445:2;56437:6;56433:15;56426:39;56241:231;:::o;56478:243::-;56618:34;56614:1;56606:6;56602:14;56595:58;56687:26;56682:2;56674:6;56670:15;56663:51;56478:243;:::o;56727:229::-;56867:34;56863:1;56855:6;56851:14;56844:58;56936:12;56931:2;56923:6;56919:15;56912:37;56727:229;:::o;56962:228::-;57102:34;57098:1;57090:6;57086:14;57079:58;57171:11;57166:2;57158:6;57154:15;57147:36;56962:228;:::o;57196:230::-;57336:34;57332:1;57324:6;57320:14;57313:58;57405:13;57400:2;57392:6;57388:15;57381:38;57196:230;:::o;57432:182::-;57572:34;57568:1;57560:6;57556:14;57549:58;57432:182;:::o;57620:231::-;57760:34;57756:1;57748:6;57744:14;57737:58;57829:14;57824:2;57816:6;57812:15;57805:39;57620:231;:::o;57857:182::-;57997:34;57993:1;57985:6;57981:14;57974:58;57857:182;:::o;58045:239::-;58185:34;58181:1;58173:6;58169:14;58162:58;58254:22;58249:2;58241:6;58237:15;58230:47;58045:239;:::o;58290:228::-;58430:34;58426:1;58418:6;58414:14;58407:58;58499:11;58494:2;58486:6;58482:15;58475:36;58290:228;:::o;58524:234::-;58664:34;58660:1;58652:6;58648:14;58641:58;58733:17;58728:2;58720:6;58716:15;58709:42;58524:234;:::o;58764:220::-;58904:34;58900:1;58892:6;58888:14;58881:58;58973:3;58968:2;58960:6;58956:15;58949:28;58764:220;:::o;58990:174::-;59130:26;59126:1;59118:6;59114:14;59107:50;58990:174;:::o;59170:236::-;59310:34;59306:1;59298:6;59294:14;59287:58;59379:19;59374:2;59366:6;59362:15;59355:44;59170:236;:::o;59412:225::-;59552:34;59548:1;59540:6;59536:14;59529:58;59621:8;59616:2;59608:6;59604:15;59597:33;59412:225;:::o;59643:176::-;59783:28;59779:1;59771:6;59767:14;59760:52;59643:176;:::o;59825:122::-;59898:24;59916:5;59898:24;:::i;:::-;59891:5;59888:35;59878:63;;59937:1;59934;59927:12;59878:63;59825:122;:::o;59953:138::-;60034:32;60060:5;60034:32;:::i;:::-;60027:5;60024:43;60014:71;;60081:1;60078;60071:12;60014:71;59953:138;:::o;60097:116::-;60167:21;60182:5;60167:21;:::i;:::-;60160:5;60157:32;60147:60;;60203:1;60200;60193:12;60147:60;60097:116;:::o;60219:120::-;60291:23;60308:5;60291:23;:::i;:::-;60284:5;60281:34;60271:62;;60329:1;60326;60319:12;60271:62;60219:120;:::o;60345:::-;60417:23;60434:5;60417:23;:::i;:::-;60410:5;60407:34;60397:62;;60455:1;60452;60445:12;60397:62;60345:120;:::o;60471:122::-;60544:24;60562:5;60544:24;:::i;:::-;60537:5;60534:35;60524:63;;60583:1;60580;60573:12;60524:63;60471:122;:::o;60599:120::-;60671:23;60688:5;60671:23;:::i;:::-;60664:5;60661:34;60651:62;;60709:1;60706;60699:12;60651:62;60599:120;:::o;60725:118::-;60796:22;60812:5;60796:22;:::i;:::-;60789:5;60786:33;60776:61;;60833:1;60830;60823:12;60776:61;60725:118;:::o
Swarm Source
ipfs://8b27b5a97e3db25ea00ccae2e541048c5b616943839b8b2cd9f0fe3b7c71f849
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.