More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 495 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 66486246 | 3 days ago | IN | 0 POL | 0.00218582 | ||||
Set Approval For... | 66138309 | 12 days ago | IN | 0 POL | 0.00122051 | ||||
Set Approval For... | 66060497 | 14 days ago | IN | 0 POL | 0.00211637 | ||||
Set Approval For... | 62751462 | 97 days ago | IN | 0 POL | 0.00139836 | ||||
Safe Transfer Fr... | 59756664 | 172 days ago | IN | 0 POL | 0.00109521 | ||||
Set Approval For... | 54436356 | 310 days ago | IN | 0 POL | 0.00618423 | ||||
Set Approval For... | 53342953 | 337 days ago | IN | 0 POL | 0.00140022 | ||||
Set Approval For... | 53018112 | 346 days ago | IN | 0 POL | 0.00281449 | ||||
Set Approval For... | 52884123 | 349 days ago | IN | 0 POL | 0.00267833 | ||||
Safe Transfer Fr... | 52241674 | 366 days ago | IN | 0 POL | 0.00977336 | ||||
Set Approval For... | 51890767 | 375 days ago | IN | 0 POL | 0.05105543 | ||||
Set Approval For... | 51314712 | 390 days ago | IN | 0 POL | 0.00848319 | ||||
Set Approval For... | 50859723 | 402 days ago | IN | 0 POL | 0.00571794 | ||||
Set Approval For... | 50534104 | 410 days ago | IN | 0 POL | 0.00455421 | ||||
Safe Transfer Fr... | 49264569 | 442 days ago | IN | 0 POL | 0.00429856 | ||||
Set Approval For... | 49103120 | 446 days ago | IN | 0 POL | 0.00395824 | ||||
Safe Transfer Fr... | 46105968 | 522 days ago | IN | 0 POL | 0.00500478 | ||||
Safe Transfer Fr... | 44958951 | 551 days ago | IN | 0 POL | 0.00640327 | ||||
Safe Transfer Fr... | 44958917 | 551 days ago | IN | 0 POL | 0.00673718 | ||||
Set Approval For... | 44805304 | 555 days ago | IN | 0 POL | 0.00249998 | ||||
Set Approval For... | 44786608 | 555 days ago | IN | 0 POL | 0.00549005 | ||||
Set Approval For... | 44767078 | 556 days ago | IN | 0 POL | 0.00281576 | ||||
Set Approval For... | 44097572 | 573 days ago | IN | 0 POL | 0.0077682 | ||||
Safe Transfer Fr... | 43370788 | 592 days ago | IN | 0 POL | 0.01227438 | ||||
Safe Transfer Fr... | 43370606 | 592 days ago | IN | 0 POL | 0.00733056 |
Loading...
Loading
Contract Name:
TonyStoriesWL
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2023-02-14 */ pragma solidity ^0.8.4; 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); } 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); } 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; } /** * @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); } /** * @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 functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } /** * @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; } } /** * @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; } } /** * @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 or 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 or 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; } } /** * @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); } } contract TonyStoriesWL is ERC1155, Ownable { constructor() ERC1155("") {} function setURI(string memory newuri) public onlyOwner { _setURI(newuri); } function safeBatchTransferFromTos( address from, address[] memory tos, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual onlyOwner { for (uint256 i = 0; i < tos.length; ++i) { address to = tos[i]; uint256 id = ids[i]; uint256 amount = amounts[i]; safeTransferFrom(from, to, id, amount, data); } } function mint( address to, uint256 id, uint256 amount, bytes memory data ) public virtual onlyOwner { _mint(to, id, amount, data); } }
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"},{"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"tos","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFromTos","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":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060200160405280600081525062000033816200005a60201b60201c565b5062000054620000486200007660201b60201c565b6200007e60201b60201c565b62000259565b80600290805190602001906200007292919062000144565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200015290620001f4565b90600052602060002090601f016020900481019282620001765760008555620001c2565b82601f106200019157805160ff1916838001178555620001c2565b82800160010185558215620001c2579182015b82811115620001c1578251825591602001919060010190620001a4565b5b509050620001d19190620001d5565b5090565b5b80821115620001f0576000816000905550600101620001d6565b5090565b600060028204905060018216806200020d57607f821691505b602082108114156200022457620002236200022a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612fc280620002696000396000f3fe608060405234801561001057600080fd5b50600436106100e95760003560e01c8063731133e91161008c578063e985e9c511610066578063e985e9c514610246578063f242432a14610276578063f2fde38b14610292578063fd4f0722146102ae576100e9565b8063731133e9146101f05780638da5cb5b1461020c578063a22cb4651461022a576100e9565b80630e89341c116100c85780630e89341c1461016a5780632eb2c2d61461019a5780634e1273f4146101b6578063715018a6146101e6576100e9565b8062fdd58e146100ee57806301ffc9a71461011e57806302fe53051461014e575b600080fd5b61010860048036038101906101039190611ee5565b6102ca565b60405161011591906126ab565b60405180910390f35b61013860048036038101906101339190612020565b610393565b60405161014591906124ee565b60405180910390f35b6101686004803603810190610163919061207a565b610475565b005b610184600480360381019061017f91906120c3565b610489565b6040516101919190612509565b60405180910390f35b6101b460048036038101906101af9190611c54565b61051d565b005b6101d060048036038101906101cb9190611fa8565b6105be565b6040516101dd9190612495565b60405180910390f35b6101ee6106d7565b005b61020a60048036038101906102059190611f25565b6106eb565b005b610214610705565b60405161022191906123b8565b60405180910390f35b610244600480360381019061023f9190611ea5565b61072f565b005b610260600480360381019061025b9190611c14565b610745565b60405161026d91906124ee565b60405180910390f35b610290600480360381019061028b9190611d23565b6107d9565b005b6102ac60048036038101906102a79190611be7565b61087a565b005b6102c860048036038101906102c39190611dba565b6108fe565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561033b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103329061256b565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061045e57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061046e575061046d82610998565b5b9050919050565b61047d610a02565b61048681610a80565b50565b6060600280546104989061294b565b80601f01602080910402602001604051908101604052809291908181526020018280546104c49061294b565b80156105115780601f106104e657610100808354040283529160200191610511565b820191906000526020600020905b8154815290600101906020018083116104f457829003601f168201915b50505050509050919050565b610525610a9a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061056b575061056a85610565610a9a565b610745565b5b6105aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a19061258b565b60405180910390fd5b6105b78585858585610aa2565b5050505050565b60608151835114610604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fb9061262b565b60405180910390fd5b6000835167ffffffffffffffff81111561062157610620612a84565b5b60405190808252806020026020018201604052801561064f5781602001602082028036833780820191505090505b50905060005b84518110156106cc5761069c85828151811061067457610673612a55565b5b602002602001015185838151811061068f5761068e612a55565b5b60200260200101516102ca565b8282815181106106af576106ae612a55565b5b602002602001018181525050806106c5906129ae565b9050610655565b508091505092915050565b6106df610a02565b6106e96000610dc4565b565b6106f3610a02565b6106ff84848484610e8a565b50505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61074161073a610a9a565b838361103b565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6107e1610a9a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610827575061082685610821610a9a565b610745565b5b610866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085d9061258b565b60405180910390fd5b61087385858585856111a8565b5050505050565b610882610a02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e99061254b565b60405180910390fd5b6108fb81610dc4565b50565b610906610a02565b60005b845181101561099057600085828151811061092757610926612a55565b5b60200260200101519050600085838151811061094657610945612a55565b5b60200260200101519050600085848151811061096557610964612a55565b5b6020026020010151905061097c89848484896107d9565b50505080610989906129ae565b9050610909565b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610a0a610a9a565b73ffffffffffffffffffffffffffffffffffffffff16610a28610705565b73ffffffffffffffffffffffffffffffffffffffff1614610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a75906125eb565b60405180910390fd5b565b8060029080519060200190610a969291906118bf565b5050565b600033905090565b8151835114610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add9061264b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d906125ab565b60405180910390fd5b6000610b60610a9a565b9050610b70818787878787611444565b60005b8451811015610d21576000858281518110610b9157610b90612a55565b5b602002602001015190506000858381518110610bb057610baf612a55565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c48906125cb565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d06919061283f565b9250508190555050505080610d1a906129ae565b9050610b73565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610d989291906124b7565b60405180910390a4610dae81878787878761144c565b610dbc818787878787611454565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef19061266b565b60405180910390fd5b6000610f04610a9a565b90506000610f118561163b565b90506000610f1e8561163b565b9050610f2f83600089858589611444565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f8e919061283f565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62898960405161100c9291906126c6565b60405180910390a46110238360008985858961144c565b611032836000898989896116b5565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a19061260b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161119b91906124ee565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f906125ab565b60405180910390fd5b6000611222610a9a565b9050600061122f8561163b565b9050600061123c8561163b565b905061124c838989858589611444565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da906125cb565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611398919061283f565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516114159291906126c6565b60405180910390a461142b848a8a86868a61144c565b611439848a8a8a8a8a6116b5565b505050505050505050565b505050505050565b505050505050565b6114738473ffffffffffffffffffffffffffffffffffffffff1661189c565b15611633578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016114b99594939291906123d3565b602060405180830381600087803b1580156114d357600080fd5b505af192505050801561150457506040513d601f19601f82011682018060405250810190611501919061204d565b60015b6115aa57611510612ab3565b806308c379a0141561156d5750611525612e9a565b80611530575061156f565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115649190612509565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a19061268b565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611631576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116289061252b565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561165a57611659612a84565b5b6040519080825280602002602001820160405280156116885781602001602082028036833780820191505090505b50905082816000815181106116a05761169f612a55565b5b60200260200101818152505080915050919050565b6116d48473ffffffffffffffffffffffffffffffffffffffff1661189c565b15611894578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161171a95949392919061243b565b602060405180830381600087803b15801561173457600080fd5b505af192505050801561176557506040513d601f19601f82011682018060405250810190611762919061204d565b60015b61180b57611771612ab3565b806308c379a014156117ce5750611786612e9a565b8061179157506117d0565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c59190612509565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118029061268b565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611892576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118899061252b565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546118cb9061294b565b90600052602060002090601f0160209004810192826118ed5760008555611934565b82601f1061190657805160ff1916838001178555611934565b82800160010185558215611934579182015b82811115611933578251825591602001919060010190611918565b5b5090506119419190611945565b5090565b5b8082111561195e576000816000905550600101611946565b5090565b600061197561197084612714565b6126ef565b9050808382526020820190508285602086028201111561199857611997612ada565b5b60005b858110156119c857816119ae8882611ac6565b84526020840193506020830192505060018101905061199b565b5050509392505050565b60006119e56119e084612740565b6126ef565b90508083825260208201905082856020860282011115611a0857611a07612ada565b5b60005b85811015611a385781611a1e8882611bd2565b845260208401935060208301925050600181019050611a0b565b5050509392505050565b6000611a55611a508461276c565b6126ef565b905082815260208101848484011115611a7157611a70612adf565b5b611a7c848285612909565b509392505050565b6000611a97611a928461279d565b6126ef565b905082815260208101848484011115611ab357611ab2612adf565b5b611abe848285612909565b509392505050565b600081359050611ad581612f30565b92915050565b600082601f830112611af057611aef612ad5565b5b8135611b00848260208601611962565b91505092915050565b600082601f830112611b1e57611b1d612ad5565b5b8135611b2e8482602086016119d2565b91505092915050565b600081359050611b4681612f47565b92915050565b600081359050611b5b81612f5e565b92915050565b600081519050611b7081612f5e565b92915050565b600082601f830112611b8b57611b8a612ad5565b5b8135611b9b848260208601611a42565b91505092915050565b600082601f830112611bb957611bb8612ad5565b5b8135611bc9848260208601611a84565b91505092915050565b600081359050611be181612f75565b92915050565b600060208284031215611bfd57611bfc612ae9565b5b6000611c0b84828501611ac6565b91505092915050565b60008060408385031215611c2b57611c2a612ae9565b5b6000611c3985828601611ac6565b9250506020611c4a85828601611ac6565b9150509250929050565b600080600080600060a08688031215611c7057611c6f612ae9565b5b6000611c7e88828901611ac6565b9550506020611c8f88828901611ac6565b945050604086013567ffffffffffffffff811115611cb057611caf612ae4565b5b611cbc88828901611b09565b935050606086013567ffffffffffffffff811115611cdd57611cdc612ae4565b5b611ce988828901611b09565b925050608086013567ffffffffffffffff811115611d0a57611d09612ae4565b5b611d1688828901611b76565b9150509295509295909350565b600080600080600060a08688031215611d3f57611d3e612ae9565b5b6000611d4d88828901611ac6565b9550506020611d5e88828901611ac6565b9450506040611d6f88828901611bd2565b9350506060611d8088828901611bd2565b925050608086013567ffffffffffffffff811115611da157611da0612ae4565b5b611dad88828901611b76565b9150509295509295909350565b600080600080600060a08688031215611dd657611dd5612ae9565b5b6000611de488828901611ac6565b955050602086013567ffffffffffffffff811115611e0557611e04612ae4565b5b611e1188828901611adb565b945050604086013567ffffffffffffffff811115611e3257611e31612ae4565b5b611e3e88828901611b09565b935050606086013567ffffffffffffffff811115611e5f57611e5e612ae4565b5b611e6b88828901611b09565b925050608086013567ffffffffffffffff811115611e8c57611e8b612ae4565b5b611e9888828901611b76565b9150509295509295909350565b60008060408385031215611ebc57611ebb612ae9565b5b6000611eca85828601611ac6565b9250506020611edb85828601611b37565b9150509250929050565b60008060408385031215611efc57611efb612ae9565b5b6000611f0a85828601611ac6565b9250506020611f1b85828601611bd2565b9150509250929050565b60008060008060808587031215611f3f57611f3e612ae9565b5b6000611f4d87828801611ac6565b9450506020611f5e87828801611bd2565b9350506040611f6f87828801611bd2565b925050606085013567ffffffffffffffff811115611f9057611f8f612ae4565b5b611f9c87828801611b76565b91505092959194509250565b60008060408385031215611fbf57611fbe612ae9565b5b600083013567ffffffffffffffff811115611fdd57611fdc612ae4565b5b611fe985828601611adb565b925050602083013567ffffffffffffffff81111561200a57612009612ae4565b5b61201685828601611b09565b9150509250929050565b60006020828403121561203657612035612ae9565b5b600061204484828501611b4c565b91505092915050565b60006020828403121561206357612062612ae9565b5b600061207184828501611b61565b91505092915050565b6000602082840312156120905761208f612ae9565b5b600082013567ffffffffffffffff8111156120ae576120ad612ae4565b5b6120ba84828501611ba4565b91505092915050565b6000602082840312156120d9576120d8612ae9565b5b60006120e784828501611bd2565b91505092915050565b60006120fc838361239a565b60208301905092915050565b61211181612895565b82525050565b6000612122826127de565b61212c818561280c565b9350612137836127ce565b8060005b8381101561216857815161214f88826120f0565b975061215a836127ff565b92505060018101905061213b565b5085935050505092915050565b61217e816128a7565b82525050565b600061218f826127e9565b612199818561281d565b93506121a9818560208601612918565b6121b281612aee565b840191505092915050565b60006121c8826127f4565b6121d2818561282e565b93506121e2818560208601612918565b6121eb81612aee565b840191505092915050565b600061220360288361282e565b915061220e82612b0c565b604082019050919050565b600061222660268361282e565b915061223182612b5b565b604082019050919050565b6000612249602a8361282e565b915061225482612baa565b604082019050919050565b600061226c602e8361282e565b915061227782612bf9565b604082019050919050565b600061228f60258361282e565b915061229a82612c48565b604082019050919050565b60006122b2602a8361282e565b91506122bd82612c97565b604082019050919050565b60006122d560208361282e565b91506122e082612ce6565b602082019050919050565b60006122f860298361282e565b915061230382612d0f565b604082019050919050565b600061231b60298361282e565b915061232682612d5e565b604082019050919050565b600061233e60288361282e565b915061234982612dad565b604082019050919050565b600061236160218361282e565b915061236c82612dfc565b604082019050919050565b600061238460348361282e565b915061238f82612e4b565b604082019050919050565b6123a3816128ff565b82525050565b6123b2816128ff565b82525050565b60006020820190506123cd6000830184612108565b92915050565b600060a0820190506123e86000830188612108565b6123f56020830187612108565b81810360408301526124078186612117565b9050818103606083015261241b8185612117565b9050818103608083015261242f8184612184565b90509695505050505050565b600060a0820190506124506000830188612108565b61245d6020830187612108565b61246a60408301866123a9565b61247760608301856123a9565b81810360808301526124898184612184565b90509695505050505050565b600060208201905081810360008301526124af8184612117565b905092915050565b600060408201905081810360008301526124d18185612117565b905081810360208301526124e58184612117565b90509392505050565b60006020820190506125036000830184612175565b92915050565b6000602082019050818103600083015261252381846121bd565b905092915050565b60006020820190508181036000830152612544816121f6565b9050919050565b6000602082019050818103600083015261256481612219565b9050919050565b600060208201905081810360008301526125848161223c565b9050919050565b600060208201905081810360008301526125a48161225f565b9050919050565b600060208201905081810360008301526125c481612282565b9050919050565b600060208201905081810360008301526125e4816122a5565b9050919050565b60006020820190508181036000830152612604816122c8565b9050919050565b60006020820190508181036000830152612624816122eb565b9050919050565b600060208201905081810360008301526126448161230e565b9050919050565b6000602082019050818103600083015261266481612331565b9050919050565b6000602082019050818103600083015261268481612354565b9050919050565b600060208201905081810360008301526126a481612377565b9050919050565b60006020820190506126c060008301846123a9565b92915050565b60006040820190506126db60008301856123a9565b6126e860208301846123a9565b9392505050565b60006126f961270a565b9050612705828261297d565b919050565b6000604051905090565b600067ffffffffffffffff82111561272f5761272e612a84565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561275b5761275a612a84565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561278757612786612a84565b5b61279082612aee565b9050602081019050919050565b600067ffffffffffffffff8211156127b8576127b7612a84565b5b6127c182612aee565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061284a826128ff565b9150612855836128ff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561288a576128896129f7565b5b828201905092915050565b60006128a0826128df565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561293657808201518184015260208101905061291b565b83811115612945576000848401525b50505050565b6000600282049050600182168061296357607f821691505b6020821081141561297757612976612a26565b5b50919050565b61298682612aee565b810181811067ffffffffffffffff821117156129a5576129a4612a84565b5b80604052505050565b60006129b9826128ff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129ec576129eb6129f7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115612ad25760046000803e612acf600051612aff565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600060443d1015612eaa57612f2d565b612eb261270a565b60043d036004823e80513d602482011167ffffffffffffffff82111715612eda575050612f2d565b808201805167ffffffffffffffff811115612ef85750505050612f2d565b80602083010160043d038501811115612f15575050505050612f2d565b612f248260200185018661297d565b82955050505050505b90565b612f3981612895565b8114612f4457600080fd5b50565b612f50816128a7565b8114612f5b57600080fd5b50565b612f67816128b3565b8114612f7257600080fd5b50565b612f7e816128ff565b8114612f8957600080fd5b5056fea2646970667358221220b87874db204de87e22d3a21eb1597d78d3a3e1b1a56ce0570ff5b6b7f1e8c10964736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100e95760003560e01c8063731133e91161008c578063e985e9c511610066578063e985e9c514610246578063f242432a14610276578063f2fde38b14610292578063fd4f0722146102ae576100e9565b8063731133e9146101f05780638da5cb5b1461020c578063a22cb4651461022a576100e9565b80630e89341c116100c85780630e89341c1461016a5780632eb2c2d61461019a5780634e1273f4146101b6578063715018a6146101e6576100e9565b8062fdd58e146100ee57806301ffc9a71461011e57806302fe53051461014e575b600080fd5b61010860048036038101906101039190611ee5565b6102ca565b60405161011591906126ab565b60405180910390f35b61013860048036038101906101339190612020565b610393565b60405161014591906124ee565b60405180910390f35b6101686004803603810190610163919061207a565b610475565b005b610184600480360381019061017f91906120c3565b610489565b6040516101919190612509565b60405180910390f35b6101b460048036038101906101af9190611c54565b61051d565b005b6101d060048036038101906101cb9190611fa8565b6105be565b6040516101dd9190612495565b60405180910390f35b6101ee6106d7565b005b61020a60048036038101906102059190611f25565b6106eb565b005b610214610705565b60405161022191906123b8565b60405180910390f35b610244600480360381019061023f9190611ea5565b61072f565b005b610260600480360381019061025b9190611c14565b610745565b60405161026d91906124ee565b60405180910390f35b610290600480360381019061028b9190611d23565b6107d9565b005b6102ac60048036038101906102a79190611be7565b61087a565b005b6102c860048036038101906102c39190611dba565b6108fe565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561033b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103329061256b565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061045e57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061046e575061046d82610998565b5b9050919050565b61047d610a02565b61048681610a80565b50565b6060600280546104989061294b565b80601f01602080910402602001604051908101604052809291908181526020018280546104c49061294b565b80156105115780601f106104e657610100808354040283529160200191610511565b820191906000526020600020905b8154815290600101906020018083116104f457829003601f168201915b50505050509050919050565b610525610a9a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061056b575061056a85610565610a9a565b610745565b5b6105aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a19061258b565b60405180910390fd5b6105b78585858585610aa2565b5050505050565b60608151835114610604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fb9061262b565b60405180910390fd5b6000835167ffffffffffffffff81111561062157610620612a84565b5b60405190808252806020026020018201604052801561064f5781602001602082028036833780820191505090505b50905060005b84518110156106cc5761069c85828151811061067457610673612a55565b5b602002602001015185838151811061068f5761068e612a55565b5b60200260200101516102ca565b8282815181106106af576106ae612a55565b5b602002602001018181525050806106c5906129ae565b9050610655565b508091505092915050565b6106df610a02565b6106e96000610dc4565b565b6106f3610a02565b6106ff84848484610e8a565b50505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61074161073a610a9a565b838361103b565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6107e1610a9a565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610827575061082685610821610a9a565b610745565b5b610866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085d9061258b565b60405180910390fd5b61087385858585856111a8565b5050505050565b610882610a02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e99061254b565b60405180910390fd5b6108fb81610dc4565b50565b610906610a02565b60005b845181101561099057600085828151811061092757610926612a55565b5b60200260200101519050600085838151811061094657610945612a55565b5b60200260200101519050600085848151811061096557610964612a55565b5b6020026020010151905061097c89848484896107d9565b50505080610989906129ae565b9050610909565b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610a0a610a9a565b73ffffffffffffffffffffffffffffffffffffffff16610a28610705565b73ffffffffffffffffffffffffffffffffffffffff1614610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a75906125eb565b60405180910390fd5b565b8060029080519060200190610a969291906118bf565b5050565b600033905090565b8151835114610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add9061264b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d906125ab565b60405180910390fd5b6000610b60610a9a565b9050610b70818787878787611444565b60005b8451811015610d21576000858281518110610b9157610b90612a55565b5b602002602001015190506000858381518110610bb057610baf612a55565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c48906125cb565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d06919061283f565b9250508190555050505080610d1a906129ae565b9050610b73565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610d989291906124b7565b60405180910390a4610dae81878787878761144c565b610dbc818787878787611454565b505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef19061266b565b60405180910390fd5b6000610f04610a9a565b90506000610f118561163b565b90506000610f1e8561163b565b9050610f2f83600089858589611444565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f8e919061283f565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62898960405161100c9291906126c6565b60405180910390a46110238360008985858961144c565b611032836000898989896116b5565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a19061260b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161119b91906124ee565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f906125ab565b60405180910390fd5b6000611222610a9a565b9050600061122f8561163b565b9050600061123c8561163b565b905061124c838989858589611444565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da906125cb565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611398919061283f565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516114159291906126c6565b60405180910390a461142b848a8a86868a61144c565b611439848a8a8a8a8a6116b5565b505050505050505050565b505050505050565b505050505050565b6114738473ffffffffffffffffffffffffffffffffffffffff1661189c565b15611633578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016114b99594939291906123d3565b602060405180830381600087803b1580156114d357600080fd5b505af192505050801561150457506040513d601f19601f82011682018060405250810190611501919061204d565b60015b6115aa57611510612ab3565b806308c379a0141561156d5750611525612e9a565b80611530575061156f565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115649190612509565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a19061268b565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611631576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116289061252b565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561165a57611659612a84565b5b6040519080825280602002602001820160405280156116885781602001602082028036833780820191505090505b50905082816000815181106116a05761169f612a55565b5b60200260200101818152505080915050919050565b6116d48473ffffffffffffffffffffffffffffffffffffffff1661189c565b15611894578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161171a95949392919061243b565b602060405180830381600087803b15801561173457600080fd5b505af192505050801561176557506040513d601f19601f82011682018060405250810190611762919061204d565b60015b61180b57611771612ab3565b806308c379a014156117ce5750611786612e9a565b8061179157506117d0565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c59190612509565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118029061268b565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611892576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118899061252b565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546118cb9061294b565b90600052602060002090601f0160209004810192826118ed5760008555611934565b82601f1061190657805160ff1916838001178555611934565b82800160010185558215611934579182015b82811115611933578251825591602001919060010190611918565b5b5090506119419190611945565b5090565b5b8082111561195e576000816000905550600101611946565b5090565b600061197561197084612714565b6126ef565b9050808382526020820190508285602086028201111561199857611997612ada565b5b60005b858110156119c857816119ae8882611ac6565b84526020840193506020830192505060018101905061199b565b5050509392505050565b60006119e56119e084612740565b6126ef565b90508083825260208201905082856020860282011115611a0857611a07612ada565b5b60005b85811015611a385781611a1e8882611bd2565b845260208401935060208301925050600181019050611a0b565b5050509392505050565b6000611a55611a508461276c565b6126ef565b905082815260208101848484011115611a7157611a70612adf565b5b611a7c848285612909565b509392505050565b6000611a97611a928461279d565b6126ef565b905082815260208101848484011115611ab357611ab2612adf565b5b611abe848285612909565b509392505050565b600081359050611ad581612f30565b92915050565b600082601f830112611af057611aef612ad5565b5b8135611b00848260208601611962565b91505092915050565b600082601f830112611b1e57611b1d612ad5565b5b8135611b2e8482602086016119d2565b91505092915050565b600081359050611b4681612f47565b92915050565b600081359050611b5b81612f5e565b92915050565b600081519050611b7081612f5e565b92915050565b600082601f830112611b8b57611b8a612ad5565b5b8135611b9b848260208601611a42565b91505092915050565b600082601f830112611bb957611bb8612ad5565b5b8135611bc9848260208601611a84565b91505092915050565b600081359050611be181612f75565b92915050565b600060208284031215611bfd57611bfc612ae9565b5b6000611c0b84828501611ac6565b91505092915050565b60008060408385031215611c2b57611c2a612ae9565b5b6000611c3985828601611ac6565b9250506020611c4a85828601611ac6565b9150509250929050565b600080600080600060a08688031215611c7057611c6f612ae9565b5b6000611c7e88828901611ac6565b9550506020611c8f88828901611ac6565b945050604086013567ffffffffffffffff811115611cb057611caf612ae4565b5b611cbc88828901611b09565b935050606086013567ffffffffffffffff811115611cdd57611cdc612ae4565b5b611ce988828901611b09565b925050608086013567ffffffffffffffff811115611d0a57611d09612ae4565b5b611d1688828901611b76565b9150509295509295909350565b600080600080600060a08688031215611d3f57611d3e612ae9565b5b6000611d4d88828901611ac6565b9550506020611d5e88828901611ac6565b9450506040611d6f88828901611bd2565b9350506060611d8088828901611bd2565b925050608086013567ffffffffffffffff811115611da157611da0612ae4565b5b611dad88828901611b76565b9150509295509295909350565b600080600080600060a08688031215611dd657611dd5612ae9565b5b6000611de488828901611ac6565b955050602086013567ffffffffffffffff811115611e0557611e04612ae4565b5b611e1188828901611adb565b945050604086013567ffffffffffffffff811115611e3257611e31612ae4565b5b611e3e88828901611b09565b935050606086013567ffffffffffffffff811115611e5f57611e5e612ae4565b5b611e6b88828901611b09565b925050608086013567ffffffffffffffff811115611e8c57611e8b612ae4565b5b611e9888828901611b76565b9150509295509295909350565b60008060408385031215611ebc57611ebb612ae9565b5b6000611eca85828601611ac6565b9250506020611edb85828601611b37565b9150509250929050565b60008060408385031215611efc57611efb612ae9565b5b6000611f0a85828601611ac6565b9250506020611f1b85828601611bd2565b9150509250929050565b60008060008060808587031215611f3f57611f3e612ae9565b5b6000611f4d87828801611ac6565b9450506020611f5e87828801611bd2565b9350506040611f6f87828801611bd2565b925050606085013567ffffffffffffffff811115611f9057611f8f612ae4565b5b611f9c87828801611b76565b91505092959194509250565b60008060408385031215611fbf57611fbe612ae9565b5b600083013567ffffffffffffffff811115611fdd57611fdc612ae4565b5b611fe985828601611adb565b925050602083013567ffffffffffffffff81111561200a57612009612ae4565b5b61201685828601611b09565b9150509250929050565b60006020828403121561203657612035612ae9565b5b600061204484828501611b4c565b91505092915050565b60006020828403121561206357612062612ae9565b5b600061207184828501611b61565b91505092915050565b6000602082840312156120905761208f612ae9565b5b600082013567ffffffffffffffff8111156120ae576120ad612ae4565b5b6120ba84828501611ba4565b91505092915050565b6000602082840312156120d9576120d8612ae9565b5b60006120e784828501611bd2565b91505092915050565b60006120fc838361239a565b60208301905092915050565b61211181612895565b82525050565b6000612122826127de565b61212c818561280c565b9350612137836127ce565b8060005b8381101561216857815161214f88826120f0565b975061215a836127ff565b92505060018101905061213b565b5085935050505092915050565b61217e816128a7565b82525050565b600061218f826127e9565b612199818561281d565b93506121a9818560208601612918565b6121b281612aee565b840191505092915050565b60006121c8826127f4565b6121d2818561282e565b93506121e2818560208601612918565b6121eb81612aee565b840191505092915050565b600061220360288361282e565b915061220e82612b0c565b604082019050919050565b600061222660268361282e565b915061223182612b5b565b604082019050919050565b6000612249602a8361282e565b915061225482612baa565b604082019050919050565b600061226c602e8361282e565b915061227782612bf9565b604082019050919050565b600061228f60258361282e565b915061229a82612c48565b604082019050919050565b60006122b2602a8361282e565b91506122bd82612c97565b604082019050919050565b60006122d560208361282e565b91506122e082612ce6565b602082019050919050565b60006122f860298361282e565b915061230382612d0f565b604082019050919050565b600061231b60298361282e565b915061232682612d5e565b604082019050919050565b600061233e60288361282e565b915061234982612dad565b604082019050919050565b600061236160218361282e565b915061236c82612dfc565b604082019050919050565b600061238460348361282e565b915061238f82612e4b565b604082019050919050565b6123a3816128ff565b82525050565b6123b2816128ff565b82525050565b60006020820190506123cd6000830184612108565b92915050565b600060a0820190506123e86000830188612108565b6123f56020830187612108565b81810360408301526124078186612117565b9050818103606083015261241b8185612117565b9050818103608083015261242f8184612184565b90509695505050505050565b600060a0820190506124506000830188612108565b61245d6020830187612108565b61246a60408301866123a9565b61247760608301856123a9565b81810360808301526124898184612184565b90509695505050505050565b600060208201905081810360008301526124af8184612117565b905092915050565b600060408201905081810360008301526124d18185612117565b905081810360208301526124e58184612117565b90509392505050565b60006020820190506125036000830184612175565b92915050565b6000602082019050818103600083015261252381846121bd565b905092915050565b60006020820190508181036000830152612544816121f6565b9050919050565b6000602082019050818103600083015261256481612219565b9050919050565b600060208201905081810360008301526125848161223c565b9050919050565b600060208201905081810360008301526125a48161225f565b9050919050565b600060208201905081810360008301526125c481612282565b9050919050565b600060208201905081810360008301526125e4816122a5565b9050919050565b60006020820190508181036000830152612604816122c8565b9050919050565b60006020820190508181036000830152612624816122eb565b9050919050565b600060208201905081810360008301526126448161230e565b9050919050565b6000602082019050818103600083015261266481612331565b9050919050565b6000602082019050818103600083015261268481612354565b9050919050565b600060208201905081810360008301526126a481612377565b9050919050565b60006020820190506126c060008301846123a9565b92915050565b60006040820190506126db60008301856123a9565b6126e860208301846123a9565b9392505050565b60006126f961270a565b9050612705828261297d565b919050565b6000604051905090565b600067ffffffffffffffff82111561272f5761272e612a84565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561275b5761275a612a84565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561278757612786612a84565b5b61279082612aee565b9050602081019050919050565b600067ffffffffffffffff8211156127b8576127b7612a84565b5b6127c182612aee565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600061284a826128ff565b9150612855836128ff565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561288a576128896129f7565b5b828201905092915050565b60006128a0826128df565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561293657808201518184015260208101905061291b565b83811115612945576000848401525b50505050565b6000600282049050600182168061296357607f821691505b6020821081141561297757612976612a26565b5b50919050565b61298682612aee565b810181811067ffffffffffffffff821117156129a5576129a4612a84565b5b80604052505050565b60006129b9826128ff565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129ec576129eb6129f7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115612ad25760046000803e612acf600051612aff565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600060443d1015612eaa57612f2d565b612eb261270a565b60043d036004823e80513d602482011167ffffffffffffffff82111715612eda575050612f2d565b808201805167ffffffffffffffff811115612ef85750505050612f2d565b80602083010160043d038501811115612f15575050505050612f2d565b612f248260200185018661297d565b82955050505050505b90565b612f3981612895565b8114612f4457600080fd5b50565b612f50816128a7565b8114612f5b57600080fd5b50565b612f67816128b3565b8114612f7257600080fd5b50565b612f7e816128ff565b8114612f8957600080fd5b5056fea2646970667358221220b87874db204de87e22d3a21eb1597d78d3a3e1b1a56ce0570ff5b6b7f1e8c10964736f6c63430008070033
Deployed Bytecode Sourcemap
38025:837:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19954:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18977:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38111:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19698:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21897:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20350:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37206:103;;;:::i;:::-;;38672:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36558:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20947:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21174:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21414:406;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37464:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38208:456;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19954:230;20040:7;20087:1;20068:21;;:7;:21;;;;20060:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;20154:9;:13;20164:2;20154:13;;;;;;;;;;;:22;20168:7;20154:22;;;;;;;;;;;;;;;;20147:29;;19954:230;;;;:::o;18977:310::-;19079:4;19131:26;19116:41;;;:11;:41;;;;:110;;;;19189:37;19174:52;;;:11;:52;;;;19116:110;:163;;;;19243:36;19267:11;19243:23;:36::i;:::-;19116:163;19096:183;;18977:310;;;:::o;38111:89::-;36444:13;:11;:13::i;:::-;38177:15:::1;38185:6;38177:7;:15::i;:::-;38111:89:::0;:::o;19698:105::-;19758:13;19791:4;19784:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19698:105;;;:::o;21897:438::-;22138:12;:10;:12::i;:::-;22130:20;;:4;:20;;;:60;;;;22154:36;22171:4;22177:12;:10;:12::i;:::-;22154:16;:36::i;:::-;22130:60;22108:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;22275:52;22298:4;22304:2;22308:3;22313:7;22322:4;22275:22;:52::i;:::-;21897:438;;;;;:::o;20350:524::-;20506:16;20567:3;:10;20548:8;:15;:29;20540:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;20636:30;20683:8;:15;20669:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20636:63;;20717:9;20712:122;20736:8;:15;20732:1;:19;20712:122;;;20792:30;20802:8;20811:1;20802:11;;;;;;;;:::i;:::-;;;;;;;;20815:3;20819:1;20815:6;;;;;;;;:::i;:::-;;;;;;;;20792:9;:30::i;:::-;20773:13;20787:1;20773:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;20753:3;;;;:::i;:::-;;;20712:122;;;;20853:13;20846:20;;;20350:524;;;;:::o;37206:103::-;36444:13;:11;:13::i;:::-;37271:30:::1;37298:1;37271:18;:30::i;:::-;37206:103::o:0;38672:187::-;36444:13;:11;:13::i;:::-;38824:27:::1;38830:2;38834;38838:6;38846:4;38824:5;:27::i;:::-;38672:187:::0;;;;:::o;36558:87::-;36604:7;36631:6;;;;;;;;;;;36624:13;;36558:87;:::o;20947:155::-;21042:52;21061:12;:10;:12::i;:::-;21075:8;21085;21042:18;:52::i;:::-;20947:155;;:::o;21174:168::-;21273:4;21297:18;:27;21316:7;21297:27;;;;;;;;;;;;;;;:37;21325:8;21297:37;;;;;;;;;;;;;;;;;;;;;;;;;21290:44;;21174:168;;;;:::o;21414:406::-;21630:12;:10;:12::i;:::-;21622:20;;:4;:20;;;:60;;;;21646:36;21663:4;21669:12;:10;:12::i;:::-;21646:16;:36::i;:::-;21622:60;21600:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;21767:45;21785:4;21791:2;21795;21799:6;21807:4;21767:17;:45::i;:::-;21414:406;;;;;:::o;37464:201::-;36444:13;:11;:13::i;:::-;37573:1:::1;37553:22;;:8;:22;;;;37545:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37629:28;37648:8;37629:18;:28::i;:::-;37464:201:::0;:::o;38208:456::-;36444:13;:11;:13::i;:::-;38438:9:::1;38433:224;38457:3;:10;38453:1;:14;38433:224;;;38489:10;38502:3;38506:1;38502:6;;;;;;;;:::i;:::-;;;;;;;;38489:19;;38523:10;38536:3;38540:1;38536:6;;;;;;;;:::i;:::-;;;;;;;;38523:19;;38557:14;38574:7;38582:1;38574:10;;;;;;;;:::i;:::-;;;;;;;;38557:27;;38601:44;38618:4;38624:2;38628;38632:6;38640:4;38601:16;:44::i;:::-;38474:183;;;38469:3;;;;:::i;:::-;;;38433:224;;;;38208:456:::0;;;;;:::o;17147:157::-;17232:4;17271:25;17256:40;;;:11;:40;;;;17249:47;;17147:157;;;:::o;36723:132::-;36798:12;:10;:12::i;:::-;36787:23;;:7;:5;:7::i;:::-;:23;;;36779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36723:132::o;26121:88::-;26195:6;26188:4;:13;;;;;;;;;;;;:::i;:::-;;26121:88;:::o;17851:98::-;17904:7;17931:10;17924:17;;17851:98;:::o;24131:1146::-;24358:7;:14;24344:3;:10;:28;24336:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;24450:1;24436:16;;:2;:16;;;;24428:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;24507:16;24526:12;:10;:12::i;:::-;24507:31;;24551:60;24572:8;24582:4;24588:2;24592:3;24597:7;24606:4;24551:20;:60::i;:::-;24629:9;24624:421;24648:3;:10;24644:1;:14;24624:421;;;24680:10;24693:3;24697:1;24693:6;;;;;;;;:::i;:::-;;;;;;;;24680:19;;24714:14;24731:7;24739:1;24731:10;;;;;;;;:::i;:::-;;;;;;;;24714:27;;24758:19;24780:9;:13;24790:2;24780:13;;;;;;;;;;;:19;24794:4;24780:19;;;;;;;;;;;;;;;;24758:41;;24837:6;24822:11;:21;;24814:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;24970:6;24956:11;:20;24934:9;:13;24944:2;24934:13;;;;;;;;;;;:19;24948:4;24934:19;;;;;;;;;;;;;;;:42;;;;25027:6;25006:9;:13;25016:2;25006:13;;;;;;;;;;;:17;25020:2;25006:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;24665:380;;;24660:3;;;;:::i;:::-;;;24624:421;;;;25092:2;25062:47;;25086:4;25062:47;;25076:8;25062:47;;;25096:3;25101:7;25062:47;;;;;;;:::i;:::-;;;;;;;;25122:59;25142:8;25152:4;25158:2;25162:3;25167:7;25176:4;25122:19;:59::i;:::-;25194:75;25230:8;25240:4;25246:2;25250:3;25255:7;25264:4;25194:35;:75::i;:::-;24325:952;24131:1146;;;;;:::o;37825:191::-;37899:16;37918:6;;;;;;;;;;;37899:25;;37944:8;37935:6;;:17;;;;;;;;;;;;;;;;;;37999:8;37968:40;;37989:8;37968:40;;;;;;;;;;;;37888:128;37825:191;:::o;26595:729::-;26762:1;26748:16;;:2;:16;;;;26740:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26815:16;26834:12;:10;:12::i;:::-;26815:31;;26857:20;26880:21;26898:2;26880:17;:21::i;:::-;26857:44;;26912:24;26939:25;26957:6;26939:17;:25::i;:::-;26912:52;;26977:66;26998:8;27016:1;27020:2;27024:3;27029:7;27038:4;26977:20;:66::i;:::-;27077:6;27056:9;:13;27066:2;27056:13;;;;;;;;;;;:17;27070:2;27056:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;27136:2;27099:52;;27132:1;27099:52;;27114:8;27099:52;;;27140:2;27144:6;27099:52;;;;;;;:::i;:::-;;;;;;;;27164:65;27184:8;27202:1;27206:2;27210:3;27215:7;27224:4;27164:19;:65::i;:::-;27242:74;27273:8;27291:1;27295:2;27299;27303:6;27311:4;27242:30;:74::i;:::-;26729:595;;;26595:729;;;;:::o;31008:331::-;31163:8;31154:17;;:5;:17;;;;31146:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31266:8;31228:18;:25;31247:5;31228:25;;;;;;;;;;;;;;;:35;31254:8;31228:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;31312:8;31290:41;;31305:5;31290:41;;;31322:8;31290:41;;;;;;:::i;:::-;;;;;;;;31008:331;;;:::o;22799:974::-;23001:1;22987:16;;:2;:16;;;;22979:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;23058:16;23077:12;:10;:12::i;:::-;23058:31;;23100:20;23123:21;23141:2;23123:17;:21::i;:::-;23100:44;;23155:24;23182:25;23200:6;23182:17;:25::i;:::-;23155:52;;23220:60;23241:8;23251:4;23257:2;23261:3;23266:7;23275:4;23220:20;:60::i;:::-;23293:19;23315:9;:13;23325:2;23315:13;;;;;;;;;;;:19;23329:4;23315:19;;;;;;;;;;;;;;;;23293:41;;23368:6;23353:11;:21;;23345:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;23493:6;23479:11;:20;23457:9;:13;23467:2;23457:13;;;;;;;;;;;:19;23471:4;23457:19;;;;;;;;;;;;;;;:42;;;;23542:6;23521:9;:13;23531:2;23521:13;;;;;;;;;;;:17;23535:2;23521:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;23597:2;23566:46;;23591:4;23566:46;;23581:8;23566:46;;;23601:2;23605:6;23566:46;;;;;;;:::i;:::-;;;;;;;;23625:59;23645:8;23655:4;23661:2;23665:3;23670:7;23679:4;23625:19;:59::i;:::-;23697:68;23728:8;23738:4;23744:2;23748;23752:6;23760:4;23697:30;:68::i;:::-;22968:805;;;;22799:974;;;;;:::o;32297:221::-;;;;;;;:::o;33473:220::-;;;;;;;:::o;34453:813::-;34693:15;:2;:13;;;:15::i;:::-;34689:570;;;34746:2;34729:43;;;34773:8;34783:4;34789:3;34794:7;34803:4;34729:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34725:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;35121:6;35114:14;;;;;;;;;;;:::i;:::-;;;;;;;;34725:523;;;35170:62;;;;;;;;;;:::i;:::-;;;;;;;;34725:523;34902:48;;;34890:60;;;:8;:60;;;;34886:159;;34975:50;;;;;;;;;;:::i;:::-;;;;;;;;34886:159;34809:251;34689:570;34453:813;;;;;;:::o;35274:198::-;35340:16;35369:22;35408:1;35394:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35369:41;;35432:7;35421:5;35427:1;35421:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;35459:5;35452:12;;;35274:198;;;:::o;33701:744::-;33916:15;:2;:13;;;:15::i;:::-;33912:526;;;33969:2;33952:38;;;33991:8;34001:4;34007:2;34011:6;34019:4;33952:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33948:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;34300:6;34293:14;;;;;;;;;;;:::i;:::-;;;;;;;;33948:479;;;34349:62;;;;;;;;;;:::i;:::-;;;;;;;;33948:479;34086:43;;;34074:55;;;:8;:55;;;;34070:154;;34154:50;;;;;;;;;;:::i;:::-;;;;;;;;34070:154;34025:214;33912:526;33701:744;;;;;;:::o;8252:326::-;8312:4;8569:1;8547:7;:19;;;:23;8540:30;;8252:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:412::-;1991:5;2016:66;2032:49;2074:6;2032:49;:::i;:::-;2016:66;:::i;:::-;2007:75;;2105:6;2098:5;2091:21;2143:4;2136:5;2132:16;2181:3;2172:6;2167:3;2163:16;2160:25;2157:112;;;2188:79;;:::i;:::-;2157:112;2278:41;2312:6;2307:3;2302;2278:41;:::i;:::-;1997:328;1913:412;;;;;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:370::-;2564:5;2613:3;2606:4;2598:6;2594:17;2590:27;2580:122;;2621:79;;:::i;:::-;2580:122;2738:6;2725:20;2763:94;2853:3;2845:6;2838:4;2830:6;2826:17;2763:94;:::i;:::-;2754:103;;2570:293;2493:370;;;;:::o;2886:::-;2957:5;3006:3;2999:4;2991:6;2987:17;2983:27;2973:122;;3014:79;;:::i;:::-;2973:122;3131:6;3118:20;3156:94;3246:3;3238:6;3231:4;3223:6;3219:17;3156:94;:::i;:::-;3147:103;;2963:293;2886:370;;;;:::o;3262:133::-;3305:5;3343:6;3330:20;3321:29;;3359:30;3383:5;3359:30;:::i;:::-;3262:133;;;;:::o;3401:137::-;3446:5;3484:6;3471:20;3462:29;;3500:32;3526:5;3500:32;:::i;:::-;3401:137;;;;:::o;3544:141::-;3600:5;3631:6;3625:13;3616:22;;3647:32;3673:5;3647:32;:::i;:::-;3544:141;;;;:::o;3704:338::-;3759:5;3808:3;3801:4;3793:6;3789:17;3785:27;3775:122;;3816:79;;:::i;:::-;3775:122;3933:6;3920:20;3958:78;4032:3;4024:6;4017:4;4009:6;4005:17;3958:78;:::i;:::-;3949:87;;3765:277;3704:338;;;;:::o;4062:340::-;4118:5;4167:3;4160:4;4152:6;4148:17;4144:27;4134:122;;4175:79;;:::i;:::-;4134:122;4292:6;4279:20;4317:79;4392:3;4384:6;4377:4;4369:6;4365:17;4317:79;:::i;:::-;4308:88;;4124:278;4062:340;;;;:::o;4408:139::-;4454:5;4492:6;4479:20;4470:29;;4508:33;4535:5;4508:33;:::i;:::-;4408:139;;;;:::o;4553:329::-;4612:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:119;;;4667:79;;:::i;:::-;4629:119;4787:1;4812:53;4857:7;4848:6;4837:9;4833:22;4812:53;:::i;:::-;4802:63;;4758:117;4553:329;;;;:::o;4888:474::-;4956:6;4964;5013:2;5001:9;4992:7;4988:23;4984:32;4981:119;;;5019:79;;:::i;:::-;4981:119;5139:1;5164:53;5209:7;5200:6;5189:9;5185:22;5164:53;:::i;:::-;5154:63;;5110:117;5266:2;5292:53;5337:7;5328:6;5317:9;5313:22;5292:53;:::i;:::-;5282:63;;5237:118;4888:474;;;;;:::o;5368:1509::-;5522:6;5530;5538;5546;5554;5603:3;5591:9;5582:7;5578:23;5574:33;5571:120;;;5610:79;;:::i;:::-;5571:120;5730:1;5755:53;5800:7;5791:6;5780:9;5776:22;5755:53;:::i;:::-;5745:63;;5701:117;5857:2;5883:53;5928:7;5919:6;5908:9;5904:22;5883:53;:::i;:::-;5873:63;;5828:118;6013:2;6002:9;5998:18;5985:32;6044:18;6036:6;6033:30;6030:117;;;6066:79;;:::i;:::-;6030:117;6171:78;6241:7;6232:6;6221:9;6217:22;6171:78;:::i;:::-;6161:88;;5956:303;6326:2;6315:9;6311:18;6298:32;6357:18;6349:6;6346:30;6343:117;;;6379:79;;:::i;:::-;6343:117;6484:78;6554:7;6545:6;6534:9;6530:22;6484:78;:::i;:::-;6474:88;;6269:303;6639:3;6628:9;6624:19;6611:33;6671:18;6663:6;6660:30;6657:117;;;6693:79;;:::i;:::-;6657:117;6798:62;6852:7;6843:6;6832:9;6828:22;6798:62;:::i;:::-;6788:72;;6582:288;5368:1509;;;;;;;;:::o;6883:1089::-;6987:6;6995;7003;7011;7019;7068:3;7056:9;7047:7;7043:23;7039:33;7036:120;;;7075:79;;:::i;:::-;7036:120;7195:1;7220:53;7265:7;7256:6;7245:9;7241:22;7220:53;:::i;:::-;7210:63;;7166:117;7322:2;7348:53;7393:7;7384:6;7373:9;7369:22;7348:53;:::i;:::-;7338:63;;7293:118;7450:2;7476:53;7521:7;7512:6;7501:9;7497:22;7476:53;:::i;:::-;7466:63;;7421:118;7578:2;7604:53;7649:7;7640:6;7629:9;7625:22;7604:53;:::i;:::-;7594:63;;7549:118;7734:3;7723:9;7719:19;7706:33;7766:18;7758:6;7755:30;7752:117;;;7788:79;;:::i;:::-;7752:117;7893:62;7947:7;7938:6;7927:9;7923:22;7893:62;:::i;:::-;7883:72;;7677:288;6883:1089;;;;;;;;:::o;7978:1719::-;8157:6;8165;8173;8181;8189;8238:3;8226:9;8217:7;8213:23;8209:33;8206:120;;;8245:79;;:::i;:::-;8206:120;8365:1;8390:53;8435:7;8426:6;8415:9;8411:22;8390:53;:::i;:::-;8380:63;;8336:117;8520:2;8509:9;8505:18;8492:32;8551:18;8543:6;8540:30;8537:117;;;8573:79;;:::i;:::-;8537:117;8678:78;8748:7;8739:6;8728:9;8724:22;8678:78;:::i;:::-;8668:88;;8463:303;8833:2;8822:9;8818:18;8805:32;8864:18;8856:6;8853:30;8850:117;;;8886:79;;:::i;:::-;8850:117;8991:78;9061:7;9052:6;9041:9;9037:22;8991:78;:::i;:::-;8981:88;;8776:303;9146:2;9135:9;9131:18;9118:32;9177:18;9169:6;9166:30;9163:117;;;9199:79;;:::i;:::-;9163:117;9304:78;9374:7;9365:6;9354:9;9350:22;9304:78;:::i;:::-;9294:88;;9089:303;9459:3;9448:9;9444:19;9431:33;9491:18;9483:6;9480:30;9477:117;;;9513:79;;:::i;:::-;9477:117;9618:62;9672:7;9663:6;9652:9;9648:22;9618:62;:::i;:::-;9608:72;;9402:288;7978:1719;;;;;;;;:::o;9703:468::-;9768:6;9776;9825:2;9813:9;9804:7;9800:23;9796:32;9793:119;;;9831:79;;:::i;:::-;9793:119;9951:1;9976:53;10021:7;10012:6;10001:9;9997:22;9976:53;:::i;:::-;9966:63;;9922:117;10078:2;10104:50;10146:7;10137:6;10126:9;10122:22;10104:50;:::i;:::-;10094:60;;10049:115;9703:468;;;;;:::o;10177:474::-;10245:6;10253;10302:2;10290:9;10281:7;10277:23;10273:32;10270:119;;;10308:79;;:::i;:::-;10270:119;10428:1;10453:53;10498:7;10489:6;10478:9;10474:22;10453:53;:::i;:::-;10443:63;;10399:117;10555:2;10581:53;10626:7;10617:6;10606:9;10602:22;10581:53;:::i;:::-;10571:63;;10526:118;10177:474;;;;;:::o;10657:943::-;10752:6;10760;10768;10776;10825:3;10813:9;10804:7;10800:23;10796:33;10793:120;;;10832:79;;:::i;:::-;10793:120;10952:1;10977:53;11022:7;11013:6;11002:9;10998:22;10977:53;:::i;:::-;10967:63;;10923:117;11079:2;11105:53;11150:7;11141:6;11130:9;11126:22;11105:53;:::i;:::-;11095:63;;11050:118;11207:2;11233:53;11278:7;11269:6;11258:9;11254:22;11233:53;:::i;:::-;11223:63;;11178:118;11363:2;11352:9;11348:18;11335:32;11394:18;11386:6;11383:30;11380:117;;;11416:79;;:::i;:::-;11380:117;11521:62;11575:7;11566:6;11555:9;11551:22;11521:62;:::i;:::-;11511:72;;11306:287;10657:943;;;;;;;:::o;11606:894::-;11724:6;11732;11781:2;11769:9;11760:7;11756:23;11752:32;11749:119;;;11787:79;;:::i;:::-;11749:119;11935:1;11924:9;11920:17;11907:31;11965:18;11957:6;11954:30;11951:117;;;11987:79;;:::i;:::-;11951:117;12092:78;12162:7;12153:6;12142:9;12138:22;12092:78;:::i;:::-;12082:88;;11878:302;12247:2;12236:9;12232:18;12219:32;12278:18;12270:6;12267:30;12264:117;;;12300:79;;:::i;:::-;12264:117;12405:78;12475:7;12466:6;12455:9;12451:22;12405:78;:::i;:::-;12395:88;;12190:303;11606:894;;;;;:::o;12506:327::-;12564:6;12613:2;12601:9;12592:7;12588:23;12584:32;12581:119;;;12619:79;;:::i;:::-;12581:119;12739:1;12764:52;12808:7;12799:6;12788:9;12784:22;12764:52;:::i;:::-;12754:62;;12710:116;12506:327;;;;:::o;12839:349::-;12908:6;12957:2;12945:9;12936:7;12932:23;12928:32;12925:119;;;12963:79;;:::i;:::-;12925:119;13083:1;13108:63;13163:7;13154:6;13143:9;13139:22;13108:63;:::i;:::-;13098:73;;13054:127;12839:349;;;;:::o;13194:509::-;13263:6;13312:2;13300:9;13291:7;13287:23;13283:32;13280:119;;;13318:79;;:::i;:::-;13280:119;13466:1;13455:9;13451:17;13438:31;13496:18;13488:6;13485:30;13482:117;;;13518:79;;:::i;:::-;13482:117;13623:63;13678:7;13669:6;13658:9;13654:22;13623:63;:::i;:::-;13613:73;;13409:287;13194:509;;;;:::o;13709:329::-;13768:6;13817:2;13805:9;13796:7;13792:23;13788:32;13785:119;;;13823:79;;:::i;:::-;13785:119;13943:1;13968:53;14013:7;14004:6;13993:9;13989:22;13968:53;:::i;:::-;13958:63;;13914:117;13709:329;;;;:::o;14044:179::-;14113:10;14134:46;14176:3;14168:6;14134:46;:::i;:::-;14212:4;14207:3;14203:14;14189:28;;14044:179;;;;:::o;14229:118::-;14316:24;14334:5;14316:24;:::i;:::-;14311:3;14304:37;14229:118;;:::o;14383:732::-;14502:3;14531:54;14579:5;14531:54;:::i;:::-;14601:86;14680:6;14675:3;14601:86;:::i;:::-;14594:93;;14711:56;14761:5;14711:56;:::i;:::-;14790:7;14821:1;14806:284;14831:6;14828:1;14825:13;14806:284;;;14907:6;14901:13;14934:63;14993:3;14978:13;14934:63;:::i;:::-;14927:70;;15020:60;15073:6;15020:60;:::i;:::-;15010:70;;14866:224;14853:1;14850;14846:9;14841:14;;14806:284;;;14810:14;15106:3;15099:10;;14507:608;;;14383:732;;;;:::o;15121:109::-;15202:21;15217:5;15202:21;:::i;:::-;15197:3;15190:34;15121:109;;:::o;15236:360::-;15322:3;15350:38;15382:5;15350:38;:::i;:::-;15404:70;15467:6;15462:3;15404:70;:::i;:::-;15397:77;;15483:52;15528:6;15523:3;15516:4;15509:5;15505:16;15483:52;:::i;:::-;15560:29;15582:6;15560:29;:::i;:::-;15555:3;15551:39;15544:46;;15326:270;15236:360;;;;:::o;15602:364::-;15690:3;15718:39;15751:5;15718:39;:::i;:::-;15773:71;15837:6;15832:3;15773:71;:::i;:::-;15766:78;;15853:52;15898:6;15893:3;15886:4;15879:5;15875:16;15853:52;:::i;:::-;15930:29;15952:6;15930:29;:::i;:::-;15925:3;15921:39;15914:46;;15694:272;15602:364;;;;:::o;15972:366::-;16114:3;16135:67;16199:2;16194:3;16135:67;:::i;:::-;16128:74;;16211:93;16300:3;16211:93;:::i;:::-;16329:2;16324:3;16320:12;16313:19;;15972:366;;;:::o;16344:::-;16486:3;16507:67;16571:2;16566:3;16507:67;:::i;:::-;16500:74;;16583:93;16672:3;16583:93;:::i;:::-;16701:2;16696:3;16692:12;16685:19;;16344:366;;;:::o;16716:::-;16858:3;16879:67;16943:2;16938:3;16879:67;:::i;:::-;16872:74;;16955:93;17044:3;16955:93;:::i;:::-;17073:2;17068:3;17064:12;17057:19;;16716:366;;;:::o;17088:::-;17230:3;17251:67;17315:2;17310:3;17251:67;:::i;:::-;17244:74;;17327:93;17416:3;17327:93;:::i;:::-;17445:2;17440:3;17436:12;17429:19;;17088:366;;;:::o;17460:::-;17602:3;17623:67;17687:2;17682:3;17623:67;:::i;:::-;17616:74;;17699:93;17788:3;17699:93;:::i;:::-;17817:2;17812:3;17808:12;17801:19;;17460:366;;;:::o;17832:::-;17974:3;17995:67;18059:2;18054:3;17995:67;:::i;:::-;17988:74;;18071:93;18160:3;18071:93;:::i;:::-;18189:2;18184:3;18180:12;18173:19;;17832:366;;;:::o;18204:::-;18346:3;18367:67;18431:2;18426:3;18367:67;:::i;:::-;18360:74;;18443:93;18532:3;18443:93;:::i;:::-;18561:2;18556:3;18552:12;18545:19;;18204:366;;;:::o;18576:::-;18718:3;18739:67;18803:2;18798:3;18739:67;:::i;:::-;18732:74;;18815:93;18904:3;18815:93;:::i;:::-;18933:2;18928:3;18924:12;18917:19;;18576:366;;;:::o;18948:::-;19090:3;19111:67;19175:2;19170:3;19111:67;:::i;:::-;19104:74;;19187:93;19276:3;19187:93;:::i;:::-;19305:2;19300:3;19296:12;19289:19;;18948:366;;;:::o;19320:::-;19462:3;19483:67;19547:2;19542:3;19483:67;:::i;:::-;19476:74;;19559:93;19648:3;19559:93;:::i;:::-;19677:2;19672:3;19668:12;19661:19;;19320:366;;;:::o;19692:::-;19834:3;19855:67;19919:2;19914:3;19855:67;:::i;:::-;19848:74;;19931:93;20020:3;19931:93;:::i;:::-;20049:2;20044:3;20040:12;20033:19;;19692:366;;;:::o;20064:::-;20206:3;20227:67;20291:2;20286:3;20227:67;:::i;:::-;20220:74;;20303:93;20392:3;20303:93;:::i;:::-;20421:2;20416:3;20412:12;20405:19;;20064:366;;;:::o;20436:108::-;20513:24;20531:5;20513:24;:::i;:::-;20508:3;20501:37;20436:108;;:::o;20550:118::-;20637:24;20655:5;20637:24;:::i;:::-;20632:3;20625:37;20550:118;;:::o;20674:222::-;20767:4;20805:2;20794:9;20790:18;20782:26;;20818:71;20886:1;20875:9;20871:17;20862:6;20818:71;:::i;:::-;20674:222;;;;:::o;20902:1053::-;21225:4;21263:3;21252:9;21248:19;21240:27;;21277:71;21345:1;21334:9;21330:17;21321:6;21277:71;:::i;:::-;21358:72;21426:2;21415:9;21411:18;21402:6;21358:72;:::i;:::-;21477:9;21471:4;21467:20;21462:2;21451:9;21447:18;21440:48;21505:108;21608:4;21599:6;21505:108;:::i;:::-;21497:116;;21660:9;21654:4;21650:20;21645:2;21634:9;21630:18;21623:48;21688:108;21791:4;21782:6;21688:108;:::i;:::-;21680:116;;21844:9;21838:4;21834:20;21828:3;21817:9;21813:19;21806:49;21872:76;21943:4;21934:6;21872:76;:::i;:::-;21864:84;;20902:1053;;;;;;;;:::o;21961:751::-;22184:4;22222:3;22211:9;22207:19;22199:27;;22236:71;22304:1;22293:9;22289:17;22280:6;22236:71;:::i;:::-;22317:72;22385:2;22374:9;22370:18;22361:6;22317:72;:::i;:::-;22399;22467:2;22456:9;22452:18;22443:6;22399:72;:::i;:::-;22481;22549:2;22538:9;22534:18;22525:6;22481:72;:::i;:::-;22601:9;22595:4;22591:20;22585:3;22574:9;22570:19;22563:49;22629:76;22700:4;22691:6;22629:76;:::i;:::-;22621:84;;21961:751;;;;;;;;:::o;22718:373::-;22861:4;22899:2;22888:9;22884:18;22876:26;;22948:9;22942:4;22938:20;22934:1;22923:9;22919:17;22912:47;22976:108;23079:4;23070:6;22976:108;:::i;:::-;22968:116;;22718:373;;;;:::o;23097:634::-;23318:4;23356:2;23345:9;23341:18;23333:26;;23405:9;23399:4;23395:20;23391:1;23380:9;23376:17;23369:47;23433:108;23536:4;23527:6;23433:108;:::i;:::-;23425:116;;23588:9;23582:4;23578:20;23573:2;23562:9;23558:18;23551:48;23616:108;23719:4;23710:6;23616:108;:::i;:::-;23608:116;;23097:634;;;;;:::o;23737:210::-;23824:4;23862:2;23851:9;23847:18;23839:26;;23875:65;23937:1;23926:9;23922:17;23913:6;23875:65;:::i;:::-;23737:210;;;;:::o;23953:313::-;24066:4;24104:2;24093:9;24089:18;24081:26;;24153:9;24147:4;24143:20;24139:1;24128:9;24124:17;24117:47;24181:78;24254:4;24245:6;24181:78;:::i;:::-;24173:86;;23953:313;;;;:::o;24272:419::-;24438:4;24476:2;24465:9;24461:18;24453:26;;24525:9;24519:4;24515:20;24511:1;24500:9;24496:17;24489:47;24553:131;24679:4;24553:131;:::i;:::-;24545:139;;24272:419;;;:::o;24697:::-;24863:4;24901:2;24890:9;24886:18;24878:26;;24950:9;24944:4;24940:20;24936:1;24925:9;24921:17;24914:47;24978:131;25104:4;24978:131;:::i;:::-;24970:139;;24697:419;;;:::o;25122:::-;25288:4;25326:2;25315:9;25311:18;25303:26;;25375:9;25369:4;25365:20;25361:1;25350:9;25346:17;25339:47;25403:131;25529:4;25403:131;:::i;:::-;25395:139;;25122:419;;;:::o;25547:::-;25713:4;25751:2;25740:9;25736:18;25728:26;;25800:9;25794:4;25790:20;25786:1;25775:9;25771:17;25764:47;25828:131;25954:4;25828:131;:::i;:::-;25820:139;;25547:419;;;:::o;25972:::-;26138:4;26176:2;26165:9;26161:18;26153:26;;26225:9;26219:4;26215:20;26211:1;26200:9;26196:17;26189:47;26253:131;26379:4;26253:131;:::i;:::-;26245:139;;25972:419;;;:::o;26397:::-;26563:4;26601:2;26590:9;26586:18;26578:26;;26650:9;26644:4;26640:20;26636:1;26625:9;26621:17;26614:47;26678:131;26804:4;26678:131;:::i;:::-;26670:139;;26397:419;;;:::o;26822:::-;26988:4;27026:2;27015:9;27011:18;27003:26;;27075:9;27069:4;27065:20;27061:1;27050:9;27046:17;27039:47;27103:131;27229:4;27103:131;:::i;:::-;27095:139;;26822:419;;;:::o;27247:::-;27413:4;27451:2;27440:9;27436:18;27428:26;;27500:9;27494:4;27490:20;27486:1;27475:9;27471:17;27464:47;27528:131;27654:4;27528:131;:::i;:::-;27520:139;;27247:419;;;:::o;27672:::-;27838:4;27876:2;27865:9;27861:18;27853:26;;27925:9;27919:4;27915:20;27911:1;27900:9;27896:17;27889:47;27953:131;28079:4;27953:131;:::i;:::-;27945:139;;27672:419;;;:::o;28097:::-;28263:4;28301:2;28290:9;28286:18;28278:26;;28350:9;28344:4;28340:20;28336:1;28325:9;28321:17;28314:47;28378:131;28504:4;28378:131;:::i;:::-;28370:139;;28097:419;;;:::o;28522:::-;28688:4;28726:2;28715:9;28711:18;28703:26;;28775:9;28769:4;28765:20;28761:1;28750:9;28746:17;28739:47;28803:131;28929:4;28803:131;:::i;:::-;28795:139;;28522:419;;;:::o;28947:::-;29113:4;29151:2;29140:9;29136:18;29128:26;;29200:9;29194:4;29190:20;29186:1;29175:9;29171:17;29164:47;29228:131;29354:4;29228:131;:::i;:::-;29220:139;;28947:419;;;:::o;29372:222::-;29465:4;29503:2;29492:9;29488:18;29480:26;;29516:71;29584:1;29573:9;29569:17;29560:6;29516:71;:::i;:::-;29372:222;;;;:::o;29600:332::-;29721:4;29759:2;29748:9;29744:18;29736:26;;29772:71;29840:1;29829:9;29825:17;29816:6;29772:71;:::i;:::-;29853:72;29921:2;29910:9;29906:18;29897:6;29853:72;:::i;:::-;29600:332;;;;;:::o;29938:129::-;29972:6;29999:20;;:::i;:::-;29989:30;;30028:33;30056:4;30048:6;30028:33;:::i;:::-;29938:129;;;:::o;30073:75::-;30106:6;30139:2;30133:9;30123:19;;30073:75;:::o;30154:311::-;30231:4;30321:18;30313:6;30310:30;30307:56;;;30343:18;;:::i;:::-;30307:56;30393:4;30385:6;30381:17;30373:25;;30453:4;30447;30443:15;30435:23;;30154:311;;;:::o;30471:::-;30548:4;30638:18;30630:6;30627:30;30624:56;;;30660:18;;:::i;:::-;30624:56;30710:4;30702:6;30698:17;30690:25;;30770:4;30764;30760:15;30752:23;;30471:311;;;:::o;30788:307::-;30849:4;30939:18;30931:6;30928:30;30925:56;;;30961:18;;:::i;:::-;30925:56;30999:29;31021:6;30999:29;:::i;:::-;30991:37;;31083:4;31077;31073:15;31065:23;;30788:307;;;:::o;31101:308::-;31163:4;31253:18;31245:6;31242:30;31239:56;;;31275:18;;:::i;:::-;31239:56;31313:29;31335:6;31313:29;:::i;:::-;31305:37;;31397:4;31391;31387:15;31379:23;;31101:308;;;:::o;31415:132::-;31482:4;31505:3;31497:11;;31535:4;31530:3;31526:14;31518:22;;31415:132;;;:::o;31553:114::-;31620:6;31654:5;31648:12;31638:22;;31553:114;;;:::o;31673:98::-;31724:6;31758:5;31752:12;31742:22;;31673:98;;;:::o;31777:99::-;31829:6;31863:5;31857:12;31847:22;;31777:99;;;:::o;31882:113::-;31952:4;31984;31979:3;31975:14;31967:22;;31882:113;;;:::o;32001:184::-;32100:11;32134:6;32129:3;32122:19;32174:4;32169:3;32165:14;32150:29;;32001:184;;;;:::o;32191:168::-;32274:11;32308:6;32303:3;32296:19;32348:4;32343:3;32339:14;32324:29;;32191:168;;;;:::o;32365:169::-;32449:11;32483:6;32478:3;32471:19;32523:4;32518:3;32514:14;32499:29;;32365:169;;;;:::o;32540:305::-;32580:3;32599:20;32617:1;32599:20;:::i;:::-;32594:25;;32633:20;32651:1;32633:20;:::i;:::-;32628:25;;32787:1;32719:66;32715:74;32712:1;32709:81;32706:107;;;32793:18;;:::i;:::-;32706:107;32837:1;32834;32830:9;32823:16;;32540:305;;;;:::o;32851:96::-;32888:7;32917:24;32935:5;32917:24;:::i;:::-;32906:35;;32851:96;;;:::o;32953:90::-;32987:7;33030:5;33023:13;33016:21;33005:32;;32953:90;;;:::o;33049:149::-;33085:7;33125:66;33118:5;33114:78;33103:89;;33049:149;;;:::o;33204:126::-;33241:7;33281:42;33274:5;33270:54;33259:65;;33204:126;;;:::o;33336:77::-;33373:7;33402:5;33391:16;;33336:77;;;:::o;33419:154::-;33503:6;33498:3;33493;33480:30;33565:1;33556:6;33551:3;33547:16;33540:27;33419:154;;;:::o;33579:307::-;33647:1;33657:113;33671:6;33668:1;33665:13;33657:113;;;33756:1;33751:3;33747:11;33741:18;33737:1;33732:3;33728:11;33721:39;33693:2;33690:1;33686:10;33681:15;;33657:113;;;33788:6;33785:1;33782:13;33779:101;;;33868:1;33859:6;33854:3;33850:16;33843:27;33779:101;33628:258;33579:307;;;:::o;33892:320::-;33936:6;33973:1;33967:4;33963:12;33953:22;;34020:1;34014:4;34010:12;34041:18;34031:81;;34097:4;34089:6;34085:17;34075:27;;34031:81;34159:2;34151:6;34148:14;34128:18;34125:38;34122:84;;;34178:18;;:::i;:::-;34122:84;33943:269;33892:320;;;:::o;34218:281::-;34301:27;34323:4;34301:27;:::i;:::-;34293:6;34289:40;34431:6;34419:10;34416:22;34395:18;34383:10;34380:34;34377:62;34374:88;;;34442:18;;:::i;:::-;34374:88;34482:10;34478:2;34471:22;34261:238;34218:281;;:::o;34505:233::-;34544:3;34567:24;34585:5;34567:24;:::i;:::-;34558:33;;34613:66;34606:5;34603:77;34600:103;;;34683:18;;:::i;:::-;34600:103;34730:1;34723:5;34719:13;34712:20;;34505:233;;;:::o;34744:180::-;34792:77;34789:1;34782:88;34889:4;34886:1;34879:15;34913:4;34910:1;34903:15;34930:180;34978:77;34975:1;34968:88;35075:4;35072:1;35065:15;35099:4;35096:1;35089:15;35116:180;35164:77;35161:1;35154:88;35261:4;35258:1;35251:15;35285:4;35282:1;35275:15;35302:180;35350:77;35347:1;35340:88;35447:4;35444:1;35437:15;35471:4;35468:1;35461:15;35488:183;35523:3;35561:1;35543:16;35540:23;35537:128;;;35599:1;35596;35593;35578:23;35621:34;35652:1;35646:8;35621:34;:::i;:::-;35614:41;;35537:128;35488:183;:::o;35677:117::-;35786:1;35783;35776:12;35800:117;35909:1;35906;35899:12;35923:117;36032:1;36029;36022:12;36046:117;36155:1;36152;36145:12;36169:117;36278:1;36275;36268:12;36292:102;36333:6;36384:2;36380:7;36375:2;36368:5;36364:14;36360:28;36350:38;;36292:102;;;:::o;36400:106::-;36444:8;36493:5;36488:3;36484:15;36463:36;;36400:106;;;:::o;36512:227::-;36652:34;36648:1;36640:6;36636:14;36629:58;36721:10;36716:2;36708:6;36704:15;36697:35;36512:227;:::o;36745:225::-;36885:34;36881:1;36873:6;36869:14;36862:58;36954:8;36949:2;36941:6;36937:15;36930:33;36745:225;:::o;36976:229::-;37116:34;37112:1;37104:6;37100:14;37093:58;37185:12;37180:2;37172:6;37168:15;37161:37;36976:229;:::o;37211:233::-;37351:34;37347:1;37339:6;37335:14;37328:58;37420:16;37415:2;37407:6;37403:15;37396:41;37211:233;:::o;37450:224::-;37590:34;37586:1;37578:6;37574:14;37567:58;37659:7;37654:2;37646:6;37642:15;37635:32;37450:224;:::o;37680:229::-;37820:34;37816:1;37808:6;37804:14;37797:58;37889:12;37884:2;37876:6;37872:15;37865:37;37680:229;:::o;37915:182::-;38055:34;38051:1;38043:6;38039:14;38032:58;37915:182;:::o;38103:228::-;38243:34;38239:1;38231:6;38227:14;38220:58;38312:11;38307:2;38299:6;38295:15;38288:36;38103:228;:::o;38337:::-;38477:34;38473:1;38465:6;38461:14;38454:58;38546:11;38541:2;38533:6;38529:15;38522:36;38337:228;:::o;38571:227::-;38711:34;38707:1;38699:6;38695:14;38688:58;38780:10;38775:2;38767:6;38763:15;38756:35;38571:227;:::o;38804:220::-;38944:34;38940:1;38932:6;38928:14;38921:58;39013:3;39008:2;39000:6;38996:15;38989:28;38804:220;:::o;39030:239::-;39170:34;39166:1;39158:6;39154:14;39147:58;39239:22;39234:2;39226:6;39222:15;39215:47;39030:239;:::o;39275:711::-;39314:3;39352:4;39334:16;39331:26;39328:39;;;39360:5;;39328:39;39389:20;;:::i;:::-;39464:1;39446:16;39442:24;39439:1;39433:4;39418:49;39497:4;39491:11;39596:16;39589:4;39581:6;39577:17;39574:39;39541:18;39533:6;39530:30;39514:113;39511:146;;;39642:5;;;;39511:146;39688:6;39682:4;39678:17;39724:3;39718:10;39751:18;39743:6;39740:30;39737:43;;;39773:5;;;;;;39737:43;39821:6;39814:4;39809:3;39805:14;39801:27;39880:1;39862:16;39858:24;39852:4;39848:35;39843:3;39840:44;39837:57;;;39887:5;;;;;;;39837:57;39904;39952:6;39946:4;39942:17;39934:6;39930:30;39924:4;39904:57;:::i;:::-;39977:3;39970:10;;39318:668;;;;;39275:711;;:::o;39992:122::-;40065:24;40083:5;40065:24;:::i;:::-;40058:5;40055:35;40045:63;;40104:1;40101;40094:12;40045:63;39992:122;:::o;40120:116::-;40190:21;40205:5;40190:21;:::i;:::-;40183:5;40180:32;40170:60;;40226:1;40223;40216:12;40170:60;40120:116;:::o;40242:120::-;40314:23;40331:5;40314:23;:::i;:::-;40307:5;40304:34;40294:62;;40352:1;40349;40342:12;40294:62;40242:120;:::o;40368:122::-;40441:24;40459:5;40441:24;:::i;:::-;40434:5;40431:35;40421:63;;40480:1;40477;40470:12;40421:63;40368:122;:::o
Swarm Source
ipfs://b87874db204de87e22d3a21eb1597d78d3a3e1b1a56ce0570ff5b6b7f1e8c109
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.