Overview
S Balance
S Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set NFT Data Bat... | 4004183 | 34 days ago | IN | 0 S | 0.03888182 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
FAMAIN_EVENT_ITEMS
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2025-01-15 */ // 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: FARPGseason1/FARPGC - 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: FARPGseason1/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: FARPGseason1/MAIN - Event Items ERC1155.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; //_______________________________________________________________ // ___ __ __ _ ___ _ ___ _ __ // | _ )\ \ / / _ | | / _ \ _ | | / _ \ (_)\ \ // | _ \ \ V / | || || (_) || || || (_) | _ | | // |___/ |_| \__/ \___/ \__/ \___/ ( ) | | // |/ /_/ //_______________________________________________________________ // // _____ _____ _ _ _____ ___ _____ ___ __ __ ___ // | __\ \ / / __| \| |_ _| |_ _|_ _| __| \/ / __| // | _| \ V /| _|| .` | | | | | | | | _|| |\/| \__ \ // |___| \_/ |___|_|\_| |_| |___| |_| |___|_| |_|___/ // // //_______________________________________________________________ // ___ _ _ _____ ___ ___ ___ _ ___ ___ // |_ _|| \| ||_ _|| __|| _ \| __|/_\ / __|| __| // | | | .` | | | | _| | /| _|/ _ \| (__ | _| // |___||_|\_| |_| |___||_|_\|_|/_/ \_\\___||___| //_______________________________________________________________ // ERC1155 and ERC2981 //_______________________________________________________________ // ___ ___ _ _ _____ ___ _ ___ _____ // / __|/ _ \ | \| ||_ _|| _ \ /_\ / __||_ _| // | (__| (_) || .` | | | | / / _ \| (__ | | // \___|\___/ |_|\_| |_| |_|_\/_/ \_\\___| |_| //_______________________________________________________________ contract FAMAIN_EVENT_ITEMS is ERC1155, ERC2981, Ownable { constructor() ERC1155("") { setRoyaltyRecipient(msg.sender); } string public name = "FateAdventure Event Items"; string public symbol = "FAEventItems"; string public constant baseUri = "ipfs://"; string public imageExtension = ".jpg"; string public imageURL = "https://ipfs/bafybeiaywxhzbucshglkjmv2djdp2267u5shwwopto3m5624n7xucmiwdm/"; 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. } bool public stopgen; event UpdateName(string name); using Strings for uint256; uint constant MAX_ID = 1999; //this max ID is to use for loop to retrieve number of token for each ID for a player // Since it is going to be 999 different pets, +1000 for shinning, +2000 for future //_______________________________________________________________ // _ ___ __ __ ___ _ _ // /_\ | \ | \/ ||_ _|| \| | // / _ \ | |) || |\/| | | | | .` | // /_/ \_\|___/ |_| |_||___||_|\_| //_______________________________________________________________ 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) ; } address[50] public masterContracts; // Updated size from 10 to 50 modifier onlyMasterContract() { bool isMasterContract = false; for (uint8 i = 0; i < 50; i++) { // Updated loop to 50 iterations if (masterContracts[i] == msg.sender) { isMasterContract = true; break; } } require(isMasterContract, "Only allowed for master contracts"); _; } function getMasterContract() external view returns (address[50] memory) { // Updated size in return type return masterContracts; } function addMasterContract(address _address, uint8 _index) public onlyOwner { require(_index < 50, "Index out of bounds"); // Ensure index is valid masterContracts[_index] = _address; } function removeMasterContract(uint8 _index) public onlyOwner { require(_index < 50, "Index out of bounds"); // Ensure index is valid masterContracts[_index] = address(0); } 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 } // 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); _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":"uint8","name":"_index","type":"uint8"}],"name":"addMasterContract","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":"getMasterContract","outputs":[{"internalType":"address[50]","name":"","type":"address[50]"}],"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":"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":[],"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":"uint8","name":"_index","type":"uint8"}],"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":[],"name":"stopgen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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
60c0604052601960809081527f46617465416476656e74757265204576656e74204974656d730000000000000060a05260069061003c90826102f5565b5060408051808201909152600c81526b46414576656e744974656d7360a01b602082015260079061006d90826102f5565b506040805180820190915260048152632e6a706760e01b602082015260089061009690826102f5565b506040518060800160405280604981526020016137de604991396009906100bd90826102f5565b50600a805460ff191660011790556102bc600b553480156100dc575f5ffd5b5060408051602081019091525f81526100f48161010c565b506100fe3361011c565b6101073361016d565b6103af565b600261011882826102f5565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b610175610201565b6001600160a01b0381166101df5760405162461bcd60e51b815260206004820152602660248201527f726f79616c74792063616e6e6f742062652073656e7420746f207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461025b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101d6565b565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061028557607f821691505b6020821081036102a357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156102f057805f5260205f20601f840160051c810160208510156102ce5750805b601f840160051c820191505b818110156102ed575f81556001016102da565b50505b505050565b81516001600160401b0381111561030e5761030e61025d565b6103228161031c8454610271565b846102a9565b6020601f821160018114610354575f831561033d5750848201515b5f19600385901b1c1916600184901b1784556102ed565b5f84815260208120601f198516915b828110156103835787850151825560209485019460019092019101610363565b50848210156103a057868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b613422806103bc5f395ff3fe608060405234801561000f575f5ffd5b506004361061023d575f3560e01c80638da5cb5b11610135578063b90497e0116100b4578063ed91dcda11610079578063ed91dcda14610537578063f242432a1461054a578063f2fde38b1461055d578063f5298aca14610570578063fc199fcb14610583575f5ffd5b8063b90497e0146104d4578063cc855c5d146104dc578063cf7470fa146104fe578063df6e991114610511578063e985e9c514610524575f5ffd5b8063a22cb465116100fa578063a22cb46514610472578063a487ce2d14610485578063a9ef3aeb14610498578063ab19c549146104a0578063ab4f3446146104c1575f5ffd5b80638da5cb5b1461040d57806391ec64381461041e57806395d89b411461043157806397a1ce33146104395780639abc83201461044c575f5ffd5b806341e42f30116101c1578063685455fd11610186578063685455fd146103bf578063715018a6146103cc5780637e2285aa146103d4578063836a1040146103e757806384da92a7146103fa575f5ffd5b806341e42f301461033b5780634c00de821461034e5780634e1273f41461037957806351cff8d91461039957806358e792ee146103ac575f5ffd5b806329ee566c1161020757806329ee566c146102cb5780632a55205a146102d45780632eb2c2d614610306578063365b521f1461031b5780633fa8aaa91461032e575f5ffd5b8062be2fec14610241578062fdd58e1461025f57806301ffc9a71461028057806306fdde03146102a35780630e89341c146102b8575b5f5ffd5b610249610596565b604051610256919061238f565b60405180910390f35b61027261026d3660046123dd565b6105dc565b604051908152602001610256565b61029361028e36600461241c565b610673565b6040519015158152602001610256565b6102ab61068c565b6040516102569190612465565b6102ab6102c6366004612477565b610718565b610272600b5481565b6102e76102e236600461248e565b6108df565b604080516001600160a01b039093168352602083019190915201610256565b6103196103143660046125fa565b610914565b005b6103196103293660046126bf565b610960565b600a546102939060ff1681565b6103196103493660046126f2565b6109eb565b600c54610361906001600160a01b031681565b6040516001600160a01b039091168152602001610256565b61038c61038736600461270d565b610a7a565b6040516102569190612816565b6103196103a73660046126f2565b610b99565b6103196103ba366004612828565b610c11565b600f546102939060ff1681565b610319610c25565b6103196103e2366004612828565b610c38565b6103196103f5366004612861565b610c4c565b610319610408366004612896565b610cd1565b6005546001600160a01b0316610361565b61031961042c366004612902565b610d23565b6102ab610dad565b61031961044736600461291b565b610dba565b6102ab60405180604001604052806007815260200166697066733a2f2f60c81b81525081565b610319610480366004612954565b610dde565b6102ab610493366004612477565b610de9565b6102ab610e88565b6104b36104ae36600461298f565b610e95565b604051610256929190612a1a565b6103196104cf366004612ad1565b6110f2565b6102ab611220565b6104ef6104ea366004612b5c565b61122d565b60405161025693929190612b8e565b61036161050c366004612477565b6114f3565b61031961051f36600461291b565b611512565b610293610532366004612bc3565b611531565b6102ab610545366004612477565b6115ae565b610319610558366004612bef565b6115ca565b61031961056b3660046126f2565b61160f565b61031961057e366004612b5c565b611688565b610319610591366004612477565b61170d565b61059e612370565b604080516106408101918290529060109060329082845b81546001600160a01b031681526001909101906020018083116105b5575050505050905090565b5f6001600160a01b03831661064b5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b505f818152602081815260408083206001600160a01b03861684529091529020545b92915050565b5f61067d8261171a565b8061066d575061066d8261173a565b6006805461069990612c46565b80601f01602080910402602001604051908101604052809291908181526020018280546106c590612c46565b80156107105780601f106106e757610100808354040283529160200191610710565b820191905f5260205f20905b8154815290600101906020018083116106f357829003601f168201915b505050505081565b5f818152600d6020526040812080546060928492909161073790612c46565b80601f016020809104026020016040519081016040528092919081815260200182805461076390612c46565b80156107ae5780601f10610785576101008083540402835291602001916107ae565b820191905f5260205f20905b81548152906001019060200180831161079157829003601f168201915b505050505090505f60096107c184611789565b60086040516020016107d593929190612d00565b60408051601f198184030181529181525f858152600e6020529081208054929350909161080190612c46565b80601f016020809104026020016040519081016040528092919081815260200182805461082d90612c46565b80156108785780601f1061084f57610100808354040283529160200191610878565b820191905f5260205f20905b81548152906001019060200180831161085b57829003601f168201915b505050505090506108b561088b85611789565b8483856040516020016108a19493929190612d1d565b6040516020818303038152906040526118ae565b6040516020016108c59190612dae565b604051602081830303815290604052945050505050919050565b5f5f5f612710600b54856108f39190612df3565b6108fd9190612e0a565b600c546001600160a01b0316969095509350505050565b6001600160a01b03851633148061093057506109308533611531565b61094c5760405162461bcd60e51b815260040161064290612e29565b6109598585858585611a0c565b5050505050565b610968611bdd565b60328160ff16106109b15760405162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b6044820152606401610642565b8160108260ff16603281106109c8576109c8612e78565b0180546001600160a01b0319166001600160a01b03929092169190911790555050565b6109f3611bdd565b6001600160a01b038116610a585760405162461bcd60e51b815260206004820152602660248201527f726f79616c74792063616e6e6f742062652073656e7420746f207a65726f206160448201526564647265737360d01b6064820152608401610642565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60608151835114610adf5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610642565b5f83516001600160401b03811115610af957610af96124ae565b604051908082528060200260200182016040528015610b22578160200160208202803683370190505b5090505f5b8451811015610b9157610b6c858281518110610b4557610b45612e78565b6020026020010151858381518110610b5f57610b5f612e78565b60200260200101516105dc565b828281518110610b7e57610b7e612e78565b6020908102919091010152600101610b27565b509392505050565b6005546001600160a01b03828116911614610bb2575f5ffd5b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610bfb576040519150601f19603f3d011682016040523d82523d5f602084013e610c00565b606091505b5050905080610c0d575f5ffd5b5050565b610c19611bdd565b6009610c0d8282612ed0565b610c2d611bdd565b610c365f611c37565b565b610c40611bdd565b6008610c0d8282612ed0565b5f805b60328160ff161015610c935733601060ff831660328110610c7257610c72612e78565b01546001600160a01b031603610c8b5760019150610c93565b600101610c4f565b5080610cb15760405162461bcd60e51b815260040161064290612f8a565b610ccb83838660405180602001604052805f815250611c88565b50505050565b610cd9611bdd565b6006610ce6828483612fcb565b507fed41a19b397d8e610d8f9e6e52ab2bef7e51c9977a12cb779c7cd86747f8d5096006604051610d179190613084565b60405180910390a15050565b610d2b611bdd565b60328160ff1610610d745760405162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b6044820152606401610642565b5f60108260ff1660328110610d8b57610d8b612e78565b0180546001600160a01b0319166001600160a01b039290921691909117905550565b6007805461069990612c46565b610dc2611bdd565b5f828152600e60205260409020610dd98282612ed0565b505050565b610c0d338383611d97565b5f818152600e60205260409020805460609190610e0590612c46565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3190612c46565b8015610e7c5780601f10610e5357610100808354040283529160200191610e7c565b820191905f5260205f20905b815481529060010190602001808311610e5f57829003601f168201915b50505050509050919050565b6008805461069990612c46565b6060805f83516001600160401b03811115610eb257610eb26124ae565b604051908082528060200260200182016040528015610ee557816020015b6060815260200190600190039081610ed05790505b5090505f84516001600160401b03811115610f0257610f026124ae565b604051908082528060200260200182016040528015610f3557816020015b6060815260200190600190039081610f205790505b5090505f5b85518110156110e757600d5f878381518110610f5857610f58612e78565b602002602001015181526020019081526020015f208054610f7890612c46565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa490612c46565b8015610fef5780601f10610fc657610100808354040283529160200191610fef565b820191905f5260205f20905b815481529060010190602001808311610fd257829003601f168201915b505050505083828151811061100657611006612e78565b6020026020010181905250600e5f87838151811061102657611026612e78565b602002602001015181526020019081526020015f20805461104690612c46565b80601f016020809104026020016040519081016040528092919081815260200182805461107290612c46565b80156110bd5780601f10611094576101008083540402835291602001916110bd565b820191905f5260205f20905b8154815290600101906020018083116110a057829003601f168201915b50505050508282815181106110d4576110d4612e78565b6020908102919091010152600101610f3a565b509094909350915050565b6110fa611bdd565b8151835114801561110c575080518251145b61116b5760405162461bcd60e51b815260206004820152602a60248201527f416c6c20696e70757420617272617973206d75737420686176652074686520736044820152690c2daca40d8cadccee8d60b31b6064820152608401610642565b5f5b8351811015610ccb5782818151811061118857611188612e78565b6020026020010151600d5f8684815181106111a5576111a5612e78565b602002602001015181526020019081526020015f2090816111c69190612ed0565b508181815181106111d9576111d9612e78565b6020026020010151600e5f8684815181106111f6576111f6612e78565b602002602001015181526020019081526020015f2090816112179190612ed0565b5060010161116d565b6009805461069990612c46565b6060805f8484116112805760405162461bcd60e51b815260206004820152601f60248201527f53746f70206d7573742062652067726561746572207468616e207374617274006044820152606401610642565b61019061128d868661310b565b11156112db5760405162461bcd60e51b815260206004820152601e60248201527f52616e676520746f6f206c617267652c206d617820343030206974656d7300006044820152606401610642565b5f6112e6868661310b565b6001600160401b038111156112fd576112fd6124ae565b604051908082528060200260200182016040528015611326578160200160208202803683370190505b5090505f5b611335878761310b565b81101561136f5761134a8861026d838a61311e565b82828151811061135c5761135c612e78565b602090810291909101015260010161132b565b505f805b82518110156113b3575f83828151811061138f5761138f612e78565b602002602001015111156113ab57816113a781613131565b9250505b600101611373565b505f816001600160401b038111156113cd576113cd6124ae565b6040519080825280602002602001820160405280156113f6578160200160208202803683370190505b5090505f826001600160401b03811115611412576114126124ae565b60405190808252806020026020018201604052801561143b578160200160208202803683370190505b5090505f805b85518110156114e0575f86828151811061145d5761145d612e78565b602002602001015111156114d857611475818c61311e565b84838151811061148757611487612e78565b6020026020010181815250508581815181106114a5576114a5612e78565b60200260200101518383815181106114bf576114bf612e78565b6020908102919091010152816114d481613131565b9250505b600101611441565b50919a9099509197509095505050505050565b60108160328110611502575f80fd5b01546001600160a01b0316905081565b61151a611bdd565b5f828152600d60205260409020610dd98282612ed0565b5f805b60328160ff16101561157d5760108160ff166032811061155657611556612e78565b01546001600160a01b039081169084160361157557600191505061066d565b600101611534565b506001600160a01b038084165f9081526001602090815260408083209386168352929052205460ff165b9392505050565b5f818152600d60205260409020805460609190610e0590612c46565b6001600160a01b0385163314806115e657506115e68533611531565b6116025760405162461bcd60e51b815260040161064290612e29565b6109598585858585611e76565b611617611bdd565b6001600160a01b03811661167c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610642565b61168581611c37565b50565b5f805b60328160ff1610156116cf5733601060ff8316603281106116ae576116ae612e78565b01546001600160a01b0316036116c757600191506116cf565b60010161168b565b50806116ed5760405162461bcd60e51b815260040161064290612f8a565b816116f885856105dc565b1015611702575f5ffd5b610ccb848484611f9c565b611715611bdd565b600b55565b5f6001600160e01b0319821663152a902d60e11b148061066d575061066d825b5f6001600160e01b03198216636cdb3d1360e11b148061176a57506001600160e01b031982166303a24d0760e21b145b8061066d57506301ffc9a760e01b6001600160e01b031983161461066d565b6060815f036117af5750506040805180820190915260018152600360fc1b602082015290565b815f5b81156117d857806117c281613131565b91506117d19050600a83612e0a565b91506117b2565b5f816001600160401b038111156117f1576117f16124ae565b6040519080825280601f01601f19166020018201604052801561181b576020820181803683370190505b509050815b85156118a55761183160018261310b565b90505f61183f600a88612e0a565b61184a90600a612df3565b611854908861310b565b61185f906030613149565b90505f8160f81b90508084848151811061187b5761187b612e78565b60200101906001600160f81b03191690815f1a90535061189c600a89612e0a565b97505050611820565b50949350505050565b606081515f036118cb57505060408051602081019091525f815290565b5f6040518060600160405280604081526020016133ad6040913990505f6003845160026118f8919061311e565b6119029190612e0a565b61190d906004612df3565b90505f61191b82602061311e565b6001600160401b03811115611932576119326124ae565b6040519080825280601f01601f19166020018201604052801561195c576020820181803683370190505b509050818152600183018586518101602084015b818310156119c8576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825350600101611970565b6003895106600181146119e257600281146119f3576119fe565b613d3d60f01b6001198301526119fe565b603d60f81b5f198301525b509398975050505050505050565b8151835114611a6e5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610642565b6001600160a01b038416611a945760405162461bcd60e51b815260040161064290613162565b335f5b8451811015611b6f575f858281518110611ab357611ab3612e78565b602002602001015190505f858381518110611ad057611ad0612e78565b6020908102919091018101515f84815280835260408082206001600160a01b038e168352909352919091205490915081811015611b1f5760405162461bcd60e51b8152600401610642906131a7565b5f838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611b5b90849061311e565b909155505060019093019250611a97915050565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611bbf9291906131f1565b60405180910390a4611bd5818787878787612113565b505050505050565b6005546001600160a01b03163314610c365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610642565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416611ce85760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610642565b335f611cf38561226d565b90505f611cff8561226d565b90505f868152602081815260408083206001600160a01b038b16845290915281208054879290611d3090849061311e565b909155505060408051878152602081018790526001600160a01b03808a16925f92918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611d8e835f898989896122b6565b50505050505050565b816001600160a01b0316836001600160a01b031603611e0a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610642565b6001600160a01b038381165f81815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416611e9c5760405162461bcd60e51b815260040161064290613162565b335f611ea78561226d565b90505f611eb38561226d565b90505f868152602081815260408083206001600160a01b038c16845290915290205485811015611ef55760405162461bcd60e51b8152600401610642906131a7565b5f878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611f3190849061311e565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611f91848a8a8a8a8a6122b6565b505050505050505050565b6001600160a01b038316611ffe5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610642565b335f6120098461226d565b90505f6120158461226d565b60408051602080820183525f918290528882528181528282206001600160a01b038b168352905220549091508481101561209d5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610642565b5f868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a460408051602081019091525f9052611d8e565b6001600160a01b0384163b15611bd55760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906121579089908990889088908890600401613215565b6020604051808303815f875af1925050508015612191575060408051601f3d908101601f1916820190925261218e91810190613272565b60015b61223d5761219d61328d565b806308c379a0036121d657506121b16132a6565b806121bc57506121d8565b8060405162461bcd60e51b81526004016106429190612465565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610642565b6001600160e01b0319811663bc197c8160e01b14611d8e5760405162461bcd60e51b815260040161064290613320565b6040805160018082528183019092526060915f91906020808301908036833701905050905082815f815181106122a5576122a5612e78565b602090810291909101015292915050565b6001600160a01b0384163b15611bd55760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906122fa9089908990889088908890600401613368565b6020604051808303815f875af1925050508015612334575060408051601f3d908101601f1916820190925261233191810190613272565b60015b6123405761219d61328d565b6001600160e01b0319811663f23a6e6160e01b14611d8e5760405162461bcd60e51b815260040161064290613320565b6040518061064001604052806032906020820280368337509192915050565b610640810181835f5b60328110156123c05781516001600160a01b0316835260209283019290910190600101612398565b50505092915050565b6001600160a01b0381168114611685575f5ffd5b5f5f604083850312156123ee575f5ffd5b82356123f9816123c9565b946020939093013593505050565b6001600160e01b031981168114611685575f5ffd5b5f6020828403121561242c575f5ffd5b81356115a781612407565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6115a76020830184612437565b5f60208284031215612487575f5ffd5b5035919050565b5f5f6040838503121561249f575f5ffd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b601f8201601f191681016001600160401b03811182821017156124e7576124e76124ae565b6040525050565b5f6001600160401b03821115612506576125066124ae565b5060051b60200190565b5f82601f83011261251f575f5ffd5b813561252a816124ee565b60405161253782826124c2565b80915082815260208101915060208360051b86010192508583111561255a575f5ffd5b602085015b8381101561257757803583526020928301920161255f565b5095945050505050565b5f82601f830112612590575f5ffd5b8135602083015f5f6001600160401b038411156125af576125af6124ae565b50604051601f8401601f1916602001906125c982826124c2565b8092508481528785850111156125dd575f5ffd5b848460208301375f60208683010152809550505050505092915050565b5f5f5f5f5f60a0868803121561260e575f5ffd5b8535612619816123c9565b94506020860135612629816123c9565b935060408601356001600160401b03811115612643575f5ffd5b61264f88828901612510565b93505060608601356001600160401b0381111561266a575f5ffd5b61267688828901612510565b92505060808601356001600160401b03811115612691575f5ffd5b61269d88828901612581565b9150509295509295909350565b803560ff811681146126ba575f5ffd5b919050565b5f5f604083850312156126d0575f5ffd5b82356126db816123c9565b91506126e9602084016126aa565b90509250929050565b5f60208284031215612702575f5ffd5b81356115a7816123c9565b5f5f6040838503121561271e575f5ffd5b82356001600160401b03811115612733575f5ffd5b8301601f81018513612743575f5ffd5b803561274e816124ee565b60405161275b82826124c2565b80915082815260208101915060208360051b85010192508783111561277e575f5ffd5b6020840193505b828410156127a9578335612798816123c9565b825260209384019390910190612785565b945050505060208301356001600160401b038111156127c6575f5ffd5b6127d285828601612510565b9150509250929050565b5f8151808452602084019350602083015f5b8281101561280c5781518652602095860195909101906001016127ee565b5093949350505050565b602081525f6115a760208301846127dc565b5f60208284031215612838575f5ffd5b81356001600160401b0381111561284d575f5ffd5b61285984828501612581565b949350505050565b5f5f5f60608486031215612873575f5ffd5b833592506020840135612885816123c9565b929592945050506040919091013590565b5f5f602083850312156128a7575f5ffd5b82356001600160401b038111156128bc575f5ffd5b8301601f810185136128cc575f5ffd5b80356001600160401b038111156128e1575f5ffd5b8560208284010111156128f2575f5ffd5b6020919091019590945092505050565b5f60208284031215612912575f5ffd5b6115a7826126aa565b5f5f6040838503121561292c575f5ffd5b8235915060208301356001600160401b03811115612948575f5ffd5b6127d285828601612581565b5f5f60408385031215612965575f5ffd5b8235612970816123c9565b915060208301358015158114612984575f5ffd5b809150509250929050565b5f6020828403121561299f575f5ffd5b81356001600160401b038111156129b4575f5ffd5b61285984828501612510565b5f82825180855260208501945060208160051b830101602085015f5b83811015612a0e57601f198584030188526129f8838351612437565b60209889019890935091909101906001016129dc565b50909695505050505050565b604081525f612a2c60408301856129c0565b8281036020840152612a3e81856129c0565b95945050505050565b5f82601f830112612a56575f5ffd5b8135612a61816124ee565b604051612a6e82826124c2565b80915082815260208101915060208360051b860101925085831115612a91575f5ffd5b602085015b838110156125775780356001600160401b03811115612ab3575f5ffd5b612ac2886020838a0101612581565b84525060209283019201612a96565b5f5f5f60608486031215612ae3575f5ffd5b83356001600160401b03811115612af8575f5ffd5b612b0486828701612510565b93505060208401356001600160401b03811115612b1f575f5ffd5b612b2b86828701612a47565b92505060408401356001600160401b03811115612b46575f5ffd5b612b5286828701612a47565b9150509250925092565b5f5f5f60608486031215612b6e575f5ffd5b8335612b79816123c9565b95602085013595506040909401359392505050565b606081525f612ba060608301866127dc565b8281036020840152612bb281866127dc565b915050826040830152949350505050565b5f5f60408385031215612bd4575f5ffd5b8235612bdf816123c9565b91506020830135612984816123c9565b5f5f5f5f5f60a08688031215612c03575f5ffd5b8535612c0e816123c9565b94506020860135612c1e816123c9565b9350604086013592506060860135915060808601356001600160401b03811115612691575f5ffd5b600181811c90821680612c5a57607f821691505b602082108103612c7857634e487b7160e01b5f52602260045260245ffd5b50919050565b5f8154612c8a81612c46565b600182168015612ca15760018114612cb6576123c0565b60ff19831686528115158202860193506123c0565b845f5260205f205f5b83811015612cdb57815488820152600190910190602001612cbf565b505050939093019392505050565b5f81518060208401855e5f93019283525090919050565b5f612a3e612d17612d118488612c7e565b86612ce9565b84612c7e565b6a7b226e616d65223a20222360a81b81525f612d3c600b830187612ce9565b600160fd1b8152612d506001820187612ce9565b711116113232b9b1b934b83a34b7b7111d101160711b81529050612d776012820186612ce9565b6b11161134b6b0b3b2911d101160a11b81529050612d98600c820185612ce9565b61227d60f01b8152600201979650505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081525f6115a7601d830184612ce9565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761066d5761066d612ddf565b5f82612e2457634e487b7160e01b5f52601260045260245ffd5b500490565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b634e487b7160e01b5f52603260045260245ffd5b601f821115610dd957805f5260205f20601f840160051c81016020851015612eb15750805b601f840160051c820191505b81811015610959575f8155600101612ebd565b81516001600160401b03811115612ee957612ee96124ae565b612efd81612ef78454612c46565b84612e8c565b6020601f821160018114612f2f575f8315612f185750848201515b5f19600385901b1c1916600184901b178455610959565b5f84815260208120601f198516915b82811015612f5e5787850151825560209485019460019092019101612f3e565b5084821015612f7b57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b60208082526021908201527f4f6e6c7920616c6c6f77656420666f72206d617374657220636f6e74726163746040820152607360f81b606082015260800190565b6001600160401b03831115612fe257612fe26124ae565b612ff683612ff08354612c46565b83612e8c565b5f601f841160018114613027575f85156130105750838201355b5f19600387901b1c1916600186901b178355610959565b5f83815260208120601f198716915b828110156130565786850135825560209485019460019092019101613036565b5086821015613072575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b602081525f5f835461309581612c46565b806020860152600182165f81146130b357600181146130cf57613100565b60ff1983166040870152604082151560051b8701019350613100565b865f5260205f205f5b838110156130f7578154888201604001526001909101906020016130d8565b87016040019450505b509195945050505050565b8181038181111561066d5761066d612ddf565b8082018082111561066d5761066d612ddf565b5f6001820161314257613142612ddf565b5060010190565b60ff818116838216019081111561066d5761066d612ddf565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081525f61320360408301856127dc565b8281036020840152612a3e81856127dc565b6001600160a01b0386811682528516602082015260a0604082018190525f90613240908301866127dc565b828103606084015261325281866127dc565b905082810360808401526132668185612437565b98975050505050505050565b5f60208284031215613282575f5ffd5b81516115a781612407565b5f60033d11156132a35760045f5f3e505f5160e01c5b90565b5f60443d10156132b35790565b6040513d600319016004823e80513d60248201116001600160401b03821117156132dc57505090565b80820180516001600160401b038111156132f7575050505090565b3d8401600319018282016020011115613311575050505090565b610b91602082850101856124c2565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190525f906133a190830184612437565b97965050505050505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212207d345b3ac566a6d1df05a28f2ad981bafb2d98eac2ffadce75d33f110b51b15064736f6c634300081c003368747470733a2f2f697066732f6261667962656961797778687a6275637368676c6b6a6d7632646a6470323236377535736877776f70746f336d353632346e377875636d6977646d2f
Deployed Bytecode
0x608060405234801561000f575f5ffd5b506004361061023d575f3560e01c80638da5cb5b11610135578063b90497e0116100b4578063ed91dcda11610079578063ed91dcda14610537578063f242432a1461054a578063f2fde38b1461055d578063f5298aca14610570578063fc199fcb14610583575f5ffd5b8063b90497e0146104d4578063cc855c5d146104dc578063cf7470fa146104fe578063df6e991114610511578063e985e9c514610524575f5ffd5b8063a22cb465116100fa578063a22cb46514610472578063a487ce2d14610485578063a9ef3aeb14610498578063ab19c549146104a0578063ab4f3446146104c1575f5ffd5b80638da5cb5b1461040d57806391ec64381461041e57806395d89b411461043157806397a1ce33146104395780639abc83201461044c575f5ffd5b806341e42f30116101c1578063685455fd11610186578063685455fd146103bf578063715018a6146103cc5780637e2285aa146103d4578063836a1040146103e757806384da92a7146103fa575f5ffd5b806341e42f301461033b5780634c00de821461034e5780634e1273f41461037957806351cff8d91461039957806358e792ee146103ac575f5ffd5b806329ee566c1161020757806329ee566c146102cb5780632a55205a146102d45780632eb2c2d614610306578063365b521f1461031b5780633fa8aaa91461032e575f5ffd5b8062be2fec14610241578062fdd58e1461025f57806301ffc9a71461028057806306fdde03146102a35780630e89341c146102b8575b5f5ffd5b610249610596565b604051610256919061238f565b60405180910390f35b61027261026d3660046123dd565b6105dc565b604051908152602001610256565b61029361028e36600461241c565b610673565b6040519015158152602001610256565b6102ab61068c565b6040516102569190612465565b6102ab6102c6366004612477565b610718565b610272600b5481565b6102e76102e236600461248e565b6108df565b604080516001600160a01b039093168352602083019190915201610256565b6103196103143660046125fa565b610914565b005b6103196103293660046126bf565b610960565b600a546102939060ff1681565b6103196103493660046126f2565b6109eb565b600c54610361906001600160a01b031681565b6040516001600160a01b039091168152602001610256565b61038c61038736600461270d565b610a7a565b6040516102569190612816565b6103196103a73660046126f2565b610b99565b6103196103ba366004612828565b610c11565b600f546102939060ff1681565b610319610c25565b6103196103e2366004612828565b610c38565b6103196103f5366004612861565b610c4c565b610319610408366004612896565b610cd1565b6005546001600160a01b0316610361565b61031961042c366004612902565b610d23565b6102ab610dad565b61031961044736600461291b565b610dba565b6102ab60405180604001604052806007815260200166697066733a2f2f60c81b81525081565b610319610480366004612954565b610dde565b6102ab610493366004612477565b610de9565b6102ab610e88565b6104b36104ae36600461298f565b610e95565b604051610256929190612a1a565b6103196104cf366004612ad1565b6110f2565b6102ab611220565b6104ef6104ea366004612b5c565b61122d565b60405161025693929190612b8e565b61036161050c366004612477565b6114f3565b61031961051f36600461291b565b611512565b610293610532366004612bc3565b611531565b6102ab610545366004612477565b6115ae565b610319610558366004612bef565b6115ca565b61031961056b3660046126f2565b61160f565b61031961057e366004612b5c565b611688565b610319610591366004612477565b61170d565b61059e612370565b604080516106408101918290529060109060329082845b81546001600160a01b031681526001909101906020018083116105b5575050505050905090565b5f6001600160a01b03831661064b5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b505f818152602081815260408083206001600160a01b03861684529091529020545b92915050565b5f61067d8261171a565b8061066d575061066d8261173a565b6006805461069990612c46565b80601f01602080910402602001604051908101604052809291908181526020018280546106c590612c46565b80156107105780601f106106e757610100808354040283529160200191610710565b820191905f5260205f20905b8154815290600101906020018083116106f357829003601f168201915b505050505081565b5f818152600d6020526040812080546060928492909161073790612c46565b80601f016020809104026020016040519081016040528092919081815260200182805461076390612c46565b80156107ae5780601f10610785576101008083540402835291602001916107ae565b820191905f5260205f20905b81548152906001019060200180831161079157829003601f168201915b505050505090505f60096107c184611789565b60086040516020016107d593929190612d00565b60408051601f198184030181529181525f858152600e6020529081208054929350909161080190612c46565b80601f016020809104026020016040519081016040528092919081815260200182805461082d90612c46565b80156108785780601f1061084f57610100808354040283529160200191610878565b820191905f5260205f20905b81548152906001019060200180831161085b57829003601f168201915b505050505090506108b561088b85611789565b8483856040516020016108a19493929190612d1d565b6040516020818303038152906040526118ae565b6040516020016108c59190612dae565b604051602081830303815290604052945050505050919050565b5f5f5f612710600b54856108f39190612df3565b6108fd9190612e0a565b600c546001600160a01b0316969095509350505050565b6001600160a01b03851633148061093057506109308533611531565b61094c5760405162461bcd60e51b815260040161064290612e29565b6109598585858585611a0c565b5050505050565b610968611bdd565b60328160ff16106109b15760405162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b6044820152606401610642565b8160108260ff16603281106109c8576109c8612e78565b0180546001600160a01b0319166001600160a01b03929092169190911790555050565b6109f3611bdd565b6001600160a01b038116610a585760405162461bcd60e51b815260206004820152602660248201527f726f79616c74792063616e6e6f742062652073656e7420746f207a65726f206160448201526564647265737360d01b6064820152608401610642565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60608151835114610adf5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610642565b5f83516001600160401b03811115610af957610af96124ae565b604051908082528060200260200182016040528015610b22578160200160208202803683370190505b5090505f5b8451811015610b9157610b6c858281518110610b4557610b45612e78565b6020026020010151858381518110610b5f57610b5f612e78565b60200260200101516105dc565b828281518110610b7e57610b7e612e78565b6020908102919091010152600101610b27565b509392505050565b6005546001600160a01b03828116911614610bb2575f5ffd5b5f816001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610bfb576040519150601f19603f3d011682016040523d82523d5f602084013e610c00565b606091505b5050905080610c0d575f5ffd5b5050565b610c19611bdd565b6009610c0d8282612ed0565b610c2d611bdd565b610c365f611c37565b565b610c40611bdd565b6008610c0d8282612ed0565b5f805b60328160ff161015610c935733601060ff831660328110610c7257610c72612e78565b01546001600160a01b031603610c8b5760019150610c93565b600101610c4f565b5080610cb15760405162461bcd60e51b815260040161064290612f8a565b610ccb83838660405180602001604052805f815250611c88565b50505050565b610cd9611bdd565b6006610ce6828483612fcb565b507fed41a19b397d8e610d8f9e6e52ab2bef7e51c9977a12cb779c7cd86747f8d5096006604051610d179190613084565b60405180910390a15050565b610d2b611bdd565b60328160ff1610610d745760405162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b6044820152606401610642565b5f60108260ff1660328110610d8b57610d8b612e78565b0180546001600160a01b0319166001600160a01b039290921691909117905550565b6007805461069990612c46565b610dc2611bdd565b5f828152600e60205260409020610dd98282612ed0565b505050565b610c0d338383611d97565b5f818152600e60205260409020805460609190610e0590612c46565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3190612c46565b8015610e7c5780601f10610e5357610100808354040283529160200191610e7c565b820191905f5260205f20905b815481529060010190602001808311610e5f57829003601f168201915b50505050509050919050565b6008805461069990612c46565b6060805f83516001600160401b03811115610eb257610eb26124ae565b604051908082528060200260200182016040528015610ee557816020015b6060815260200190600190039081610ed05790505b5090505f84516001600160401b03811115610f0257610f026124ae565b604051908082528060200260200182016040528015610f3557816020015b6060815260200190600190039081610f205790505b5090505f5b85518110156110e757600d5f878381518110610f5857610f58612e78565b602002602001015181526020019081526020015f208054610f7890612c46565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa490612c46565b8015610fef5780601f10610fc657610100808354040283529160200191610fef565b820191905f5260205f20905b815481529060010190602001808311610fd257829003601f168201915b505050505083828151811061100657611006612e78565b6020026020010181905250600e5f87838151811061102657611026612e78565b602002602001015181526020019081526020015f20805461104690612c46565b80601f016020809104026020016040519081016040528092919081815260200182805461107290612c46565b80156110bd5780601f10611094576101008083540402835291602001916110bd565b820191905f5260205f20905b8154815290600101906020018083116110a057829003601f168201915b50505050508282815181106110d4576110d4612e78565b6020908102919091010152600101610f3a565b509094909350915050565b6110fa611bdd565b8151835114801561110c575080518251145b61116b5760405162461bcd60e51b815260206004820152602a60248201527f416c6c20696e70757420617272617973206d75737420686176652074686520736044820152690c2daca40d8cadccee8d60b31b6064820152608401610642565b5f5b8351811015610ccb5782818151811061118857611188612e78565b6020026020010151600d5f8684815181106111a5576111a5612e78565b602002602001015181526020019081526020015f2090816111c69190612ed0565b508181815181106111d9576111d9612e78565b6020026020010151600e5f8684815181106111f6576111f6612e78565b602002602001015181526020019081526020015f2090816112179190612ed0565b5060010161116d565b6009805461069990612c46565b6060805f8484116112805760405162461bcd60e51b815260206004820152601f60248201527f53746f70206d7573742062652067726561746572207468616e207374617274006044820152606401610642565b61019061128d868661310b565b11156112db5760405162461bcd60e51b815260206004820152601e60248201527f52616e676520746f6f206c617267652c206d617820343030206974656d7300006044820152606401610642565b5f6112e6868661310b565b6001600160401b038111156112fd576112fd6124ae565b604051908082528060200260200182016040528015611326578160200160208202803683370190505b5090505f5b611335878761310b565b81101561136f5761134a8861026d838a61311e565b82828151811061135c5761135c612e78565b602090810291909101015260010161132b565b505f805b82518110156113b3575f83828151811061138f5761138f612e78565b602002602001015111156113ab57816113a781613131565b9250505b600101611373565b505f816001600160401b038111156113cd576113cd6124ae565b6040519080825280602002602001820160405280156113f6578160200160208202803683370190505b5090505f826001600160401b03811115611412576114126124ae565b60405190808252806020026020018201604052801561143b578160200160208202803683370190505b5090505f805b85518110156114e0575f86828151811061145d5761145d612e78565b602002602001015111156114d857611475818c61311e565b84838151811061148757611487612e78565b6020026020010181815250508581815181106114a5576114a5612e78565b60200260200101518383815181106114bf576114bf612e78565b6020908102919091010152816114d481613131565b9250505b600101611441565b50919a9099509197509095505050505050565b60108160328110611502575f80fd5b01546001600160a01b0316905081565b61151a611bdd565b5f828152600d60205260409020610dd98282612ed0565b5f805b60328160ff16101561157d5760108160ff166032811061155657611556612e78565b01546001600160a01b039081169084160361157557600191505061066d565b600101611534565b506001600160a01b038084165f9081526001602090815260408083209386168352929052205460ff165b9392505050565b5f818152600d60205260409020805460609190610e0590612c46565b6001600160a01b0385163314806115e657506115e68533611531565b6116025760405162461bcd60e51b815260040161064290612e29565b6109598585858585611e76565b611617611bdd565b6001600160a01b03811661167c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610642565b61168581611c37565b50565b5f805b60328160ff1610156116cf5733601060ff8316603281106116ae576116ae612e78565b01546001600160a01b0316036116c757600191506116cf565b60010161168b565b50806116ed5760405162461bcd60e51b815260040161064290612f8a565b816116f885856105dc565b1015611702575f5ffd5b610ccb848484611f9c565b611715611bdd565b600b55565b5f6001600160e01b0319821663152a902d60e11b148061066d575061066d825b5f6001600160e01b03198216636cdb3d1360e11b148061176a57506001600160e01b031982166303a24d0760e21b145b8061066d57506301ffc9a760e01b6001600160e01b031983161461066d565b6060815f036117af5750506040805180820190915260018152600360fc1b602082015290565b815f5b81156117d857806117c281613131565b91506117d19050600a83612e0a565b91506117b2565b5f816001600160401b038111156117f1576117f16124ae565b6040519080825280601f01601f19166020018201604052801561181b576020820181803683370190505b509050815b85156118a55761183160018261310b565b90505f61183f600a88612e0a565b61184a90600a612df3565b611854908861310b565b61185f906030613149565b90505f8160f81b90508084848151811061187b5761187b612e78565b60200101906001600160f81b03191690815f1a90535061189c600a89612e0a565b97505050611820565b50949350505050565b606081515f036118cb57505060408051602081019091525f815290565b5f6040518060600160405280604081526020016133ad6040913990505f6003845160026118f8919061311e565b6119029190612e0a565b61190d906004612df3565b90505f61191b82602061311e565b6001600160401b03811115611932576119326124ae565b6040519080825280601f01601f19166020018201604052801561195c576020820181803683370190505b509050818152600183018586518101602084015b818310156119c8576003830192508251603f8160121c168501518253600182019150603f81600c1c168501518253600182019150603f8160061c168501518253600182019150603f8116850151825350600101611970565b6003895106600181146119e257600281146119f3576119fe565b613d3d60f01b6001198301526119fe565b603d60f81b5f198301525b509398975050505050505050565b8151835114611a6e5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610642565b6001600160a01b038416611a945760405162461bcd60e51b815260040161064290613162565b335f5b8451811015611b6f575f858281518110611ab357611ab3612e78565b602002602001015190505f858381518110611ad057611ad0612e78565b6020908102919091018101515f84815280835260408082206001600160a01b038e168352909352919091205490915081811015611b1f5760405162461bcd60e51b8152600401610642906131a7565b5f838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611b5b90849061311e565b909155505060019093019250611a97915050565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611bbf9291906131f1565b60405180910390a4611bd5818787878787612113565b505050505050565b6005546001600160a01b03163314610c365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610642565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038416611ce85760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610642565b335f611cf38561226d565b90505f611cff8561226d565b90505f868152602081815260408083206001600160a01b038b16845290915281208054879290611d3090849061311e565b909155505060408051878152602081018790526001600160a01b03808a16925f92918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611d8e835f898989896122b6565b50505050505050565b816001600160a01b0316836001600160a01b031603611e0a5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610642565b6001600160a01b038381165f81815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038416611e9c5760405162461bcd60e51b815260040161064290613162565b335f611ea78561226d565b90505f611eb38561226d565b90505f868152602081815260408083206001600160a01b038c16845290915290205485811015611ef55760405162461bcd60e51b8152600401610642906131a7565b5f878152602081815260408083206001600160a01b038d8116855292528083208985039055908a16825281208054889290611f3190849061311e565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611f91848a8a8a8a8a6122b6565b505050505050505050565b6001600160a01b038316611ffe5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610642565b335f6120098461226d565b90505f6120158461226d565b60408051602080820183525f918290528882528181528282206001600160a01b038b168352905220549091508481101561209d5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610642565b5f868152602081815260408083206001600160a01b038b81168086529184528285208a8703905582518b81529384018a90529092908816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a460408051602081019091525f9052611d8e565b6001600160a01b0384163b15611bd55760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906121579089908990889088908890600401613215565b6020604051808303815f875af1925050508015612191575060408051601f3d908101601f1916820190925261218e91810190613272565b60015b61223d5761219d61328d565b806308c379a0036121d657506121b16132a6565b806121bc57506121d8565b8060405162461bcd60e51b81526004016106429190612465565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610642565b6001600160e01b0319811663bc197c8160e01b14611d8e5760405162461bcd60e51b815260040161064290613320565b6040805160018082528183019092526060915f91906020808301908036833701905050905082815f815181106122a5576122a5612e78565b602090810291909101015292915050565b6001600160a01b0384163b15611bd55760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906122fa9089908990889088908890600401613368565b6020604051808303815f875af1925050508015612334575060408051601f3d908101601f1916820190925261233191810190613272565b60015b6123405761219d61328d565b6001600160e01b0319811663f23a6e6160e01b14611d8e5760405162461bcd60e51b815260040161064290613320565b6040518061064001604052806032906020820280368337509192915050565b610640810181835f5b60328110156123c05781516001600160a01b0316835260209283019290910190600101612398565b50505092915050565b6001600160a01b0381168114611685575f5ffd5b5f5f604083850312156123ee575f5ffd5b82356123f9816123c9565b946020939093013593505050565b6001600160e01b031981168114611685575f5ffd5b5f6020828403121561242c575f5ffd5b81356115a781612407565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6115a76020830184612437565b5f60208284031215612487575f5ffd5b5035919050565b5f5f6040838503121561249f575f5ffd5b50508035926020909101359150565b634e487b7160e01b5f52604160045260245ffd5b601f8201601f191681016001600160401b03811182821017156124e7576124e76124ae565b6040525050565b5f6001600160401b03821115612506576125066124ae565b5060051b60200190565b5f82601f83011261251f575f5ffd5b813561252a816124ee565b60405161253782826124c2565b80915082815260208101915060208360051b86010192508583111561255a575f5ffd5b602085015b8381101561257757803583526020928301920161255f565b5095945050505050565b5f82601f830112612590575f5ffd5b8135602083015f5f6001600160401b038411156125af576125af6124ae565b50604051601f8401601f1916602001906125c982826124c2565b8092508481528785850111156125dd575f5ffd5b848460208301375f60208683010152809550505050505092915050565b5f5f5f5f5f60a0868803121561260e575f5ffd5b8535612619816123c9565b94506020860135612629816123c9565b935060408601356001600160401b03811115612643575f5ffd5b61264f88828901612510565b93505060608601356001600160401b0381111561266a575f5ffd5b61267688828901612510565b92505060808601356001600160401b03811115612691575f5ffd5b61269d88828901612581565b9150509295509295909350565b803560ff811681146126ba575f5ffd5b919050565b5f5f604083850312156126d0575f5ffd5b82356126db816123c9565b91506126e9602084016126aa565b90509250929050565b5f60208284031215612702575f5ffd5b81356115a7816123c9565b5f5f6040838503121561271e575f5ffd5b82356001600160401b03811115612733575f5ffd5b8301601f81018513612743575f5ffd5b803561274e816124ee565b60405161275b82826124c2565b80915082815260208101915060208360051b85010192508783111561277e575f5ffd5b6020840193505b828410156127a9578335612798816123c9565b825260209384019390910190612785565b945050505060208301356001600160401b038111156127c6575f5ffd5b6127d285828601612510565b9150509250929050565b5f8151808452602084019350602083015f5b8281101561280c5781518652602095860195909101906001016127ee565b5093949350505050565b602081525f6115a760208301846127dc565b5f60208284031215612838575f5ffd5b81356001600160401b0381111561284d575f5ffd5b61285984828501612581565b949350505050565b5f5f5f60608486031215612873575f5ffd5b833592506020840135612885816123c9565b929592945050506040919091013590565b5f5f602083850312156128a7575f5ffd5b82356001600160401b038111156128bc575f5ffd5b8301601f810185136128cc575f5ffd5b80356001600160401b038111156128e1575f5ffd5b8560208284010111156128f2575f5ffd5b6020919091019590945092505050565b5f60208284031215612912575f5ffd5b6115a7826126aa565b5f5f6040838503121561292c575f5ffd5b8235915060208301356001600160401b03811115612948575f5ffd5b6127d285828601612581565b5f5f60408385031215612965575f5ffd5b8235612970816123c9565b915060208301358015158114612984575f5ffd5b809150509250929050565b5f6020828403121561299f575f5ffd5b81356001600160401b038111156129b4575f5ffd5b61285984828501612510565b5f82825180855260208501945060208160051b830101602085015f5b83811015612a0e57601f198584030188526129f8838351612437565b60209889019890935091909101906001016129dc565b50909695505050505050565b604081525f612a2c60408301856129c0565b8281036020840152612a3e81856129c0565b95945050505050565b5f82601f830112612a56575f5ffd5b8135612a61816124ee565b604051612a6e82826124c2565b80915082815260208101915060208360051b860101925085831115612a91575f5ffd5b602085015b838110156125775780356001600160401b03811115612ab3575f5ffd5b612ac2886020838a0101612581565b84525060209283019201612a96565b5f5f5f60608486031215612ae3575f5ffd5b83356001600160401b03811115612af8575f5ffd5b612b0486828701612510565b93505060208401356001600160401b03811115612b1f575f5ffd5b612b2b86828701612a47565b92505060408401356001600160401b03811115612b46575f5ffd5b612b5286828701612a47565b9150509250925092565b5f5f5f60608486031215612b6e575f5ffd5b8335612b79816123c9565b95602085013595506040909401359392505050565b606081525f612ba060608301866127dc565b8281036020840152612bb281866127dc565b915050826040830152949350505050565b5f5f60408385031215612bd4575f5ffd5b8235612bdf816123c9565b91506020830135612984816123c9565b5f5f5f5f5f60a08688031215612c03575f5ffd5b8535612c0e816123c9565b94506020860135612c1e816123c9565b9350604086013592506060860135915060808601356001600160401b03811115612691575f5ffd5b600181811c90821680612c5a57607f821691505b602082108103612c7857634e487b7160e01b5f52602260045260245ffd5b50919050565b5f8154612c8a81612c46565b600182168015612ca15760018114612cb6576123c0565b60ff19831686528115158202860193506123c0565b845f5260205f205f5b83811015612cdb57815488820152600190910190602001612cbf565b505050939093019392505050565b5f81518060208401855e5f93019283525090919050565b5f612a3e612d17612d118488612c7e565b86612ce9565b84612c7e565b6a7b226e616d65223a20222360a81b81525f612d3c600b830187612ce9565b600160fd1b8152612d506001820187612ce9565b711116113232b9b1b934b83a34b7b7111d101160711b81529050612d776012820186612ce9565b6b11161134b6b0b3b2911d101160a11b81529050612d98600c820185612ce9565b61227d60f01b8152600201979650505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081525f6115a7601d830184612ce9565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141761066d5761066d612ddf565b5f82612e2457634e487b7160e01b5f52601260045260245ffd5b500490565b6020808252602f908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526e195c881b9bdc88185c1c1c9bdd9959608a1b606082015260800190565b634e487b7160e01b5f52603260045260245ffd5b601f821115610dd957805f5260205f20601f840160051c81016020851015612eb15750805b601f840160051c820191505b81811015610959575f8155600101612ebd565b81516001600160401b03811115612ee957612ee96124ae565b612efd81612ef78454612c46565b84612e8c565b6020601f821160018114612f2f575f8315612f185750848201515b5f19600385901b1c1916600184901b178455610959565b5f84815260208120601f198516915b82811015612f5e5787850151825560209485019460019092019101612f3e565b5084821015612f7b57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b60208082526021908201527f4f6e6c7920616c6c6f77656420666f72206d617374657220636f6e74726163746040820152607360f81b606082015260800190565b6001600160401b03831115612fe257612fe26124ae565b612ff683612ff08354612c46565b83612e8c565b5f601f841160018114613027575f85156130105750838201355b5f19600387901b1c1916600186901b178355610959565b5f83815260208120601f198716915b828110156130565786850135825560209485019460019092019101613036565b5086821015613072575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b602081525f5f835461309581612c46565b806020860152600182165f81146130b357600181146130cf57613100565b60ff1983166040870152604082151560051b8701019350613100565b865f5260205f205f5b838110156130f7578154888201604001526001909101906020016130d8565b87016040019450505b509195945050505050565b8181038181111561066d5761066d612ddf565b8082018082111561066d5761066d612ddf565b5f6001820161314257613142612ddf565b5060010190565b60ff818116838216019081111561066d5761066d612ddf565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b604081525f61320360408301856127dc565b8281036020840152612a3e81856127dc565b6001600160a01b0386811682528516602082015260a0604082018190525f90613240908301866127dc565b828103606084015261325281866127dc565b905082810360808401526132668185612437565b98975050505050505050565b5f60208284031215613282575f5ffd5b81516115a781612407565b5f60033d11156132a35760045f5f3e505f5160e01c5b90565b5f60443d10156132b35790565b6040513d600319016004823e80513d60248201116001600160401b03821117156132dc57505090565b80820180516001600160401b038111156132f7575050505090565b3d8401600319018282016020011115613311575050505090565b610b91602082850101856124c2565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190525f906133a190830184612437565b97965050505050505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212207d345b3ac566a6d1df05a28f2ad981bafb2d98eac2ffadce75d33f110b51b15064736f6c634300081c0033
Deployed Bytecode Sourcemap
56930:10868:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59550:144;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20972:230;;;;;;:::i;:::-;;:::i;:::-;;;1174:25:1;;;1162:2;1147:18;20972:230:0;1028:177:1;58813:267:0;;;;;;:::i;:::-;;:::i;:::-;;;1761:14:1;;1754:22;1736:41;;1724:2;1709:18;58813:267:0;1596:187:1;57085:48:0;;;:::i;:::-;;;;;;;:::i;66340:875::-;;;;;;:::i;:::-;;:::i;57468:25::-;;;;;;60115:208;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3081:32:1;;;3063:51;;3145:2;3130:18;;3123:34;;;;3036:18;60115:208:0;2889:274:1;22916:439:0;;;;;;:::i;:::-;;:::i;:::-;;59700:208;;;;;;:::i;:::-;;:::i;57384:28::-;;;;;;;;;60329:221;;;;;;:::i;:::-;;:::i;57538:31::-;;;;;-1:-1:-1;;;;;57538:31:0;;;;;;-1:-1:-1;;;;;7203:32:1;;;7185:51;;7173:2;7158:18;57538:31:0;7039:203:1;21368:524:0;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;60852:237::-;;;;;;:::i;:::-;;:::i;57745:202::-;;;;;;:::i;:::-;;:::i;58176:19::-;;;;;;;;;45954:103;;;:::i;57953:209::-;;;;;;:::i;:::-;;:::i;63537:148::-;;;;;;:::i;:::-;;:::i;60701:145::-;;;;;;:::i;:::-;;:::i;45306:87::-;45379:6;;-1:-1:-1;;;;;45379:6:0;45306:87;;59914:195;;;;;;:::i;:::-;;:::i;57140:37::-;;;:::i;61603:146::-;;;;;;:::i;:::-;;:::i;57184:42::-;;;;;;;;;;;;;;;-1:-1:-1;;;57184:42:0;;;;;21965:155;;;;;;:::i;:::-;;:::i;62462:129::-;;;;;;:::i;:::-;;:::i;57233:37::-;;;:::i;62657:499::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;61826:448::-;;;;;;:::i;:::-;;:::i;57277:100::-;;;:::i;64658:1188::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;59088:34::-;;;;;;:::i;:::-;;:::i;61479:118::-;;;;;;:::i;:::-;;:::i;61095:360::-;;;;;;:::i;:::-;;:::i;62308:115::-;;;;;;:::i;:::-;;:::i;22432:407::-;;;;;;:::i;:::-;;:::i;46212:201::-;;;;;;:::i;:::-;;:::i;63759:176::-;;;;;;:::i;:::-;;:::i;60556:139::-;;;;;;:::i;:::-;;:::i;59550:144::-;59602:18;;:::i;:::-;59664:22;;;;;;;;;;;59671:15;;59664:22;;59671:15;59664:22;;;;-1:-1:-1;;;;;59664:22:0;;;;;;;;;;;;;;;;;;;;;;59550:144;:::o;20972:230::-;21058:7;-1:-1:-1;;;;;21086:21:0;;21078:76;;;;-1:-1:-1;;;21078:76:0;;17598:2:1;21078:76:0;;;17580:21:1;17637:2;17617:18;;;17610:30;17676:34;17656:18;;;17649:62;-1:-1:-1;;;17727:18:1;;;17720:40;17777:19;;21078:76:0;;;;;;;;;-1:-1:-1;21172:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;21172:22:0;;;;;;;;;;20972:230;;;;;:::o;58813:267::-;58916:4;58991:38;59017:11;58991:25;:38::i;:::-;:80;;;;59033:38;59059:11;59033:25;:38::i;57085:48::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66340:875::-;66441:12;66503:17;;;:8;:17;;;;;66481:39;;66406:22;;66461:8;;66441:12;;66481:39;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66531:28;66586:8;66595:18;66605:7;66595:9;:18::i;:::-;66615:14;66569:61;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;66569:61:0;;;;;;;;;66642:26;66671:24;;;:15;66569:61;66671:24;;;;66642:53;;66569:61;;-1:-1:-1;66642:26:0;;:53;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66798:388;66918:18;66928:7;66918:9;:18::i;:::-;66941:5;66998:12;67082:14;66858:294;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66798:13;:388::i;:::-;66735:462;;;;;;;;:::i;:::-;;;;;;;;;;;;;66717:481;;66430:785;;;;66340:875;;;:::o;60115:208::-;60195:7;60204;60224:14;60266:5;60255:7;;60242:10;:20;;;;:::i;:::-;60241:30;;;;:::i;:::-;60290:16;;-1:-1:-1;;;;;60290:16:0;;60224:47;;-1:-1:-1;60115:208:0;-1:-1:-1;;;;60115: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;61095: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;59700:208::-;45192:13;:11;:13::i;:::-;59804:2:::1;59795:6;:11;;;59787:43;;;::::0;-1:-1:-1;;;59787:43:0;;22363:2:1;59787:43:0::1;::::0;::::1;22345:21:1::0;22402:2;22382:18;;;22375:30;-1:-1:-1;;;22421:18:1;;;22414:49;22480:18;;59787:43:0::1;22161:343:1::0;59787:43:0::1;59892:8;59866:15;59882:6;59866:23;;;;;;;;;:::i;:::-;;:34:::0;;-1:-1:-1;;;;;;59866:34:0::1;-1:-1:-1::0;;;;;59866:34:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;59700:208:0:o;60329:221::-;45192:13;:11;:13::i;:::-;-1:-1:-1;;;;;60421:31:0;::::1;60413:82;;;::::0;-1:-1:-1;;;60413:82:0;;22843:2:1;60413:82:0::1;::::0;::::1;22825:21:1::0;22882:2;22862:18;;;22855:30;22921:34;22901:18;;;22894:62;-1:-1:-1;;;22972:18:1;;;22965:36;23018:19;;60413:82:0::1;22641:402:1::0;60413:82:0::1;60506:16;:36:::0;;-1:-1:-1;;;;;;60506:36:0::1;-1:-1:-1::0;;;;;60506:36:0;;;::::1;::::0;;;::::1;::::0;;60329:221::o;21368:524::-;21524:16;21585:3;:10;21566:8;:15;:29;21558:83;;;;-1:-1:-1;;;21558:83:0;;23250:2:1;21558:83:0;;;23232:21:1;23289:2;23269:18;;;23262:30;23328:34;23308:18;;;23301:62;-1:-1:-1;;;23379:18:1;;;23372:39;23428:19;;21558:83:0;23048: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;60852:237::-;45379:6;;-1:-1:-1;;;;;60974:14:0;;;45379:6;;60974:14;60966:23;;;;;;61001:9;61015:3;-1:-1:-1;;;;;61015:8:0;61031:21;61015:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61000:57;;;61076:4;61068:13;;;;;;60900:189;60852:237;:::o;57745:202::-;45192:13;:11;:13::i;:::-;57813:8:::1;:14;57824:3:::0;57813:8;:14:::1;:::i;45954:103::-:0;45192:13;:11;:13::i;:::-;46019:30:::1;46046:1;46019:18;:30::i;:::-;45954:103::o:0;57953:209::-;45192:13;:11;:13::i;:::-;58022:14:::1;:20;58039:3:::0;58022:14;:20:::1;:::i;63537:148::-:0;59202:21;;59242:210;59264:2;59260:1;:6;;;59242:210;;;59347:10;59325:15;:18;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;59325:18:0;:32;59321:120;;59397:4;59378:23;;59420:5;;59321:120;59268:3;;59242:210;;;;59470:16;59462:62;;;;-1:-1:-1;;;59462:62:0;;;;;;;:::i;:::-;63626:28:::1;63632:3;63637;63642:7;63626:28;;;;;;;;;;;::::0;:5:::1;:28::i;:::-;59191:353:::0;63537:148;;;:::o;60701:145::-;45192:13;:11;:13::i;:::-;60794:4:::1;:12;60801:5:::0;;60794:4;:12:::1;:::i;:::-;;60822:16;60833:4;60822:16;;;;;;:::i;:::-;;;;;;;;60701:145:::0;;:::o;59914:195::-;45192:13;:11;:13::i;:::-;60003:2:::1;59994:6;:11;;;59986:43;;;::::0;-1:-1:-1;;;59986:43:0;;22363:2:1;59986:43:0::1;::::0;::::1;22345:21:1::0;22402:2;22382:18;;;22375:30;-1:-1:-1;;;22421:18:1;;;22414:49;22480:18;;59986:43:0::1;22161:343:1::0;59986:43:0::1;60099:1;60065:15;60081:6;60065:23;;;;;;;;;:::i;:::-;;:36:::0;;-1:-1:-1;;;;;;60065:36:0::1;-1:-1:-1::0;;;;;60065:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;59914:195:0:o;57140:37::-;;;;;;;:::i;61603:146::-;45192:13;:11;:13::i;:::-;61701:25:::1;::::0;;;:15:::1;:25;::::0;;;;:40:::1;61729:12:::0;61701:25;:40:::1;:::i;:::-;;61603:146:::0;;:::o;21965:155::-;22060:52;17728:10;22093:8;22103;22060:18;:52::i;62462:129::-;62558:25;;;;:15;:25;;;;;62551:32;;62525:13;;62558:25;62551:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62462:129;;;:::o;57233:37::-;;;;;;;:::i;62657:499::-;62755:15;62772;62805:21;62842:9;:16;-1:-1:-1;;;;;62829:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62805:54;;62870:28;62914:9;:16;-1:-1:-1;;;;;62901:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62870:61:0;-1:-1:-1;62949:6:0;62944:166;62965:9;:16;62961:1;:20;62944:166;;;63014:8;:22;63023:9;63033:1;63023:12;;;;;;;;:::i;:::-;;;;;;;63014:22;;;;;;;;;;;63003:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;63009:1;63003:8;;;;;;;;:::i;:::-;;;;;;:33;;;;63069:15;:29;63085:9;63095:1;63085:12;;;;;;;;:::i;:::-;;;;;;;63069:29;;;;;;;;;;;63051:47;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:12;63064:1;63051:15;;;;;;;;:::i;:::-;;;;;;;;;;:47;62983:3;;62944:166;;;-1:-1:-1;63128:5:0;;63135:12;;-1:-1:-1;62657:499:0;-1:-1:-1;;62657:499:0:o;61826:448::-;45192:13;:11;:13::i;:::-;61987:6:::1;:13;61967:9;:16;:33;:74;;;;;62021:13;:20;62004:6;:13;:37;61967:74;61959:129;;;::::0;-1:-1:-1;;;61959:129:0;;28377:2:1;61959:129:0::1;::::0;::::1;28359:21:1::0;28416:2;28396:18;;;28389:30;28455:34;28435:18;;;28428:62;-1:-1:-1;;;28506:18:1;;;28499:40;28556:19;;61959:129:0::1;28175:406:1::0;61959:129:0::1;62104:6;62099:168;62120:9;:16;62116:1;:20;62099:168;;;62183:6;62190:1;62183:9;;;;;;;;:::i;:::-;;;;;;;62158:8;:22;62167:9;62177:1;62167:12;;;;;;;;:::i;:::-;;;;;;;62158:22;;;;;;;;;;;:34;;;;;;:::i;:::-;;62239:13;62253:1;62239:16;;;;;;;;:::i;:::-;;;;;;;62207:15;:29;62223:9;62233:1;62223:12;;;;;;;;:::i;:::-;;;;;;;62207:29;;;;;;;;;;;:48;;;;;;:::i;:::-;-1:-1:-1::0;62138:3:0::1;;62099:168;;57277:100:::0;;;;;;;:::i;64658:1188::-;64769:13;64784;64799:4;64831:5;64824:4;:12;64816:56;;;;-1:-1:-1;;;64816:56:0;;28788:2:1;64816:56:0;;;28770:21:1;28827:2;28807:18;;;28800:30;28866:33;28846:18;;;28839:61;28917:18;;64816:56:0;28586:355:1;64816:56:0;64907:3;64891:12;64898:5;64891:4;:12;:::i;:::-;:19;;64883:62;;;;-1:-1:-1;;;64883:62:0;;29281:2:1;64883:62:0;;;29263:21:1;29320:2;29300:18;;;29293:30;29359:32;29339:18;;;29332:60;29409:18;;64883:62:0;29079:354:1;64883:62:0;64958:29;65001:12;65008:5;65001:4;:12;:::i;:::-;-1:-1:-1;;;;;64990:24:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64990:24:0;-1:-1:-1;64958:56:0;-1:-1:-1;65030:6:0;65025:118;65047:12;65054:5;65047:4;:12;:::i;:::-;65042:1;:18;65025:118;;;65103:28;65113:6;65121:9;65129:1;65121:5;:9;:::i;65103:28::-;65082:15;65098:1;65082:18;;;;;;;;:::i;:::-;;;;;;;;;;:49;65062:3;;65025:118;;;-1:-1:-1;65155:22:0;;65192:158;65213:15;:22;65209:1;:26;65192:158;;;65282:1;65261:15;65277:1;65261:18;;;;;;;;:::i;:::-;;;;;;;:22;65257:82;;;65304:19;;;;:::i;:::-;;;;65257:82;65237:3;;65192:158;;;;65362:21;65397:17;-1:-1:-1;;;;;65386:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65386:29:0;;65362:53;;65426:26;65466:17;-1:-1:-1;;;;;65455:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65455:29:0;-1:-1:-1;65426:58:0;-1:-1:-1;65495:12:0;;65522:256;65543:15;:22;65539:1;:26;65522:256;;;65612:1;65591:15;65607:1;65591:18;;;;;;;;:::i;:::-;;;;;;;:22;65587:180;;;65653:9;65661:1;65653:5;:9;:::i;:::-;65634:7;65642;65634:16;;;;;;;;:::i;:::-;;;;;;:28;;;;;65705:15;65721:1;65705:18;;;;;;;;:::i;:::-;;;;;;;65681:12;65694:7;65681:21;;;;;;;;:::i;:::-;;;;;;;;;;:42;65742:9;;;;:::i;:::-;;;;65587:180;65567:3;;65522:256;;;-1:-1:-1;65798:7:0;;65807:12;;-1:-1:-1;65820:17:0;;-1:-1:-1;64658:1188:0;;-1:-1:-1;;;;;;64658:1188:0:o;59088:34::-;;;;;;;;;;;;;;-1:-1:-1;;;;;59088:34:0;;-1:-1:-1;59088:34:0;:::o;61479:118::-;45192:13;:11;:13::i;:::-;61563:18:::1;::::0;;;:8:::1;:18;::::0;;;;:26:::1;61584:5:::0;61563:18;:26:::1;:::i;61095:360::-:0;61186:15;;61214:173;61236:2;61232:1;:6;;;61214:173;;;61310:15;61326:1;61310:18;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;61310:18:0;;;61297:31;;;;61293:83;;61356:4;61349:11;;;;;61293:83;61240:3;;61214:173;;;-1:-1:-1;;;;;;22315:27:0;;;22291:4;22315:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;61404:43;61397:50;61095:360;-1:-1:-1;;;61095:360:0:o;62308:115::-;62397:18;;;;:8;:18;;;;;62390:25;;62364:13;;62397:18;62390: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;61095: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;;29910:2:1;46293:73:0::1;::::0;::::1;29892:21:1::0;29949:2;29929:18;;;29922:30;29988:34;29968:18;;;29961:62;-1:-1:-1;;;30039:18:1;;;30032:36;30085:19;;46293:73:0::1;29708:402:1::0;46293:73:0::1;46377:28;46396:8;46377:18;:28::i;:::-;46212:201:::0;:::o;63759:176::-;59202:21;;59242:210;59264:2;59260:1;:6;;;59242:210;;;59347:10;59325:15;:18;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;59325:18:0;:32;59321:120;;59397:4;59378:23;;59420:5;;59321:120;59268:3;;59242:210;;;;59470:16;59462:62;;;;-1:-1:-1;;;59462:62:0;;;;;;;:::i;:::-;63882:7:::1;63857:21;63867:5;63874:3;63857:9;:21::i;:::-;:32;;63849:41;;;;;;63901:26;63907:5;63914:3;63919:7;63901:5;:26::i;60556:139::-:0;45192:13;:11;:13::i;:::-;60629:7:::1;:20:::0;60556: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;67231:561;67281:23;67321:2;67327:1;67321:7;67317:50;;-1:-1:-1;;67345:10:0;;;;;;;;;;;;-1:-1:-1;;;67345:10:0;;;;;67231:561::o;67317:50::-;67386:2;67377:6;67418:69;67425:6;;67418:69;;67448:5;;;;:::i;:::-;;-1:-1:-1;67468:7:0;;-1:-1:-1;67473:2:0;67468:7;;:::i;:::-;;;67418:69;;;67497:17;67527:3;-1:-1:-1;;;;;67517:14:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67517:14:0;-1:-1:-1;67497:34:0;-1:-1:-1;67551:3:0;67565:198;67572:7;;67565:198;;67600:3;67602:1;67600;:3;:::i;:::-;67596:7;-1:-1:-1;67618:10:0;67648:7;67653:2;67648;:7;:::i;:::-;:12;;67658:2;67648:12;:::i;:::-;67643:17;;:2;:17;:::i;:::-;67632:29;;:2;:29;:::i;:::-;67618:44;;67677:9;67696:4;67689:12;;67677:24;;67726:2;67716:4;67721:1;67716:7;;;;;;;;:::i;:::-;;;;:12;-1:-1:-1;;;;;67716:12:0;;;;;;;;-1:-1:-1;67743:8:0;67749:2;67743:8;;:::i;:::-;;;67581:182;;67565:198;;;-1:-1:-1;67780:4:0;67231:561;-1:-1:-1;;;;67231:561:0:o;50810:1912::-;50868:13;50898:4;:11;50913:1;50898:16;50894:31;;-1:-1:-1;;50916:9:0;;;;;;;;;-1:-1:-1;50916:9:0;;;50810:1912::o;50894:31::-;50977:19;50999:12;;;;;;;;;;;;;;;;;50977:34;;51063:18;51109:1;51090:4;:11;51104:1;51090:15;;;;:::i;:::-;51089:21;;;;:::i;:::-;51084:27;;:1;:27;:::i;:::-;51063:48;-1:-1:-1;51194:20:0;51228:15;51063:48;51241:2;51228:15;:::i;:::-;-1:-1:-1;;;;;51217:27:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51217:27:0;;51194:50;;51341:10;51333:6;51326:26;51436:1;51429:5;51425:13;51495:4;51546;51540:11;51531:7;51527:25;51642:2;51634:6;51630:15;51715:754;51734:6;51725:7;51722:19;51715:754;;;51834:1;51825:7;51821:15;51810:26;;51873:7;51867:14;51999:4;51991:5;51987:2;51983:14;51979:25;51969:8;51965:40;51959:47;51948:9;51940:67;52053:1;52042:9;52038:17;52025:30;;52132:4;52124:5;52120:2;52116:14;52112:25;52102:8;52098:40;52092:47;52081:9;52073:67;52186:1;52175:9;52171:17;52158:30;;52265:4;52257:5;52254:1;52249:14;52245:25;52235:8;52231:40;52225:47;52214:9;52206:67;52319:1;52308:9;52304:17;52291:30;;52398:4;52390:5;52378:25;52368:8;52364:40;52358:47;52347:9;52339:67;-1:-1:-1;52452:1:0;52437:17;51715:754;;;52542:1;52535:4;52529:11;52525:19;52563:1;52558:54;;;;52631:1;52626:52;;;;52518:160;;52558:54;-1:-1:-1;;;;;52574:17:0;;52567:43;52558:54;;52626:52;-1:-1:-1;;;;;52642:17:0;;52635:41;52518:160;-1:-1:-1;52708:6:0;;50810:1912;-1:-1:-1;;;;;;;;50810:1912:0:o;25151:1146::-;25378:7;:14;25364:3;:10;:28;25356:81;;;;-1:-1:-1;;;25356:81:0;;30470:2:1;25356:81:0;;;30452:21:1;30509:2;30489:18;;;30482:30;30548:34;30528:18;;;30521:62;-1:-1:-1;;;30599:18:1;;;30592:38;30647:19;;25356:81:0;30268: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;;32166:2:1;45527:68:0;;;32148:21:1;;;32185:18;;;32178:30;32244:34;32224:18;;;32217:62;32296:18;;45527:68:0;31964:356:1;46573:191:0;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;27615:729::-;-1:-1:-1;;;;;27768:16:0;;27760:62;;;;-1:-1:-1;;;27760:62:0;;32527:2:1;27760:62:0;;;32509:21:1;32566:2;32546:18;;;32539:30;32605:34;32585:18;;;32578:62;-1:-1:-1;;;32656:18:1;;;32649:31;32697:19;;27760:62:0;32325: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;;;32901:25:1;;;32957:2;32942:18;;32935:34;;;-1:-1:-1;;;;;28119:52:0;;;;28152:1;;28119:52;;;;;;32874: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;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;;33182:2:1;32166:71:0;;;33164:21:1;33221:2;33201:18;;;33194:30;33260:34;33240:18;;;33233:62;-1:-1:-1;;;33311:18:1;;;33304:39;33360:19;;32166:71:0;32980:405:1;32166:71:0;-1:-1:-1;;;;;32248:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;32248:46:0;;;;;;;;;;32310:41;;1736::1;;;32310::0;;1709: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;;;32901:25:1;;;32957:2;32942:18;;32935:34;;;-1:-1:-1;;;;;24586:46:0;;;;;;;;;;;;;;32874: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;;33592:2:1;29977:66:0;;;33574:21:1;33631:2;33611:18;;;33604:30;33670:34;33650:18;;;33643:62;-1:-1:-1;;;33721:18:1;;;33714:33;33764:19;;29977:66:0;33390: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;;33996:2:1;30349:70:0;;;33978:21:1;34035:2;34015:18;;;34008:30;34074:34;34054:18;;;34047:62;-1:-1:-1;;;34125:18:1;;;34118:34;34169:19;;30349:70:0;33794:400:1;30349:70:0;30455:9;:13;;;;;;;;;;;-1:-1:-1;;;;;30455:19:0;;;;;;;;;;;;30477:20;;;30455:42;;30526:54;;32901:25:1;;;32942:18;;;32935:34;;;30455:19:0;;30526:54;;;;;;32874: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;;36300:2:1;36190:62:0;;;36282:21:1;36339:2;36319:18;;;36312:30;36378:34;36358:18;;;36351:62;-1:-1:-1;;;36429:18:1;;;36422:50;36489:19;;36190:62:0;36098: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;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:501:1:-;196:4;181:20;;185:9;278:6;154:4;312:197;326:4;323:1;320:11;312:197;;;389:13;;-1:-1:-1;;;;;385:39:1;373:52;;454:4;445:14;;;;482:17;;;;421:1;339:9;312:197;;;316:3;;;14:501;;;;:::o;520:131::-;-1:-1:-1;;;;;595:31:1;;585:42;;575:70;;641:1;638;631:12;656:367;724:6;732;785:2;773:9;764:7;760:23;756:32;753:52;;;801:1;798;791:12;753:52;840:9;827:23;859:31;884:5;859:31;:::i;:::-;909:5;987:2;972:18;;;;959:32;;-1:-1:-1;;;656:367:1:o;1210:131::-;-1:-1:-1;;;;;;1284:32:1;;1274:43;;1264:71;;1331:1;1328;1321:12;1346:245;1404:6;1457:2;1445:9;1436:7;1432:23;1428:32;1425:52;;;1473:1;1470;1463:12;1425:52;1512:9;1499:23;1531:30;1555:5;1531:30;:::i;1788:289::-;1830:3;1868:5;1862:12;1895:6;1890:3;1883:19;1951:6;1944:4;1937:5;1933:16;1926:4;1921:3;1917:14;1911:47;2003:1;1996:4;1987:6;1982:3;1978:16;1974:27;1967:38;2066:4;2059:2;2055:7;2050:2;2042:6;2038:15;2034:29;2029:3;2025:39;2021:50;2014:57;;;1788:289;;;;:::o;2082:220::-;2231:2;2220:9;2213:21;2194:4;2251:45;2292:2;2281:9;2277:18;2269:6;2251:45;:::i;2307:226::-;2366:6;2419:2;2407:9;2398:7;2394:23;2390:32;2387:52;;;2435:1;2432;2425:12;2387:52;-1:-1:-1;2480:23:1;;2307:226;-1:-1:-1;2307:226:1:o;2538:346::-;2606:6;2614;2667:2;2655:9;2646:7;2642:23;2638:32;2635:52;;;2683:1;2680;2673:12;2635:52;-1:-1:-1;;2728:23:1;;;2848:2;2833:18;;;2820:32;;-1:-1:-1;2538:346:1:o;3168:127::-;3229:10;3224:3;3220:20;3217:1;3210:31;3260:4;3257:1;3250:15;3284:4;3281:1;3274:15;3300:249;3410:2;3391:13;;-1:-1:-1;;3387:27:1;3375:40;;-1:-1:-1;;;;;3430:34:1;;3466:22;;;3427:62;3424:88;;;3492:18;;:::i;:::-;3528:2;3521:22;-1:-1:-1;;3300:249:1:o;3554:183::-;3614:4;-1:-1:-1;;;;;3639:6:1;3636:30;3633:56;;;3669:18;;:::i;:::-;-1:-1:-1;3714:1:1;3710:14;3726:4;3706:25;;3554:183::o;3742:781::-;3796:5;3849:3;3842:4;3834:6;3830:17;3826:27;3816:55;;3867:1;3864;3857:12;3816:55;3907:6;3894:20;3933:47;3973:6;3933:47;:::i;:::-;4009:2;4003:9;4021:31;4049:2;4041:6;4021:31;:::i;:::-;4072:6;4061:17;;4102:6;4094;4087:22;4137:4;4129:6;4125:17;4118:24;;4198:4;4188:6;4185:1;4181:14;4173:6;4169:27;4165:38;4151:52;;4226:3;4218:6;4215:15;4212:35;;;4243:1;4240;4233:12;4212:35;4279:4;4271:6;4267:17;4293:200;4309:6;4304:3;4301:15;4293:200;;;4401:17;;4431:18;;4478:4;4469:14;;;;4326;4293:200;;;-1:-1:-1;4511:6:1;3742:781;-1:-1:-1;;;;;3742:781:1:o;4528:684::-;4570:5;4623:3;4616:4;4608:6;4604:17;4600:27;4590:55;;4641:1;4638;4631:12;4590:55;4681:6;4668:20;4720:4;4712:6;4708:17;4749:1;4771;-1:-1:-1;;;;;4787:6:1;4784:30;4781:56;;;4817:18;;:::i;:::-;-1:-1:-1;4923:2:1;4917:9;4883:2;4862:15;;-1:-1:-1;;4858:29:1;4889:4;4854:40;;4935:33;4854:40;4917:9;4935:33;:::i;:::-;4988:6;4977:17;;5018:6;5010;5003:22;5058:3;5049:6;5044:3;5040:16;5037:25;5034:45;;;5075:1;5072;5065:12;5034:45;5125:6;5120:3;5113:4;5105:6;5101:17;5088:44;5180:1;5173:4;5164:6;5156;5152:19;5148:30;5141:41;5200:6;5191:15;;;;;;;4528:684;;;;:::o;5217:1082::-;5371:6;5379;5387;5395;5403;5456:3;5444:9;5435:7;5431:23;5427:33;5424:53;;;5473:1;5470;5463:12;5424:53;5512:9;5499:23;5531:31;5556:5;5531:31;:::i;:::-;5581:5;-1:-1:-1;5638:2:1;5623:18;;5610:32;5651:33;5610:32;5651:33;:::i;:::-;5703:7;-1:-1:-1;5761:2:1;5746:18;;5733:32;-1:-1:-1;;;;;5777:30:1;;5774:50;;;5820:1;5817;5810:12;5774:50;5843:61;5896:7;5887:6;5876:9;5872:22;5843:61;:::i;:::-;5833:71;;;5957:2;5946:9;5942:18;5929:32;-1:-1:-1;;;;;5976:8:1;5973:32;5970:52;;;6018:1;6015;6008:12;5970:52;6041:63;6096:7;6085:8;6074:9;6070:24;6041:63;:::i;:::-;6031:73;;;6157:3;6146:9;6142:19;6129:33;-1:-1:-1;;;;;6177:8:1;6174:32;6171:52;;;6219:1;6216;6209:12;6171:52;6242:51;6285:7;6274:8;6263:9;6259:24;6242:51;:::i;:::-;6232:61;;;5217:1082;;;;;;;;:::o;6304:156::-;6370:20;;6430:4;6419:16;;6409:27;;6399:55;;6450:1;6447;6440:12;6399:55;6304:156;;;:::o;6465:317::-;6531:6;6539;6592:2;6580:9;6571:7;6567:23;6563:32;6560:52;;;6608:1;6605;6598:12;6560:52;6647:9;6634:23;6666:31;6691:5;6666:31;:::i;:::-;6716:5;-1:-1:-1;6740:36:1;6772:2;6757:18;;6740:36;:::i;:::-;6730:46;;6465:317;;;;;:::o;6787:247::-;6846:6;6899:2;6887:9;6878:7;6874:23;6870:32;6867:52;;;6915:1;6912;6905:12;6867:52;6954:9;6941:23;6973:31;6998:5;6973:31;:::i;7247:1277::-;7365:6;7373;7426:2;7414:9;7405:7;7401:23;7397:32;7394:52;;;7442:1;7439;7432:12;7394:52;7482:9;7469:23;-1:-1:-1;;;;;7507:6:1;7504:30;7501:50;;;7547:1;7544;7537:12;7501:50;7570:22;;7623:4;7615:13;;7611:27;-1:-1:-1;7601:55:1;;7652:1;7649;7642:12;7601:55;7692:2;7679:16;7714:47;7754:6;7714:47;:::i;:::-;7790:2;7784:9;7802:31;7830:2;7822:6;7802:31;:::i;:::-;7853:6;7842:17;;7883:6;7875;7868:22;7918:4;7910:6;7906:17;7899:24;;7975:4;7965:6;7962:1;7958:14;7954:2;7950:23;7946:34;7932:48;;8003:7;7995:6;7992:19;7989:39;;;8024:1;8021;8014:12;7989:39;8056:4;8052:2;8048:13;8037:24;;8070:221;8086:6;8081:3;8078:15;8070:221;;;8168:3;8155:17;8185:31;8210:5;8185:31;:::i;:::-;8229:18;;8276:4;8103:14;;;;8267;;;;8070:221;;;8310:6;-1:-1:-1;;;;8369:4:1;8354:20;;8341:34;-1:-1:-1;;;;;8387:32:1;;8384:52;;;8432:1;8429;8422:12;8384:52;8455:63;8510:7;8499:8;8488:9;8484:24;8455:63;:::i;:::-;8445:73;;;7247:1277;;;;;:::o;8529:420::-;8582:3;8620:5;8614:12;8647:6;8642:3;8635:19;8679:4;8674:3;8670:14;8663:21;;8718:4;8711:5;8707:16;8741:1;8751:173;8765:6;8762:1;8759:13;8751:173;;;8826:13;;8814:26;;8869:4;8860:14;;;;8897:17;;;;8787:1;8780:9;8751:173;;;-1:-1:-1;8940:3:1;;8529:420;-1:-1:-1;;;;8529:420:1:o;8954:261::-;9133:2;9122:9;9115:21;9096:4;9153:56;9205:2;9194:9;9190:18;9182:6;9153:56;:::i;9480:321::-;9549:6;9602:2;9590:9;9581:7;9577:23;9573:32;9570:52;;;9618:1;9615;9608:12;9570:52;9658:9;9645:23;-1:-1:-1;;;;;9683:6:1;9680:30;9677:50;;;9723:1;9720;9713:12;9677:50;9746:49;9787:7;9778:6;9767:9;9763:22;9746:49;:::i;:::-;9736:59;9480:321;-1:-1:-1;;;;9480:321:1:o;9806:487::-;9883:6;9891;9899;9952:2;9940:9;9931:7;9927:23;9923:32;9920:52;;;9968:1;9965;9958:12;9920:52;10013:23;;;-1:-1:-1;10112:2:1;10097:18;;10084:32;10125:33;10084:32;10125:33;:::i;:::-;9806:487;;10177:7;;-1:-1:-1;;;10257:2:1;10242:18;;;;10229:32;;9806:487::o;10298:587::-;10369:6;10377;10430:2;10418:9;10409:7;10405:23;10401:32;10398:52;;;10446:1;10443;10436:12;10398:52;10486:9;10473:23;-1:-1:-1;;;;;10511:6:1;10508:30;10505:50;;;10551:1;10548;10541:12;10505:50;10574:22;;10627:4;10619:13;;10615:27;-1:-1:-1;10605:55:1;;10656:1;10653;10646:12;10605:55;10696:2;10683:16;-1:-1:-1;;;;;10714:6:1;10711:30;10708:50;;;10754:1;10751;10744:12;10708:50;10799:7;10794:2;10785:6;10781:2;10777:15;10773:24;10770:37;10767:57;;;10820:1;10817;10810:12;10767:57;10851:2;10843:11;;;;;10873:6;;-1:-1:-1;10298:587:1;-1:-1:-1;;;10298:587:1:o;10890:182::-;10947:6;11000:2;10988:9;10979:7;10975:23;10971:32;10968:52;;;11016:1;11013;11006:12;10968:52;11039:27;11056:9;11039:27;:::i;11077:435::-;11155:6;11163;11216:2;11204:9;11195:7;11191:23;11187:32;11184:52;;;11232:1;11229;11222:12;11184:52;11277:23;;;-1:-1:-1;11375:2:1;11360:18;;11347:32;-1:-1:-1;;;;;11391:30:1;;11388:50;;;11434:1;11431;11424:12;11388:50;11457:49;11498:7;11489:6;11478:9;11474:22;11457:49;:::i;11517:416::-;11582:6;11590;11643:2;11631:9;11622:7;11618:23;11614:32;11611:52;;;11659:1;11656;11649:12;11611:52;11698:9;11685:23;11717:31;11742:5;11717:31;:::i;:::-;11767:5;-1:-1:-1;11824:2:1;11809:18;;11796:32;11866:15;;11859:23;11847:36;;11837:64;;11897:1;11894;11887:12;11837:64;11920:7;11910:17;;;11517:416;;;;;:::o;11938:348::-;12022:6;12075:2;12063:9;12054:7;12050:23;12046:32;12043:52;;;12091:1;12088;12081:12;12043:52;12131:9;12118:23;-1:-1:-1;;;;;12156:6:1;12153:30;12150:50;;;12196:1;12193;12186:12;12150:50;12219:61;12272:7;12263:6;12252:9;12248:22;12219:61;:::i;12291:579::-;12343:3;12374;12406:5;12400:12;12433:6;12428:3;12421:19;12465:4;12460:3;12456:14;12449:21;;12523:4;12513:6;12510:1;12506:14;12499:5;12495:26;12491:37;12562:4;12555:5;12551:16;12585:1;12595:249;12609:6;12606:1;12603:13;12595:249;;;12696:2;12692:7;12684:5;12678:4;12674:16;12670:30;12665:3;12658:43;12722:38;12755:4;12746:6;12740:13;12722:38;:::i;:::-;12795:4;12820:14;;;;12714:46;;-1:-1:-1;12783:17:1;;;;;12631:1;12624:9;12595:249;;;-1:-1:-1;12860:4:1;;12291:579;-1:-1:-1;;;;;;12291:579:1:o;12875:503::-;13172:2;13161:9;13154:21;13135:4;13198:55;13249:2;13238:9;13234:18;13226:6;13198:55;:::i;:::-;13301:9;13293:6;13289:22;13284:2;13273:9;13269:18;13262:50;13329:43;13365:6;13357;13329:43;:::i;:::-;13321:51;12875:503;-1:-1:-1;;;;;12875:503:1:o;13383:884::-;13436:5;13489:3;13482:4;13474:6;13470:17;13466:27;13456:55;;13507:1;13504;13497:12;13456:55;13547:6;13534:20;13573:47;13613:6;13573:47;:::i;:::-;13649:2;13643:9;13661:31;13689:2;13681:6;13661:31;:::i;:::-;13712:6;13701:17;;13742:6;13734;13727:22;13777:4;13769:6;13765:17;13758:24;;13838:4;13828:6;13825:1;13821:14;13813:6;13809:27;13805:38;13791:52;;13866:3;13858:6;13855:15;13852:35;;;13883:1;13880;13873:12;13852:35;13919:4;13911:6;13907:17;13933:304;13949:6;13944:3;13941:15;13933:304;;;14037:3;14024:17;-1:-1:-1;;;;;14060:11:1;14057:35;14054:55;;;14105:1;14102;14095:12;14054:55;14134:58;14188:3;14181:4;14167:11;14159:6;14155:24;14151:35;14134:58;:::i;:::-;14122:71;;-1:-1:-1;14222:4:1;14213:14;;;;13966;13933:304;;14272:850;14444:6;14452;14460;14513:2;14501:9;14492:7;14488:23;14484:32;14481:52;;;14529:1;14526;14519:12;14481:52;14569:9;14556:23;-1:-1:-1;;;;;14594:6:1;14591:30;14588:50;;;14634:1;14631;14624:12;14588:50;14657:61;14710:7;14701:6;14690:9;14686:22;14657:61;:::i;:::-;14647:71;;;14771:2;14760:9;14756:18;14743:32;-1:-1:-1;;;;;14790:8:1;14787:32;14784:52;;;14832:1;14829;14822:12;14784:52;14855:62;14909:7;14898:8;14887:9;14883:24;14855:62;:::i;:::-;14845:72;;;14970:2;14959:9;14955:18;14942:32;-1:-1:-1;;;;;14989:8:1;14986:32;14983:52;;;15031:1;15028;15021:12;14983:52;15054:62;15108:7;15097:8;15086:9;15082:24;15054:62;:::i;:::-;15044:72;;;14272:850;;;;;:::o;15127:487::-;15204:6;15212;15220;15273:2;15261:9;15252:7;15248:23;15244:32;15241:52;;;15289:1;15286;15279:12;15241:52;15328:9;15315:23;15347:31;15372:5;15347:31;:::i;:::-;15397:5;15475:2;15460:18;;15447:32;;-1:-1:-1;15578:2:1;15563:18;;;15550:32;;15127:487;-1:-1:-1;;;15127:487:1:o;15619:536::-;15904:2;15893:9;15886:21;15867:4;15930:56;15982:2;15971:9;15967:18;15959:6;15930:56;:::i;:::-;16034:9;16026:6;16022:22;16017:2;16006:9;16002:18;15995:50;16062:44;16099:6;16091;16062:44;:::i;:::-;16054:52;;;16142:6;16137:2;16126:9;16122:18;16115:34;15619:536;;;;;;:::o;16160:388::-;16228:6;16236;16289:2;16277:9;16268:7;16264:23;16260:32;16257:52;;;16305:1;16302;16295:12;16257:52;16344:9;16331:23;16363:31;16388:5;16363:31;:::i;:::-;16413:5;-1:-1:-1;16470:2:1;16455:18;;16442:32;16483:33;16442:32;16483:33;:::i;16553:838::-;16657:6;16665;16673;16681;16689;16742:3;16730:9;16721:7;16717:23;16713:33;16710:53;;;16759:1;16756;16749:12;16710:53;16798:9;16785:23;16817:31;16842:5;16817:31;:::i;:::-;16867:5;-1:-1:-1;16924:2:1;16909:18;;16896:32;16937:33;16896:32;16937:33;:::i;:::-;16989:7;-1:-1:-1;17069:2:1;17054:18;;17041:32;;-1:-1:-1;17172:2:1;17157:18;;17144:32;;-1:-1:-1;17253:3:1;17238:19;;17225:33;-1:-1:-1;;;;;17270:30:1;;17267:50;;;17313:1;17310;17303:12;17807:380;17886:1;17882:12;;;;17929;;;17950:61;;18004:4;17996:6;17992:17;17982:27;;17950:61;18057:2;18049:6;18046:14;18026:18;18023:38;18020:161;;18103:10;18098:3;18094:20;18091:1;18084:31;18138:4;18135:1;18128:15;18166:4;18163:1;18156:15;18020:161;;17807:380;;;:::o;18318:677::-;18368:3;18409:5;18403:12;18438:36;18464:9;18438:36;:::i;:::-;18505:1;18490:17;;18516:133;;;;18663:1;18658:331;;;;18483:506;;18516:133;-1:-1:-1;;18549:24:1;;18537:37;;18622:14;;18615:22;18603:35;;18594:45;;;-1:-1:-1;18516:133:1;;18658:331;18689:5;18686:1;18679:16;18736:4;18733:1;18723:18;18763:1;18777:166;18791:6;18788:1;18785:13;18777:166;;;18871:14;;18858:11;;;18851:35;18927:1;18914:15;;;;18813:4;18806:12;18777:166;;;-1:-1:-1;;;18963:16:1;;;;;18318:677;-1:-1:-1;;;18318:677:1:o;19000:211::-;19041:3;19079:5;19073:12;19123:6;19116:4;19109:5;19105:16;19100:3;19094:36;19185:1;19149:16;;19174:13;;;-1:-1:-1;19149:16:1;;19000:211;-1:-1:-1;19000:211:1:o;19216:349::-;19435:3;19460:99;19494:64;19519:38;19553:3;19545:6;19519:38;:::i;:::-;19511:6;19494:64;:::i;:::-;19486:6;19460:99;:::i;19570:1284::-;-1:-1:-1;;;20366:47:1;;20348:3;20432:38;20466:2;20457:12;;20449:6;20432:38;:::i;:::-;-1:-1:-1;;;20486:2:1;20479:15;20513:36;20546:1;20542:2;20538:10;20530:6;20513:36;:::i;:::-;-1:-1:-1;;;20558:60:1;;20503:46;-1:-1:-1;20637:37:1;20670:2;20662:11;;20654:6;20637:37;:::i;:::-;-1:-1:-1;;;20683:48:1;;20627:47;-1:-1:-1;20750:37:1;20783:2;20775:11;;20767:6;20750:37;:::i;:::-;-1:-1:-1;;;20796:26:1;;20846:1;20838:10;;19570:1284;-1:-1:-1;;;;;;;19570:1284:1:o;20859:354::-;21121:31;21116:3;21109:44;21091:3;21169:38;21203:2;21198:3;21194:12;21186:6;21169:38;:::i;21218:127::-;21279:10;21274:3;21270:20;21267:1;21260:31;21310:4;21307:1;21300:15;21334:4;21331:1;21324:15;21350:168;21423:9;;;21454;;21471:15;;;21465:22;;21451:37;21441:71;;21492:18;;:::i;21523:217::-;21563:1;21589;21579:132;;21633:10;21628:3;21624:20;21621:1;21614:31;21668:4;21665:1;21658:15;21696:4;21693:1;21686:15;21579:132;-1:-1:-1;21725:9:1;;21523:217::o;21745:411::-;21947:2;21929:21;;;21986:2;21966:18;;;21959:30;22025:34;22020:2;22005:18;;21998:62;-1:-1:-1;;;22091:2:1;22076:18;;22069:45;22146:3;22131:19;;21745:411::o;22509:127::-;22570:10;22565:3;22561:20;22558:1;22551:31;22601:4;22598:1;22591:15;22625:4;22622:1;22615:15;23668:518;23770:2;23765:3;23762:11;23759:421;;;23806:5;23803:1;23796:16;23850:4;23847:1;23837:18;23920:2;23908:10;23904:19;23901:1;23897:27;23891:4;23887:38;23956:4;23944:10;23941:20;23938:47;;;-1:-1:-1;23979:4:1;23938:47;24034:2;24029:3;24025:12;24022:1;24018:20;24012:4;24008:31;23998:41;;24089:81;24107:2;24100:5;24097:13;24089:81;;;24166:1;24152:16;;24133:1;24122:13;24089:81;;24362:1299;24488:3;24482:10;-1:-1:-1;;;;;24507:6:1;24504:30;24501:56;;;24537:18;;:::i;:::-;24566:97;24656:6;24616:38;24648:4;24642:11;24616:38;:::i;:::-;24610:4;24566:97;:::i;:::-;24712:4;24743:2;24732:14;;24760:1;24755:649;;;;25448:1;25465:6;25462:89;;;-1:-1:-1;25517:19:1;;;25511:26;25462:89;-1:-1:-1;;24319:1:1;24315:11;;;24311:24;24307:29;24297:40;24343:1;24339:11;;;24294:57;25564:81;;24725:930;;24755:649;18265:1;18258:14;;;18302:4;18289:18;;-1:-1:-1;;24791:20:1;;;24909:222;24923:7;24920:1;24917:14;24909:222;;;25005:19;;;24999:26;24984:42;;25112:4;25097:20;;;;25065:1;25053:14;;;;24939:12;24909:222;;;24913:3;25159:6;25150:7;25147:19;25144:201;;;25220:19;;;25214:26;-1:-1:-1;;25303:1:1;25299:14;;;25315:3;25295:24;25291:37;25287:42;25272:58;25257:74;;25144:201;-1:-1:-1;;;;25391:1:1;25375:14;;;25371:22;25358:36;;-1:-1:-1;24362:1299:1:o;25666:397::-;25868:2;25850:21;;;25907:2;25887:18;;;25880:30;25946:34;25941:2;25926:18;;25919:62;-1:-1:-1;;;26012:2:1;25997:18;;25990:31;26053:3;26038:19;;25666:397::o;26068:1198::-;-1:-1:-1;;;;;26187:3:1;26184:27;26181:53;;;26214:18;;:::i;:::-;26243:94;26333:3;26293:38;26325:4;26319:11;26293:38;:::i;:::-;26287:4;26243:94;:::i;:::-;26363:1;26388:2;26383:3;26380:11;26405:1;26400:608;;;;27052:1;27069:3;27066:93;;;-1:-1:-1;27125:19:1;;;27112:33;27066:93;-1:-1:-1;;24319:1:1;24315:11;;;24311:24;24307:29;24297:40;24343:1;24339:11;;;24294:57;27172:78;;26373:887;;26400:608;18265:1;18258:14;;;18302:4;18289:18;;-1:-1:-1;;26436:17:1;;;26551:229;26565:7;26562:1;26559:14;26551:229;;;26654:19;;;26641:33;26626:49;;26761:4;26746:20;;;;26714:1;26702:14;;;;26581:12;26551:229;;;26555:3;26808;26799:7;26796:16;26793:159;;;26932:1;26928:6;26922:3;26916;26913:1;26909:11;26905:21;26901:34;26897:39;26884:9;26879:3;26875:19;26862:33;26858:79;26850:6;26843:95;26793:159;;;26995:1;26989:3;26986:1;26982:11;26978:19;26972:4;26965:33;26373:887;;26068:1198;;;:::o;27271:899::-;27417:2;27406:9;27399:21;27380:4;27440:1;27473:6;27467:13;27503:36;27529:9;27503:36;:::i;:::-;27575:6;27570:2;27559:9;27555:18;27548:34;27613:1;27602:9;27598:17;27629:1;27624:158;;;;27796:1;27791:353;;;;27591:553;;27624:158;27691:3;27687:8;27676:9;27672:24;27667:2;27656:9;27652:18;27645:52;27769:2;27757:6;27750:14;27743:22;27740:1;27736:30;27725:9;27721:46;27717:55;27710:62;;27624:158;;27791:353;27822:6;27819:1;27812:17;27870:2;27867:1;27857:16;27895:1;27909:179;27923:6;27920:1;27917:13;27909:179;;;28016:14;;27992:17;;;28011:2;27988:26;27981:50;28072:1;28059:15;;;;27945:2;27938:10;27909:179;;;28112:17;;28131:2;28108:26;;-1:-1:-1;;27591:553:1;-1:-1:-1;28161:3:1;;27271:899;-1:-1:-1;;;;;27271:899:1:o;28946:128::-;29013:9;;;29034:11;;;29031:37;;;29048:18;;:::i;29438:125::-;29503:9;;;29524:10;;;29521:36;;;29537:18;;:::i;29568:135::-;29607:3;29628:17;;;29625:43;;29648:18;;:::i;:::-;-1:-1:-1;29695:1:1;29684:13;;29568:135::o;30115:148::-;30203:4;30182:12;;;30196;;;30178:31;;30221:13;;30218:39;;;30237:18;;:::i;30677:401::-;30879:2;30861:21;;;30918:2;30898:18;;;30891:30;30957:34;30952:2;30937:18;;30930:62;-1:-1:-1;;;31023:2:1;31008:18;;31001:35;31068:3;31053:19;;30677:401::o;31083:406::-;31285:2;31267:21;;;31324:2;31304:18;;;31297:30;31363:34;31358:2;31343:18;;31336:62;-1:-1:-1;;;31429:2:1;31414:18;;31407:40;31479:3;31464:19;;31083:406::o;31494:465::-;31751:2;31740:9;31733:21;31714:4;31777:56;31829:2;31818:9;31814:18;31806:6;31777:56;:::i;:::-;31881:9;31873:6;31869:22;31864:2;31853:9;31849:18;31842:50;31909:44;31946:6;31938;31909:44;:::i;34199:823::-;-1:-1:-1;;;;;34558:32:1;;;34540:51;;34627:32;;34622:2;34607:18;;34600:60;34578:3;34691:2;34676:18;;34669:31;;;-1:-1:-1;;34723:57:1;;34760:19;;34752:6;34723:57;:::i;:::-;34828:9;34820:6;34816:22;34811:2;34800:9;34796:18;34789:50;34862:44;34899:6;34891;34862:44;:::i;:::-;34848:58;;34955:9;34947:6;34943:22;34937:3;34926:9;34922:19;34915:51;34983:33;35009:6;35001;34983:33;:::i;:::-;34975:41;34199:823;-1:-1:-1;;;;;;;;34199:823:1:o;35027:249::-;35096:6;35149:2;35137:9;35128:7;35124:23;35120:32;35117:52;;;35165:1;35162;35155:12;35117:52;35197:9;35191:16;35216:30;35240:5;35216:30;:::i;35281:179::-;35316:3;35358:1;35340:16;35337:23;35334:120;;;35404:1;35401;35398;35383:23;-1:-1:-1;35441:1:1;35435:8;35430:3;35426:18;35334:120;35281:179;:::o;35465:628::-;35504:3;35546:4;35528:16;35525:26;35522:39;;;35465:628;:::o;35522:39::-;35588:2;35582:9;35628:16;-1:-1:-1;;35624:29:1;35621:1;35582:9;35600:54;35683:4;35677:11;35757:16;35750:4;35742:6;35738:17;35735:39;-1:-1:-1;;;;;35706:6:1;35703:30;35700:75;35697:88;;;35778:5;;35465:628;:::o;35697:88::-;35815:6;35809:4;35805:17;35851:3;35845:10;-1:-1:-1;;;;;35870:6:1;35867:30;35864:43;;;35900:5;;;;35465:628;:::o;35864:43::-;35965:16;35955:27;;-1:-1:-1;;35951:40:1;35926:16;;;35944:4;35922:27;35919:73;35916:86;;;35995:5;;;;35465:628;:::o;35916:86::-;36011:57;36062:4;36053:6;36045;36041:19;36037:30;36031:4;36011:57;:::i;36519:404::-;36721:2;36703:21;;;36760:2;36740:18;;;36733:30;36799:34;36794:2;36779:18;;36772:62;-1:-1:-1;;;36865:2:1;36850:18;;36843:38;36913:3;36898:19;;36519:404::o;36928:557::-;-1:-1:-1;;;;;37187:32:1;;;37169:51;;37256:32;;37251:2;37236:18;;37229:60;37320:2;37305:18;;37298:34;;;37363:2;37348:18;;37341:34;;;37207:3;37406;37391:19;;37384:32;;;-1:-1:-1;;37433:46:1;;37459:19;;37451:6;37433:46;:::i;:::-;37425:54;36928:557;-1:-1:-1;;;;;;;36928:557:1:o
Swarm Source
ipfs://7d345b3ac566a6d1df05a28f2ad981bafb2d98eac2ffadce75d33f110b51b150
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 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.