Overview
S Balance
S Value
$0.00More Info
Private Name Tags
ContractCreator
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
FAMAIN_WildLingsData_NFT
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2025-02-09 */ // File: @openzeppelin/[email protected]/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/[email protected]/token/ERC1155/IERC1155.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; } // File: @openzeppelin/[email protected]/token/ERC1155/IERC1155Receiver.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/[email protected]/token/ERC1155/extensions/IERC1155MetadataURI.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); } // File: @openzeppelin/[email protected]/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/[email protected]/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/[email protected]/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/[email protected]/token/ERC1155/ERC1155.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: address zero is not a valid owner"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Emits a {TransferSingle} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `ids` and `amounts` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } } // File: @openzeppelin/[email protected]/interfaces/IERC2981.sol // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/[email protected]/token/common/ERC2981.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // File: @openzeppelin/[email protected]/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // 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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/[email protected]/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions 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: FINALdeployFA/LIB - Common Structs.sol pragma solidity ^0.8.9; library S { //Pet struct struct Unit { uint hp; //unit fainted when hp <= 0 uint attack; //attack - defense = damage on hp uint defense; //attack - defense = damage on hp uint speed; //how frequent to take a move uint intelligence; //how frequent to use skill uint genestrength; //depends on how many duplicates uint range; //range skill, id uint special; //special skill, id } struct Status { //uint32 types; //determine element and some skills. 0=none, 1=fire, 2=water, 3=ice, 4=electic, 5=nature, 6=light, 7=dark //linked to skill right now uint id; //unit id uint family; //determine which class of gear it can be wore. record while evolve, since its only has max 2 family, example Dragon+phantom, and 30gene max, so can use *100 // family to gene is tricky, need to +1 to make sure 0 means nothing. Thus 1 is Dragon, althought for trainerGene, 0 is dragon // because player wont submit a transaction to set their trainer gene when start. uint stage; //1 is rookie, 2 is mature, 3 is perfect //e.g. start with dragon, so family = 1, later if evolve with phantom, then 2*100 + family = 201, 102 or 201 also represent Dragon+phantom //0=none, 1=dragon, 2=phantom, 3=aqua, 4=wombat // uint32 bond; //how many action you took on this unit // uint64 stamina; //how much you can train it per day. it should follow saturation graph } struct Time { uint bond; //how many time you took on this unit , use to evolve uint stamina; //how much you can train it per day. it should follow saturation graph uint hunger; //how much you feed it per day. it should follow saturation graph } /* struct PlayerData { //----Player Quest variables-------- uint mainquest; // mainquest 77 digits. Each digit represents a quest progress uint sidequest; // side quest 77 digits. Each digit represents a quest progress uint premiumscore; // serves like premium exp, gained from events, quests, marketing campaigns, etc. // also indicates player activeness. //----Player Stats variables-------- // uint exp; // player experience, increases based on activity // uint rankscore; // player ranking score for PvP // uint32 energy1; // energy of the player, for time-gated Quest/SideQuest // uint32 energy2; // energy of the player, for time-gated PvP-ranking // uint32 energy22; // energy of the player, for time-gated PvP-kingofthehill // uint32 energy3; // energy of the player, for time-gated WorldBoss //-----limits for restriction------- uint limit1; // limit free openbox/mint. Default: 2 per day uint limit2; // reserve uint limit3; // reserve uint timebound1; // for limit free openbox/mint. Set it to now if >24hr and reset limit1 uint timebound2; // reserve */ } // File: FINALdeployFA/base64.sol pragma solidity ^0.8.0; /// @title Base64 /// @author Brecht Devos - <[email protected]> /// @notice Provides functions for encoding/decoding base64 library Base64 { string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; bytes internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000" hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000" hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000" hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000"; function encode(bytes memory data) internal pure returns (string memory) { if (data.length == 0) return ''; // load the table into memory string memory table = TABLE_ENCODE; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((data.length + 2) / 3); // add some extra buffer at the end required for the writing string memory result = new string(encodedLen + 32); assembly { // set the actual output length mstore(result, encodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 3 bytes at a time for {} lt(dataPtr, endPtr) {} { // read 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // write 4 characters mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and( input, 0x3F)))) resultPtr := add(resultPtr, 1) } // padding with '=' switch mod(mload(data), 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } } return result; } function decode(string memory _data) internal pure returns (bytes memory) { bytes memory data = bytes(_data); if (data.length == 0) return new bytes(0); require(data.length % 4 == 0, "invalid base64 decoder input"); // load the table into memory bytes memory table = TABLE_DECODE; // every 4 characters represent 3 bytes uint256 decodedLen = (data.length / 4) * 3; // add some extra buffer at the end required for the writing bytes memory result = new bytes(decodedLen + 32); assembly { // padding with '=' let lastBytes := mload(add(data, mload(data))) if eq(and(lastBytes, 0xFF), 0x3d) { decodedLen := sub(decodedLen, 1) if eq(and(lastBytes, 0xFFFF), 0x3d3d) { decodedLen := sub(decodedLen, 1) } } // set the actual output length mstore(result, decodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 4 characters at a time for {} lt(dataPtr, endPtr) {} { // read 4 characters dataPtr := add(dataPtr, 4) let input := mload(dataPtr) // write 3 bytes let output := add( add( shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)), shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))), add( shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)), and(mload(add(tablePtr, and( input , 0xFF))), 0xFF) ) ) mstore(resultPtr, shl(232, output)) resultPtr := add(resultPtr, 3) } } return result; } } // File: FINALdeployFA/MAIN - WildLingsData ERC1155.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //_______________________________________________________________ // ___ __ __ _ ___ _ ___ _ __ // | _ )\ \ / / _ | | / _ \ _ | | / _ \ (_)\ \ // | _ \ \ V / | || || (_) || || || (_) | _ | | // |___/ |_| \__/ \___/ \__/ \___/ ( ) | | // |/ /_/ //_______________________________________________________________ // //************ WildLings Data NFT *************** // //_______________________________________________________________ // ___ _ _ _____ ___ ___ ___ _ ___ ___ // |_ _|| \| ||_ _|| __|| _ \| __|/_\ / __|| __| // | | | .` | | | | _| | /| _|/ _ \| (__ | _| // |___||_|\_| |_| |___||_|_\|_|/_/ \_\\___||___| //_______________________________________________________________ // ERC1155 and ERC2981 //_______________________________________________________________ // ___ ___ _ _ _____ ___ _ ___ _____ // / __|/ _ \ | \| ||_ _|| _ \ /_\ / __||_ _| // | (__| (_) || .` | | | | / / _ \| (__ | | // \___|\___/ |_|\_| |_| |_|_\/_/ \_\\___| |_| //_______________________________________________________________ contract FAMAIN_WildLingsData_NFT is ERC1155, ERC2981, Ownable { constructor() ERC1155("") { setRoyaltyRecipient(msg.sender); } string public name = "FateAdventure WildLingsData NFT"; string public symbol = "FAWildLingsDataNFT"; string public constant baseUri = "ipfs://"; string public imageExtension = ".png"; string public imageURL = "https://ipfs/bafybeifskkmltnscnx4olas5ckx5r4qddg3ormmqgko4w67kwlmlgbq26a/"; bool public _namebyID = true; //indicate where it needs to have ID 123 on name uint public royalty = 700; // base 10000, 1500 royalty means 15% address public royaltyRecipient; mapping(uint => string) private nftNames; // Mapping for NFT names mapping(uint => string) private nftDescriptions; // Mapping for NFT descriptions function setImageURL(string memory URL) public onlyOwner { imageURL = URL;//IPFS/server is less realiable, Only URI link is upgradable. //URI is just for marketplace to display. } function setExtension(string memory exe) public onlyOwner { imageExtension = exe;//IPFS/server is less realiable, Only URI link is upgradable. //URI is just for marketplace to display. } event UpdateName(string name); using Strings for uint256; uint constant MAX_ID = 1999; //this max ID is to use for loop to retrieve number //_______________________________________________________________ // _ ___ __ __ ___ _ _ // /_\ | \ | \/ ||_ _|| \| | // / _ \ | |) || |\/| | | | | .` | // /_/ \_\|___/ |_| |_||___||_|\_| //_______________________________________________________________ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155, ERC2981) returns (bool) { // Add your implementation here if needed return ERC2981.supportsInterface(interfaceId) || ERC1155.supportsInterface(interfaceId) ; } ////////////////////////////////////////////////Advanced Master Contract//////////////////////////////////////////////////////////////////// address[50] public masterContracts; //these are the contract able to control the variables. mapping(address => uint) public masterIndex; ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// modifier onlyMasterContract() { //---this modifier is to make sure mastercontract able to control the data require(masterContracts[masterIndex[msg.sender]] == msg.sender, "Only allowed for master contracts"); _; } function addMasterContract(address _address, uint _index) public onlyOwner { require(_index >0 && _index < 50, "Index out of bounds"); // Ensure index is within array bounds require(_address != address(0), "Invalid address"); // Ensure valid address // Check if the index already has an address address existingAddress = masterContracts[_index]; if (existingAddress != address(0)) { // Reset the index of the existing address to 0 masterIndex[existingAddress] = 0; } // Assign the new address to the array and update the mapping masterContracts[_index] = _address; masterIndex[_address] = _index; // Update the mapping with the new address's index } function addMasterContractBatch(address[] memory _addresses, uint[] memory _indices) public onlyOwner { require(_addresses.length == _indices.length, "Mismatched input lengths"); // Ensure arrays are the same length for (uint i = 0; i < _addresses.length; i++) { addMasterContract(_addresses[i], _indices[i]); // Reuse the existing function } } function removeMasterContract(uint _index) public onlyOwner { require(_index < 50, "Index out of bounds"); // Ensure index is within array bounds address contractToRemove = masterContracts[_index]; require(contractToRemove != address(0), "No contract at this index"); // Ensure there is a contract to remove // reset the address from the array and mapping masterContracts[_index] = address(0); masterIndex[contractToRemove] = 0; } function getAllMasterContracts() public view returns (address[] memory, uint[] memory) { address[] memory contracts = new address[](50); uint[] memory indices = new uint[](50); for (uint i = 0; i < 50; i++) { contracts[i] = masterContracts[i]; if (masterContracts[i] != address(0)) { indices[i] = masterIndex[masterContracts[i]]; } else { indices[i] = 0; } } return (contracts, indices); } /////////////////////////////////////////////////////////////////////////// function royaltyInfo(uint256, uint256 _salePrice) public view override returns (address, uint256) { uint256 amount = (_salePrice * royalty) / 10000; return (royaltyRecipient, amount); } function setRoyaltyRecipient(address _royaltyRecipient) public onlyOwner { require(_royaltyRecipient != address(0), "royalty cannot be sent to zero address"); royaltyRecipient = _royaltyRecipient; } function setRoyaltyBasisPts(uint BasisPoint) public onlyOwner { royalty = BasisPoint; // base 10000, 1500 royalty means 15% } function updateName(string calldata _name) public onlyOwner { // update symbol name name = _name; emit UpdateName(name); } function withdraw(address payable _to) external { //incase someone want to donate to me? who knows. haha require(_to == owner()); (bool sent,) = _to.call{value: address(this).balance}(""); require(sent); } function isApprovedForAll(address _owner, address _operator) public view override returns (bool isOperator) { for (uint8 i = 0; i < 50; i++) { // Updated loop to 50 iterations if (_operator == masterContracts[i]) { return true; } } return ERC1155.isApprovedForAll(_owner, _operator); } // Set by ID function setNFTName(uint _tokenID, string memory _name) public onlyOwner { nftNames[_tokenID] = _name; } function setNFTDescription(uint _tokenID, string memory _description) public onlyOwner { nftDescriptions[_tokenID] = _description; } // Combined Set function to set names and descriptions in a batch function setNFTDataBatch(uint[] memory _tokenIDs, string[] memory _names, string[] memory _descriptions) public onlyOwner { require(_tokenIDs.length == _names.length && _names.length == _descriptions.length, "All input arrays must have the same length"); for (uint i = 0; i < _tokenIDs.length; i++) { nftNames[_tokenIDs[i]] = _names[i]; nftDescriptions[_tokenIDs[i]] = _descriptions[i]; } } // Get an NFT's name function getNFTName(uint _tokenID) public view returns (string memory) { return nftNames[_tokenID]; } // Get an NFT's description function getNFTDescription(uint _tokenID) public view returns (string memory) { return nftDescriptions[_tokenID]; } // Combined batch retrieval for names and descriptions function getNFTDataBatch(uint[] memory _tokenIDs) public view returns (string[] memory, string[] memory) { string[] memory names = new string[](_tokenIDs.length); string[] memory descriptions = new string[](_tokenIDs.length); for (uint i = 0; i < _tokenIDs.length; i++) { names[i] = nftNames[_tokenIDs[i]]; descriptions[i] = nftDescriptions[_tokenIDs[i]]; } return (names, descriptions); } //_______________________________________________________________ // ___ _____ _ ___ _____ // / __||_ _|/_\ | _ \|_ _| // \__ \ | | / _ \ | / | | // |___/ |_|/_/ \_\|_|_\ |_| //_______________________________________________________________ mapping(uint256 => string) internal tokenURIs; function mint( uint _amount, address _to, uint _id) public onlyMasterContract { _mint(_to, _id, _amount, ""); //give ownership to ID } // Batch mint function function mintBatch( address[] memory _to, // Array of addresses to mint to uint256[] memory _ids, // Array of token IDs to mint uint256[] memory _amounts // Array of amounts for each token ID ) public onlyMasterContract { require(_to.length == _ids.length && _ids.length == _amounts.length, "Arrays length mismatch"); for (uint i = 0; i < _to.length; i++) { _mint(_to[i], _ids[i], _amounts[i], ""); // Mint each NFT to the respective address } } // Anyone can burn their NFT if they have sufficient balance function burn(address owner, uint _id, uint _amount) public onlyMasterContract { require(balanceOf(owner, _id) >= _amount, "Not enough balance to burn"); _burn(owner, _id, _amount); } /** * Override isApprovedForAll to whitelist the mastercontract to reward players */ //-------------- //_________________________________________________________________________ // ___ _ _ ___ _ __ __ ___ __ __ ___ ___ __ __ // |_ _|| \| | / __| /_\ | \/ || __| \ \ / /|_ _|| __|\ \ / / // | | | .` || (_ | / _ \ | |\/| || _| \ V / | | | _| \ \/\/ / // |___||_|\_| \___|/_/ \_\|_| |_||___| \_/ |___||___| \_/\_/ // //_________________________________________________________________________ function WWW1getSpecialTransformItemBalanceByOwner(address _owner, uint start, uint stop) public view returns (uint[] memory, uint[] memory, uint) { require(stop > start, "Stop must be greater than start"); require(stop - start <= 400, "Range too large, max 400 items"); uint[] memory _scannedBalance = new uint[](stop - start); for (uint i = 0; i < (stop - start); i++) { _scannedBalance[i] = balanceOf(_owner, start + i); } uint _owneduniqueitems = 0; for (uint i = 0; i < _scannedBalance.length; i++) { if (_scannedBalance[i] > 0) { _owneduniqueitems++; } } uint[] memory ownedID = new uint[](_owneduniqueitems); uint[] memory ownedBalance = new uint[](_owneduniqueitems); uint counter = 0; for (uint i = 0; i < _scannedBalance.length; i++) { if (_scannedBalance[i] > 0) { ownedID[counter] = start + i; ownedBalance[counter] = _scannedBalance[i]; counter++; } } return (ownedID, ownedBalance,_owneduniqueitems); } //_______________________________________________________________ // _ _ ___ ___ ___ ___ _ _ _____ ___ ___ // | | | || _ \|_ _| | _ \| __|| | /_\|_ _|| __|| \ // | |_| || / | | | /| _| | |__ / _ \ | | | _| | |) | // \___/ |_|_\|___| |_|_\|___||____|/_/ \_\|_| |___||___/ //_______________________________________________________________ function uri(uint _tokenId) public view virtual override returns (string memory metadata) { uint tokenID = uint(_tokenId); string memory _name = nftNames[tokenID]; string memory _imagelinkfull = string(abi.encodePacked(imageURL,_toString(tokenID), imageExtension)); string memory _description = nftDescriptions[tokenID]; metadata = string(abi.encodePacked("data:application/json;base64,", Base64.encode( bytes( abi.encodePacked( "{\"name\": \"#",_toString(tokenID)," ",_name, "\",\"description\": \"",_description, "\",\"image\": \"", _imagelinkfull, "\"}" ) ) ) )); } function _toString(uint _i) private pure returns (bytes memory convString) { if (_i == 0) { return "0"; } uint j = _i; uint len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint k = len; while (_i != 0) { k = k-1; uint8 temp = (48 + uint8(_i - _i / 10 * 10)); bytes1 b1 = bytes1(temp); bstr[k] = b1; _i /= 10; } return bstr; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"}],"name":"UpdateName","type":"event"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"WWW1getSpecialTransformItemBalanceByOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_namebyID","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"addMasterContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_indices","type":"uint256[]"}],"name":"addMasterContractBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllMasterContracts","outputs":[{"internalType":"address[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIDs","type":"uint256[]"}],"name":"getNFTDataBatch","outputs":[{"internalType":"string[]","name":"","type":"string[]"},{"internalType":"string[]","name":"","type":"string[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"getNFTDescription","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"getNFTName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"imageExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"imageURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"masterContracts","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"masterIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"removeMasterContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"exe","type":"string"}],"name":"setExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URL","type":"string"}],"name":"setImageURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIDs","type":"uint256[]"},{"internalType":"string[]","name":"_names","type":"string[]"},{"internalType":"string[]","name":"_descriptions","type":"string[]"}],"name":"setNFTDataBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenID","type":"uint256"},{"internalType":"string","name":"_description","type":"string"}],"name":"setNFTDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenID","type":"uint256"},{"internalType":"string","name":"_name","type":"string"}],"name":"setNFTName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"BasisPoint","type":"uint256"}],"name":"setRoyaltyBasisPts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyRecipient","type":"address"}],"name":"setRoyaltyRecipient","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"updateName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"metadata","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c0604052601f60809081527f46617465416476656e747572652057696c644c696e677344617461204e46540060a05260069061003c90826102fb565b50604080518082019091526012815271119055da5b19131a5b99dcd1185d1853919560721b602082015260079061007390826102fb565b506040805180820190915260048152632e706e6760e01b602082015260089061009c90826102fb565b50604051806080016040528060498152602001613c46604991396009906100c390826102fb565b50600a805460ff191660011790556102bc600b553480156100e2575f5ffd5b5060408051602081019091525f81526100fa81610112565b5061010433610122565b61010d33610173565b6103b5565b600261011e82826102fb565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b61017b610207565b6001600160a01b0381166101e55760405162461bcd60e51b815260206004820152602660248201527f726f79616c74792063616e6e6f742062652073656e7420746f207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146102615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101dc565b565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061028b57607f821691505b6020821081036102a957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156102f657805f5260205f20601f840160051c810160208510156102d45750805b601f840160051c820191505b818110156102f3575f81556001016102e0565b50505b505050565b81516001600160401b0381111561031457610314610263565b610328816103228454610277565b846102af565b6020601f82116001811461035a575f83156103435750848201515b5f19600385901b1c1916600184901b1784556102f3565b5f84815260208120601f198516915b828110156103895787850151825560209485019460019092019101610369565b50848210156103a657868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b613884806103c25f395ff3fe608060405234801561000f575f5ffd5b5060043610610254575f3560e01c806384da92a711610140578063b90497e0116100bf578063e985e9c511610084578063e985e9c514610570578063ed91dcda14610583578063f242432a14610596578063f2fde38b146105a9578063f5298aca146105bc578063fc199fcb146105cf575f5ffd5b8063b90497e01461050a578063b98b624414610512578063cc855c5d14610528578063cf7470fa1461054a578063df6e99111461055d575f5ffd5b8063a22cb46511610105578063a22cb465146104a8578063a487ce2d146104bb578063a9ef3aeb146104ce578063ab19c549146104d6578063ab4f3446146104f7575f5ffd5b806384da92a7146104435780638da5cb5b1461045657806395d89b411461046757806397a1ce331461046f5780639abc832014610482575f5ffd5b80634c00de82116101d757806358e792ee1161019c57806358e792ee146103dc5780635d51b14c146103ef578063715018a6146104025780637a2a43c51461040a5780637e2285aa1461041d578063836a104014610430575f5ffd5b80634c00de82146103585780634e1273f41461038357806351cff8d9146103a357806354040610146103b657806357128683146103c9575f5ffd5b806329ee566c1161021d57806329ee566c146102e85780632a55205a146102f15780632eb2c2d6146103235780633fa8aaa91461033857806341e42f3014610345575f5ffd5b8062fdd58e1461025857806301ffc9a71461027e57806306fdde03146102a15780630e89341c146102b65780631e7a07a7146102c9575b5f5ffd5b61026b6102663660046127b8565b6105e2565b6040519081526020015b60405180910390f35b61029161028c3660046127f7565b610679565b6040519015158152602001610275565b6102a9610692565b6040516102759190612840565b6102a96102c4366004612852565b61071e565b61026b6102d7366004612869565b60416020525f908152604090205481565b61026b600b5481565b6103046102ff366004612884565b6108e5565b604080516001600160a01b039093168352602083019190915201610275565b6103366103313660046129f0565b61091a565b005b600a546102919060ff1681565b610336610353366004612869565b610966565b600c5461036b906001600160a01b031681565b6040516001600160a01b039091168152602001610275565b610396610391366004612b10565b6109f5565b6040516102759190612bad565b6103366103b1366004612869565b610b14565b6103366103c4366004612852565b610b8c565b6103366103d7366004612bbf565b610c89565b6103366103ea366004612c4a565b610da8565b6103366103fd3660046127b8565b610dbc565b610336610ee1565b610336610418366004612b10565b610ef4565b61033661042b366004612c4a565b610fa1565b61033661043e366004612c83565b610fb5565b610336610451366004612cb8565b611019565b6005546001600160a01b031661036b565b6102a961106b565b61033661047d366004612d24565b611078565b6102a960405180604001604052806007815260200166697066733a2f2f60c81b81525081565b6103366104b6366004612d5d565b611097565b6102a96104c9366004612852565b6110a2565b6102a9611141565b6104e96104e4366004612d98565b61114e565b604051610275929190612e23565b610336610505366004612eda565b6113ab565b6102a96114d9565b61051a6114e6565b604051610275929190612f5b565b61053b610536366004612fbb565b611638565b60405161027593929190612fed565b61036b610558366004612852565b6118fe565b61033661056b366004612d24565b61191d565b61029161057e366004613022565b61193c565b6102a9610591366004612852565b6119b9565b6103366105a436600461304e565b6119d5565b6103366105b7366004612869565b611a1a565b6103366105ca366004612fbb565b611a93565b6103366105dd366004612852565b611b41565b5f6001600160a01b0383166106515760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b505f818152602081815260408083206001600160a01b03861684529091529020545b92915050565b5f61068382611b4e565b80610673575061067382611b6e565b6006805461069f906130a5565b80601f01602080910402602001604051908101604052809291908181526020018280546106cb906130a5565b80156107165780601f106106ed57610100808354040283529160200191610716565b820191905f5260205f20905b8154815290600101906020018083116106f957829003601f168201915b505050505081565b5f818152600d6020526040812080546060928492909161073d906130a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610769906130a5565b80156107b45780601f1061078b576101008083540402835291602001916107b4565b820191905f5260205f20905b81548152906001019060200180831161079757829003601f168201915b505050505090505f60096107c784611bbd565b60086040516020016107db93929190613162565b60408051601f198184030181529181525f858152600e60205290812080549293509091610807906130a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610833906130a5565b801561087e5780601f106108555761010080835404028352916020019161087e565b820191905f5260205f20905b81548152906001019060200180831161086157829003601f168201915b505050505090506108bb61089185611bbd565b8483856040516020016108a7949392919061317f565b604051602081830303815290604052611ce2565b6040516020016108cb9190613210565b604051602081830303815290604052945050505050919050565b5f5f5f612710600b54856108f99190613255565b610903919061326c565b600c546001600160a01b0316969095509350505050565b6001600160a01b0385163314806109365750610936853361193c565b6109525760405162461bcd60e51b81526004016106489061328b565b61095f8585858585611e40565b5050505050565b61096e612011565b6001600160a01b0381166109d35760405162461bcd60e51b815260206004820152602660248201527f726f79616c74792063616e6e6f742062652073656e7420746f207a65726f206160448201526564647265737360d01b6064820152608401610648565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60608151835114610a5a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610648565b5f83516001600160401b03811115610a7457610a746128a4565b604051908082528060200260200182016040528015610a9d578160200160208202803683370190505b5090505f5b8451811015610b0c57610ae7858281518110610ac057610ac06132da565b6020026020010151858381518110610ada57610ada6132da565b60200260200101516105e2565b828281518110610af957610af96132da565b6020908102919091010152600101610aa2565b509392505050565b6005546001600160a01b03828116911614610b2d575f5ffd5b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610b76576040519150601f19603f3d011682016040523d82523d5f602084013e610b7b565b606091505b5050905080610b88575f5ffd5b5050565b610b94612011565b60328110610bda5760405162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b6044820152606401610648565b5f600f8260328110610bee57610bee6132da565b01546001600160a01b0316905080610c485760405162461bcd60e51b815260206004820152601960248201527f4e6f20636f6e7472616374206174207468697320696e646578000000000000006044820152606401610648565b5f600f8360328110610c5c57610c5c6132da565b0180546001600160a01b0319166001600160a01b03928316179055165f9081526041602052604081205550565b335f81815260416020526040902054600f9060328110610cab57610cab6132da565b01546001600160a01b031614610cd35760405162461bcd60e51b8152600401610648906132ee565b81518351148015610ce5575080518251145b610d2a5760405162461bcd60e51b8152602060048201526016602482015275082e4e4c2f2e640d8cadccee8d040dad2e6dac2e8c6d60531b6044820152606401610648565b5f5b8351811015610da257610d9a848281518110610d4a57610d4a6132da565b6020026020010151848381518110610d6457610d646132da565b6020026020010151848481518110610d7e57610d7e6132da565b602002602001015160405180602001604052805f81525061206b565b600101610d2c565b50505050565b610db0612011565b6009610b888282613373565b610dc4612011565b5f81118015610dd35750603281105b610e155760405162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b6044820152606401610648565b6001600160a01b038216610e5d5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610648565b5f600f8260328110610e7157610e716132da565b01546001600160a01b031690508015610e9d576001600160a01b0381165f908152604160205260408120555b82600f8360328110610eb157610eb16132da565b0180546001600160a01b0319166001600160a01b03928316179055929092165f9081526041602052604090205550565b610ee9612011565b610ef25f61217a565b565b610efc612011565b8051825114610f4d5760405162461bcd60e51b815260206004820152601860248201527f4d69736d61746368656420696e707574206c656e6774687300000000000000006044820152606401610648565b5f5b8251811015610f9c57610f94838281518110610f6d57610f6d6132da565b6020026020010151838381518110610f8757610f876132da565b6020026020010151610dbc565b600101610f4f565b505050565b610fa9612011565b6008610b888282613373565b335f81815260416020526040902054600f9060328110610fd757610fd76132da565b01546001600160a01b031614610fff5760405162461bcd60e51b8152600401610648906132ee565b610f9c82828560405180602001604052805f81525061206b565b611021612011565b600661102e82848361342d565b507fed41a19b397d8e610d8f9e6e52ab2bef7e51c9977a12cb779c7cd86747f8d509600660405161105f91906134e6565b60405180910390a15050565b6007805461069f906130a5565b611080612011565b5f828152600e60205260409020610f9c8282613373565b610b883383836121cb565b5f818152600e602052604090208054606091906110be906130a5565b80601f01602080910402602001604051908101604052809291908181526020018280546110ea906130a5565b80156111355780601f1061110c57610100808354040283529160200191611135565b820191905f5260205f20905b81548152906001019060200180831161111857829003601f168201915b50505050509050919050565b6008805461069f906130a5565b6060805f83516001600160401b0381111561116b5761116b6128a4565b60405190808252806020026020018201604052801561119e57816020015b60608152602001906001900390816111895790505b5090505f84516001600160401b038111156111bb576111bb6128a4565b6040519080825280602002602001820160405280156111ee57816020015b60608152602001906001900390816111d95790505b5090505f5b85518110156113a057600d5f878381518110611211576112116132da565b602002602001015181526020019081526020015f208054611231906130a5565b80601f016020809104026020016040519081016040528092919081815260200182805461125d906130a5565b80156112a85780601f1061127f576101008083540402835291602001916112a8565b820191905f5260205f20905b81548152906001019060200180831161128b57829003601f168201915b50505050508382815181106112bf576112bf6132da565b6020026020010181905250600e5f8783815181106112df576112df6132da565b602002602001015181526020019081526020015f2080546112ff906130a5565b80601f016020809104026020016040519081016040528092919081815260200182805461132b906130a5565b80156113765780601f1061134d57610100808354040283529160200191611376565b820191905f5260205f20905b81548152906001019060200180831161135957829003601f168201915b505050505082828151811061138d5761138d6132da565b60209081029190910101526001016111f3565b509094909350915050565b6113b3612011565b815183511480156113c5575080518251145b6114245760405162461bcd60e51b815260206004820152602a60248201527f416c6c20696e70757420617272617973206d75737420686176652074686520736044820152690c2daca40d8cadccee8d60b31b6064820152608401610648565b5f5b8351811015610da257828181518110611441576114416132da565b6020026020010151600d5f86848151811061145e5761145e6132da565b602002602001015181526020019081526020015f20908161147f9190613373565b50818181518110611492576114926132da565b6020026020010151600e5f8684815181106114af576114af6132da565b602002602001015181526020019081526020015f2090816114d09190613373565b50600101611426565b6009805461069f906130a5565b604080516032808252610660820190925260609182915f916020820161064080368337505060408051603280825261066082019092529293505f92915060208201610640803683370190505090505f5b603281101561162e57600f8160328110611552576115526132da565b015483516001600160a01b0390911690849083908110611574576115746132da565b6001600160a01b03909216602092830291909101909101525f600f82603281106115a0576115a06132da565b01546001600160a01b0316146116065760415f600f83603281106115c6576115c66132da565b01546001600160a01b0316815260208101919091526040015f205482518390839081106115f5576115f56132da565b602002602001018181525050611626565b5f828281518110611619576116196132da565b6020026020010181815250505b600101611536565b5090939092509050565b6060805f84841161168b5760405162461bcd60e51b815260206004820152601f60248201527f53746f70206d7573742062652067726561746572207468616e207374617274006044820152606401610648565b610190611698868661356d565b11156116e65760405162461bcd60e51b815260206004820152601e60248201527f52616e676520746f6f206c617267652c206d617820343030206974656d7300006044820152606401610648565b5f6116f1868661356d565b6001600160401b03811115611708576117086128a4565b604051908082528060200260200182016040528015611731578160200160208202803683370190505b5090505f5b611740878761356d565b81101561177a5761175588610266838a613580565b828281518110611767576117676132da565b6020908102919091010152600101611736565b505f805b82518110156117be575f83828151811061179a5761179a6132da565b602002602001015111156117b657816117b281613593565b9250505b60010161177e565b505f816001600160401b038111156117d8576117d86128a4565b604051908082528060200260200182016040528015611801578160200160208202803683370190505b5090505f826001600160401b0381111561181d5761181d6128a4565b604051908082528060200260200182016040528015611846578160200160208202803683370190505b5090505f805b85518110156118eb575f868281518110611868576118686132da565b602002602001015111156118e357611880818c613580565b848381518110611892576118926132da565b6020026020010181815250508581815181106118b0576118b06132da565b60200260200101518383815181106118ca576118ca6132da565b6020908102919091010152816118df81613593565b9250505b60010161184c565b50919a9099509197509095505050505050565b600f816032811061190d575f80fd5b01546001600160a01b0316905081565b611925612011565b5f828152600d60205260409020610f9c8282613373565b5f805b60328160ff16101561198857600f8160ff1660328110611961576119616132da565b01546001600160a01b0390811690841603611980576001915050610673565b60010161193f565b506001600160a01b038084165f9081526001602090815260408083209386168352929052205460ff165b9392505050565b5f818152600d602052604090208054606091906110be906130a5565b6001600160a01b0385163314806119f157506119f1853361193c565b611a0d5760405162461bcd60e51b81526004016106489061328b565b61095f85858585856122aa565b611a22612011565b6001600160a01b038116611a875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610648565b611a908161217a565b50565b335f81815260416020526040902054600f9060328110611ab557611ab56132da565b01546001600160a01b031614611add5760405162461bcd60e51b8152600401610648906132ee565b80611ae884846105e2565b1015611b365760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420656e6f7567682062616c616e636520746f206275726e0000000000006044820152606401610648565b610f9c8383836123d0565b611b49612011565b600b55565b5f6001600160e01b0319821663152a902d60e11b14806106735750610673825b5f6001600160e01b03198216636cdb3d1360e11b1480611b9e57506001600160e01b031982166303a24d0760e21b145b8061067357506301ffc9a760e01b6001600160e01b0319831614610673565b6060815f03611be35750506040805180820190915260018152600360fc1b602082015290565b815f5b8115611c0c5780611bf681613593565b9150611c059050600a8361326c565b9150611be6565b5f816001600160401b03811115611c2557611c256128a4565b6040519080825280601f01601f191660200182016040528015611c4f576020820181803683370190505b509050815b8515611cd957611c6560018261356d565b90505f611c73600a8861326c565b611c7e90600a613255565b611c88908861356d565b611c939060306135ab565b90505f8160f81b905080848481518110611caf57611caf6132da565b60200101906001600160f81b03191690815f1a905350611cd0600a8961326c565b97505050611c54565b50949350505050565b606081515f03611cff57505060408051602081019091525f815290565b5f60405180606001604052806040815260200161380f6040913990505f600384516002611d2c9190613580565b611d36919061326c565b611d41906004613255565b90505f611d4f826020613580565b6001600160401b03811115611d6657611d666128a4565b6040519080825280601f01601f191660200182016040528015611d90576020820181803683370190505b509050818152600183018586518101602084015b81831015611dfc576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825350600101611da4565b600389510660018114611e165760028114611e2757611e32565b613d3d60f01b600119830152611e32565b603d60f81b5f198301525b509398975050505050505050565b8151835114611ea25760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610648565b6001600160a01b038416611ec85760405162461bcd60e51b8152600401610648906135c4565b335f5b8451811015611fa3575f858281518110611ee757611ee76132da565b602002602001015190505f858381518110611f0457611f046132da565b6020908102919091018101515f84815280835260408082206001600160a01b038e168352909352919091205490915081811015611f535760405162461bcd60e51b815260040161064890613609565b5f838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611f8f908490613580565b909155505060019093019250611ecb915050565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611ff3929190613653565b60405180910390a4612009818787878787612547565b505050505050565b6005546001600160a01b03163314610ef25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610648565b6001600160a01b0384166120cb5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610648565b335f6120d6856126a1565b90505f6120e2856126a1565b90505f868152602081815260408083206001600160a01b038b16845290915281208054879290612113908490613580565b909155505060408051878152602081018790526001600160a01b03808a16925f92918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612171835f898989896126ea565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b816001600160a01b0316836001600160a01b03160361223e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610648565b6001600160a01b038381165f81815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166122d05760405162461bcd60e51b8152600401610648906135c4565b335f6122db856126a1565b90505f6122e7856126a1565b90505f868152602081815260408083206001600160a01b038c168452909152902054858110156123295760405162461bcd60e51b815260040161064890613609565b5f878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290612365908490613580565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46123c5848a8a8a8a8a6126ea565b505050505050505050565b6001600160a01b0383166124325760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610648565b335f61243d846126a1565b90505f612449846126a1565b60408051602080820183525f918290528882528181528282206001600160a01b038b16835290522054909150848110156124d15760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610648565b5f868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a460408051602081019091525f9052612171565b6001600160a01b0384163b156120095760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061258b9089908990889088908890600401613677565b6020604051808303815f875af19250505080156125c5575060408051601f3d908101601f191682019092526125c2918101906136d4565b60015b612671576125d16136ef565b806308c379a00361260a57506125e5613708565b806125f0575061260c565b8060405162461bcd60e51b81526004016106489190612840565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610648565b6001600160e01b0319811663bc197c8160e01b146121715760405162461bcd60e51b815260040161064890613782565b6040805160018082528183019092526060915f91906020808301908036833701905050905082815f815181106126d9576126d96132da565b602090810291909101015292915050565b6001600160a01b0384163b156120095760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061272e90899089908890889088906004016137ca565b6020604051808303815f875af1925050508015612768575060408051601f3d908101601f19168201909252612765918101906136d4565b60015b612774576125d16136ef565b6001600160e01b0319811663f23a6e6160e01b146121715760405162461bcd60e51b815260040161064890613782565b6001600160a01b0381168114611a90575f5ffd5b5f5f604083850312156127c9575f5ffd5b82356127d4816127a4565b946020939093013593505050565b6001600160e01b031981168114611a90575f5ffd5b5f60208284031215612807575f5ffd5b81356119b2816127e2565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6119b26020830184612812565b5f60208284031215612862575f5ffd5b5035919050565b5f60208284031215612879575f5ffd5b81356119b2816127a4565b5f5f60408385031215612895575f5ffd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b601f8201601f191681016001600160401b03811182821017156128dd576128dd6128a4565b6040525050565b5f6001600160401b038211156128fc576128fc6128a4565b5060051b60200190565b5f82601f830112612915575f5ffd5b8135612920816128e4565b60405161292d82826128b8565b80915082815260208101915060208360051b860101925085831115612950575f5ffd5b602085015b8381101561296d578035835260209283019201612955565b5095945050505050565b5f82601f830112612986575f5ffd5b8135602083015f5f6001600160401b038411156129a5576129a56128a4565b50604051601f8401601f1916602001906129bf82826128b8565b8092508481528785850111156129d3575f5ffd5b848460208301375f60208683010152809550505050505092915050565b5f5f5f5f5f60a08688031215612a04575f5ffd5b8535612a0f816127a4565b94506020860135612a1f816127a4565b935060408601356001600160401b03811115612a39575f5ffd5b612a4588828901612906565b93505060608601356001600160401b03811115612a60575f5ffd5b612a6c88828901612906565b92505060808601356001600160401b03811115612a87575f5ffd5b612a9388828901612977565b9150509295509295909350565b5f82601f830112612aaf575f5ffd5b8135612aba816128e4565b604051612ac782826128b8565b80915082815260208101915060208360051b860101925085831115612aea575f5ffd5b602085015b8381101561296d578035612b02816127a4565b835260209283019201612aef565b5f5f60408385031215612b21575f5ffd5b82356001600160401b03811115612b36575f5ffd5b612b4285828601612aa0565b92505060208301356001600160401b03811115612b5d575f5ffd5b612b6985828601612906565b9150509250929050565b5f8151808452602084019350602083015f5b82811015612ba3578151865260209586019590910190600101612b85565b5093949350505050565b602081525f6119b26020830184612b73565b5f5f5f60608486031215612bd1575f5ffd5b83356001600160401b03811115612be6575f5ffd5b612bf286828701612aa0565b93505060208401356001600160401b03811115612c0d575f5ffd5b612c1986828701612906565b92505060408401356001600160401b03811115612c34575f5ffd5b612c4086828701612906565b9150509250925092565b5f60208284031215612c5a575f5ffd5b81356001600160401b03811115612c6f575f5ffd5b612c7b84828501612977565b949350505050565b5f5f5f60608486031215612c95575f5ffd5b833592506020840135612ca7816127a4565b929592945050506040919091013590565b5f5f60208385031215612cc9575f5ffd5b82356001600160401b03811115612cde575f5ffd5b8301601f81018513612cee575f5ffd5b80356001600160401b03811115612d03575f5ffd5b856020828401011115612d14575f5ffd5b6020919091019590945092505050565b5f5f60408385031215612d35575f5ffd5b8235915060208301356001600160401b03811115612d51575f5ffd5b612b6985828601612977565b5f5f60408385031215612d6e575f5ffd5b8235612d79816127a4565b915060208301358015158114612d8d575f5ffd5b809150509250929050565b5f60208284031215612da8575f5ffd5b81356001600160401b03811115612dbd575f5ffd5b612c7b84828501612906565b5f82825180855260208501945060208160051b830101602085015f5b83811015612e1757601f19858403018852612e01838351612812565b6020988901989093509190910190600101612de5565b50909695505050505050565b604081525f612e356040830185612dc9565b8281036020840152612e478185612dc9565b95945050505050565b5f82601f830112612e5f575f5ffd5b8135612e6a816128e4565b604051612e7782826128b8565b80915082815260208101915060208360051b860101925085831115612e9a575f5ffd5b602085015b8381101561296d5780356001600160401b03811115612ebc575f5ffd5b612ecb886020838a0101612977565b84525060209283019201612e9f565b5f5f5f60608486031215612eec575f5ffd5b83356001600160401b03811115612f01575f5ffd5b612f0d86828701612906565b93505060208401356001600160401b03811115612f28575f5ffd5b612f3486828701612e50565b92505060408401356001600160401b03811115612f4f575f5ffd5b612c4086828701612e50565b604080825283519082018190525f9060208501906060840190835b81811015612f9d5783516001600160a01b0316835260209384019390920191600101612f76565b50508381036020850152612fb18186612b73565b9695505050505050565b5f5f5f60608486031215612fcd575f5ffd5b8335612fd8816127a4565b95602085013595506040909401359392505050565b606081525f612fff6060830186612b73565b82810360208401526130118186612b73565b915050826040830152949350505050565b5f5f60408385031215613033575f5ffd5b823561303e816127a4565b91506020830135612d8d816127a4565b5f5f5f5f5f60a08688031215613062575f5ffd5b853561306d816127a4565b9450602086013561307d816127a4565b9350604086013592506060860135915060808601356001600160401b03811115612a87575f5ffd5b600181811c908216806130b957607f821691505b6020821081036130d757634e487b7160e01b5f52602260045260245ffd5b50919050565b5f81546130e9816130a5565b600182168015613100576001811461311557613142565b60ff1983168652811515820286019350613142565b845f5260205f205f5b8381101561313a5781548882015260019091019060200161311e565b505081860193505b50505092915050565b5f81518060208401855e5f93019283525090919050565b5f612e4761317961317384886130dd565b8661314b565b846130dd565b6a7b226e616d65223a20222360a81b81525f61319e600b83018761314b565b600160fd1b81526131b2600182018761314b565b711116113232b9b1b934b83a34b7b7111d101160711b815290506131d9601282018661314b565b6b11161134b6b0b3b2911d101160a11b815290506131fa600c82018561314b565b61227d60f01b8152600201979650505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081525f6119b2601d83018461314b565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761067357610673613241565b5f8261328657634e487b7160e01b5f52601260045260245ffd5b500490565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b634e487b7160e01b5f52603260045260245ffd5b60208082526021908201527f4f6e6c7920616c6c6f77656420666f72206d617374657220636f6e74726163746040820152607360f81b606082015260800190565b601f821115610f9c57805f5260205f20601f840160051c810160208510156133545750805b601f840160051c820191505b8181101561095f575f8155600101613360565b81516001600160401b0381111561338c5761338c6128a4565b6133a08161339a84546130a5565b8461332f565b6020601f8211600181146133d2575f83156133bb5750848201515b5f19600385901b1c1916600184901b17845561095f565b5f84815260208120601f198516915b8281101561340157878501518255602094850194600190920191016133e1565b508482101561341e57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160401b03831115613444576134446128a4565b6134588361345283546130a5565b8361332f565b5f601f841160018114613489575f85156134725750838201355b5f19600387901b1c1916600186901b17835561095f565b5f83815260208120601f198716915b828110156134b85786850135825560209485019460019092019101613498565b50868210156134d4575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b602081525f5f83546134f7816130a5565b806020860152600182165f8114613515576001811461353157613562565b60ff1983166040870152604082151560051b8701019350613562565b865f5260205f205f5b838110156135595781548882016040015260019091019060200161353a565b87016040019450505b509195945050505050565b8181038181111561067357610673613241565b8082018082111561067357610673613241565b5f600182016135a4576135a4613241565b5060010190565b60ff818116838216019081111561067357610673613241565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081525f6136656040830185612b73565b8281036020840152612e478185612b73565b6001600160a01b0386811682528516602082015260a0604082018190525f906136a290830186612b73565b82810360608401526136b48186612b73565b905082810360808401526136c88185612812565b98975050505050505050565b5f602082840312156136e4575f5ffd5b81516119b2816127e2565b5f60033d11156137055760045f5f3e505f5160e01c5b90565b5f60443d10156137155790565b6040513d600319016004823e80513d60248201116001600160401b038211171561373e57505090565b80820180516001600160401b03811115613759575050505090565b3d8401600319018282016020011115613773575050505090565b610b0c602082850101856128b8565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190525f9061380390830184612812565b97965050505050505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122090e34ca897be276ef481564997b200736aae6d8a3495470ff8b47562b74d9c7f64736f6c634300081c003368747470733a2f2f697066732f6261667962656966736b6b6d6c746e73636e78346f6c617335636b7835723471646467336f726d6d71676b6f347736376b776c6d6c6762713236612f
Deployed Bytecode
0x608060405234801561000f575f5ffd5b5060043610610254575f3560e01c806384da92a711610140578063b90497e0116100bf578063e985e9c511610084578063e985e9c514610570578063ed91dcda14610583578063f242432a14610596578063f2fde38b146105a9578063f5298aca146105bc578063fc199fcb146105cf575f5ffd5b8063b90497e01461050a578063b98b624414610512578063cc855c5d14610528578063cf7470fa1461054a578063df6e99111461055d575f5ffd5b8063a22cb46511610105578063a22cb465146104a8578063a487ce2d146104bb578063a9ef3aeb146104ce578063ab19c549146104d6578063ab4f3446146104f7575f5ffd5b806384da92a7146104435780638da5cb5b1461045657806395d89b411461046757806397a1ce331461046f5780639abc832014610482575f5ffd5b80634c00de82116101d757806358e792ee1161019c57806358e792ee146103dc5780635d51b14c146103ef578063715018a6146104025780637a2a43c51461040a5780637e2285aa1461041d578063836a104014610430575f5ffd5b80634c00de82146103585780634e1273f41461038357806351cff8d9146103a357806354040610146103b657806357128683146103c9575f5ffd5b806329ee566c1161021d57806329ee566c146102e85780632a55205a146102f15780632eb2c2d6146103235780633fa8aaa91461033857806341e42f3014610345575f5ffd5b8062fdd58e1461025857806301ffc9a71461027e57806306fdde03146102a15780630e89341c146102b65780631e7a07a7146102c9575b5f5ffd5b61026b6102663660046127b8565b6105e2565b6040519081526020015b60405180910390f35b61029161028c3660046127f7565b610679565b6040519015158152602001610275565b6102a9610692565b6040516102759190612840565b6102a96102c4366004612852565b61071e565b61026b6102d7366004612869565b60416020525f908152604090205481565b61026b600b5481565b6103046102ff366004612884565b6108e5565b604080516001600160a01b039093168352602083019190915201610275565b6103366103313660046129f0565b61091a565b005b600a546102919060ff1681565b610336610353366004612869565b610966565b600c5461036b906001600160a01b031681565b6040516001600160a01b039091168152602001610275565b610396610391366004612b10565b6109f5565b6040516102759190612bad565b6103366103b1366004612869565b610b14565b6103366103c4366004612852565b610b8c565b6103366103d7366004612bbf565b610c89565b6103366103ea366004612c4a565b610da8565b6103366103fd3660046127b8565b610dbc565b610336610ee1565b610336610418366004612b10565b610ef4565b61033661042b366004612c4a565b610fa1565b61033661043e366004612c83565b610fb5565b610336610451366004612cb8565b611019565b6005546001600160a01b031661036b565b6102a961106b565b61033661047d366004612d24565b611078565b6102a960405180604001604052806007815260200166697066733a2f2f60c81b81525081565b6103366104b6366004612d5d565b611097565b6102a96104c9366004612852565b6110a2565b6102a9611141565b6104e96104e4366004612d98565b61114e565b604051610275929190612e23565b610336610505366004612eda565b6113ab565b6102a96114d9565b61051a6114e6565b604051610275929190612f5b565b61053b610536366004612fbb565b611638565b60405161027593929190612fed565b61036b610558366004612852565b6118fe565b61033661056b366004612d24565b61191d565b61029161057e366004613022565b61193c565b6102a9610591366004612852565b6119b9565b6103366105a436600461304e565b6119d5565b6103366105b7366004612869565b611a1a565b6103366105ca366004612fbb565b611a93565b6103366105dd366004612852565b611b41565b5f6001600160a01b0383166106515760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b505f818152602081815260408083206001600160a01b03861684529091529020545b92915050565b5f61068382611b4e565b80610673575061067382611b6e565b6006805461069f906130a5565b80601f01602080910402602001604051908101604052809291908181526020018280546106cb906130a5565b80156107165780601f106106ed57610100808354040283529160200191610716565b820191905f5260205f20905b8154815290600101906020018083116106f957829003601f168201915b505050505081565b5f818152600d6020526040812080546060928492909161073d906130a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610769906130a5565b80156107b45780601f1061078b576101008083540402835291602001916107b4565b820191905f5260205f20905b81548152906001019060200180831161079757829003601f168201915b505050505090505f60096107c784611bbd565b60086040516020016107db93929190613162565b60408051601f198184030181529181525f858152600e60205290812080549293509091610807906130a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610833906130a5565b801561087e5780601f106108555761010080835404028352916020019161087e565b820191905f5260205f20905b81548152906001019060200180831161086157829003601f168201915b505050505090506108bb61089185611bbd565b8483856040516020016108a7949392919061317f565b604051602081830303815290604052611ce2565b6040516020016108cb9190613210565b604051602081830303815290604052945050505050919050565b5f5f5f612710600b54856108f99190613255565b610903919061326c565b600c546001600160a01b0316969095509350505050565b6001600160a01b0385163314806109365750610936853361193c565b6109525760405162461bcd60e51b81526004016106489061328b565b61095f8585858585611e40565b5050505050565b61096e612011565b6001600160a01b0381166109d35760405162461bcd60e51b815260206004820152602660248201527f726f79616c74792063616e6e6f742062652073656e7420746f207a65726f206160448201526564647265737360d01b6064820152608401610648565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60608151835114610a5a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610648565b5f83516001600160401b03811115610a7457610a746128a4565b604051908082528060200260200182016040528015610a9d578160200160208202803683370190505b5090505f5b8451811015610b0c57610ae7858281518110610ac057610ac06132da565b6020026020010151858381518110610ada57610ada6132da565b60200260200101516105e2565b828281518110610af957610af96132da565b6020908102919091010152600101610aa2565b509392505050565b6005546001600160a01b03828116911614610b2d575f5ffd5b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610b76576040519150601f19603f3d011682016040523d82523d5f602084013e610b7b565b606091505b5050905080610b88575f5ffd5b5050565b610b94612011565b60328110610bda5760405162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b6044820152606401610648565b5f600f8260328110610bee57610bee6132da565b01546001600160a01b0316905080610c485760405162461bcd60e51b815260206004820152601960248201527f4e6f20636f6e7472616374206174207468697320696e646578000000000000006044820152606401610648565b5f600f8360328110610c5c57610c5c6132da565b0180546001600160a01b0319166001600160a01b03928316179055165f9081526041602052604081205550565b335f81815260416020526040902054600f9060328110610cab57610cab6132da565b01546001600160a01b031614610cd35760405162461bcd60e51b8152600401610648906132ee565b81518351148015610ce5575080518251145b610d2a5760405162461bcd60e51b8152602060048201526016602482015275082e4e4c2f2e640d8cadccee8d040dad2e6dac2e8c6d60531b6044820152606401610648565b5f5b8351811015610da257610d9a848281518110610d4a57610d4a6132da565b6020026020010151848381518110610d6457610d646132da565b6020026020010151848481518110610d7e57610d7e6132da565b602002602001015160405180602001604052805f81525061206b565b600101610d2c565b50505050565b610db0612011565b6009610b888282613373565b610dc4612011565b5f81118015610dd35750603281105b610e155760405162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b6044820152606401610648565b6001600160a01b038216610e5d5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610648565b5f600f8260328110610e7157610e716132da565b01546001600160a01b031690508015610e9d576001600160a01b0381165f908152604160205260408120555b82600f8360328110610eb157610eb16132da565b0180546001600160a01b0319166001600160a01b03928316179055929092165f9081526041602052604090205550565b610ee9612011565b610ef25f61217a565b565b610efc612011565b8051825114610f4d5760405162461bcd60e51b815260206004820152601860248201527f4d69736d61746368656420696e707574206c656e6774687300000000000000006044820152606401610648565b5f5b8251811015610f9c57610f94838281518110610f6d57610f6d6132da565b6020026020010151838381518110610f8757610f876132da565b6020026020010151610dbc565b600101610f4f565b505050565b610fa9612011565b6008610b888282613373565b335f81815260416020526040902054600f9060328110610fd757610fd76132da565b01546001600160a01b031614610fff5760405162461bcd60e51b8152600401610648906132ee565b610f9c82828560405180602001604052805f81525061206b565b611021612011565b600661102e82848361342d565b507fed41a19b397d8e610d8f9e6e52ab2bef7e51c9977a12cb779c7cd86747f8d509600660405161105f91906134e6565b60405180910390a15050565b6007805461069f906130a5565b611080612011565b5f828152600e60205260409020610f9c8282613373565b610b883383836121cb565b5f818152600e602052604090208054606091906110be906130a5565b80601f01602080910402602001604051908101604052809291908181526020018280546110ea906130a5565b80156111355780601f1061110c57610100808354040283529160200191611135565b820191905f5260205f20905b81548152906001019060200180831161111857829003601f168201915b50505050509050919050565b6008805461069f906130a5565b6060805f83516001600160401b0381111561116b5761116b6128a4565b60405190808252806020026020018201604052801561119e57816020015b60608152602001906001900390816111895790505b5090505f84516001600160401b038111156111bb576111bb6128a4565b6040519080825280602002602001820160405280156111ee57816020015b60608152602001906001900390816111d95790505b5090505f5b85518110156113a057600d5f878381518110611211576112116132da565b602002602001015181526020019081526020015f208054611231906130a5565b80601f016020809104026020016040519081016040528092919081815260200182805461125d906130a5565b80156112a85780601f1061127f576101008083540402835291602001916112a8565b820191905f5260205f20905b81548152906001019060200180831161128b57829003601f168201915b50505050508382815181106112bf576112bf6132da565b6020026020010181905250600e5f8783815181106112df576112df6132da565b602002602001015181526020019081526020015f2080546112ff906130a5565b80601f016020809104026020016040519081016040528092919081815260200182805461132b906130a5565b80156113765780601f1061134d57610100808354040283529160200191611376565b820191905f5260205f20905b81548152906001019060200180831161135957829003601f168201915b505050505082828151811061138d5761138d6132da565b60209081029190910101526001016111f3565b509094909350915050565b6113b3612011565b815183511480156113c5575080518251145b6114245760405162461bcd60e51b815260206004820152602a60248201527f416c6c20696e70757420617272617973206d75737420686176652074686520736044820152690c2daca40d8cadccee8d60b31b6064820152608401610648565b5f5b8351811015610da257828181518110611441576114416132da565b6020026020010151600d5f86848151811061145e5761145e6132da565b602002602001015181526020019081526020015f20908161147f9190613373565b50818181518110611492576114926132da565b6020026020010151600e5f8684815181106114af576114af6132da565b602002602001015181526020019081526020015f2090816114d09190613373565b50600101611426565b6009805461069f906130a5565b604080516032808252610660820190925260609182915f916020820161064080368337505060408051603280825261066082019092529293505f92915060208201610640803683370190505090505f5b603281101561162e57600f8160328110611552576115526132da565b015483516001600160a01b0390911690849083908110611574576115746132da565b6001600160a01b03909216602092830291909101909101525f600f82603281106115a0576115a06132da565b01546001600160a01b0316146116065760415f600f83603281106115c6576115c66132da565b01546001600160a01b0316815260208101919091526040015f205482518390839081106115f5576115f56132da565b602002602001018181525050611626565b5f828281518110611619576116196132da565b6020026020010181815250505b600101611536565b5090939092509050565b6060805f84841161168b5760405162461bcd60e51b815260206004820152601f60248201527f53746f70206d7573742062652067726561746572207468616e207374617274006044820152606401610648565b610190611698868661356d565b11156116e65760405162461bcd60e51b815260206004820152601e60248201527f52616e676520746f6f206c617267652c206d617820343030206974656d7300006044820152606401610648565b5f6116f1868661356d565b6001600160401b03811115611708576117086128a4565b604051908082528060200260200182016040528015611731578160200160208202803683370190505b5090505f5b611740878761356d565b81101561177a5761175588610266838a613580565b828281518110611767576117676132da565b6020908102919091010152600101611736565b505f805b82518110156117be575f83828151811061179a5761179a6132da565b602002602001015111156117b657816117b281613593565b9250505b60010161177e565b505f816001600160401b038111156117d8576117d86128a4565b604051908082528060200260200182016040528015611801578160200160208202803683370190505b5090505f826001600160401b0381111561181d5761181d6128a4565b604051908082528060200260200182016040528015611846578160200160208202803683370190505b5090505f805b85518110156118eb575f868281518110611868576118686132da565b602002602001015111156118e357611880818c613580565b848381518110611892576118926132da565b6020026020010181815250508581815181106118b0576118b06132da565b60200260200101518383815181106118ca576118ca6132da565b6020908102919091010152816118df81613593565b9250505b60010161184c565b50919a9099509197509095505050505050565b600f816032811061190d575f80fd5b01546001600160a01b0316905081565b611925612011565b5f828152600d60205260409020610f9c8282613373565b5f805b60328160ff16101561198857600f8160ff1660328110611961576119616132da565b01546001600160a01b0390811690841603611980576001915050610673565b60010161193f565b506001600160a01b038084165f9081526001602090815260408083209386168352929052205460ff165b9392505050565b5f818152600d602052604090208054606091906110be906130a5565b6001600160a01b0385163314806119f157506119f1853361193c565b611a0d5760405162461bcd60e51b81526004016106489061328b565b61095f85858585856122aa565b611a22612011565b6001600160a01b038116611a875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610648565b611a908161217a565b50565b335f81815260416020526040902054600f9060328110611ab557611ab56132da565b01546001600160a01b031614611add5760405162461bcd60e51b8152600401610648906132ee565b80611ae884846105e2565b1015611b365760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420656e6f7567682062616c616e636520746f206275726e0000000000006044820152606401610648565b610f9c8383836123d0565b611b49612011565b600b55565b5f6001600160e01b0319821663152a902d60e11b14806106735750610673825b5f6001600160e01b03198216636cdb3d1360e11b1480611b9e57506001600160e01b031982166303a24d0760e21b145b8061067357506301ffc9a760e01b6001600160e01b0319831614610673565b6060815f03611be35750506040805180820190915260018152600360fc1b602082015290565b815f5b8115611c0c5780611bf681613593565b9150611c059050600a8361326c565b9150611be6565b5f816001600160401b03811115611c2557611c256128a4565b6040519080825280601f01601f191660200182016040528015611c4f576020820181803683370190505b509050815b8515611cd957611c6560018261356d565b90505f611c73600a8861326c565b611c7e90600a613255565b611c88908861356d565b611c939060306135ab565b90505f8160f81b905080848481518110611caf57611caf6132da565b60200101906001600160f81b03191690815f1a905350611cd0600a8961326c565b97505050611c54565b50949350505050565b606081515f03611cff57505060408051602081019091525f815290565b5f60405180606001604052806040815260200161380f6040913990505f600384516002611d2c9190613580565b611d36919061326c565b611d41906004613255565b90505f611d4f826020613580565b6001600160401b03811115611d6657611d666128a4565b6040519080825280601f01601f191660200182016040528015611d90576020820181803683370190505b509050818152600183018586518101602084015b81831015611dfc576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825350600101611da4565b600389510660018114611e165760028114611e2757611e32565b613d3d60f01b600119830152611e32565b603d60f81b5f198301525b509398975050505050505050565b8151835114611ea25760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610648565b6001600160a01b038416611ec85760405162461bcd60e51b8152600401610648906135c4565b335f5b8451811015611fa3575f858281518110611ee757611ee76132da565b602002602001015190505f858381518110611f0457611f046132da565b6020908102919091018101515f84815280835260408082206001600160a01b038e168352909352919091205490915081811015611f535760405162461bcd60e51b815260040161064890613609565b5f838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611f8f908490613580565b909155505060019093019250611ecb915050565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611ff3929190613653565b60405180910390a4612009818787878787612547565b505050505050565b6005546001600160a01b03163314610ef25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610648565b6001600160a01b0384166120cb5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610648565b335f6120d6856126a1565b90505f6120e2856126a1565b90505f868152602081815260408083206001600160a01b038b16845290915281208054879290612113908490613580565b909155505060408051878152602081018790526001600160a01b03808a16925f92918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4612171835f898989896126ea565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b816001600160a01b0316836001600160a01b03160361223e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610648565b6001600160a01b038381165f81815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166122d05760405162461bcd60e51b8152600401610648906135c4565b335f6122db856126a1565b90505f6122e7856126a1565b90505f868152602081815260408083206001600160a01b038c168452909152902054858110156123295760405162461bcd60e51b815260040161064890613609565b5f878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290612365908490613580565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46123c5848a8a8a8a8a6126ea565b505050505050505050565b6001600160a01b0383166124325760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610648565b335f61243d846126a1565b90505f612449846126a1565b60408051602080820183525f918290528882528181528282206001600160a01b038b16835290522054909150848110156124d15760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610648565b5f868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a460408051602081019091525f9052612171565b6001600160a01b0384163b156120095760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061258b9089908990889088908890600401613677565b6020604051808303815f875af19250505080156125c5575060408051601f3d908101601f191682019092526125c2918101906136d4565b60015b612671576125d16136ef565b806308c379a00361260a57506125e5613708565b806125f0575061260c565b8060405162461bcd60e51b81526004016106489190612840565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610648565b6001600160e01b0319811663bc197c8160e01b146121715760405162461bcd60e51b815260040161064890613782565b6040805160018082528183019092526060915f91906020808301908036833701905050905082815f815181106126d9576126d96132da565b602090810291909101015292915050565b6001600160a01b0384163b156120095760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061272e90899089908890889088906004016137ca565b6020604051808303815f875af1925050508015612768575060408051601f3d908101601f19168201909252612765918101906136d4565b60015b612774576125d16136ef565b6001600160e01b0319811663f23a6e6160e01b146121715760405162461bcd60e51b815260040161064890613782565b6001600160a01b0381168114611a90575f5ffd5b5f5f604083850312156127c9575f5ffd5b82356127d4816127a4565b946020939093013593505050565b6001600160e01b031981168114611a90575f5ffd5b5f60208284031215612807575f5ffd5b81356119b2816127e2565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6119b26020830184612812565b5f60208284031215612862575f5ffd5b5035919050565b5f60208284031215612879575f5ffd5b81356119b2816127a4565b5f5f60408385031215612895575f5ffd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b601f8201601f191681016001600160401b03811182821017156128dd576128dd6128a4565b6040525050565b5f6001600160401b038211156128fc576128fc6128a4565b5060051b60200190565b5f82601f830112612915575f5ffd5b8135612920816128e4565b60405161292d82826128b8565b80915082815260208101915060208360051b860101925085831115612950575f5ffd5b602085015b8381101561296d578035835260209283019201612955565b5095945050505050565b5f82601f830112612986575f5ffd5b8135602083015f5f6001600160401b038411156129a5576129a56128a4565b50604051601f8401601f1916602001906129bf82826128b8565b8092508481528785850111156129d3575f5ffd5b848460208301375f60208683010152809550505050505092915050565b5f5f5f5f5f60a08688031215612a04575f5ffd5b8535612a0f816127a4565b94506020860135612a1f816127a4565b935060408601356001600160401b03811115612a39575f5ffd5b612a4588828901612906565b93505060608601356001600160401b03811115612a60575f5ffd5b612a6c88828901612906565b92505060808601356001600160401b03811115612a87575f5ffd5b612a9388828901612977565b9150509295509295909350565b5f82601f830112612aaf575f5ffd5b8135612aba816128e4565b604051612ac782826128b8565b80915082815260208101915060208360051b860101925085831115612aea575f5ffd5b602085015b8381101561296d578035612b02816127a4565b835260209283019201612aef565b5f5f60408385031215612b21575f5ffd5b82356001600160401b03811115612b36575f5ffd5b612b4285828601612aa0565b92505060208301356001600160401b03811115612b5d575f5ffd5b612b6985828601612906565b9150509250929050565b5f8151808452602084019350602083015f5b82811015612ba3578151865260209586019590910190600101612b85565b5093949350505050565b602081525f6119b26020830184612b73565b5f5f5f60608486031215612bd1575f5ffd5b83356001600160401b03811115612be6575f5ffd5b612bf286828701612aa0565b93505060208401356001600160401b03811115612c0d575f5ffd5b612c1986828701612906565b92505060408401356001600160401b03811115612c34575f5ffd5b612c4086828701612906565b9150509250925092565b5f60208284031215612c5a575f5ffd5b81356001600160401b03811115612c6f575f5ffd5b612c7b84828501612977565b949350505050565b5f5f5f60608486031215612c95575f5ffd5b833592506020840135612ca7816127a4565b929592945050506040919091013590565b5f5f60208385031215612cc9575f5ffd5b82356001600160401b03811115612cde575f5ffd5b8301601f81018513612cee575f5ffd5b80356001600160401b03811115612d03575f5ffd5b856020828401011115612d14575f5ffd5b6020919091019590945092505050565b5f5f60408385031215612d35575f5ffd5b8235915060208301356001600160401b03811115612d51575f5ffd5b612b6985828601612977565b5f5f60408385031215612d6e575f5ffd5b8235612d79816127a4565b915060208301358015158114612d8d575f5ffd5b809150509250929050565b5f60208284031215612da8575f5ffd5b81356001600160401b03811115612dbd575f5ffd5b612c7b84828501612906565b5f82825180855260208501945060208160051b830101602085015f5b83811015612e1757601f19858403018852612e01838351612812565b6020988901989093509190910190600101612de5565b50909695505050505050565b604081525f612e356040830185612dc9565b8281036020840152612e478185612dc9565b95945050505050565b5f82601f830112612e5f575f5ffd5b8135612e6a816128e4565b604051612e7782826128b8565b80915082815260208101915060208360051b860101925085831115612e9a575f5ffd5b602085015b8381101561296d5780356001600160401b03811115612ebc575f5ffd5b612ecb886020838a0101612977565b84525060209283019201612e9f565b5f5f5f60608486031215612eec575f5ffd5b83356001600160401b03811115612f01575f5ffd5b612f0d86828701612906565b93505060208401356001600160401b03811115612f28575f5ffd5b612f3486828701612e50565b92505060408401356001600160401b03811115612f4f575f5ffd5b612c4086828701612e50565b604080825283519082018190525f9060208501906060840190835b81811015612f9d5783516001600160a01b0316835260209384019390920191600101612f76565b50508381036020850152612fb18186612b73565b9695505050505050565b5f5f5f60608486031215612fcd575f5ffd5b8335612fd8816127a4565b95602085013595506040909401359392505050565b606081525f612fff6060830186612b73565b82810360208401526130118186612b73565b915050826040830152949350505050565b5f5f60408385031215613033575f5ffd5b823561303e816127a4565b91506020830135612d8d816127a4565b5f5f5f5f5f60a08688031215613062575f5ffd5b853561306d816127a4565b9450602086013561307d816127a4565b9350604086013592506060860135915060808601356001600160401b03811115612a87575f5ffd5b600181811c908216806130b957607f821691505b6020821081036130d757634e487b7160e01b5f52602260045260245ffd5b50919050565b5f81546130e9816130a5565b600182168015613100576001811461311557613142565b60ff1983168652811515820286019350613142565b845f5260205f205f5b8381101561313a5781548882015260019091019060200161311e565b505081860193505b50505092915050565b5f81518060208401855e5f93019283525090919050565b5f612e4761317961317384886130dd565b8661314b565b846130dd565b6a7b226e616d65223a20222360a81b81525f61319e600b83018761314b565b600160fd1b81526131b2600182018761314b565b711116113232b9b1b934b83a34b7b7111d101160711b815290506131d9601282018661314b565b6b11161134b6b0b3b2911d101160a11b815290506131fa600c82018561314b565b61227d60f01b8152600201979650505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081525f6119b2601d83018461314b565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761067357610673613241565b5f8261328657634e487b7160e01b5f52601260045260245ffd5b500490565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b634e487b7160e01b5f52603260045260245ffd5b60208082526021908201527f4f6e6c7920616c6c6f77656420666f72206d617374657220636f6e74726163746040820152607360f81b606082015260800190565b601f821115610f9c57805f5260205f20601f840160051c810160208510156133545750805b601f840160051c820191505b8181101561095f575f8155600101613360565b81516001600160401b0381111561338c5761338c6128a4565b6133a08161339a84546130a5565b8461332f565b6020601f8211600181146133d2575f83156133bb5750848201515b5f19600385901b1c1916600184901b17845561095f565b5f84815260208120601f198516915b8281101561340157878501518255602094850194600190920191016133e1565b508482101561341e57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b6001600160401b03831115613444576134446128a4565b6134588361345283546130a5565b8361332f565b5f601f841160018114613489575f85156134725750838201355b5f19600387901b1c1916600186901b17835561095f565b5f83815260208120601f198716915b828110156134b85786850135825560209485019460019092019101613498565b50868210156134d4575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b602081525f5f83546134f7816130a5565b806020860152600182165f8114613515576001811461353157613562565b60ff1983166040870152604082151560051b8701019350613562565b865f5260205f205f5b838110156135595781548882016040015260019091019060200161353a565b87016040019450505b509195945050505050565b8181038181111561067357610673613241565b8082018082111561067357610673613241565b5f600182016135a4576135a4613241565b5060010190565b60ff818116838216019081111561067357610673613241565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081525f6136656040830185612b73565b8281036020840152612e478185612b73565b6001600160a01b0386811682528516602082015260a0604082018190525f906136a290830186612b73565b82810360608401526136b48186612b73565b905082810360808401526136c88185612812565b98975050505050505050565b5f602082840312156136e4575f5ffd5b81516119b2816127e2565b5f60033d11156137055760045f5f3e505f5160e01c5b90565b5f60443d10156137155790565b6040513d600319016004823e80513d60248201116001600160401b038211171561373e57505090565b80820180516001600160401b03811115613759575050505090565b3d8401600319018282016020011115613773575050505090565b610b0c602082850101856128b8565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190525f9061380390830184612812565b97965050505050505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122090e34ca897be276ef481564997b200736aae6d8a3495470ff8b47562b74d9c7f64736f6c634300081c0033
Deployed Bytecode Sourcemap
56731:13493:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20972:230;;;;;;:::i;:::-;;:::i;:::-;;;668:25:1;;;656:2;641:18;20972:230:0;;;;;;;;58484:267;;;;;;:::i;:::-;;:::i;:::-;;;1255:14:1;;1248:22;1230:41;;1218:2;1203:18;58484:267:0;1090:187:1;56892:54:0;;;:::i;:::-;;;;;;;:::i;68766:875::-;;;;;;:::i;:::-;;:::i;59003:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;57287:25;;;;;;61922:208;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;2827:32:1;;;2809:51;;2891:2;2876:18;;2869:34;;;;2782:18;61922:208:0;2635:274:1;22916:439:0;;;;;;:::i;:::-;;:::i;:::-;;57203:28;;;;;;;;;62136:221;;;;;;:::i;:::-;;:::i;57357:31::-;;;;;-1:-1:-1;;;;;57357:31:0;;;;;;-1:-1:-1;;;;;6214:32:1;;;6196:51;;6184:2;6169:18;57357:31:0;6050:203:1;21368:524:0;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;62659:237::-;;;;;;:::i;:::-;;:::i;60729:519::-;;;;;;:::i;:::-;;:::i;65526:557::-;;;;;;:::i;:::-;;:::i;57564:202::-;;;;;;:::i;:::-;;:::i;59473:813::-;;;;;;:::i;:::-;;:::i;45954:103::-;;;:::i;60294:423::-;;;;;;:::i;:::-;;:::i;57772:209::-;;;;;;:::i;:::-;;:::i;65344:148::-;;;;;;:::i;:::-;;:::i;62508:145::-;;;;;;:::i;:::-;;:::i;45306:87::-;45379:6;;-1:-1:-1;;;;;45379:6:0;45306:87;;56953:43;;;:::i;63410:146::-;;;;;;:::i;:::-;;:::i;57003:42::-;;;;;;;;;;;;;;;-1:-1:-1;;;57003:42:0;;;;;21965:155;;;;;;:::i;:::-;;:::i;64269:129::-;;;;;;:::i;:::-;;:::i;57052:37::-;;;:::i;64464:499::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;63633:448::-;;;;;;:::i;:::-;;:::i;57096:100::-;;;:::i;61258:577::-;;;:::i;:::-;;;;;;;;:::i;67084:1188::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;58906:34::-;;;;;;:::i;:::-;;:::i;63286:118::-;;;;;;:::i;:::-;;:::i;62902:360::-;;;;;;:::i;:::-;;:::i;64115:115::-;;;;;;:::i;:::-;;:::i;22432:407::-;;;;;;:::i;:::-;;:::i;46212:201::-;;;;;;:::i;:::-;;:::i;66155:206::-;;;;;;:::i;:::-;;:::i;62363:139::-;;;;;;:::i;:::-;;:::i;20972:230::-;21058:7;-1:-1:-1;;;;;21086:21:0;;21078:76;;;;-1:-1:-1;;;21078:76:0;;18201:2:1;21078:76:0;;;18183:21:1;18240:2;18220:18;;;18213:30;18279:34;18259:18;;;18252:62;-1:-1:-1;;;18330:18:1;;;18323:40;18380:19;;21078:76:0;;;;;;;;;-1:-1:-1;21172:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;21172:22:0;;;;;;;;;;20972:230;;;;;:::o;58484:267::-;58587:4;58662:38;58688:11;58662:25;:38::i;:::-;:80;;;;58704:38;58730:11;58704:25;:38::i;56892:54::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68766:875::-;68867:12;68929:17;;;:8;:17;;;;;68907:39;;68832:22;;68887:8;;68867:12;;68907:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68957:28;69012:8;69021:18;69031:7;69021:9;:18::i;:::-;69041:14;68995:61;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;68995:61:0;;;;;;;;;69068:26;69097:24;;;:15;68995:61;69097:24;;;;69068:53;;68995:61;;-1:-1:-1;69068:26:0;;:53;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69224:388;69344:18;69354:7;69344:9;:18::i;:::-;69367:5;69424:12;69508:14;69284:294;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69224:13;:388::i;:::-;69161:462;;;;;;;;:::i;:::-;;;;;;;;;;;;;69143:481;;68856:785;;;;68766:875;;;:::o;61922:208::-;62002:7;62011;62031:14;62073:5;62062:7;;62049:10;:20;;;;:::i;:::-;62048:30;;;;:::i;:::-;62097:16;;-1:-1:-1;;;;;62097:16:0;;62031:47;;-1:-1:-1;61922:208:0;-1:-1:-1;;;;61922:208:0:o;22916:439::-;-1:-1:-1;;;;;23149:20:0;;17728:10;23149:20;;:60;;-1:-1:-1;23173:36:0;23190:4;17728:10;62902:360;:::i;23173:36::-;23127:157;;;;-1:-1:-1;;;23127:157:0;;;;;;;:::i;:::-;23295:52;23318:4;23324:2;23328:3;23333:7;23342:4;23295:22;:52::i;:::-;22916:439;;;;;:::o;62136:221::-;45192:13;:11;:13::i;:::-;-1:-1:-1;;;;;62228:31:0;::::1;62220:82;;;::::0;-1:-1:-1;;;62220:82:0;;22966:2:1;62220:82:0::1;::::0;::::1;22948:21:1::0;23005:2;22985:18;;;22978:30;23044:34;23024:18;;;23017:62;-1:-1:-1;;;23095:18:1;;;23088:36;23141:19;;62220:82:0::1;22764:402:1::0;62220:82:0::1;62313:16;:36:::0;;-1:-1:-1;;;;;;62313:36:0::1;-1:-1:-1::0;;;;;62313:36:0;;;::::1;::::0;;;::::1;::::0;;62136:221::o;21368:524::-;21524:16;21585:3;:10;21566:8;:15;:29;21558:83;;;;-1:-1:-1;;;21558:83:0;;23373:2:1;21558:83:0;;;23355:21:1;23412:2;23392:18;;;23385:30;23451:34;23431:18;;;23424:62;-1:-1:-1;;;23502:18:1;;;23495:39;23551:19;;21558:83:0;23171:405:1;21558:83:0;21654:30;21701:8;:15;-1:-1:-1;;;;;21687:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21687:30:0;-1:-1:-1;21654:63:0;-1:-1:-1;21735:9:0;21730:122;21754:8;:15;21750:1;:19;21730:122;;;21810:30;21820:8;21829:1;21820:11;;;;;;;;:::i;:::-;;;;;;;21833:3;21837:1;21833:6;;;;;;;;:::i;:::-;;;;;;;21810:9;:30::i;:::-;21791:13;21805:1;21791:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;21771:3;;21730:122;;;-1:-1:-1;21871:13:0;21368:524;-1:-1:-1;;;21368:524:0:o;62659:237::-;45379:6;;-1:-1:-1;;;;;62781:14:0;;;45379:6;;62781:14;62773:23;;;;;;62808:9;62822:3;-1:-1:-1;;;;;62822:8:0;62838:21;62822:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62807:57;;;62883:4;62875:13;;;;;;62707:189;62659:237;:::o;60729:519::-;45192:13;:11;:13::i;:::-;60821:2:::1;60812:6;:11;60804:43;;;::::0;-1:-1:-1;;;60804:43:0;;24125:2:1;60804:43:0::1;::::0;::::1;24107:21:1::0;24164:2;24144:18;;;24137:30;-1:-1:-1;;;24183:18:1;;;24176:49;24242:18;;60804:43:0::1;23923:343:1::0;60804:43:0::1;60901:24;60928:15;60944:6;60928:23;;;;;;;:::i;:::-;;::::0;-1:-1:-1;;;;;60928:23:0::1;::::0;-1:-1:-1;60928:23:0;60966:68:::1;;;::::0;-1:-1:-1;;;60966:68:0;;24473:2:1;60966:68:0::1;::::0;::::1;24455:21:1::0;24512:2;24492:18;;;24485:30;24551:27;24531:18;;;24524:55;24596:18;;60966:68:0::1;24271:349:1::0;60966:68:0::1;61186:1;61152:15;61168:6;61152:23;;;;;;;:::i;:::-;;:36:::0;;-1:-1:-1;;;;;;61152:36:0::1;-1:-1:-1::0;;;;;61152:36:0;;::::1;;::::0;;61203:29:::1;-1:-1:-1::0;61203:29:0;;;:11:::1;:29;::::0;;;;:33;-1:-1:-1;60729:519:0:o;65526:557::-;59385:10;59357:23;;;;:11;:23;;;;;;59341:15;;:40;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;59341:40:0;:54;59333:100;;;;-1:-1:-1;;;59333:100:0;;;;;;;:::i;:::-;65836:4:::1;:11;65822:3;:10;:25;:59;;;;;65866:8;:15;65851:4;:11;:30;65822:59;65814:94;;;::::0;-1:-1:-1;;;65814:94:0;;25229:2:1;65814:94:0::1;::::0;::::1;25211:21:1::0;25268:2;25248:18;;;25241:30;-1:-1:-1;;;25287:18:1;;;25280:52;25349:18;;65814:94:0::1;25027:346:1::0;65814:94:0::1;65934:6;65929:147;65950:3;:10;65946:1;:14;65929:147;;;65982:39;65988:3;65992:1;65988:6;;;;;;;;:::i;:::-;;;;;;;65996:4;66001:1;65996:7;;;;;;;;:::i;:::-;;;;;;;66005:8;66014:1;66005:11;;;;;;;;:::i;:::-;;;;;;;65982:39;;;;;;;;;;;::::0;:5:::1;:39::i;:::-;65962:3;;65929:147;;;;65526:557:::0;;;:::o;57564:202::-;45192:13;:11;:13::i;:::-;57632:8:::1;:14;57643:3:::0;57632:8;:14:::1;:::i;59473:813::-:0;45192:13;:11;:13::i;:::-;59579:1:::1;59571:6;:9;:24;;;;;59593:2;59584:6;:11;59571:24;59563:56;;;::::0;-1:-1:-1;;;59563:56:0;;24125:2:1;59563:56:0::1;::::0;::::1;24107:21:1::0;24164:2;24144:18;;;24137:30;-1:-1:-1;;;24183:18:1;;;24176:49;24242:18;;59563:56:0::1;23923:343:1::0;59563:56:0::1;-1:-1:-1::0;;;;;59681:22:0;::::1;59673:50;;;::::0;-1:-1:-1;;;59673:50:0;;27578:2:1;59673:50:0::1;::::0;::::1;27560:21:1::0;27617:2;27597:18;;;27590:30;-1:-1:-1;;;27636:18:1;;;27629:45;27691:18;;59673:50:0::1;27376:339:1::0;59673:50:0::1;59822:23;59848:15;59864:6;59848:23;;;;;;;:::i;:::-;;::::0;-1:-1:-1;;;;;59848:23:0::1;::::0;-1:-1:-1;59890:29:0;;59886:167:::1;;-1:-1:-1::0;;;;;60005:28:0;::::1;60036:1;60005:28:::0;;;:11:::1;:28;::::0;;;;:32;59886:167:::1;60170:8;60144:15;60160:6;60144:23;;;;;;;:::i;:::-;;:34:::0;;-1:-1:-1;;;;;;60144:34:0::1;-1:-1:-1::0;;;;;60144:34:0;;::::1;;::::0;;60193:21;;;::::1;-1:-1:-1::0;60193:21:0;;;:11:::1;:21;::::0;;;;:30;-1:-1:-1;59473:813:0:o;45954:103::-;45192:13;:11;:13::i;:::-;46019:30:::1;46046:1;46019:18;:30::i;:::-;45954:103::o:0;60294:423::-;45192:13;:11;:13::i;:::-;60440:8:::1;:15;60419:10;:17;:36;60411:73;;;::::0;-1:-1:-1;;;60411:73:0;;27922:2:1;60411:73:0::1;::::0;::::1;27904:21:1::0;27961:2;27941:18;;;27934:30;28000:26;27980:18;;;27973:54;28044:18;;60411:73:0::1;27720:348:1::0;60411:73:0::1;60555:6;60550:156;60571:10;:17;60567:1;:21;60550:156;;;60614:45;60632:10;60643:1;60632:13;;;;;;;;:::i;:::-;;;;;;;60647:8;60656:1;60647:11;;;;;;;;:::i;:::-;;;;;;;60614:17;:45::i;:::-;60590:3;;60550:156;;;;60294:423:::0;;:::o;57772:209::-;45192:13;:11;:13::i;:::-;57841:14:::1;:20;57858:3:::0;57841:14;:20:::1;:::i;65344:148::-:0;59385:10;59357:23;;;;:11;:23;;;;;;59341:15;;:40;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;59341:40:0;:54;59333:100;;;;-1:-1:-1;;;59333:100:0;;;;;;;:::i;:::-;65433:28:::1;65439:3;65444;65449:7;65433:28;;;;;;;;;;;::::0;:5:::1;:28::i;62508:145::-:0;45192:13;:11;:13::i;:::-;62601:4:::1;:12;62608:5:::0;;62601:4;:12:::1;:::i;:::-;;62629:16;62640:4;62629:16;;;;;;:::i;:::-;;;;;;;;62508:145:::0;;:::o;56953:43::-;;;;;;;:::i;63410:146::-;45192:13;:11;:13::i;:::-;63508:25:::1;::::0;;;:15:::1;:25;::::0;;;;:40:::1;63536:12:::0;63508:25;:40:::1;:::i;21965:155::-:0;22060:52;17728:10;22093:8;22103;22060:18;:52::i;64269:129::-;64365:25;;;;:15;:25;;;;;64358:32;;64332:13;;64365:25;64358:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64269:129;;;:::o;57052:37::-;;;;;;;:::i;64464:499::-;64562:15;64579;64612:21;64649:9;:16;-1:-1:-1;;;;;64636:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64612:54;;64677:28;64721:9;:16;-1:-1:-1;;;;;64708:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64677:61:0;-1:-1:-1;64756:6:0;64751:166;64772:9;:16;64768:1;:20;64751:166;;;64821:8;:22;64830:9;64840:1;64830:12;;;;;;;;:::i;:::-;;;;;;;64821:22;;;;;;;;;;;64810:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;64816:1;64810:8;;;;;;;;:::i;:::-;;;;;;:33;;;;64876:15;:29;64892:9;64902:1;64892:12;;;;;;;;:::i;:::-;;;;;;;64876:29;;;;;;;;;;;64858:47;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:12;64871:1;64858:15;;;;;;;;:::i;:::-;;;;;;;;;;:47;64790:3;;64751:166;;;-1:-1:-1;64935:5:0;;64942:12;;-1:-1:-1;64464:499:0;-1:-1:-1;;64464:499:0:o;63633:448::-;45192:13;:11;:13::i;:::-;63794:6:::1;:13;63774:9;:16;:33;:74;;;;;63828:13;:20;63811:6;:13;:37;63774:74;63766:129;;;::::0;-1:-1:-1;;;63766:129:0;;30382:2:1;63766:129:0::1;::::0;::::1;30364:21:1::0;30421:2;30401:18;;;30394:30;30460:34;30440:18;;;30433:62;-1:-1:-1;;;30511:18:1;;;30504:40;30561:19;;63766:129:0::1;30180:406:1::0;63766:129:0::1;63911:6;63906:168;63927:9;:16;63923:1;:20;63906:168;;;63990:6;63997:1;63990:9;;;;;;;;:::i;:::-;;;;;;;63965:8;:22;63974:9;63984:1;63974:12;;;;;;;;:::i;:::-;;;;;;;63965:22;;;;;;;;;;;:34;;;;;;:::i;:::-;;64046:13;64060:1;64046:16;;;;;;;;:::i;:::-;;;;;;;64014:15;:29;64030:9;64040:1;64030:12;;;;;;;;:::i;:::-;;;;;;;64014:29;;;;;;;;;;;:48;;;;;;:::i;:::-;-1:-1:-1::0;63945:3:0::1;;63906:168;;57096:100:::0;;;;;;;:::i;61258:577::-;61389:17;;;61403:2;61389:17;;;;;;;;;61312:16;;;;61360:26;;61389:17;;;;;;;;-1:-1:-1;;61445:14:0;;;61456:2;61445:14;;;;;;;;;61360:46;;-1:-1:-1;61421:21:0;;61445:14;-1:-1:-1;61445:14:0;;;;;;;;;;-1:-1:-1;;61421:38:0;-1:-1:-1;61481:6:0;61476:304;61497:2;61493:1;:6;61476:304;;;61540:15;61556:1;61540:18;;;;;;;:::i;:::-;;;61525:12;;-1:-1:-1;;;;;61540:18:0;;;;61525:9;;61535:1;;61525:12;;;;;;:::i;:::-;-1:-1:-1;;;;;61525:33:0;;;:12;;;;;;;;;;;:33;61611:1;61581:15;61597:1;61581:18;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;61581:18:0;:32;61577:188;;61651:11;:31;61663:15;61679:1;61663:18;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;61663:18:0;61651:31;;;;;;;;;;;61663:18;61651:31;;61638:10;;:7;;61646:1;;61638:10;;;;;;:::i;:::-;;;;;;:44;;;;;61577:188;;;61744:1;61731:7;61739:1;61731:10;;;;;;;;:::i;:::-;;;;;;:14;;;;;61577:188;61501:3;;61476:304;;;-1:-1:-1;61804:9:0;;61815:7;;-1:-1:-1;61258:577:0;-1:-1:-1;61258:577:0:o;67084:1188::-;67195:13;67210;67225:4;67257:5;67250:4;:12;67242:56;;;;-1:-1:-1;;;67242:56:0;;30793:2:1;67242:56:0;;;30775:21:1;30832:2;30812:18;;;30805:30;30871:33;30851:18;;;30844:61;30922:18;;67242:56:0;30591:355:1;67242:56:0;67333:3;67317:12;67324:5;67317:4;:12;:::i;:::-;:19;;67309:62;;;;-1:-1:-1;;;67309:62:0;;31286:2:1;67309:62:0;;;31268:21:1;31325:2;31305:18;;;31298:30;31364:32;31344:18;;;31337:60;31414:18;;67309:62:0;31084:354:1;67309:62:0;67384:29;67427:12;67434:5;67427:4;:12;:::i;:::-;-1:-1:-1;;;;;67416:24:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67416:24:0;-1:-1:-1;67384:56:0;-1:-1:-1;67456:6:0;67451:118;67473:12;67480:5;67473:4;:12;:::i;:::-;67468:1;:18;67451:118;;;67529:28;67539:6;67547:9;67555:1;67547:5;:9;:::i;67529:28::-;67508:15;67524:1;67508:18;;;;;;;;:::i;:::-;;;;;;;;;;:49;67488:3;;67451:118;;;-1:-1:-1;67581:22:0;;67618:158;67639:15;:22;67635:1;:26;67618:158;;;67708:1;67687:15;67703:1;67687:18;;;;;;;;:::i;:::-;;;;;;;:22;67683:82;;;67730:19;;;;:::i;:::-;;;;67683:82;67663:3;;67618:158;;;;67788:21;67823:17;-1:-1:-1;;;;;67812:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67812:29:0;;67788:53;;67852:26;67892:17;-1:-1:-1;;;;;67881:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67881:29:0;-1:-1:-1;67852:58:0;-1:-1:-1;67921:12:0;;67948:256;67969:15;:22;67965:1;:26;67948:256;;;68038:1;68017:15;68033:1;68017:18;;;;;;;;:::i;:::-;;;;;;;:22;68013:180;;;68079:9;68087:1;68079:5;:9;:::i;:::-;68060:7;68068;68060:16;;;;;;;;:::i;:::-;;;;;;:28;;;;;68131:15;68147:1;68131:18;;;;;;;;:::i;:::-;;;;;;;68107:12;68120:7;68107:21;;;;;;;;:::i;:::-;;;;;;;;;;:42;68168:9;;;;:::i;:::-;;;;68013:180;67993:3;;67948:256;;;-1:-1:-1;68224:7:0;;68233:12;;-1:-1:-1;68246:17:0;;-1:-1:-1;67084:1188:0;;-1:-1:-1;;;;;;67084:1188:0:o;58906:34::-;;;;;;;;;;;;;;-1:-1:-1;;;;;58906:34:0;;-1:-1:-1;58906:34:0;:::o;63286:118::-;45192:13;:11;:13::i;:::-;63370:18:::1;::::0;;;:8:::1;:18;::::0;;;;:26:::1;63391:5:::0;63370:18;:26:::1;:::i;62902:360::-:0;62993:15;;63021:173;63043:2;63039:1;:6;;;63021:173;;;63117:15;63133:1;63117:18;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;63117:18:0;;;63104:31;;;;63100:83;;63163:4;63156:11;;;;;63100:83;63047:3;;63021:173;;;-1:-1:-1;;;;;;22315:27:0;;;22291:4;22315:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;63211:43;63204:50;62902:360;-1:-1:-1;;;62902:360:0:o;64115:115::-;64204:18;;;;:8;:18;;;;;64197:25;;64171:13;;64204:18;64197:25;;;:::i;22432:407::-;-1:-1:-1;;;;;22640:20:0;;17728:10;22640:20;;:60;;-1:-1:-1;22664:36:0;22681:4;17728:10;62902:360;:::i;22664:36::-;22618:157;;;;-1:-1:-1;;;22618:157:0;;;;;;;:::i;:::-;22786:45;22804:4;22810:2;22814;22818:6;22826:4;22786:17;:45::i;46212:201::-;45192:13;:11;:13::i;:::-;-1:-1:-1;;;;;46301:22:0;::::1;46293:73;;;::::0;-1:-1:-1;;;46293:73:0;;31915:2:1;46293:73:0::1;::::0;::::1;31897:21:1::0;31954:2;31934:18;;;31927:30;31993:34;31973:18;;;31966:62;-1:-1:-1;;;32044:18:1;;;32037:36;32090:19;;46293:73:0::1;31713:402:1::0;46293:73:0::1;46377:28;46396:8;46377:18;:28::i;:::-;46212:201:::0;:::o;66155:206::-;59385:10;59357:23;;;;:11;:23;;;;;;59341:15;;:40;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;59341:40:0;:54;59333:100;;;;-1:-1:-1;;;59333:100:0;;;;;;;:::i;:::-;66278:7:::1;66253:21;66263:5;66270:3;66253:9;:21::i;:::-;:32;;66245:71;;;::::0;-1:-1:-1;;;66245:71:0;;32322:2:1;66245:71:0::1;::::0;::::1;32304:21:1::0;32361:2;32341:18;;;32334:30;32400:28;32380:18;;;32373:56;32446:18;;66245:71:0::1;32120:350:1::0;66245:71:0::1;66327:26;66333:5;66340:3;66345:7;66327:5;:26::i;62363:139::-:0;45192:13;:11;:13::i;:::-;62436:7:::1;:20:::0;62363:139::o;38795:215::-;38897:4;-1:-1:-1;;;;;;38921:41:0;;-1:-1:-1;;;38921:41:0;;:81;;;38966:36;38990:11;19995:310;20097:4;-1:-1:-1;;;;;;20134:41:0;;-1:-1:-1;;;20134:41:0;;:110;;-1:-1:-1;;;;;;;20192:52:0;;-1:-1:-1;;;20192:52:0;20134:110;:163;;;-1:-1:-1;;;;;;;;;;18842:40:0;;;20261:36;18733:157;69657:561;69707:23;69747:2;69753:1;69747:7;69743:50;;-1:-1:-1;;69771:10:0;;;;;;;;;;;;-1:-1:-1;;;69771:10:0;;;;;69657:561::o;69743:50::-;69812:2;69803:6;69844:69;69851:6;;69844:69;;69874:5;;;;:::i;:::-;;-1:-1:-1;69894:7:0;;-1:-1:-1;69899:2:0;69894:7;;:::i;:::-;;;69844:69;;;69923:17;69953:3;-1:-1:-1;;;;;69943:14:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69943:14:0;-1:-1:-1;69923:34:0;-1:-1:-1;69977:3:0;69991:198;69998:7;;69991:198;;70026:3;70028:1;70026;:3;:::i;:::-;70022:7;-1:-1:-1;70044:10:0;70074:7;70079:2;70074;:7;:::i;:::-;:12;;70084:2;70074:12;:::i;:::-;70069:17;;:2;:17;:::i;:::-;70058:29;;:2;:29;:::i;:::-;70044:44;;70103:9;70122:4;70115:12;;70103:24;;70152:2;70142:4;70147:1;70142:7;;;;;;;;:::i;:::-;;;;:12;-1:-1:-1;;;;;70142:12:0;;;;;;;;-1:-1:-1;70169:8:0;70175:2;70169:8;;:::i;:::-;;;70007:182;;69991:198;;;-1:-1:-1;70206:4:0;69657:561;-1:-1:-1;;;;69657:561:0:o;50809:1912::-;50867:13;50897:4;:11;50912:1;50897:16;50893:31;;-1:-1:-1;;50915:9:0;;;;;;;;;-1:-1:-1;50915:9:0;;;50809:1912::o;50893:31::-;50976:19;50998:12;;;;;;;;;;;;;;;;;50976:34;;51062:18;51108:1;51089:4;:11;51103:1;51089:15;;;;:::i;:::-;51088:21;;;;:::i;:::-;51083:27;;:1;:27;:::i;:::-;51062:48;-1:-1:-1;51193:20:0;51227:15;51062:48;51240:2;51227:15;:::i;:::-;-1:-1:-1;;;;;51216:27:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51216:27:0;;51193:50;;51340:10;51332:6;51325:26;51435:1;51428:5;51424:13;51494:4;51545;51539:11;51530:7;51526:25;51641:2;51633:6;51629:15;51714:754;51733:6;51724:7;51721:19;51714:754;;;51833:1;51824:7;51820:15;51809:26;;51872:7;51866:14;51998:4;51990:5;51986:2;51982:14;51978:25;51968:8;51964:40;51958:47;51947:9;51939:67;52052:1;52041:9;52037:17;52024:30;;52131:4;52123:5;52119:2;52115:14;52111:25;52101:8;52097:40;52091:47;52080:9;52072:67;52185:1;52174:9;52170:17;52157:30;;52264:4;52256:5;52253:1;52248:14;52244:25;52234:8;52230:40;52224:47;52213:9;52205:67;52318:1;52307:9;52303:17;52290:30;;52397:4;52389:5;52377:25;52367:8;52363:40;52357:47;52346:9;52338:67;-1:-1:-1;52451:1:0;52436:17;51714:754;;;52541:1;52534:4;52528:11;52524:19;52562:1;52557:54;;;;52630:1;52625:52;;;;52517:160;;52557:54;-1:-1:-1;;;;;52573:17:0;;52566:43;52557:54;;52625:52;-1:-1:-1;;;;;52641:17:0;;52634:41;52517:160;-1:-1:-1;52707:6:0;;50809:1912;-1:-1:-1;;;;;;;;50809:1912:0:o;25151:1146::-;25378:7;:14;25364:3;:10;:28;25356:81;;;;-1:-1:-1;;;25356:81:0;;32830:2:1;25356:81:0;;;32812:21:1;32869:2;32849:18;;;32842:30;32908:34;32888:18;;;32881:62;-1:-1:-1;;;32959:18:1;;;32952:38;33007:19;;25356:81:0;32628:404:1;25356:81:0;-1:-1:-1;;;;;25456:16:0;;25448:66;;;;-1:-1:-1;;;25448:66:0;;;;;;;:::i;:::-;17728:10;25527:16;25644:421;25668:3;:10;25664:1;:14;25644:421;;;25700:10;25713:3;25717:1;25713:6;;;;;;;;:::i;:::-;;;;;;;25700:19;;25734:14;25751:7;25759:1;25751:10;;;;;;;;:::i;:::-;;;;;;;;;;;;25778:19;25800:13;;;;;;;;;;-1:-1:-1;;;;;25800:19:0;;;;;;;;;;;;25751:10;;-1:-1:-1;25842:21:0;;;;25834:76;;;;-1:-1:-1;;;25834:76:0;;;;;;;:::i;:::-;25954:9;:13;;;;;;;;;;;-1:-1:-1;;;;;25954:19:0;;;;;;;;;;25976:20;;;25954:42;;26026:17;;;;;;;:27;;25976:20;;25954:9;26026:27;;25976:20;;26026:27;:::i;:::-;;;;-1:-1:-1;;25680:3:0;;;;;-1:-1:-1;25644:421:0;;-1:-1:-1;;25644:421:0;;;26112:2;-1:-1:-1;;;;;26082:47:0;26106:4;-1:-1:-1;;;;;26082:47:0;26096:8;-1:-1:-1;;;;;26082:47:0;;26116:3;26121:7;26082:47;;;;;;;:::i;:::-;;;;;;;;26214:75;26250:8;26260:4;26266:2;26270:3;26275:7;26284:4;26214:35;:75::i;:::-;25345:952;25151:1146;;;;;:::o;45471:132::-;45379:6;;-1:-1:-1;;;;;45379:6:0;17728:10;45535:23;45527:68;;;;-1:-1:-1;;;45527:68:0;;34526:2:1;45527:68:0;;;34508:21:1;;;34545:18;;;34538:30;34604:34;34584:18;;;34577:62;34656:18;;45527:68:0;34324:356:1;27615:729:0;-1:-1:-1;;;;;27768:16:0;;27760:62;;;;-1:-1:-1;;;27760:62:0;;34887:2:1;27760:62:0;;;34869:21:1;34926:2;34906:18;;;34899:30;34965:34;34945:18;;;34938:62;-1:-1:-1;;;35016:18:1;;;35009:31;35057:19;;27760:62:0;34685:397:1;27760:62:0;17728:10;27835:16;27900:21;27918:2;27900:17;:21::i;:::-;27877:44;;27932:24;27959:25;27977:6;27959:17;:25::i;:::-;27932:52;;28076:9;:13;;;;;;;;;;;-1:-1:-1;;;;;28076:17:0;;;;;;;;;:27;;28097:6;;28076:9;:27;;28097:6;;28076:27;:::i;:::-;;;;-1:-1:-1;;28119:52:0;;;35261:25:1;;;35317:2;35302:18;;35295:34;;;-1:-1:-1;;;;;28119:52:0;;;;28152:1;;28119:52;;;;;;35234:18:1;28119:52:0;;;;;;;28262:74;28293:8;28311:1;28315:2;28319;28323:6;28331:4;28262:30;:74::i;:::-;27749:595;;;27615:729;;;;:::o;46573:191::-;46666:6;;;-1:-1:-1;;;;;46683:17:0;;;-1:-1:-1;;;;;;46683:17:0;;;;;;;46716:40;;46666:6;;;46683:17;46666:6;;46716:40;;46647:16;;46716:40;46636:128;46573:191;:::o;32028:331::-;32183:8;-1:-1:-1;;;;;32174:17:0;:5;-1:-1:-1;;;;;32174:17:0;;32166:71;;;;-1:-1:-1;;;32166:71:0;;35542:2:1;32166:71:0;;;35524:21:1;35581:2;35561:18;;;35554:30;35620:34;35600:18;;;35593:62;-1:-1:-1;;;35671:18:1;;;35664:39;35720:19;;32166:71:0;35340:405:1;32166:71:0;-1:-1:-1;;;;;32248:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;32248:46:0;;;;;;;;;;32310:41;;1230::1;;;32310::0;;1203:18:1;32310:41:0;;;;;;;32028:331;;;:::o;23819:974::-;-1:-1:-1;;;;;24007:16:0;;23999:66;;;;-1:-1:-1;;;23999:66:0;;;;;;;:::i;:::-;17728:10;24078:16;24143:21;24161:2;24143:17;:21::i;:::-;24120:44;;24175:24;24202:25;24220:6;24202:17;:25::i;:::-;24175:52;;24313:19;24335:13;;;;;;;;;;;-1:-1:-1;;;;;24335:19:0;;;;;;;;;;24373:21;;;;24365:76;;;;-1:-1:-1;;;24365:76:0;;;;;;;:::i;:::-;24477:9;:13;;;;;;;;;;;-1:-1:-1;;;;;24477:19:0;;;;;;;;;;24499:20;;;24477:42;;24541:17;;;;;;;:27;;24499:20;;24477:9;24541:27;;24499:20;;24541:27;:::i;:::-;;;;-1:-1:-1;;24586:46:0;;;35261:25:1;;;35317:2;35302:18;;35295:34;;;-1:-1:-1;;;;;24586:46:0;;;;;;;;;;;;;;35234:18:1;24586:46:0;;;;;;;24717:68;24748:8;24758:4;24764:2;24768;24772:6;24780:4;24717:30;:68::i;:::-;23988:805;;;;23819:974;;;;;:::o;29858:808::-;-1:-1:-1;;;;;29985:18:0;;29977:66;;;;-1:-1:-1;;;29977:66:0;;35952:2:1;29977:66:0;;;35934:21:1;35991:2;35971:18;;;35964:30;36030:34;36010:18;;;36003:62;-1:-1:-1;;;36081:18:1;;;36074:33;36124:19;;29977:66:0;35750:399:1;29977:66:0;17728:10;30056:16;30121:21;30139:2;30121:17;:21::i;:::-;30098:44;;30153:24;30180:25;30198:6;30180:17;:25::i;:::-;30218:66;;;;;;;;;-1:-1:-1;30218:66:0;;;;30319:13;;;;;;;;;-1:-1:-1;;;;;30319:19:0;;;;;;;;30153:52;;-1:-1:-1;30357:21:0;;;;30349:70;;;;-1:-1:-1;;;30349:70:0;;36356:2:1;30349:70:0;;;36338:21:1;36395:2;36375:18;;;36368:30;36434:34;36414:18;;;36407:62;-1:-1:-1;;;36485:18:1;;;36478:34;36529:19;;30349:70:0;36154:400:1;30349:70:0;30455:9;:13;;;;;;;;;;;-1:-1:-1;;;;;30455:19:0;;;;;;;;;;;;30477:20;;;30455:42;;30526:54;;35261:25:1;;;35302:18;;;35295:34;;;30455:19:0;;30526:54;;;;;;35234:18:1;30526:54:0;;;;;;;30593:65;;;;;;;;;30637:1;30593:65;;;25151:1146;35473:813;-1:-1:-1;;;;;35713:13:0;;9938:19;:23;35709:570;;35749:79;;-1:-1:-1;;;35749:79:0;;-1:-1:-1;;;;;35749:43:0;;;;;:79;;35793:8;;35803:4;;35809:3;;35814:7;;35823:4;;35749:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35749:79:0;;;;;;;;-1:-1:-1;;35749:79:0;;;;;;;;;;;;:::i;:::-;;;35745:523;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;36141:6;36134:14;;-1:-1:-1;;;36134:14:0;;;;;;;;:::i;35745:523::-;;;36190:62;;-1:-1:-1;;;36190:62:0;;38660:2:1;36190:62:0;;;38642:21:1;38699:2;38679:18;;;38672:30;38738:34;38718:18;;;38711:62;-1:-1:-1;;;38789:18:1;;;38782:50;38849:19;;36190:62:0;38458:416:1;35745:523:0;-1:-1:-1;;;;;;35910:60:0;;-1:-1:-1;;;35910:60:0;35906:159;;35995:50;;-1:-1:-1;;;35995:50:0;;;;;;;:::i;36294:198::-;36414:16;;;36428:1;36414:16;;;;;;;;;36360;;36389:22;;36414:16;;;;;;;;;;;;-1:-1:-1;36414:16:0;36389:41;;36452:7;36441:5;36447:1;36441:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;36479:5;36294:198;-1:-1:-1;;36294:198:0:o;34721:744::-;-1:-1:-1;;;;;34936:13:0;;9938:19;:23;34932:526;;34972:72;;-1:-1:-1;;;34972:72:0;;-1:-1:-1;;;;;34972:38:0;;;;;:72;;35011:8;;35021:4;;35027:2;;35031:6;;35039:4;;34972:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34972:72:0;;;;;;;;-1:-1:-1;;34972:72:0;;;;;;;;;;;;:::i;:::-;;;34968:479;;;;:::i;:::-;-1:-1:-1;;;;;;35094:55:0;;-1:-1:-1;;;35094:55:0;35090:154;;35174:50;;-1:-1:-1;;;35174:50:0;;;;;;;:::i;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:367;218:6;226;279:2;267:9;258:7;254:23;250:32;247:52;;;295:1;292;285:12;247:52;334:9;321:23;353:31;378:5;353:31;:::i;:::-;403:5;481:2;466:18;;;;453:32;;-1:-1:-1;;;150:367:1:o;704:131::-;-1:-1:-1;;;;;;778:32:1;;768:43;;758:71;;825:1;822;815:12;840:245;898:6;951:2;939:9;930:7;926:23;922:32;919:52;;;967:1;964;957:12;919:52;1006:9;993:23;1025:30;1049:5;1025:30;:::i;1282:289::-;1324:3;1362:5;1356:12;1389:6;1384:3;1377:19;1445:6;1438:4;1431:5;1427:16;1420:4;1415:3;1411:14;1405:47;1497:1;1490:4;1481:6;1476:3;1472:16;1468:27;1461:38;1560:4;1553:2;1549:7;1544:2;1536:6;1532:15;1528:29;1523:3;1519:39;1515:50;1508:57;;;1282:289;;;;:::o;1576:220::-;1725:2;1714:9;1707:21;1688:4;1745:45;1786:2;1775:9;1771:18;1763:6;1745:45;:::i;1801:226::-;1860:6;1913:2;1901:9;1892:7;1888:23;1884:32;1881:52;;;1929:1;1926;1919:12;1881:52;-1:-1:-1;1974:23:1;;1801:226;-1:-1:-1;1801:226:1:o;2032:247::-;2091:6;2144:2;2132:9;2123:7;2119:23;2115:32;2112:52;;;2160:1;2157;2150:12;2112:52;2199:9;2186:23;2218:31;2243:5;2218:31;:::i;2284:346::-;2352:6;2360;2413:2;2401:9;2392:7;2388:23;2384:32;2381:52;;;2429:1;2426;2419:12;2381:52;-1:-1:-1;;2474:23:1;;;2594:2;2579:18;;;2566:32;;-1:-1:-1;2284:346:1:o;2914:127::-;2975:10;2970:3;2966:20;2963:1;2956:31;3006:4;3003:1;2996:15;3030:4;3027:1;3020:15;3046:249;3156:2;3137:13;;-1:-1:-1;;3133:27:1;3121:40;;-1:-1:-1;;;;;3176:34:1;;3212:22;;;3173:62;3170:88;;;3238:18;;:::i;:::-;3274:2;3267:22;-1:-1:-1;;3046:249:1:o;3300:183::-;3360:4;-1:-1:-1;;;;;3385:6:1;3382:30;3379:56;;;3415:18;;:::i;:::-;-1:-1:-1;3460:1:1;3456:14;3472:4;3452:25;;3300:183::o;3488:781::-;3542:5;3595:3;3588:4;3580:6;3576:17;3572:27;3562:55;;3613:1;3610;3603:12;3562:55;3653:6;3640:20;3679:47;3719:6;3679:47;:::i;:::-;3755:2;3749:9;3767:31;3795:2;3787:6;3767:31;:::i;:::-;3818:6;3807:17;;3848:6;3840;3833:22;3883:4;3875:6;3871:17;3864:24;;3944:4;3934:6;3931:1;3927:14;3919:6;3915:27;3911:38;3897:52;;3972:3;3964:6;3961:15;3958:35;;;3989:1;3986;3979:12;3958:35;4025:4;4017:6;4013:17;4039:200;4055:6;4050:3;4047:15;4039:200;;;4147:17;;4177:18;;4224:4;4215:14;;;;4072;4039:200;;;-1:-1:-1;4257:6:1;3488:781;-1:-1:-1;;;;;3488:781:1:o;4274:684::-;4316:5;4369:3;4362:4;4354:6;4350:17;4346:27;4336:55;;4387:1;4384;4377:12;4336:55;4427:6;4414:20;4466:4;4458:6;4454:17;4495:1;4517;-1:-1:-1;;;;;4533:6:1;4530:30;4527:56;;;4563:18;;:::i;:::-;-1:-1:-1;4669:2:1;4663:9;4629:2;4608:15;;-1:-1:-1;;4604:29:1;4635:4;4600:40;;4681:33;4600:40;4663:9;4681:33;:::i;:::-;4734:6;4723:17;;4764:6;4756;4749:22;4804:3;4795:6;4790:3;4786:16;4783:25;4780:45;;;4821:1;4818;4811:12;4780:45;4871:6;4866:3;4859:4;4851:6;4847:17;4834:44;4926:1;4919:4;4910:6;4902;4898:19;4894:30;4887:41;4946:6;4937:15;;;;;;;4274:684;;;;:::o;4963:1082::-;5117:6;5125;5133;5141;5149;5202:3;5190:9;5181:7;5177:23;5173:33;5170:53;;;5219:1;5216;5209:12;5170:53;5258:9;5245:23;5277:31;5302:5;5277:31;:::i;:::-;5327:5;-1:-1:-1;5384:2:1;5369:18;;5356:32;5397:33;5356:32;5397:33;:::i;:::-;5449:7;-1:-1:-1;5507:2:1;5492:18;;5479:32;-1:-1:-1;;;;;5523:30:1;;5520:50;;;5566:1;5563;5556:12;5520:50;5589:61;5642:7;5633:6;5622:9;5618:22;5589:61;:::i;:::-;5579:71;;;5703:2;5692:9;5688:18;5675:32;-1:-1:-1;;;;;5722:8:1;5719:32;5716:52;;;5764:1;5761;5754:12;5716:52;5787:63;5842:7;5831:8;5820:9;5816:24;5787:63;:::i;:::-;5777:73;;;5903:3;5892:9;5888:19;5875:33;-1:-1:-1;;;;;5923:8:1;5920:32;5917:52;;;5965:1;5962;5955:12;5917:52;5988:51;6031:7;6020:8;6009:9;6005:24;5988:51;:::i;:::-;5978:61;;;4963:1082;;;;;;;;:::o;6258:802::-;6312:5;6365:3;6358:4;6350:6;6346:17;6342:27;6332:55;;6383:1;6380;6373:12;6332:55;6423:6;6410:20;6449:47;6489:6;6449:47;:::i;:::-;6525:2;6519:9;6537:31;6565:2;6557:6;6537:31;:::i;:::-;6588:6;6577:17;;6618:6;6610;6603:22;6653:4;6645:6;6641:17;6634:24;;6714:4;6704:6;6701:1;6697:14;6689:6;6685:27;6681:38;6667:52;;6742:3;6734:6;6731:15;6728:35;;;6759:1;6756;6749:12;6728:35;6795:4;6787:6;6783:17;6809:221;6825:6;6820:3;6817:15;6809:221;;;6907:3;6894:17;6924:31;6949:5;6924:31;:::i;:::-;6968:18;;7015:4;7006:14;;;;6842;6809:221;;7065:590;7183:6;7191;7244:2;7232:9;7223:7;7219:23;7215:32;7212:52;;;7260:1;7257;7250:12;7212:52;7300:9;7287:23;-1:-1:-1;;;;;7325:6:1;7322:30;7319:50;;;7365:1;7362;7355:12;7319:50;7388:61;7441:7;7432:6;7421:9;7417:22;7388:61;:::i;:::-;7378:71;;;7502:2;7491:9;7487:18;7474:32;-1:-1:-1;;;;;7521:8:1;7518:32;7515:52;;;7563:1;7560;7553:12;7515:52;7586:63;7641:7;7630:8;7619:9;7615:24;7586:63;:::i;:::-;7576:73;;;7065:590;;;;;:::o;7660:420::-;7713:3;7751:5;7745:12;7778:6;7773:3;7766:19;7810:4;7805:3;7801:14;7794:21;;7849:4;7842:5;7838:16;7872:1;7882:173;7896:6;7893:1;7890:13;7882:173;;;7957:13;;7945:26;;8000:4;7991:14;;;;8028:17;;;;7918:1;7911:9;7882:173;;;-1:-1:-1;8071:3:1;;7660:420;-1:-1:-1;;;;7660:420:1:o;8085:261::-;8264:2;8253:9;8246:21;8227:4;8284:56;8336:2;8325:9;8321:18;8313:6;8284:56;:::i;8611:832::-;8763:6;8771;8779;8832:2;8820:9;8811:7;8807:23;8803:32;8800:52;;;8848:1;8845;8838:12;8800:52;8888:9;8875:23;-1:-1:-1;;;;;8913:6:1;8910:30;8907:50;;;8953:1;8950;8943:12;8907:50;8976:61;9029:7;9020:6;9009:9;9005:22;8976:61;:::i;:::-;8966:71;;;9090:2;9079:9;9075:18;9062:32;-1:-1:-1;;;;;9109:8:1;9106:32;9103:52;;;9151:1;9148;9141:12;9103:52;9174:63;9229:7;9218:8;9207:9;9203:24;9174:63;:::i;:::-;9164:73;;;9290:2;9279:9;9275:18;9262:32;-1:-1:-1;;;;;9309:8:1;9306:32;9303:52;;;9351:1;9348;9341:12;9303:52;9374:63;9429:7;9418:8;9407:9;9403:24;9374:63;:::i;:::-;9364:73;;;8611:832;;;;;:::o;9448:321::-;9517:6;9570:2;9558:9;9549:7;9545:23;9541:32;9538:52;;;9586:1;9583;9576:12;9538:52;9626:9;9613:23;-1:-1:-1;;;;;9651:6:1;9648:30;9645:50;;;9691:1;9688;9681:12;9645:50;9714:49;9755:7;9746:6;9735:9;9731:22;9714:49;:::i;:::-;9704:59;9448:321;-1:-1:-1;;;;9448:321:1:o;9774:487::-;9851:6;9859;9867;9920:2;9908:9;9899:7;9895:23;9891:32;9888:52;;;9936:1;9933;9926:12;9888:52;9981:23;;;-1:-1:-1;10080:2:1;10065:18;;10052:32;10093:33;10052:32;10093:33;:::i;:::-;9774:487;;10145:7;;-1:-1:-1;;;10225:2:1;10210:18;;;;10197:32;;9774:487::o;10266:587::-;10337:6;10345;10398:2;10386:9;10377:7;10373:23;10369:32;10366:52;;;10414:1;10411;10404:12;10366:52;10454:9;10441:23;-1:-1:-1;;;;;10479:6:1;10476:30;10473:50;;;10519:1;10516;10509:12;10473:50;10542:22;;10595:4;10587:13;;10583:27;-1:-1:-1;10573:55:1;;10624:1;10621;10614:12;10573:55;10664:2;10651:16;-1:-1:-1;;;;;10682:6:1;10679:30;10676:50;;;10722:1;10719;10712:12;10676:50;10767:7;10762:2;10753:6;10749:2;10745:15;10741:24;10738:37;10735:57;;;10788:1;10785;10778:12;10735:57;10819:2;10811:11;;;;;10841:6;;-1:-1:-1;10266:587:1;-1:-1:-1;;;10266:587:1:o;10858:435::-;10936:6;10944;10997:2;10985:9;10976:7;10972:23;10968:32;10965:52;;;11013:1;11010;11003:12;10965:52;11058:23;;;-1:-1:-1;11156:2:1;11141:18;;11128:32;-1:-1:-1;;;;;11172:30:1;;11169:50;;;11215:1;11212;11205:12;11169:50;11238:49;11279:7;11270:6;11259:9;11255:22;11238:49;:::i;11298:416::-;11363:6;11371;11424:2;11412:9;11403:7;11399:23;11395:32;11392:52;;;11440:1;11437;11430:12;11392:52;11479:9;11466:23;11498:31;11523:5;11498:31;:::i;:::-;11548:5;-1:-1:-1;11605:2:1;11590:18;;11577:32;11647:15;;11640:23;11628:36;;11618:64;;11678:1;11675;11668:12;11618:64;11701:7;11691:17;;;11298:416;;;;;:::o;11719:348::-;11803:6;11856:2;11844:9;11835:7;11831:23;11827:32;11824:52;;;11872:1;11869;11862:12;11824:52;11912:9;11899:23;-1:-1:-1;;;;;11937:6:1;11934:30;11931:50;;;11977:1;11974;11967:12;11931:50;12000:61;12053:7;12044:6;12033:9;12029:22;12000:61;:::i;12072:579::-;12124:3;12155;12187:5;12181:12;12214:6;12209:3;12202:19;12246:4;12241:3;12237:14;12230:21;;12304:4;12294:6;12291:1;12287:14;12280:5;12276:26;12272:37;12343:4;12336:5;12332:16;12366:1;12376:249;12390:6;12387:1;12384:13;12376:249;;;12477:2;12473:7;12465:5;12459:4;12455:16;12451:30;12446:3;12439:43;12503:38;12536:4;12527:6;12521:13;12503:38;:::i;:::-;12576:4;12601:14;;;;12495:46;;-1:-1:-1;12564:17:1;;;;;12412:1;12405:9;12376:249;;;-1:-1:-1;12641:4:1;;12072:579;-1:-1:-1;;;;;;12072:579:1:o;12656:503::-;12953:2;12942:9;12935:21;12916:4;12979:55;13030:2;13019:9;13015:18;13007:6;12979:55;:::i;:::-;13082:9;13074:6;13070:22;13065:2;13054:9;13050:18;13043:50;13110:43;13146:6;13138;13110:43;:::i;:::-;13102:51;12656:503;-1:-1:-1;;;;;12656:503:1:o;13164:884::-;13217:5;13270:3;13263:4;13255:6;13251:17;13247:27;13237:55;;13288:1;13285;13278:12;13237:55;13328:6;13315:20;13354:47;13394:6;13354:47;:::i;:::-;13430:2;13424:9;13442:31;13470:2;13462:6;13442:31;:::i;:::-;13493:6;13482:17;;13523:6;13515;13508:22;13558:4;13550:6;13546:17;13539:24;;13619:4;13609:6;13606:1;13602:14;13594:6;13590:27;13586:38;13572:52;;13647:3;13639:6;13636:15;13633:35;;;13664:1;13661;13654:12;13633:35;13700:4;13692:6;13688:17;13714:304;13730:6;13725:3;13722:15;13714:304;;;13818:3;13805:17;-1:-1:-1;;;;;13841:11:1;13838:35;13835:55;;;13886:1;13883;13876:12;13835:55;13915:58;13969:3;13962:4;13948:11;13940:6;13936:24;13932:35;13915:58;:::i;:::-;13903:71;;-1:-1:-1;14003:4:1;13994:14;;;;13747;13714:304;;14053:850;14225:6;14233;14241;14294:2;14282:9;14273:7;14269:23;14265:32;14262:52;;;14310:1;14307;14300:12;14262:52;14350:9;14337:23;-1:-1:-1;;;;;14375:6:1;14372:30;14369:50;;;14415:1;14412;14405:12;14369:50;14438:61;14491:7;14482:6;14471:9;14467:22;14438:61;:::i;:::-;14428:71;;;14552:2;14541:9;14537:18;14524:32;-1:-1:-1;;;;;14571:8:1;14568:32;14565:52;;;14613:1;14610;14603:12;14565:52;14636:62;14690:7;14679:8;14668:9;14664:24;14636:62;:::i;:::-;14626:72;;;14751:2;14740:9;14736:18;14723:32;-1:-1:-1;;;;;14770:8:1;14767:32;14764:52;;;14812:1;14809;14802:12;14764:52;14835:62;14889:7;14878:8;14867:9;14863:24;14835:62;:::i;14908:817::-;15176:2;15188:21;;;15258:13;;15161:18;;;15280:22;;;15128:4;;15371;15359:17;;;15333:2;15318:18;;;15128:4;15404:199;15418:6;15415:1;15412:13;15404:199;;;15483:13;;-1:-1:-1;;;;;15479:39:1;15467:52;;15548:4;15576:17;;;;15539:14;;;;15515:1;15433:9;15404:199;;;15408:3;;15650:9;15645:3;15641:19;15634:4;15623:9;15619:20;15612:49;15678:41;15715:3;15707:6;15678:41;:::i;:::-;15670:49;14908:817;-1:-1:-1;;;;;;14908:817:1:o;15730:487::-;15807:6;15815;15823;15876:2;15864:9;15855:7;15851:23;15847:32;15844:52;;;15892:1;15889;15882:12;15844:52;15931:9;15918:23;15950:31;15975:5;15950:31;:::i;:::-;16000:5;16078:2;16063:18;;16050:32;;-1:-1:-1;16181:2:1;16166:18;;;16153:32;;15730:487;-1:-1:-1;;;15730:487:1:o;16222:536::-;16507:2;16496:9;16489:21;16470:4;16533:56;16585:2;16574:9;16570:18;16562:6;16533:56;:::i;:::-;16637:9;16629:6;16625:22;16620:2;16609:9;16605:18;16598:50;16665:44;16702:6;16694;16665:44;:::i;:::-;16657:52;;;16745:6;16740:2;16729:9;16725:18;16718:34;16222:536;;;;;;:::o;16763:388::-;16831:6;16839;16892:2;16880:9;16871:7;16867:23;16863:32;16860:52;;;16908:1;16905;16898:12;16860:52;16947:9;16934:23;16966:31;16991:5;16966:31;:::i;:::-;17016:5;-1:-1:-1;17073:2:1;17058:18;;17045:32;17086:33;17045:32;17086:33;:::i;17156:838::-;17260:6;17268;17276;17284;17292;17345:3;17333:9;17324:7;17320:23;17316:33;17313:53;;;17362:1;17359;17352:12;17313:53;17401:9;17388:23;17420:31;17445:5;17420:31;:::i;:::-;17470:5;-1:-1:-1;17527:2:1;17512:18;;17499:32;17540:33;17499:32;17540:33;:::i;:::-;17592:7;-1:-1:-1;17672:2:1;17657:18;;17644:32;;-1:-1:-1;17775:2:1;17760:18;;17747:32;;-1:-1:-1;17856:3:1;17841:19;;17828:33;-1:-1:-1;;;;;17873:30:1;;17870:50;;;17916:1;17913;17906:12;18410:380;18489:1;18485:12;;;;18532;;;18553:61;;18607:4;18599:6;18595:17;18585:27;;18553:61;18660:2;18652:6;18649:14;18629:18;18626:38;18623:161;;18706:10;18701:3;18697:20;18694:1;18687:31;18741:4;18738:1;18731:15;18769:4;18766:1;18759:15;18623:161;;18410:380;;;:::o;18921:677::-;18971:3;19012:5;19006:12;19041:36;19067:9;19041:36;:::i;:::-;19108:1;19093:17;;19119:133;;;;19266:1;19261:331;;;;19086:506;;19119:133;-1:-1:-1;;19152:24:1;;19140:37;;19225:14;;19218:22;19206:35;;19197:45;;;-1:-1:-1;19119:133:1;;19261:331;19292:5;19289:1;19282:16;19339:4;19336:1;19326:18;19366:1;19380:166;19394:6;19391:1;19388:13;19380:166;;;19474:14;;19461:11;;;19454:35;19530:1;19517:15;;;;19416:4;19409:12;19380:166;;;19384:3;;19575:6;19570:3;19566:16;19559:23;;19086:506;;;;18921:677;;;;:::o;19603:211::-;19644:3;19682:5;19676:12;19726:6;19719:4;19712:5;19708:16;19703:3;19697:36;19788:1;19752:16;;19777:13;;;-1:-1:-1;19752:16:1;;19603:211;-1:-1:-1;19603:211:1:o;19819:349::-;20038:3;20063:99;20097:64;20122:38;20156:3;20148:6;20122:38;:::i;:::-;20114:6;20097:64;:::i;:::-;20089:6;20063:99;:::i;20173:1284::-;-1:-1:-1;;;20969:47:1;;20951:3;21035:38;21069:2;21060:12;;21052:6;21035:38;:::i;:::-;-1:-1:-1;;;21089:2:1;21082:15;21116:36;21149:1;21145:2;21141:10;21133:6;21116:36;:::i;:::-;-1:-1:-1;;;21161:60:1;;21106:46;-1:-1:-1;21240:37:1;21273:2;21265:11;;21257:6;21240:37;:::i;:::-;-1:-1:-1;;;21286:48:1;;21230:47;-1:-1:-1;21353:37:1;21386:2;21378:11;;21370:6;21353:37;:::i;:::-;-1:-1:-1;;;21399:26:1;;21449:1;21441:10;;20173:1284;-1:-1:-1;;;;;;;20173:1284:1:o;21462:354::-;21724:31;21719:3;21712:44;21694:3;21772:38;21806:2;21801:3;21797:12;21789:6;21772:38;:::i;21821:127::-;21882:10;21877:3;21873:20;21870:1;21863:31;21913:4;21910:1;21903:15;21937:4;21934:1;21927:15;21953:168;22026:9;;;22057;;22074:15;;;22068:22;;22054:37;22044:71;;22095:18;;:::i;22126:217::-;22166:1;22192;22182:132;;22236:10;22231:3;22227:20;22224:1;22217:31;22271:4;22268:1;22261:15;22299:4;22296:1;22289:15;22182:132;-1:-1:-1;22328:9:1;;22126:217::o;22348:411::-;22550:2;22532:21;;;22589:2;22569:18;;;22562:30;22628:34;22623:2;22608:18;;22601:62;-1:-1:-1;;;22694:2:1;22679:18;;22672:45;22749:3;22734:19;;22348:411::o;23581:127::-;23642:10;23637:3;23633:20;23630:1;23623:31;23673:4;23670:1;23663:15;23697:4;23694:1;23687:15;24625:397;24827:2;24809:21;;;24866:2;24846:18;;;24839:30;24905:34;24900:2;24885:18;;24878:62;-1:-1:-1;;;24971:2:1;24956:18;;24949:31;25012:3;24997:19;;24625:397::o;25378:518::-;25480:2;25475:3;25472:11;25469:421;;;25516:5;25513:1;25506:16;25560:4;25557:1;25547:18;25630:2;25618:10;25614:19;25611:1;25607:27;25601:4;25597:38;25666:4;25654:10;25651:20;25648:47;;;-1:-1:-1;25689:4:1;25648:47;25744:2;25739:3;25735:12;25732:1;25728:20;25722:4;25718:31;25708:41;;25799:81;25817:2;25810:5;25807:13;25799:81;;;25876:1;25862:16;;25843:1;25832:13;25799:81;;26072:1299;26198:3;26192:10;-1:-1:-1;;;;;26217:6:1;26214:30;26211:56;;;26247:18;;:::i;:::-;26276:97;26366:6;26326:38;26358:4;26352:11;26326:38;:::i;:::-;26320:4;26276:97;:::i;:::-;26422:4;26453:2;26442:14;;26470:1;26465:649;;;;27158:1;27175:6;27172:89;;;-1:-1:-1;27227:19:1;;;27221:26;27172:89;-1:-1:-1;;26029:1:1;26025:11;;;26021:24;26017:29;26007:40;26053:1;26049:11;;;26004:57;27274:81;;26435:930;;26465:649;18868:1;18861:14;;;18905:4;18892:18;;-1:-1:-1;;26501:20:1;;;26619:222;26633:7;26630:1;26627:14;26619:222;;;26715:19;;;26709:26;26694:42;;26822:4;26807:20;;;;26775:1;26763:14;;;;26649:12;26619:222;;;26623:3;26869:6;26860:7;26857:19;26854:201;;;26930:19;;;26924:26;-1:-1:-1;;27013:1:1;27009:14;;;27025:3;27005:24;27001:37;26997:42;26982:58;26967:74;;26854:201;-1:-1:-1;;;;27101:1:1;27085:14;;;27081:22;27068:36;;-1:-1:-1;26072:1299:1:o;28073:1198::-;-1:-1:-1;;;;;28192:3:1;28189:27;28186:53;;;28219:18;;:::i;:::-;28248:94;28338:3;28298:38;28330:4;28324:11;28298:38;:::i;:::-;28292:4;28248:94;:::i;:::-;28368:1;28393:2;28388:3;28385:11;28410:1;28405:608;;;;29057:1;29074:3;29071:93;;;-1:-1:-1;29130:19:1;;;29117:33;29071:93;-1:-1:-1;;26029:1:1;26025:11;;;26021:24;26017:29;26007:40;26053:1;26049:11;;;26004:57;29177:78;;28378:887;;28405:608;18868:1;18861:14;;;18905:4;18892:18;;-1:-1:-1;;28441:17:1;;;28556:229;28570:7;28567:1;28564:14;28556:229;;;28659:19;;;28646:33;28631:49;;28766:4;28751:20;;;;28719:1;28707:14;;;;28586:12;28556:229;;;28560:3;28813;28804:7;28801:16;28798:159;;;28937:1;28933:6;28927:3;28921;28918:1;28914:11;28910:21;28906:34;28902:39;28889:9;28884:3;28880:19;28867:33;28863:79;28855:6;28848:95;28798:159;;;29000:1;28994:3;28991:1;28987:11;28983:19;28977:4;28970:33;28378:887;;28073:1198;;;:::o;29276:899::-;29422:2;29411:9;29404:21;29385:4;29445:1;29478:6;29472:13;29508:36;29534:9;29508:36;:::i;:::-;29580:6;29575:2;29564:9;29560:18;29553:34;29618:1;29607:9;29603:17;29634:1;29629:158;;;;29801:1;29796:353;;;;29596:553;;29629:158;29696:3;29692:8;29681:9;29677:24;29672:2;29661:9;29657:18;29650:52;29774:2;29762:6;29755:14;29748:22;29745:1;29741:30;29730:9;29726:46;29722:55;29715:62;;29629:158;;29796:353;29827:6;29824:1;29817:17;29875:2;29872:1;29862:16;29900:1;29914:179;29928:6;29925:1;29922:13;29914:179;;;30021:14;;29997:17;;;30016:2;29993:26;29986:50;30077:1;30064:15;;;;29950:2;29943:10;29914:179;;;30117:17;;30136:2;30113:26;;-1:-1:-1;;29596:553:1;-1:-1:-1;30166:3:1;;29276:899;-1:-1:-1;;;;;29276:899:1:o;30951:128::-;31018:9;;;31039:11;;;31036:37;;;31053:18;;:::i;31443:125::-;31508:9;;;31529:10;;;31526:36;;;31542:18;;:::i;31573:135::-;31612:3;31633:17;;;31630:43;;31653:18;;:::i;:::-;-1:-1:-1;31700:1:1;31689:13;;31573:135::o;32475:148::-;32563:4;32542:12;;;32556;;;32538:31;;32581:13;;32578:39;;;32597:18;;:::i;33037:401::-;33239:2;33221:21;;;33278:2;33258:18;;;33251:30;33317:34;33312:2;33297:18;;33290:62;-1:-1:-1;;;33383:2:1;33368:18;;33361:35;33428:3;33413:19;;33037:401::o;33443:406::-;33645:2;33627:21;;;33684:2;33664:18;;;33657:30;33723:34;33718:2;33703:18;;33696:62;-1:-1:-1;;;33789:2:1;33774:18;;33767:40;33839:3;33824:19;;33443:406::o;33854:465::-;34111:2;34100:9;34093:21;34074:4;34137:56;34189:2;34178:9;34174:18;34166:6;34137:56;:::i;:::-;34241:9;34233:6;34229:22;34224:2;34213:9;34209:18;34202:50;34269:44;34306:6;34298;34269:44;:::i;36559:823::-;-1:-1:-1;;;;;36918:32:1;;;36900:51;;36987:32;;36982:2;36967:18;;36960:60;36938:3;37051:2;37036:18;;37029:31;;;-1:-1:-1;;37083:57:1;;37120:19;;37112:6;37083:57;:::i;:::-;37188:9;37180:6;37176:22;37171:2;37160:9;37156:18;37149:50;37222:44;37259:6;37251;37222:44;:::i;:::-;37208:58;;37315:9;37307:6;37303:22;37297:3;37286:9;37282:19;37275:51;37343:33;37369:6;37361;37343:33;:::i;:::-;37335:41;36559:823;-1:-1:-1;;;;;;;;36559:823:1:o;37387:249::-;37456:6;37509:2;37497:9;37488:7;37484:23;37480:32;37477:52;;;37525:1;37522;37515:12;37477:52;37557:9;37551:16;37576:30;37600:5;37576:30;:::i;37641:179::-;37676:3;37718:1;37700:16;37697:23;37694:120;;;37764:1;37761;37758;37743:23;-1:-1:-1;37801:1:1;37795:8;37790:3;37786:18;37694:120;37641:179;:::o;37825:628::-;37864:3;37906:4;37888:16;37885:26;37882:39;;;37825:628;:::o;37882:39::-;37948:2;37942:9;37988:16;-1:-1:-1;;37984:29:1;37981:1;37942:9;37960:54;38043:4;38037:11;38117:16;38110:4;38102:6;38098:17;38095:39;-1:-1:-1;;;;;38066:6:1;38063:30;38060:75;38057:88;;;38138:5;;37825:628;:::o;38057:88::-;38175:6;38169:4;38165:17;38211:3;38205:10;-1:-1:-1;;;;;38230:6:1;38227:30;38224:43;;;38260:5;;;;37825:628;:::o;38224:43::-;38325:16;38315:27;;-1:-1:-1;;38311:40:1;38286:16;;;38304:4;38282:27;38279:73;38276:86;;;38355:5;;;;37825:628;:::o;38276:86::-;38371:57;38422:4;38413:6;38405;38401:19;38397:30;38391:4;38371:57;:::i;38879:404::-;39081:2;39063:21;;;39120:2;39100:18;;;39093:30;39159:34;39154:2;39139:18;;39132:62;-1:-1:-1;;;39225:2:1;39210:18;;39203:38;39273:3;39258:19;;38879:404::o;39288:557::-;-1:-1:-1;;;;;39547:32:1;;;39529:51;;39616:32;;39611:2;39596:18;;39589:60;39680:2;39665:18;;39658:34;;;39723:2;39708:18;;39701:34;;;39567:3;39766;39751:19;;39744:32;;;-1:-1:-1;;39793:46:1;;39819:19;;39811:6;39793:46;:::i;:::-;39785:54;39288:557;-1:-1:-1;;;;;;;39288:557:1:o
Swarm Source
ipfs://90e34ca897be276ef481564997b200736aae6d8a3495470ff8b47562b74d9c7f
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.