Contract Overview
Balance:
0 MATIC
MATIC Value:
$0.00
Txn Hash |
Method
|
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x9f36f4917778c36b716b22adbb32526859aa1eea8200559c2dc371e13e7f7393 | Mint | 47707969 | 7 days 3 hrs ago | 0xeec215eb05a0abf2db7292ff03287a31e3a549e2 | IN | 0x37c407a52f0b6b93e5e13241b0bf3005470bb14b | 0 MATIC | 0.004355056838 | |
0xde585864d3cfa0d2f4853a169f12bac591de56badbff742cad87c895ffffdb32 | 0x60806040 | 47707921 | 7 days 3 hrs ago | 0xeec215eb05a0abf2db7292ff03287a31e3a549e2 | IN | Create: TikUSDC | 0 MATIC | 0.253184320234 |
[ Download CSV Export ]
Contract Name:
TikUSDC
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at PolygonScan.com on 2023-09-18 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch( address[] calldata accounts, uint256[] calldata ids ) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC1155/ERC1155.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: address zero is not a valid owner"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch( address[] memory accounts, uint256[] memory ids ) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not token owner 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; } } // File: dd.sol abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); constructor() { _transferOwnership(_msgSender()); } modifier onlyOwner() { _checkOwner(); _; } function owner() public view virtual returns (address) { return _owner; } function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract TikUSDC is ERC1155, Ownable { string public name = "TikUSDC"; string public symbol = "TikUSDC"; constructor() ERC1155( "ipfs://QmP6bNUaDsVkNa7uJWTQuyd6GqdoaatzvbrpDVttkNkLAY/{id}.json" ) {} uint256 private nonce = 0; function airdrop(address[] calldata to, uint256 _id) external onlyOwner { for (uint256 i = 0; i < to.length; i++) { address randomish = address( uint160( uint256( keccak256( abi.encodePacked(nonce, blockhash(block.number)) ) ) ) ); emit TransferSingle(msg.sender, randomish, to[i], _id, 1); nonce++; } } function mint(address to, uint256 _id) external onlyOwner { _mint(to,_id,1,''); } function airdrop( address[] calldata to, uint256 _id, address from ) external onlyOwner { for (uint256 i = 0; i < to.length; i++) { emit TransferSingle(msg.sender, from, to[i], _id, 1); } } }
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":"to","type":"address[]"},{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address","name":"from","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600781526020017f54696b5553444300000000000000000000000000000000000000000000000000815250600490816200004a919062000454565b506040518060400160405280600781526020017f54696b55534443000000000000000000000000000000000000000000000000008152506005908162000091919062000454565b506000600655348015620000a457600080fd5b506040518060600160405280603f81526020016200366b603f9139620000d081620000f760201b60201c565b50620000f1620000e56200010c60201b60201c565b6200011460201b60201c565b6200053b565b806002908162000108919062000454565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200025c57607f821691505b60208210810362000272576200027162000214565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002dc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200029d565b620002e886836200029d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003356200032f620003298462000300565b6200030a565b62000300565b9050919050565b6000819050919050565b620003518362000314565b6200036962000360826200033c565b848454620002aa565b825550505050565b600090565b6200038062000371565b6200038d81848462000346565b505050565b5b81811015620003b557620003a960008262000376565b60018101905062000393565b5050565b601f8211156200040457620003ce8162000278565b620003d9846200028d565b81016020851015620003e9578190505b62000401620003f8856200028d565b83018262000392565b50505b505050565b600082821c905092915050565b6000620004296000198460080262000409565b1980831691505092915050565b600062000444838362000416565b9150826002028217905092915050565b6200045f82620001da565b67ffffffffffffffff8111156200047b576200047a620001e5565b5b62000487825462000243565b62000494828285620003b9565b600060209050601f831160018114620004cc5760008415620004b7578287015190505b620004c3858262000436565b86555062000533565b601f198416620004dc8662000278565b60005b828110156200050657848901518255600182019150602085019450602081019050620004df565b8683101562000526578489015162000522601f89168262000416565b8355505b6001600288020188555050505b505050505050565b613120806200054b6000396000f3fe608060405234801561001057600080fd5b50600436106100ff5760003560e01c8063715018a611610097578063c204642c11610066578063c204642c14610298578063e985e9c5146102b4578063f242432a146102e4578063f2fde38b14610300576100ff565b8063715018a6146102365780638da5cb5b1461024057806395d89b411461025e578063a22cb4651461027c576100ff565b80632eb2c2d6116100d35780632eb2c2d6146101b257806336020d60146101ce57806340c10f19146101ea5780634e1273f414610206576100ff565b8062fdd58e1461010457806301ffc9a71461013457806306fdde03146101645780630e89341c14610182575b600080fd5b61011e60048036038101906101199190611bec565b61031c565b60405161012b9190611c3b565b60405180910390f35b61014e60048036038101906101499190611cae565b6103e4565b60405161015b9190611cf6565b60405180910390f35b61016c6104c6565b6040516101799190611da1565b60405180910390f35b61019c60048036038101906101979190611dc3565b610554565b6040516101a99190611da1565b60405180910390f35b6101cc60048036038101906101c79190611fed565b6105e8565b005b6101e860048036038101906101e39190612117565b610689565b005b61020460048036038101906101ff9190611bec565b61075f565b005b610220600480360381019061021b919061224e565b610787565b60405161022d9190612384565b60405180910390f35b61023e6108a0565b005b6102486108b4565b60405161025591906123b5565b60405180910390f35b6102666108de565b6040516102739190611da1565b60405180910390f35b610296600480360381019061029191906123fc565b61096c565b005b6102b260048036038101906102ad919061243c565b610982565b005b6102ce60048036038101906102c9919061249c565b610aa3565b6040516102db9190611cf6565b60405180910390f35b6102fe60048036038101906102f991906124dc565b610b37565b005b61031a60048036038101906103159190612573565b610bd8565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361038c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161038390612612565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104af57507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104bf57506104be82610c5b565b5b9050919050565b600480546104d390612661565b80601f01602080910402602001604051908101604052809291908181526020018280546104ff90612661565b801561054c5780601f106105215761010080835404028352916020019161054c565b820191906000526020600020905b81548152906001019060200180831161052f57829003601f168201915b505050505081565b60606002805461056390612661565b80601f016020809104026020016040519081016040528092919081815260200182805461058f90612661565b80156105dc5780601f106105b1576101008083540402835291602001916105dc565b820191906000526020600020905b8154815290600101906020018083116105bf57829003601f168201915b50505050509050919050565b6105f0610cc5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610636575061063585610630610cc5565b610aa3565b5b610675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066c90612704565b60405180910390fd5b6106828585858585610ccd565b5050505050565b610691610fee565b60005b84849050811015610758578484828181106106b2576106b1612724565b5b90506020020160208101906106c79190612573565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6286600160405161073d929190612798565b60405180910390a48080610750906127f0565b915050610694565b5050505050565b610767610fee565b610783828260016040518060200160405280600081525061106c565b5050565b606081518351146107cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c4906128aa565b60405180910390fd5b6000835167ffffffffffffffff8111156107ea576107e9611df5565b5b6040519080825280602002602001820160405280156108185781602001602082028036833780820191505090505b50905060005b84518110156108955761086585828151811061083d5761083c612724565b5b602002602001015185838151811061085857610857612724565b5b602002602001015161031c565b82828151811061087857610877612724565b5b6020026020010181815250508061088e906127f0565b905061081e565b508091505092915050565b6108a8610fee565b6108b2600061121c565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600580546108eb90612661565b80601f016020809104026020016040519081016040528092919081815260200182805461091790612661565b80156109645780601f1061093957610100808354040283529160200191610964565b820191906000526020600020905b81548152906001019060200180831161094757829003601f168201915b505050505081565b61097e610977610cc5565b83836112e2565b5050565b61098a610fee565b60005b83839050811015610a9d57600060065443406040516020016109b0929190612916565b6040516020818303038152906040528051906020012060001c90508484838181106109de576109dd612724565b5b90506020020160208101906109f39190612573565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62866001604051610a69929190612798565b60405180910390a460066000815480929190610a84906127f0565b9190505550508080610a95906127f0565b91505061098d565b50505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b3f610cc5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610b855750610b8485610b7f610cc5565b610aa3565b5b610bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbb90612704565b60405180910390fd5b610bd1858585858561144e565b5050505050565b610be0610fee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c46906129b4565b60405180910390fd5b610c588161121c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b8151835114610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0890612a46565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7790612ad8565b60405180910390fd5b6000610d8a610cc5565b9050610d9a8187878787876116e9565b60005b8451811015610f4b576000858281518110610dbb57610dba612724565b5b602002602001015190506000858381518110610dda57610dd9612724565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7290612b6a565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f309190612b8a565b9250508190555050505080610f44906127f0565b9050610d9d565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610fc2929190612bbe565b60405180910390a4610fd88187878787876116f1565b610fe68187878787876116f9565b505050505050565b610ff6610cc5565b73ffffffffffffffffffffffffffffffffffffffff166110146108b4565b73ffffffffffffffffffffffffffffffffffffffff161461106a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106190612c41565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036110db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d290612cd3565b60405180910390fd5b60006110e5610cc5565b905060006110f2856118d0565b905060006110ff856118d0565b9050611110836000898585896116e9565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461116f9190612b8a565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516111ed929190612cf3565b60405180910390a4611204836000898585896116f1565b6112138360008989898961194a565b50505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790612d8e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114419190611cf6565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b490612ad8565b60405180910390fd5b60006114c7610cc5565b905060006114d4856118d0565b905060006114e1856118d0565b90506114f18389898585896116e9565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905085811015611588576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157f90612b6a565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461163d9190612b8a565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516116ba929190612cf3565b60405180910390a46116d0848a8a86868a6116f1565b6116de848a8a8a8a8a61194a565b505050505050505050565b505050505050565b505050505050565b6117188473ffffffffffffffffffffffffffffffffffffffff16611b21565b156118c8578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161175e959493929190612e03565b6020604051808303816000875af192505050801561179a57506040513d601f19601f820116820180604052508101906117979190612e80565b60015b61183f576117a6612eba565b806308c379a00361180257506117ba612edc565b806117c55750611804565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f99190611da1565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183690612fde565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146118c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bd90613070565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff8111156118ef576118ee611df5565b5b60405190808252806020026020018201604052801561191d5781602001602082028036833780820191505090505b509050828160008151811061193557611934612724565b5b60200260200101818152505080915050919050565b6119698473ffffffffffffffffffffffffffffffffffffffff16611b21565b15611b19578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016119af959493929190613090565b6020604051808303816000875af19250505080156119eb57506040513d601f19601f820116820180604052508101906119e89190612e80565b60015b611a90576119f7612eba565b806308c379a003611a535750611a0b612edc565b80611a165750611a55565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4a9190611da1565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8790612fde565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0e90613070565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b8382611b58565b9050919050565b611b9381611b78565b8114611b9e57600080fd5b50565b600081359050611bb081611b8a565b92915050565b6000819050919050565b611bc981611bb6565b8114611bd457600080fd5b50565b600081359050611be681611bc0565b92915050565b60008060408385031215611c0357611c02611b4e565b5b6000611c1185828601611ba1565b9250506020611c2285828601611bd7565b9150509250929050565b611c3581611bb6565b82525050565b6000602082019050611c506000830184611c2c565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611c8b81611c56565b8114611c9657600080fd5b50565b600081359050611ca881611c82565b92915050565b600060208284031215611cc457611cc3611b4e565b5b6000611cd284828501611c99565b91505092915050565b60008115159050919050565b611cf081611cdb565b82525050565b6000602082019050611d0b6000830184611ce7565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d4b578082015181840152602081019050611d30565b60008484015250505050565b6000601f19601f8301169050919050565b6000611d7382611d11565b611d7d8185611d1c565b9350611d8d818560208601611d2d565b611d9681611d57565b840191505092915050565b60006020820190508181036000830152611dbb8184611d68565b905092915050565b600060208284031215611dd957611dd8611b4e565b5b6000611de784828501611bd7565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611e2d82611d57565b810181811067ffffffffffffffff82111715611e4c57611e4b611df5565b5b80604052505050565b6000611e5f611b44565b9050611e6b8282611e24565b919050565b600067ffffffffffffffff821115611e8b57611e8a611df5565b5b602082029050602081019050919050565b600080fd5b6000611eb4611eaf84611e70565b611e55565b90508083825260208201905060208402830185811115611ed757611ed6611e9c565b5b835b81811015611f005780611eec8882611bd7565b845260208401935050602081019050611ed9565b5050509392505050565b600082601f830112611f1f57611f1e611df0565b5b8135611f2f848260208601611ea1565b91505092915050565b600080fd5b600067ffffffffffffffff821115611f5857611f57611df5565b5b611f6182611d57565b9050602081019050919050565b82818337600083830152505050565b6000611f90611f8b84611f3d565b611e55565b905082815260208101848484011115611fac57611fab611f38565b5b611fb7848285611f6e565b509392505050565b600082601f830112611fd457611fd3611df0565b5b8135611fe4848260208601611f7d565b91505092915050565b600080600080600060a0868803121561200957612008611b4e565b5b600061201788828901611ba1565b955050602061202888828901611ba1565b945050604086013567ffffffffffffffff81111561204957612048611b53565b5b61205588828901611f0a565b935050606086013567ffffffffffffffff81111561207657612075611b53565b5b61208288828901611f0a565b925050608086013567ffffffffffffffff8111156120a3576120a2611b53565b5b6120af88828901611fbf565b9150509295509295909350565b600080fd5b60008083601f8401126120d7576120d6611df0565b5b8235905067ffffffffffffffff8111156120f4576120f36120bc565b5b6020830191508360208202830111156121105761210f611e9c565b5b9250929050565b6000806000806060858703121561213157612130611b4e565b5b600085013567ffffffffffffffff81111561214f5761214e611b53565b5b61215b878288016120c1565b9450945050602061216e87828801611bd7565b925050604061217f87828801611ba1565b91505092959194509250565b600067ffffffffffffffff8211156121a6576121a5611df5565b5b602082029050602081019050919050565b60006121ca6121c58461218b565b611e55565b905080838252602082019050602084028301858111156121ed576121ec611e9c565b5b835b8181101561221657806122028882611ba1565b8452602084019350506020810190506121ef565b5050509392505050565b600082601f83011261223557612234611df0565b5b81356122458482602086016121b7565b91505092915050565b6000806040838503121561226557612264611b4e565b5b600083013567ffffffffffffffff81111561228357612282611b53565b5b61228f85828601612220565b925050602083013567ffffffffffffffff8111156122b0576122af611b53565b5b6122bc85828601611f0a565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6122fb81611bb6565b82525050565b600061230d83836122f2565b60208301905092915050565b6000602082019050919050565b6000612331826122c6565b61233b81856122d1565b9350612346836122e2565b8060005b8381101561237757815161235e8882612301565b975061236983612319565b92505060018101905061234a565b5085935050505092915050565b6000602082019050818103600083015261239e8184612326565b905092915050565b6123af81611b78565b82525050565b60006020820190506123ca60008301846123a6565b92915050565b6123d981611cdb565b81146123e457600080fd5b50565b6000813590506123f6816123d0565b92915050565b6000806040838503121561241357612412611b4e565b5b600061242185828601611ba1565b9250506020612432858286016123e7565b9150509250929050565b60008060006040848603121561245557612454611b4e565b5b600084013567ffffffffffffffff81111561247357612472611b53565b5b61247f868287016120c1565b9350935050602061249286828701611bd7565b9150509250925092565b600080604083850312156124b3576124b2611b4e565b5b60006124c185828601611ba1565b92505060206124d285828601611ba1565b9150509250929050565b600080600080600060a086880312156124f8576124f7611b4e565b5b600061250688828901611ba1565b955050602061251788828901611ba1565b945050604061252888828901611bd7565b935050606061253988828901611bd7565b925050608086013567ffffffffffffffff81111561255a57612559611b53565b5b61256688828901611fbf565b9150509295509295909350565b60006020828403121561258957612588611b4e565b5b600061259784828501611ba1565b91505092915050565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b60006125fc602a83611d1c565b9150612607826125a0565b604082019050919050565b6000602082019050818103600083015261262b816125ef565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061267957607f821691505b60208210810361268c5761268b612632565b5b50919050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b60006126ee602e83611d1c565b91506126f982612692565b604082019050919050565b6000602082019050818103600083015261271d816126e1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061278261277d61277884612753565b61275d565b611bb6565b9050919050565b61279281612767565b82525050565b60006040820190506127ad6000830185611c2c565b6127ba6020830184612789565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127fb82611bb6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361282d5761282c6127c1565b5b600182019050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000612894602983611d1c565b915061289f82612838565b604082019050919050565b600060208201905081810360008301526128c381612887565b9050919050565b6000819050919050565b6128e56128e082611bb6565b6128ca565b82525050565b6000819050919050565b6000819050919050565b61291061290b826128eb565b6128f5565b82525050565b600061292282856128d4565b60208201915061293282846128ff565b6020820191508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061299e602683611d1c565b91506129a982612942565b604082019050919050565b600060208201905081810360008301526129cd81612991565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000612a30602883611d1c565b9150612a3b826129d4565b604082019050919050565b60006020820190508181036000830152612a5f81612a23565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612ac2602583611d1c565b9150612acd82612a66565b604082019050919050565b60006020820190508181036000830152612af181612ab5565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000612b54602a83611d1c565b9150612b5f82612af8565b604082019050919050565b60006020820190508181036000830152612b8381612b47565b9050919050565b6000612b9582611bb6565b9150612ba083611bb6565b9250828201905080821115612bb857612bb76127c1565b5b92915050565b60006040820190508181036000830152612bd88185612326565b90508181036020830152612bec8184612326565b90509392505050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c2b602083611d1c565b9150612c3682612bf5565b602082019050919050565b60006020820190508181036000830152612c5a81612c1e565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cbd602183611d1c565b9150612cc882612c61565b604082019050919050565b60006020820190508181036000830152612cec81612cb0565b9050919050565b6000604082019050612d086000830185611c2c565b612d156020830184611c2c565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000612d78602983611d1c565b9150612d8382612d1c565b604082019050919050565b60006020820190508181036000830152612da781612d6b565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612dd582612dae565b612ddf8185612db9565b9350612def818560208601611d2d565b612df881611d57565b840191505092915050565b600060a082019050612e1860008301886123a6565b612e2560208301876123a6565b8181036040830152612e378186612326565b90508181036060830152612e4b8185612326565b90508181036080830152612e5f8184612dca565b90509695505050505050565b600081519050612e7a81611c82565b92915050565b600060208284031215612e9657612e95611b4e565b5b6000612ea484828501612e6b565b91505092915050565b60008160e01c9050919050565b600060033d1115612ed95760046000803e612ed6600051612ead565b90505b90565b600060443d10612f6957612eee611b44565b60043d036004823e80513d602482011167ffffffffffffffff82111715612f16575050612f69565b808201805167ffffffffffffffff811115612f345750505050612f69565b80602083010160043d038501811115612f51575050505050612f69565b612f6082602001850186611e24565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000612fc8603483611d1c565b9150612fd382612f6c565b604082019050919050565b60006020820190508181036000830152612ff781612fbb565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b600061305a602883611d1c565b915061306582612ffe565b604082019050919050565b600060208201905081810360008301526130898161304d565b9050919050565b600060a0820190506130a560008301886123a6565b6130b260208301876123a6565b6130bf6040830186611c2c565b6130cc6060830185611c2c565b81810360808301526130de8184612dca565b9050969550505050505056fea2646970667358221220f0162144fd6b62766c2b25255d1b176590a9505ac57f40f7e4b37999e31c6cb364736f6c63430008120033697066733a2f2f516d5036624e55614473566b4e6137754a575451757964364771646f6161747a76627270445674746b4e6b4c41592f7b69647d2e6a736f6e
Deployed ByteCode Sourcemap
38456:1196:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21950:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20973:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38500:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21694:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23868:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39392:257;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39289:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22346:499;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37901:103;;;:::i;:::-;;37666:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38537:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22918:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38749:533;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23145:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23385:406;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38012:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21950:230;22036:7;22083:1;22064:21;;:7;:21;;;22056:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22150:9;:13;22160:2;22150:13;;;;;;;;;;;:22;22164:7;22150:22;;;;;;;;;;;;;;;;22143:29;;21950:230;;;;:::o;20973:310::-;21075:4;21127:26;21112:41;;;:11;:41;;;;:110;;;;21185:37;21170:52;;;:11;:52;;;;21112:110;:163;;;;21239:36;21263:11;21239:23;:36::i;:::-;21112:163;21092:183;;20973:310;;;:::o;38500:30::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21694:105::-;21754:13;21787:4;21780:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21694:105;;;:::o;23868:438::-;24109:12;:10;:12::i;:::-;24101:20;;:4;:20;;;:60;;;;24125:36;24142:4;24148:12;:10;:12::i;:::-;24125:16;:36::i;:::-;24101:60;24079:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;24246:52;24269:4;24275:2;24279:3;24284:7;24293:4;24246:22;:52::i;:::-;23868:438;;;;;:::o;39392:257::-;37625:13;:11;:13::i;:::-;39528:9:::1;39523:119;39547:2;;:9;;39543:1;:13;39523:119;;;39616:2;;39619:1;39616:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;39583:47;;39610:4;39583:47;;39598:10;39583:47;;;39623:3;39628:1;39583:47;;;;;;;:::i;:::-;;;;;;;;39558:3;;;;;:::i;:::-;;;;39523:119;;;;39392:257:::0;;;;:::o;39289:95::-;37625:13;:11;:13::i;:::-;39358:18:::1;39364:2;39367:3;39371:1;39358:18;;;;;;;;;;;::::0;:5:::1;:18::i;:::-;39289:95:::0;;:::o;22346:499::-;22482:16;22538:3;:10;22519:8;:15;:29;22511:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;22607:30;22654:8;:15;22640:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22607:63;;22688:9;22683:122;22707:8;:15;22703:1;:19;22683:122;;;22763:30;22773:8;22782:1;22773:11;;;;;;;;:::i;:::-;;;;;;;;22786:3;22790:1;22786:6;;;;;;;;:::i;:::-;;;;;;;;22763:9;:30::i;:::-;22744:13;22758:1;22744:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;22724:3;;;;:::i;:::-;;;22683:122;;;;22824:13;22817:20;;;22346:499;;;;:::o;37901:103::-;37625:13;:11;:13::i;:::-;37966:30:::1;37993:1;37966:18;:30::i;:::-;37901:103::o:0;37666:87::-;37712:7;37739:6;;;;;;;;;;;37732:13;;37666:87;:::o;38537:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22918:155::-;23013:52;23032:12;:10;:12::i;:::-;23046:8;23056;23013:18;:52::i;:::-;22918:155;;:::o;38749:533::-;37625:13;:11;:13::i;:::-;38837:9:::1;38832:443;38856:2;;:9;;38852:1;:13;38832:443;;;38887:17;39054:5;;39071:12;39061:23;39037:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38997:115;;;;;;38963:172;;38887:282;;39227:2;;39230:1;39227:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;39189:52;;39216:9;39189:52;;39204:10;39189:52;;;39234:3;39239:1;39189:52;;;;;;;:::i;:::-;;;;;;;;39256:5;;:7;;;;;;;;;:::i;:::-;;;;;;38872:403;38867:3;;;;;:::i;:::-;;;;38832:443;;;;38749:533:::0;;;:::o;23145:168::-;23244:4;23268:18;:27;23287:7;23268:27;;;;;;;;;;;;;;;:37;23296:8;23268:37;;;;;;;;;;;;;;;;;;;;;;;;;23261:44;;23145:168;;;;:::o;23385:406::-;23601:12;:10;:12::i;:::-;23593:20;;:4;:20;;;:60;;;;23617:36;23634:4;23640:12;:10;:12::i;:::-;23617:16;:36::i;:::-;23593:60;23571:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;23738:45;23756:4;23762:2;23766;23770:6;23778:4;23738:17;:45::i;:::-;23385:406;;;;;:::o;38012:238::-;37625:13;:11;:13::i;:::-;38135:1:::1;38115:22;;:8;:22;;::::0;38093:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38214:28;38233:8;38214:18;:28::i;:::-;38012:238:::0;:::o;12308:157::-;12393:4;12432:25;12417:40;;;:11;:40;;;;12410:47;;12308:157;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;26102:1146::-;26329:7;:14;26315:3;:10;:28;26307:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;26421:1;26407:16;;:2;:16;;;26399:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;26478:16;26497:12;:10;:12::i;:::-;26478:31;;26522:60;26543:8;26553:4;26559:2;26563:3;26568:7;26577:4;26522:20;:60::i;:::-;26600:9;26595:421;26619:3;:10;26615:1;:14;26595:421;;;26651:10;26664:3;26668:1;26664:6;;;;;;;;:::i;:::-;;;;;;;;26651:19;;26685:14;26702:7;26710:1;26702:10;;;;;;;;:::i;:::-;;;;;;;;26685:27;;26729:19;26751:9;:13;26761:2;26751:13;;;;;;;;;;;:19;26765:4;26751:19;;;;;;;;;;;;;;;;26729:41;;26808:6;26793:11;:21;;26785:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;26941:6;26927:11;:20;26905:9;:13;26915:2;26905:13;;;;;;;;;;;:19;26919:4;26905:19;;;;;;;;;;;;;;;:42;;;;26998:6;26977:9;:13;26987:2;26977:13;;;;;;;;;;;:17;26991:2;26977:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;26636:380;;;26631:3;;;;:::i;:::-;;;26595:421;;;;27063:2;27033:47;;27057:4;27033:47;;27047:8;27033:47;;;27067:3;27072:7;27033:47;;;;;;;:::i;:::-;;;;;;;;27093:59;27113:8;27123:4;27129:2;27133:3;27138:7;27147:4;27093:19;:59::i;:::-;27165:75;27201:8;27211:4;27217:2;27221:3;27226:7;27235:4;27165:35;:75::i;:::-;26296:952;26102:1146;;;;;:::o;37761:132::-;37836:12;:10;:12::i;:::-;37825:23;;:7;:5;:7::i;:::-;:23;;;37817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37761:132::o;28566:686::-;28690:1;28676:16;;:2;:16;;;28668:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;28743:16;28762:12;:10;:12::i;:::-;28743:31;;28785:20;28808:21;28826:2;28808:17;:21::i;:::-;28785:44;;28840:24;28867:25;28885:6;28867:17;:25::i;:::-;28840:52;;28905:66;28926:8;28944:1;28948:2;28952:3;28957:7;28966:4;28905:20;:66::i;:::-;29005:6;28984:9;:13;28994:2;28984:13;;;;;;;;;;;:17;28998:2;28984:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;29064:2;29027:52;;29060:1;29027:52;;29042:8;29027:52;;;29068:2;29072:6;29027:52;;;;;;;:::i;:::-;;;;;;;;29092:65;29112:8;29130:1;29134:2;29138:3;29143:7;29152:4;29092:19;:65::i;:::-;29170:74;29201:8;29219:1;29223:2;29227;29231:6;29239:4;29170:30;:74::i;:::-;28657:595;;;28566:686;;;;:::o;38258:191::-;38332:16;38351:6;;;;;;;;;;;38332:25;;38377:8;38368:6;;:17;;;;;;;;;;;;;;;;;;38432:8;38401:40;;38422:8;38401:40;;;;;;;;;;;;38321:128;38258:191;:::o;32868:297::-;32989:8;32980:17;;:5;:17;;;32972:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33092:8;33054:18;:25;33073:5;33054:25;;;;;;;;;;;;;;;:35;33080:8;33054:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;33138:8;33116:41;;33131:5;33116:41;;;33148:8;33116:41;;;;;;:::i;:::-;;;;;;;;32868:297;;;:::o;24770:974::-;24972:1;24958:16;;:2;:16;;;24950:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;25029:16;25048:12;:10;:12::i;:::-;25029:31;;25071:20;25094:21;25112:2;25094:17;:21::i;:::-;25071:44;;25126:24;25153:25;25171:6;25153:17;:25::i;:::-;25126:52;;25191:60;25212:8;25222:4;25228:2;25232:3;25237:7;25246:4;25191:20;:60::i;:::-;25264:19;25286:9;:13;25296:2;25286:13;;;;;;;;;;;:19;25300:4;25286:19;;;;;;;;;;;;;;;;25264:41;;25339:6;25324:11;:21;;25316:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;25464:6;25450:11;:20;25428:9;:13;25438:2;25428:13;;;;;;;;;;;:19;25442:4;25428:19;;;;;;;;;;;;;;;:42;;;;25513:6;25492:9;:13;25502:2;25492:13;;;;;;;;;;;:17;25506:2;25492:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;25568:2;25537:46;;25562:4;25537:46;;25552:8;25537:46;;;25572:2;25576:6;25537:46;;;;;;;:::i;:::-;;;;;;;;25596:59;25616:8;25626:4;25632:2;25636:3;25641:7;25650:4;25596:19;:59::i;:::-;25668:68;25699:8;25709:4;25715:2;25719;25723:6;25731:4;25668:30;:68::i;:::-;24939:805;;;;24770:974;;;;;:::o;34123:221::-;;;;;;;:::o;35299:220::-;;;;;;;:::o;36279:813::-;36519:15;:2;:13;;;:15::i;:::-;36515:570;;;36572:2;36555:43;;;36599:8;36609:4;36615:3;36620:7;36629:4;36555:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36551:523;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;36947:6;36940:14;;;;;;;;;;;:::i;:::-;;;;;;;;36551:523;;;36996:62;;;;;;;;;;:::i;:::-;;;;;;;;36551:523;36728:48;;;36716:60;;;:8;:60;;;;36712:159;;36801:50;;;;;;;;;;:::i;:::-;;;;;;;;36712:159;36635:251;36515:570;36279:813;;;;;;:::o;37100:198::-;37166:16;37195:22;37234:1;37220:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37195:41;;37258:7;37247:5;37253:1;37247:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;37285:5;37278:12;;;37100:198;;;:::o;35527:744::-;35742:15;:2;:13;;;:15::i;:::-;35738:526;;;35795:2;35778:38;;;35817:8;35827:4;35833:2;35837:6;35845:4;35778:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35774:479;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;36126:6;36119:14;;;;;;;;;;;:::i;:::-;;;;;;;;35774:479;;;36175:62;;;;;;;;;;:::i;:::-;;;;;;;;35774:479;35912:43;;;35900:55;;;:8;:55;;;;35896:154;;35980:50;;;;;;;;;;:::i;:::-;;;;;;;;35896:154;35851:214;35738:526;35527:744;;;;;;:::o;2367:326::-;2427:4;2684:1;2662:7;:19;;;:23;2655:30;;2367:326;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:77::-;878:7;907:5;896:16;;841:77;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:474::-;1265:6;1273;1322:2;1310:9;1301:7;1297:23;1293:32;1290:119;;;1328:79;;:::i;:::-;1290:119;1448:1;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1419:117;1575:2;1601:53;1646:7;1637:6;1626:9;1622:22;1601:53;:::i;:::-;1591:63;;1546:118;1197:474;;;;;:::o;1677:118::-;1764:24;1782:5;1764:24;:::i;:::-;1759:3;1752:37;1677:118;;:::o;1801:222::-;1894:4;1932:2;1921:9;1917:18;1909:26;;1945:71;2013:1;2002:9;1998:17;1989:6;1945:71;:::i;:::-;1801:222;;;;:::o;2029:149::-;2065:7;2105:66;2098:5;2094:78;2083:89;;2029:149;;;:::o;2184:120::-;2256:23;2273:5;2256:23;:::i;:::-;2249:5;2246:34;2236:62;;2294:1;2291;2284:12;2236:62;2184:120;:::o;2310:137::-;2355:5;2393:6;2380:20;2371:29;;2409:32;2435:5;2409:32;:::i;:::-;2310:137;;;;:::o;2453:327::-;2511:6;2560:2;2548:9;2539:7;2535:23;2531:32;2528:119;;;2566:79;;:::i;:::-;2528:119;2686:1;2711:52;2755:7;2746:6;2735:9;2731:22;2711:52;:::i;:::-;2701:62;;2657:116;2453:327;;;;:::o;2786:90::-;2820:7;2863:5;2856:13;2849:21;2838:32;;2786:90;;;:::o;2882:109::-;2963:21;2978:5;2963:21;:::i;:::-;2958:3;2951:34;2882:109;;:::o;2997:210::-;3084:4;3122:2;3111:9;3107:18;3099:26;;3135:65;3197:1;3186:9;3182:17;3173:6;3135:65;:::i;:::-;2997:210;;;;:::o;3213:99::-;3265:6;3299:5;3293:12;3283:22;;3213:99;;;:::o;3318:169::-;3402:11;3436:6;3431:3;3424:19;3476:4;3471:3;3467:14;3452:29;;3318:169;;;;:::o;3493:246::-;3574:1;3584:113;3598:6;3595:1;3592:13;3584:113;;;3683:1;3678:3;3674:11;3668:18;3664:1;3659:3;3655:11;3648:39;3620:2;3617:1;3613:10;3608:15;;3584:113;;;3731:1;3722:6;3717:3;3713:16;3706:27;3555:184;3493:246;;;:::o;3745:102::-;3786:6;3837:2;3833:7;3828:2;3821:5;3817:14;3813:28;3803:38;;3745:102;;;:::o;3853:377::-;3941:3;3969:39;4002:5;3969:39;:::i;:::-;4024:71;4088:6;4083:3;4024:71;:::i;:::-;4017:78;;4104:65;4162:6;4157:3;4150:4;4143:5;4139:16;4104:65;:::i;:::-;4194:29;4216:6;4194:29;:::i;:::-;4189:3;4185:39;4178:46;;3945:285;3853:377;;;;:::o;4236:313::-;4349:4;4387:2;4376:9;4372:18;4364:26;;4436:9;4430:4;4426:20;4422:1;4411:9;4407:17;4400:47;4464:78;4537:4;4528:6;4464:78;:::i;:::-;4456:86;;4236:313;;;;:::o;4555:329::-;4614:6;4663:2;4651:9;4642:7;4638:23;4634:32;4631:119;;;4669:79;;:::i;:::-;4631:119;4789:1;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4760:117;4555:329;;;;:::o;4890:117::-;4999:1;4996;4989:12;5013:180;5061:77;5058:1;5051:88;5158:4;5155:1;5148:15;5182:4;5179:1;5172:15;5199:281;5282:27;5304:4;5282:27;:::i;:::-;5274:6;5270:40;5412:6;5400:10;5397:22;5376:18;5364:10;5361:34;5358:62;5355:88;;;5423:18;;:::i;:::-;5355:88;5463:10;5459:2;5452:22;5242:238;5199:281;;:::o;5486:129::-;5520:6;5547:20;;:::i;:::-;5537:30;;5576:33;5604:4;5596:6;5576:33;:::i;:::-;5486:129;;;:::o;5621:311::-;5698:4;5788:18;5780:6;5777:30;5774:56;;;5810:18;;:::i;:::-;5774:56;5860:4;5852:6;5848:17;5840:25;;5920:4;5914;5910:15;5902:23;;5621:311;;;:::o;5938:117::-;6047:1;6044;6037:12;6078:710;6174:5;6199:81;6215:64;6272:6;6215:64;:::i;:::-;6199:81;:::i;:::-;6190:90;;6300:5;6329:6;6322:5;6315:21;6363:4;6356:5;6352:16;6345:23;;6416:4;6408:6;6404:17;6396:6;6392:30;6445:3;6437:6;6434:15;6431:122;;;6464:79;;:::i;:::-;6431:122;6579:6;6562:220;6596:6;6591:3;6588:15;6562:220;;;6671:3;6700:37;6733:3;6721:10;6700:37;:::i;:::-;6695:3;6688:50;6767:4;6762:3;6758:14;6751:21;;6638:144;6622:4;6617:3;6613:14;6606:21;;6562:220;;;6566:21;6180:608;;6078:710;;;;;:::o;6811:370::-;6882:5;6931:3;6924:4;6916:6;6912:17;6908:27;6898:122;;6939:79;;:::i;:::-;6898:122;7056:6;7043:20;7081:94;7171:3;7163:6;7156:4;7148:6;7144:17;7081:94;:::i;:::-;7072:103;;6888:293;6811:370;;;;:::o;7187:117::-;7296:1;7293;7286:12;7310:307;7371:4;7461:18;7453:6;7450:30;7447:56;;;7483:18;;:::i;:::-;7447:56;7521:29;7543:6;7521:29;:::i;:::-;7513:37;;7605:4;7599;7595:15;7587:23;;7310:307;;;:::o;7623:146::-;7720:6;7715:3;7710;7697:30;7761:1;7752:6;7747:3;7743:16;7736:27;7623:146;;;:::o;7775:423::-;7852:5;7877:65;7893:48;7934:6;7893:48;:::i;:::-;7877:65;:::i;:::-;7868:74;;7965:6;7958:5;7951:21;8003:4;7996:5;7992:16;8041:3;8032:6;8027:3;8023:16;8020:25;8017:112;;;8048:79;;:::i;:::-;8017:112;8138:54;8185:6;8180:3;8175;8138:54;:::i;:::-;7858:340;7775:423;;;;;:::o;8217:338::-;8272:5;8321:3;8314:4;8306:6;8302:17;8298:27;8288:122;;8329:79;;:::i;:::-;8288:122;8446:6;8433:20;8471:78;8545:3;8537:6;8530:4;8522:6;8518:17;8471:78;:::i;:::-;8462:87;;8278:277;8217:338;;;;:::o;8561:1509::-;8715:6;8723;8731;8739;8747;8796:3;8784:9;8775:7;8771:23;8767:33;8764:120;;;8803:79;;:::i;:::-;8764:120;8923:1;8948:53;8993:7;8984:6;8973:9;8969:22;8948:53;:::i;:::-;8938:63;;8894:117;9050:2;9076:53;9121:7;9112:6;9101:9;9097:22;9076:53;:::i;:::-;9066:63;;9021:118;9206:2;9195:9;9191:18;9178:32;9237:18;9229:6;9226:30;9223:117;;;9259:79;;:::i;:::-;9223:117;9364:78;9434:7;9425:6;9414:9;9410:22;9364:78;:::i;:::-;9354:88;;9149:303;9519:2;9508:9;9504:18;9491:32;9550:18;9542:6;9539:30;9536:117;;;9572:79;;:::i;:::-;9536:117;9677:78;9747:7;9738:6;9727:9;9723:22;9677:78;:::i;:::-;9667:88;;9462:303;9832:3;9821:9;9817:19;9804:33;9864:18;9856:6;9853:30;9850:117;;;9886:79;;:::i;:::-;9850:117;9991:62;10045:7;10036:6;10025:9;10021:22;9991:62;:::i;:::-;9981:72;;9775:288;8561:1509;;;;;;;;:::o;10076:117::-;10185:1;10182;10175:12;10216:568;10289:8;10299:6;10349:3;10342:4;10334:6;10330:17;10326:27;10316:122;;10357:79;;:::i;:::-;10316:122;10470:6;10457:20;10447:30;;10500:18;10492:6;10489:30;10486:117;;;10522:79;;:::i;:::-;10486:117;10636:4;10628:6;10624:17;10612:29;;10690:3;10682:4;10674:6;10670:17;10660:8;10656:32;10653:41;10650:128;;;10697:79;;:::i;:::-;10650:128;10216:568;;;;;:::o;10790:849::-;10894:6;10902;10910;10918;10967:2;10955:9;10946:7;10942:23;10938:32;10935:119;;;10973:79;;:::i;:::-;10935:119;11121:1;11110:9;11106:17;11093:31;11151:18;11143:6;11140:30;11137:117;;;11173:79;;:::i;:::-;11137:117;11286:80;11358:7;11349:6;11338:9;11334:22;11286:80;:::i;:::-;11268:98;;;;11064:312;11415:2;11441:53;11486:7;11477:6;11466:9;11462:22;11441:53;:::i;:::-;11431:63;;11386:118;11543:2;11569:53;11614:7;11605:6;11594:9;11590:22;11569:53;:::i;:::-;11559:63;;11514:118;10790:849;;;;;;;:::o;11645:311::-;11722:4;11812:18;11804:6;11801:30;11798:56;;;11834:18;;:::i;:::-;11798:56;11884:4;11876:6;11872:17;11864:25;;11944:4;11938;11934:15;11926:23;;11645:311;;;:::o;11979:710::-;12075:5;12100:81;12116:64;12173:6;12116:64;:::i;:::-;12100:81;:::i;:::-;12091:90;;12201:5;12230:6;12223:5;12216:21;12264:4;12257:5;12253:16;12246:23;;12317:4;12309:6;12305:17;12297:6;12293:30;12346:3;12338:6;12335:15;12332:122;;;12365:79;;:::i;:::-;12332:122;12480:6;12463:220;12497:6;12492:3;12489:15;12463:220;;;12572:3;12601:37;12634:3;12622:10;12601:37;:::i;:::-;12596:3;12589:50;12668:4;12663:3;12659:14;12652:21;;12539:144;12523:4;12518:3;12514:14;12507:21;;12463:220;;;12467:21;12081:608;;11979:710;;;;;:::o;12712:370::-;12783:5;12832:3;12825:4;12817:6;12813:17;12809:27;12799:122;;12840:79;;:::i;:::-;12799:122;12957:6;12944:20;12982:94;13072:3;13064:6;13057:4;13049:6;13045:17;12982:94;:::i;:::-;12973:103;;12789:293;12712:370;;;;:::o;13088:894::-;13206:6;13214;13263:2;13251:9;13242:7;13238:23;13234:32;13231:119;;;13269:79;;:::i;:::-;13231:119;13417:1;13406:9;13402:17;13389:31;13447:18;13439:6;13436:30;13433:117;;;13469:79;;:::i;:::-;13433:117;13574:78;13644:7;13635:6;13624:9;13620:22;13574:78;:::i;:::-;13564:88;;13360:302;13729:2;13718:9;13714:18;13701:32;13760:18;13752:6;13749:30;13746:117;;;13782:79;;:::i;:::-;13746:117;13887:78;13957:7;13948:6;13937:9;13933:22;13887:78;:::i;:::-;13877:88;;13672:303;13088:894;;;;;:::o;13988:114::-;14055:6;14089:5;14083:12;14073:22;;13988:114;;;:::o;14108:184::-;14207:11;14241:6;14236:3;14229:19;14281:4;14276:3;14272:14;14257:29;;14108:184;;;;:::o;14298:132::-;14365:4;14388:3;14380:11;;14418:4;14413:3;14409:14;14401:22;;14298:132;;;:::o;14436:108::-;14513:24;14531:5;14513:24;:::i;:::-;14508:3;14501:37;14436:108;;:::o;14550:179::-;14619:10;14640:46;14682:3;14674:6;14640:46;:::i;:::-;14718:4;14713:3;14709:14;14695:28;;14550:179;;;;:::o;14735:113::-;14805:4;14837;14832:3;14828:14;14820:22;;14735:113;;;:::o;14884:732::-;15003:3;15032:54;15080:5;15032:54;:::i;:::-;15102:86;15181:6;15176:3;15102:86;:::i;:::-;15095:93;;15212:56;15262:5;15212:56;:::i;:::-;15291:7;15322:1;15307:284;15332:6;15329:1;15326:13;15307:284;;;15408:6;15402:13;15435:63;15494:3;15479:13;15435:63;:::i;:::-;15428:70;;15521:60;15574:6;15521:60;:::i;:::-;15511:70;;15367:224;15354:1;15351;15347:9;15342:14;;15307:284;;;15311:14;15607:3;15600:10;;15008:608;;;14884:732;;;;:::o;15622:373::-;15765:4;15803:2;15792:9;15788:18;15780:26;;15852:9;15846:4;15842:20;15838:1;15827:9;15823:17;15816:47;15880:108;15983:4;15974:6;15880:108;:::i;:::-;15872:116;;15622:373;;;;:::o;16001:118::-;16088:24;16106:5;16088:24;:::i;:::-;16083:3;16076:37;16001:118;;:::o;16125:222::-;16218:4;16256:2;16245:9;16241:18;16233:26;;16269:71;16337:1;16326:9;16322:17;16313:6;16269:71;:::i;:::-;16125:222;;;;:::o;16353:116::-;16423:21;16438:5;16423:21;:::i;:::-;16416:5;16413:32;16403:60;;16459:1;16456;16449:12;16403:60;16353:116;:::o;16475:133::-;16518:5;16556:6;16543:20;16534:29;;16572:30;16596:5;16572:30;:::i;:::-;16475:133;;;;:::o;16614:468::-;16679:6;16687;16736:2;16724:9;16715:7;16711:23;16707:32;16704:119;;;16742:79;;:::i;:::-;16704:119;16862:1;16887:53;16932:7;16923:6;16912:9;16908:22;16887:53;:::i;:::-;16877:63;;16833:117;16989:2;17015:50;17057:7;17048:6;17037:9;17033:22;17015:50;:::i;:::-;17005:60;;16960:115;16614:468;;;;;:::o;17088:704::-;17183:6;17191;17199;17248:2;17236:9;17227:7;17223:23;17219:32;17216:119;;;17254:79;;:::i;:::-;17216:119;17402:1;17391:9;17387:17;17374:31;17432:18;17424:6;17421:30;17418:117;;;17454:79;;:::i;:::-;17418:117;17567:80;17639:7;17630:6;17619:9;17615:22;17567:80;:::i;:::-;17549:98;;;;17345:312;17696:2;17722:53;17767:7;17758:6;17747:9;17743:22;17722:53;:::i;:::-;17712:63;;17667:118;17088:704;;;;;:::o;17798:474::-;17866:6;17874;17923:2;17911:9;17902:7;17898:23;17894:32;17891:119;;;17929:79;;:::i;:::-;17891:119;18049:1;18074:53;18119:7;18110:6;18099:9;18095:22;18074:53;:::i;:::-;18064:63;;18020:117;18176:2;18202:53;18247:7;18238:6;18227:9;18223:22;18202:53;:::i;:::-;18192:63;;18147:118;17798:474;;;;;:::o;18278:1089::-;18382:6;18390;18398;18406;18414;18463:3;18451:9;18442:7;18438:23;18434:33;18431:120;;;18470:79;;:::i;:::-;18431:120;18590:1;18615:53;18660:7;18651:6;18640:9;18636:22;18615:53;:::i;:::-;18605:63;;18561:117;18717:2;18743:53;18788:7;18779:6;18768:9;18764:22;18743:53;:::i;:::-;18733:63;;18688:118;18845:2;18871:53;18916:7;18907:6;18896:9;18892:22;18871:53;:::i;:::-;18861:63;;18816:118;18973:2;18999:53;19044:7;19035:6;19024:9;19020:22;18999:53;:::i;:::-;18989:63;;18944:118;19129:3;19118:9;19114:19;19101:33;19161:18;19153:6;19150:30;19147:117;;;19183:79;;:::i;:::-;19147:117;19288:62;19342:7;19333:6;19322:9;19318:22;19288:62;:::i;:::-;19278:72;;19072:288;18278:1089;;;;;;;;:::o;19373:329::-;19432:6;19481:2;19469:9;19460:7;19456:23;19452:32;19449:119;;;19487:79;;:::i;:::-;19449:119;19607:1;19632:53;19677:7;19668:6;19657:9;19653:22;19632:53;:::i;:::-;19622:63;;19578:117;19373:329;;;;:::o;19708:229::-;19848:34;19844:1;19836:6;19832:14;19825:58;19917:12;19912:2;19904:6;19900:15;19893:37;19708:229;:::o;19943:366::-;20085:3;20106:67;20170:2;20165:3;20106:67;:::i;:::-;20099:74;;20182:93;20271:3;20182:93;:::i;:::-;20300:2;20295:3;20291:12;20284:19;;19943:366;;;:::o;20315:419::-;20481:4;20519:2;20508:9;20504:18;20496:26;;20568:9;20562:4;20558:20;20554:1;20543:9;20539:17;20532:47;20596:131;20722:4;20596:131;:::i;:::-;20588:139;;20315:419;;;:::o;20740:180::-;20788:77;20785:1;20778:88;20885:4;20882:1;20875:15;20909:4;20906:1;20899:15;20926:320;20970:6;21007:1;21001:4;20997:12;20987:22;;21054:1;21048:4;21044:12;21075:18;21065:81;;21131:4;21123:6;21119:17;21109:27;;21065:81;21193:2;21185:6;21182:14;21162:18;21159:38;21156:84;;21212:18;;:::i;:::-;21156:84;20977:269;20926:320;;;:::o;21252:233::-;21392:34;21388:1;21380:6;21376:14;21369:58;21461:16;21456:2;21448:6;21444:15;21437:41;21252:233;:::o;21491:366::-;21633:3;21654:67;21718:2;21713:3;21654:67;:::i;:::-;21647:74;;21730:93;21819:3;21730:93;:::i;:::-;21848:2;21843:3;21839:12;21832:19;;21491:366;;;:::o;21863:419::-;22029:4;22067:2;22056:9;22052:18;22044:26;;22116:9;22110:4;22106:20;22102:1;22091:9;22087:17;22080:47;22144:131;22270:4;22144:131;:::i;:::-;22136:139;;21863:419;;;:::o;22288:180::-;22336:77;22333:1;22326:88;22433:4;22430:1;22423:15;22457:4;22454:1;22447:15;22474:85;22519:7;22548:5;22537:16;;22474:85;;;:::o;22565:60::-;22593:3;22614:5;22607:12;;22565:60;;;:::o;22631:158::-;22689:9;22722:61;22740:42;22749:32;22775:5;22749:32;:::i;:::-;22740:42;:::i;:::-;22722:61;:::i;:::-;22709:74;;22631:158;;;:::o;22795:147::-;22890:45;22929:5;22890:45;:::i;:::-;22885:3;22878:58;22795:147;;:::o;22948:348::-;23077:4;23115:2;23104:9;23100:18;23092:26;;23128:71;23196:1;23185:9;23181:17;23172:6;23128:71;:::i;:::-;23209:80;23285:2;23274:9;23270:18;23261:6;23209:80;:::i;:::-;22948:348;;;;;:::o;23302:180::-;23350:77;23347:1;23340:88;23447:4;23444:1;23437:15;23471:4;23468:1;23461:15;23488:233;23527:3;23550:24;23568:5;23550:24;:::i;:::-;23541:33;;23596:66;23589:5;23586:77;23583:103;;23666:18;;:::i;:::-;23583:103;23713:1;23706:5;23702:13;23695:20;;23488:233;;;:::o;23727:228::-;23867:34;23863:1;23855:6;23851:14;23844:58;23936:11;23931:2;23923:6;23919:15;23912:36;23727:228;:::o;23961:366::-;24103:3;24124:67;24188:2;24183:3;24124:67;:::i;:::-;24117:74;;24200:93;24289:3;24200:93;:::i;:::-;24318:2;24313:3;24309:12;24302:19;;23961:366;;;:::o;24333:419::-;24499:4;24537:2;24526:9;24522:18;24514:26;;24586:9;24580:4;24576:20;24572:1;24561:9;24557:17;24550:47;24614:131;24740:4;24614:131;:::i;:::-;24606:139;;24333:419;;;:::o;24758:79::-;24797:7;24826:5;24815:16;;24758:79;;;:::o;24843:157::-;24948:45;24968:24;24986:5;24968:24;:::i;:::-;24948:45;:::i;:::-;24943:3;24936:58;24843:157;;:::o;25006:77::-;25043:7;25072:5;25061:16;;25006:77;;;:::o;25089:79::-;25128:7;25157:5;25146:16;;25089:79;;;:::o;25174:157::-;25279:45;25299:24;25317:5;25299:24;:::i;:::-;25279:45;:::i;:::-;25274:3;25267:58;25174:157;;:::o;25337:397::-;25477:3;25492:75;25563:3;25554:6;25492:75;:::i;:::-;25592:2;25587:3;25583:12;25576:19;;25605:75;25676:3;25667:6;25605:75;:::i;:::-;25705:2;25700:3;25696:12;25689:19;;25725:3;25718:10;;25337:397;;;;;:::o;25740:225::-;25880:34;25876:1;25868:6;25864:14;25857:58;25949:8;25944:2;25936:6;25932:15;25925:33;25740:225;:::o;25971:366::-;26113:3;26134:67;26198:2;26193:3;26134:67;:::i;:::-;26127:74;;26210:93;26299:3;26210:93;:::i;:::-;26328:2;26323:3;26319:12;26312:19;;25971:366;;;:::o;26343:419::-;26509:4;26547:2;26536:9;26532:18;26524:26;;26596:9;26590:4;26586:20;26582:1;26571:9;26567:17;26560:47;26624:131;26750:4;26624:131;:::i;:::-;26616:139;;26343:419;;;:::o;26768:227::-;26908:34;26904:1;26896:6;26892:14;26885:58;26977:10;26972:2;26964:6;26960:15;26953:35;26768:227;:::o;27001:366::-;27143:3;27164:67;27228:2;27223:3;27164:67;:::i;:::-;27157:74;;27240:93;27329:3;27240:93;:::i;:::-;27358:2;27353:3;27349:12;27342:19;;27001:366;;;:::o;27373:419::-;27539:4;27577:2;27566:9;27562:18;27554:26;;27626:9;27620:4;27616:20;27612:1;27601:9;27597:17;27590:47;27654:131;27780:4;27654:131;:::i;:::-;27646:139;;27373:419;;;:::o;27798:224::-;27938:34;27934:1;27926:6;27922:14;27915:58;28007:7;28002:2;27994:6;27990:15;27983:32;27798:224;:::o;28028:366::-;28170:3;28191:67;28255:2;28250:3;28191:67;:::i;:::-;28184:74;;28267:93;28356:3;28267:93;:::i;:::-;28385:2;28380:3;28376:12;28369:19;;28028:366;;;:::o;28400:419::-;28566:4;28604:2;28593:9;28589:18;28581:26;;28653:9;28647:4;28643:20;28639:1;28628:9;28624:17;28617:47;28681:131;28807:4;28681:131;:::i;:::-;28673:139;;28400:419;;;:::o;28825:229::-;28965:34;28961:1;28953:6;28949:14;28942:58;29034:12;29029:2;29021:6;29017:15;29010:37;28825:229;:::o;29060:366::-;29202:3;29223:67;29287:2;29282:3;29223:67;:::i;:::-;29216:74;;29299:93;29388:3;29299:93;:::i;:::-;29417:2;29412:3;29408:12;29401:19;;29060:366;;;:::o;29432:419::-;29598:4;29636:2;29625:9;29621:18;29613:26;;29685:9;29679:4;29675:20;29671:1;29660:9;29656:17;29649:47;29713:131;29839:4;29713:131;:::i;:::-;29705:139;;29432:419;;;:::o;29857:191::-;29897:3;29916:20;29934:1;29916:20;:::i;:::-;29911:25;;29950:20;29968:1;29950:20;:::i;:::-;29945:25;;29993:1;29990;29986:9;29979:16;;30014:3;30011:1;30008:10;30005:36;;;30021:18;;:::i;:::-;30005:36;29857:191;;;;:::o;30054:634::-;30275:4;30313:2;30302:9;30298:18;30290:26;;30362:9;30356:4;30352:20;30348:1;30337:9;30333:17;30326:47;30390:108;30493:4;30484:6;30390:108;:::i;:::-;30382:116;;30545:9;30539:4;30535:20;30530:2;30519:9;30515:18;30508:48;30573:108;30676:4;30667:6;30573:108;:::i;:::-;30565:116;;30054:634;;;;;:::o;30694:182::-;30834:34;30830:1;30822:6;30818:14;30811:58;30694:182;:::o;30882:366::-;31024:3;31045:67;31109:2;31104:3;31045:67;:::i;:::-;31038:74;;31121:93;31210:3;31121:93;:::i;:::-;31239:2;31234:3;31230:12;31223:19;;30882:366;;;:::o;31254:419::-;31420:4;31458:2;31447:9;31443:18;31435:26;;31507:9;31501:4;31497:20;31493:1;31482:9;31478:17;31471:47;31535:131;31661:4;31535:131;:::i;:::-;31527:139;;31254:419;;;:::o;31679:220::-;31819:34;31815:1;31807:6;31803:14;31796:58;31888:3;31883:2;31875:6;31871:15;31864:28;31679:220;:::o;31905:366::-;32047:3;32068:67;32132:2;32127:3;32068:67;:::i;:::-;32061:74;;32144:93;32233:3;32144:93;:::i;:::-;32262:2;32257:3;32253:12;32246:19;;31905:366;;;:::o;32277:419::-;32443:4;32481:2;32470:9;32466:18;32458:26;;32530:9;32524:4;32520:20;32516:1;32505:9;32501:17;32494:47;32558:131;32684:4;32558:131;:::i;:::-;32550:139;;32277:419;;;:::o;32702:332::-;32823:4;32861:2;32850:9;32846:18;32838:26;;32874:71;32942:1;32931:9;32927:17;32918:6;32874:71;:::i;:::-;32955:72;33023:2;33012:9;33008:18;32999:6;32955:72;:::i;:::-;32702:332;;;;;:::o;33040:228::-;33180:34;33176:1;33168:6;33164:14;33157:58;33249:11;33244:2;33236:6;33232:15;33225:36;33040:228;:::o;33274:366::-;33416:3;33437:67;33501:2;33496:3;33437:67;:::i;:::-;33430:74;;33513:93;33602:3;33513:93;:::i;:::-;33631:2;33626:3;33622:12;33615:19;;33274:366;;;:::o;33646:419::-;33812:4;33850:2;33839:9;33835:18;33827:26;;33899:9;33893:4;33889:20;33885:1;33874:9;33870:17;33863:47;33927:131;34053:4;33927:131;:::i;:::-;33919:139;;33646:419;;;:::o;34071:98::-;34122:6;34156:5;34150:12;34140:22;;34071:98;;;:::o;34175:168::-;34258:11;34292:6;34287:3;34280:19;34332:4;34327:3;34323:14;34308:29;;34175:168;;;;:::o;34349:373::-;34435:3;34463:38;34495:5;34463:38;:::i;:::-;34517:70;34580:6;34575:3;34517:70;:::i;:::-;34510:77;;34596:65;34654:6;34649:3;34642:4;34635:5;34631:16;34596:65;:::i;:::-;34686:29;34708:6;34686:29;:::i;:::-;34681:3;34677:39;34670:46;;34439:283;34349:373;;;;:::o;34728:1053::-;35051:4;35089:3;35078:9;35074:19;35066:27;;35103:71;35171:1;35160:9;35156:17;35147:6;35103:71;:::i;:::-;35184:72;35252:2;35241:9;35237:18;35228:6;35184:72;:::i;:::-;35303:9;35297:4;35293:20;35288:2;35277:9;35273:18;35266:48;35331:108;35434:4;35425:6;35331:108;:::i;:::-;35323:116;;35486:9;35480:4;35476:20;35471:2;35460:9;35456:18;35449:48;35514:108;35617:4;35608:6;35514:108;:::i;:::-;35506:116;;35670:9;35664:4;35660:20;35654:3;35643:9;35639:19;35632:49;35698:76;35769:4;35760:6;35698:76;:::i;:::-;35690:84;;34728:1053;;;;;;;;:::o;35787:141::-;35843:5;35874:6;35868:13;35859:22;;35890:32;35916:5;35890:32;:::i;:::-;35787:141;;;;:::o;35934:349::-;36003:6;36052:2;36040:9;36031:7;36027:23;36023:32;36020:119;;;36058:79;;:::i;:::-;36020:119;36178:1;36203:63;36258:7;36249:6;36238:9;36234:22;36203:63;:::i;:::-;36193:73;;36149:127;35934:349;;;;:::o;36289:106::-;36333:8;36382:5;36377:3;36373:15;36352:36;;36289:106;;;:::o;36401:183::-;36436:3;36474:1;36456:16;36453:23;36450:128;;;36512:1;36509;36506;36491:23;36534:34;36565:1;36559:8;36534:34;:::i;:::-;36527:41;;36450:128;36401:183;:::o;36590:711::-;36629:3;36667:4;36649:16;36646:26;36675:5;36643:39;36704:20;;:::i;:::-;36779:1;36761:16;36757:24;36754:1;36748:4;36733:49;36812:4;36806:11;36911:16;36904:4;36896:6;36892:17;36889:39;36856:18;36848:6;36845:30;36829:113;36826:146;;;36957:5;;;;36826:146;37003:6;36997:4;36993:17;37039:3;37033:10;37066:18;37058:6;37055:30;37052:43;;;37088:5;;;;;;37052:43;37136:6;37129:4;37124:3;37120:14;37116:27;37195:1;37177:16;37173:24;37167:4;37163:35;37158:3;37155:44;37152:57;;;37202:5;;;;;;;37152:57;37219;37267:6;37261:4;37257:17;37249:6;37245:30;37239:4;37219:57;:::i;:::-;37292:3;37285:10;;36633:668;;;;;36590:711;;:::o;37307:239::-;37447:34;37443:1;37435:6;37431:14;37424:58;37516:22;37511:2;37503:6;37499:15;37492:47;37307:239;:::o;37552:366::-;37694:3;37715:67;37779:2;37774:3;37715:67;:::i;:::-;37708:74;;37791:93;37880:3;37791:93;:::i;:::-;37909:2;37904:3;37900:12;37893:19;;37552:366;;;:::o;37924:419::-;38090:4;38128:2;38117:9;38113:18;38105:26;;38177:9;38171:4;38167:20;38163:1;38152:9;38148:17;38141:47;38205:131;38331:4;38205:131;:::i;:::-;38197:139;;37924:419;;;:::o;38349:227::-;38489:34;38485:1;38477:6;38473:14;38466:58;38558:10;38553:2;38545:6;38541:15;38534:35;38349:227;:::o;38582:366::-;38724:3;38745:67;38809:2;38804:3;38745:67;:::i;:::-;38738:74;;38821:93;38910:3;38821:93;:::i;:::-;38939:2;38934:3;38930:12;38923:19;;38582:366;;;:::o;38954:419::-;39120:4;39158:2;39147:9;39143:18;39135:26;;39207:9;39201:4;39197:20;39193:1;39182:9;39178:17;39171:47;39235:131;39361:4;39235:131;:::i;:::-;39227:139;;38954:419;;;:::o;39379:751::-;39602:4;39640:3;39629:9;39625:19;39617:27;;39654:71;39722:1;39711:9;39707:17;39698:6;39654:71;:::i;:::-;39735:72;39803:2;39792:9;39788:18;39779:6;39735:72;:::i;:::-;39817;39885:2;39874:9;39870:18;39861:6;39817:72;:::i;:::-;39899;39967:2;39956:9;39952:18;39943:6;39899:72;:::i;:::-;40019:9;40013:4;40009:20;40003:3;39992:9;39988:19;39981:49;40047:76;40118:4;40109:6;40047:76;:::i;:::-;40039:84;;39379:751;;;;;;;;:::o
Swarm Source
ipfs://f0162144fd6b62766c2b25255d1b176590a9505ac57f40f7e4b37999e31c6cb3
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.