Polygon Sponsored slots available. Book your slot here!
Overview
TokenID:
100000000138415
Transfers:
-
Contract:
Official Site:
[ Download CSV Export ]
OVERVIEW
GensoKishi Online, is the new GameFi and metaverse incarnation of the award winning Nintendo Switch/PS4 game “Elemental Knights”.Update? Click here to update the token ICO / general information
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Genso
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at PolygonScan.com on 2021-12-15 */ // Sources flattened with hardhat v2.6.8 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] // SPDX-License-Identifier: MIT 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/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] 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/[email protected] pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } // File contracts/roles/AccessOperatable.sol pragma solidity ^0.8.0; abstract contract AccessOperatable is AccessControl { bytes32 public constant OPERATOR = keccak256("OPERATOR"); event Paused(address account); event Unpaused(address account); bool public _paused; constructor() { _setRoleAdmin(OPERATOR, DEFAULT_ADMIN_ROLE); _setupRole(OPERATOR, msg.sender); _paused = false; } function addOperator(address account) public onlyOperator() { _setupRole(OPERATOR, account); } modifier onlyOperator() { require(hasRole(OPERATOR, msg.sender), "Must be operator"); _; } modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } function pause() public onlyOperator() whenNotPaused() { _paused = true; emit Paused(msg.sender); } function unpause() public onlyOperator() whenPaused() { _paused = false; emit Unpaused(msg.sender); } } // File contracts/erc/ERC721Mintable.sol pragma solidity ^0.8.0; interface IERC721Mintable { function exists(uint256 _tokenId) external view returns (bool); function mint(address _to, uint256 _tokenId) external; } abstract contract ERC721Mintable is ERC721Enumerable, IERC721Mintable, AccessOperatable { function exists(uint256 tokenId) override public view returns (bool) { return super._exists(tokenId); } function mint(address to, uint256 tokenId) virtual override public onlyOperator() { super._mint(to, tokenId); } function bulkMint(address[] memory _tos, uint256[] memory _tokenIds) public onlyOperator() { require(_tos.length == _tokenIds.length); uint8 i; for (i = 0; i < _tos.length; i++) { mint(_tos[i], _tokenIds[i]); } } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Enumerable, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } } // File @openzeppelin/contracts/utils/cryptography/[email protected] pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File @openzeppelin/contracts/utils/cryptography/[email protected] pragma solidity ^0.8.0; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } } // File contracts/erc/ERC721Permit.sol pragma solidity ^0.8.0; interface IERC721Permit { function permit(address owner, address spender, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external; function nonces(address owner) external view returns (uint256); function DOMAIN_SEPARATOR() external view returns (bytes32); } /** * @dev Implementation of the ERC721 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC721 allowance (see {IERC721-allowance}) by * presenting a message signed by the account. By not relying on `{IERC721-approve}`, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ abstract contract ERC721Permit is ERC721, IERC721Permit, EIP712 { using Counters for Counters.Counter; mapping (address => Counters.Counter) private _nonces; // solhint-disable-next-line var-name-mixedcase bytes32 private immutable _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 tokenId,uint256 nonce,uint256 deadline)"); /** * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`. * * It's a good idea to use the same `name` that is defined as the ERC721 token name. */ constructor(string memory name) EIP712(name, "1") { } /** * @dev See {IERC721Permit-permit}. */ function permit(address owner, address spender, uint256 tokenId, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public virtual override { address tokenOwner = ownerOf(tokenId); require(spender != tokenOwner, "ERC721Permit: approval to current owner"); require(tokenOwner == owner || isApprovedForAll(tokenOwner, owner), "ERC721Permit: approve signer is not owner nor approved for all" ); // solhint-disable-next-line not-rely-on-time require(block.timestamp <= deadline, "ERC721Permit: expired deadline"); bytes32 structHash = keccak256( abi.encode( _PERMIT_TYPEHASH, owner, spender, tokenId, _nonces[owner].current(), deadline ) ); bytes32 hash = _hashTypedDataV4(structHash); address signer = ECDSA.recover(hash, v, r, s); require(signer == owner, "ERC721Permit: invalid signature"); _nonces[owner].increment(); super._approve(spender, tokenId); } /** * @dev See {IERC721Permit-nonces}. */ function nonces(address owner) public view override returns (uint256) { return _nonces[owner].current(); } /** * @dev See {IERC721Permit-DOMAIN_SEPARATOR}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view override returns (bytes32) { return _domainSeparatorV4(); } function getDigest(bytes32 structHash) public view returns (bytes32) { return _hashTypedDataV4(structHash); } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC721/extensions/E[email protected] pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File contracts/Genso.sol pragma solidity ^0.8.0; contract Genso is ERC721Mintable, ERC721Permit("GensoKishiOnline") , Ownable, ERC721URIStorage{ string public _defaultURI; event UpdateDefaultURI(string defaultURI); constructor() ERC721("GensoKishiOnline", "Genso_NFT") { setDefaultURI("https://api01.genso.game/api/metadata/"); } function setDefaultURI(string memory defaultURI_) public onlyOperator() { _defaultURI = defaultURI_; emit UpdateDefaultURI(_defaultURI); } function _baseURI() internal view override returns (string memory) { return _defaultURI; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, amount); } function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function tokenURI(uint256 tokenId) public view virtual override(ERC721, ERC721URIStorage) returns (string memory){ return super.tokenURI(tokenId); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Mintable) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"defaultURI","type":"string"}],"name":"UpdateDefaultURI","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_defaultURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tos","type":"address[]"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"bulkMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"structHash","type":"bytes32"}],"name":"getDigest","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"defaultURI_","type":"string"}],"name":"setDefaultURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101406040527f48d39b37a35214940203bbbd4f383519797769b13d936f387d89430afef27688610120523480156200003757600080fd5b506040518060400160405280601081526020016f47656e736f4b697368694f6e6c696e6560801b81525080604051806040016040528060018152602001603160f81b8152506040518060400160405280601081526020016f47656e736f4b697368694f6e6c696e6560801b8152506040518060400160405280600981526020016811d95b9cdbd7d3919560ba1b8152508160009080519060200190620000df92919062000414565b508051620000f590600190602084019062000414565b50620001169150600080516020620036bd83398151915290506000620001fa565b62000131600080516020620036bd8339815191523362000245565b600b805460ff19169055815160209283012081519183019190912060c082815260e08290524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8189018190528183019790975260608101959095526080808601939093523085830152805180860390920182529390920190925280519301929092209091526101005250620001d03362000255565b620001f4604051806060016040528060268152602001620036dd60269139620002a7565b620005a7565b6000828152600a6020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b62000251828262000370565b5050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360009081527fcc154f7b876a360d54d1dd91709acfea951faf52857cd1bb669415168b037aed602052604090205460ff166200031d5760405162461bcd60e51b815260206004820152601060248201526f26bab9ba1031329037b832b930ba37b960811b604482015260640160405180910390fd5b80516200033290600f90602084019062000414565b507f2405b30cce1d59580c3cc7fbdce2d552bd8e943d5dc4f66a37053027fc7ce880600f604051620003659190620004ba565b60405180910390a150565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff1662000251576000828152600a602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620003d03390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b82805462000422906200056a565b90600052602060002090601f01602090048101928262000446576000855562000491565b82601f106200046157805160ff191683800117855562000491565b8280016001018555821562000491579182015b828111156200049157825182559160200191906001019062000474565b506200049f929150620004a3565b5090565b5b808211156200049f5760008155600101620004a4565b600060208083526000845481600182811c915080831680620004dd57607f831692505b858310811415620004fc57634e487b7160e01b85526022600452602485fd5b8786018381526020018180156200051c57600181146200052e576200055b565b60ff198616825287820196506200055b565b60008b81526020902060005b8681101562000555578154848201529085019089016200053a565b83019750505b50949998505050505050505050565b600181811c908216806200057f57607f821691505b60208210811415620005a157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161010051610120516130c6620005f7600039600061110c015260006118160152600061186501526000611840015260006117c4015260006117ed01526130c66000f3fe608060405234801561001057600080fd5b506004361061023d5760003560e01c80636ae459bd1161013b578063a217fddf116100b8578063d547741f1161007c578063d547741f146104b5578063da1b9e08146104c8578063e985e9c5146104db578063f2fde38b146104ee578063f9613ab21461050157600080fd5b8063a217fddf14610461578063a22cb46514610469578063b88d4fde1461047c578063c87b56dd1461048f578063d505accf146104a257600080fd5b80638da5cb5b116100ff5780638da5cb5b1461040d57806391d148541461041e57806395d89b4114610431578063983d2737146104395780639870d7fe1461044e57600080fd5b80636ae459bd146103c457806370a08231146103d7578063715018a6146103ea5780637ecebe00146103f25780638456cb591461040557600080fd5b80632f745c59116101c957806342842e0e1161018d57806342842e0e146103705780634f558e79146103835780634f6ccce71461039657806356c4aedd146103a95780636352211e146103b157600080fd5b80632f745c59146103275780633644e5151461033a57806336568abe146103425780633f4ba83a1461035557806340c10f191461035d57600080fd5b806316c61ccc1161021057806316c61ccc146102bf57806318160ddd146102cc57806323b872dd146102de578063248a9ca3146102f15780632f2ff15d1461031457600080fd5b806301ffc9a71461024257806306fdde031461026a578063081812fc1461027f578063095ea7b3146102aa575b600080fd5b610255610250366004612b3a565b610514565b60405190151581526020015b60405180910390f35b610272610525565b6040516102619190612cca565b61029261028d366004612afe565b6105b7565b6040516001600160a01b039091168152602001610261565b6102bd6102b8366004612a0d565b610644565b005b600b546102559060ff1681565b6008545b604051908152602001610261565b6102bd6102ec3660046128a6565b61075a565b6102d06102ff366004612afe565b6000908152600a602052604090206001015490565b6102bd610322366004612b17565b61078b565b6102d0610335366004612a0d565b6107b1565b6102d0610847565b6102bd610350366004612b17565b610856565b6102bd6108d4565b6102bd61036b366004612a0d565b610991565b6102bd61037e3660046128a6565b6109cf565b610255610391366004612afe565b6109ea565b6102d06103a4366004612afe565b6109f5565b610272610a88565b6102926103bf366004612afe565b610b16565b6102bd6103d2366004612a37565b610b8d565b6102d06103e5366004612858565b610c32565b6102bd610cb9565b6102d0610400366004612858565b610d1f565b6102bd610d3d565b600d546001600160a01b0316610292565b61025561042c366004612b17565b610df4565b610272610e1f565b6102d060008051602061307183398151915281565b6102bd61045c366004612858565b610e2e565b6102d0600081565b6102bd6104773660046129d1565b610e7d565b6102bd61048a3660046128e2565b610f42565b61027261049d366004612afe565b610f7a565b6102bd6104b036600461295e565b610f85565b6102bd6104c3366004612b17565b611221565b6102bd6104d6366004612b74565b611247565b6102556104e9366004612873565b6112ca565b6102bd6104fc366004612858565b6112f8565b6102d061050f366004612afe565b6113c0565b600061051f826113cb565b92915050565b60606000805461053490612f4c565b80601f016020809104026020016040519081016040528092919081815260200182805461056090612f4c565b80156105ad5780601f10610582576101008083540402835291602001916105ad565b820191906000526020600020905b81548152906001019060200180831161059057829003601f168201915b5050505050905090565b60006105c2826113d6565b6106285760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061064f82610b16565b9050806001600160a01b0316836001600160a01b031614156106bd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161061f565b336001600160a01b03821614806106d957506106d981336112ca565b61074b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161061f565b61075583836113f3565b505050565b6107643382611461565b6107805760405162461bcd60e51b815260040161061f90612e01565b61075583838361152b565b6000828152600a60205260409020600101546107a781336116d6565b610755838361173a565b60006107bc83610c32565b821061081e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161061f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60006108516117c0565b905090565b6001600160a01b03811633146108c65760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b606482015260840161061f565b6108d082826118b3565b5050565b6108ec60008051602061307183398151915233610df4565b6109085760405162461bcd60e51b815260040161061f90612d85565b600b5460ff166109515760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161061f565b600b805460ff191690556040513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa906020015b60405180910390a1565b6109a960008051602061307183398151915233610df4565b6109c55760405162461bcd60e51b815260040161061f90612d85565b6108d0828261191a565b61075583838360405180602001604052806000815250610f42565b600061051f826113d6565b6000610a0060085490565b8210610a635760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161061f565b60088281548110610a7657610a7661302e565b90600052602060002001549050919050565b600f8054610a9590612f4c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac190612f4c565b8015610b0e5780601f10610ae357610100808354040283529160200191610b0e565b820191906000526020600020905b815481529060010190602001808311610af157829003601f168201915b505050505081565b6000818152600260205260408120546001600160a01b03168061051f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161061f565b610ba560008051602061307183398151915233610df4565b610bc15760405162461bcd60e51b815260040161061f90612d85565b8051825114610bcf57600080fd5b60005b82518160ff16101561075557610c20838260ff1681518110610bf657610bf661302e565b6020026020010151838360ff1681518110610c1357610c1361302e565b6020026020010151610991565b80610c2a81612fa2565b915050610bd2565b60006001600160a01b038216610c9d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161061f565b506001600160a01b031660009081526003602052604090205490565b600d546001600160a01b03163314610d135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161061f565b610d1d6000611a59565b565b6001600160a01b0381166000908152600c602052604081205461051f565b610d5560008051602061307183398151915233610df4565b610d715760405162461bcd60e51b815260040161061f90612d85565b600b5460ff1615610db75760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161061f565b600b805460ff191660011790556040513381527f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25890602001610987565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606001805461053490612f4c565b610e4660008051602061307183398151915233610df4565b610e625760405162461bcd60e51b815260040161061f90612d85565b610e7a60008051602061307183398151915282611aab565b50565b6001600160a01b038216331415610ed65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161061f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f4c3383611461565b610f685760405162461bcd60e51b815260040161061f90612e01565b610f7484848484611ab5565b50505050565b606061051f82611ae8565b6000610f9086610b16565b9050806001600160a01b0316876001600160a01b031614156110045760405162461bcd60e51b815260206004820152602760248201527f4552433732315065726d69743a20617070726f76616c20746f2063757272656e6044820152663a1037bbb732b960c91b606482015260840161061f565b876001600160a01b0316816001600160a01b03161480611029575061102981896112ca565b61109b5760405162461bcd60e51b815260206004820152603e60248201527f4552433732315065726d69743a20617070726f7665207369676e65722069732060448201527f6e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161061f565b844211156110eb5760405162461bcd60e51b815260206004820152601e60248201527f4552433732315065726d69743a206578706972656420646561646c696e650000604482015260640161061f565b6001600160a01b038881166000818152600c602090815260408083205481517f00000000000000000000000000000000000000000000000000000000000000008185015280830195909552948c166060850152608084018b905260a084019490945260c08084018a90528451808503909101815260e0909301909352815191909201209061117882611c4a565b9050600061118882888888611c98565b90508a6001600160a01b0316816001600160a01b0316146111eb5760405162461bcd60e51b815260206004820152601f60248201527f4552433732315065726d69743a20696e76616c6964207369676e617475726500604482015260640161061f565b6001600160a01b038b166000908152600c60205260409020805460010190556112148a8a6113f3565b5050505050505050505050565b6000828152600a602052604090206001015461123d81336116d6565b61075583836118b3565b61125f60008051602061307183398151915233610df4565b61127b5760405162461bcd60e51b815260040161061f90612d85565b805161128e90600f9060208401906126d9565b507f2405b30cce1d59580c3cc7fbdce2d552bd8e943d5dc4f66a37053027fc7ce880600f6040516112bf9190612cdd565b60405180910390a150565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600d546001600160a01b031633146113525760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161061f565b6001600160a01b0381166113b75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161061f565b610e7a81611a59565b600061051f82611c4a565b600061051f82611cc0565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061142882610b16565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061146c826113d6565b6114cd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161061f565b60006114d883610b16565b9050806001600160a01b0316846001600160a01b031614806115135750836001600160a01b0316611508846105b7565b6001600160a01b0316145b80611523575061152381856112ca565b949350505050565b826001600160a01b031661153e82610b16565b6001600160a01b0316146115a65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161061f565b6001600160a01b0382166116085760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161061f565b611613838383611ce5565b61161e6000826113f3565b6001600160a01b0383166000908152600360205260408120805460019290611647908490612ef2565b90915550506001600160a01b0382166000908152600360205260408120805460019290611675908490612ea7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6116e08282610df4565b6108d0576116f8816001600160a01b03166014611cf0565b611703836020611cf0565b604051602001611714929190612c18565b60408051601f198184030181529082905262461bcd60e51b825261061f91600401612cca565b6117448282610df4565b6108d0576000828152600a602090815260408083206001600160a01b03851684529091529020805460ff1916600117905561177c3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60007f000000000000000000000000000000000000000000000000000000000000000046141561180f57507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6118bd8282610df4565b156108d0576000828152600a602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b0382166119705760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161061f565b611979816113d6565b156119c65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161061f565b6119d260008383611ce5565b6001600160a01b03821660009081526003602052604081208054600192906119fb908490612ea7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6108d0828261173a565b611ac084848461152b565b611acc84848484611e93565b610f745760405162461bcd60e51b815260040161061f90612daf565b6060611af3826113d6565b611b595760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161061f565b6000828152600e602052604081208054611b7290612f4c565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9e90612f4c565b8015611beb5780601f10611bc057610100808354040283529160200191611beb565b820191906000526020600020905b815481529060010190602001808311611bce57829003601f168201915b505050505090506000611bfc611f9d565b9050805160001415611c0f575092915050565b815115611c41578082604051602001611c29929190612be9565b60405160208183030381529060405292505050919050565b61152384611fac565b600061051f611c576117c0565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6000806000611ca987878787612076565b91509150611cb681612163565b5095945050505050565b60006001600160e01b03198216637965db0b60e01b148061051f575061051f8261231e565b610755838383612343565b60606000611cff836002612ed3565b611d0a906002612ea7565b67ffffffffffffffff811115611d2257611d22613044565b6040519080825280601f01601f191660200182016040528015611d4c576020820181803683370190505b509050600360fc1b81600081518110611d6757611d6761302e565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611d9657611d9661302e565b60200101906001600160f81b031916908160001a9053506000611dba846002612ed3565b611dc5906001612ea7565b90505b6001811115611e3d576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611df957611df961302e565b1a60f81b828281518110611e0f57611e0f61302e565b60200101906001600160f81b031916908160001a90535060049490941c93611e3681612f35565b9050611dc8565b508315611e8c5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604482015260640161061f565b9392505050565b60006001600160a01b0384163b15611f9557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ed7903390899088908890600401612c8d565b602060405180830381600087803b158015611ef157600080fd5b505af1925050508015611f21575060408051601f3d908101601f19168201909252611f1e91810190612b57565b60015b611f7b573d808015611f4f576040519150601f19603f3d011682016040523d82523d6000602084013e611f54565b606091505b508051611f735760405162461bcd60e51b815260040161061f90612daf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611523565b506001611523565b6060600f805461053490612f4c565b6060611fb7826113d6565b61201b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161061f565b6000612025611f9d565b905060008151116120455760405180602001604052806000815250611e8c565b8061204f846123fb565b604051602001612060929190612be9565b6040516020818303038152906040529392505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156120ad575060009050600361215a565b8460ff16601b141580156120c557508460ff16601c14155b156120d6575060009050600461215a565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa15801561212a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166121535760006001925092505061215a565b9150600090505b94509492505050565b600081600481111561217757612177613002565b14156121805750565b600181600481111561219457612194613002565b14156121e25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161061f565b60028160048111156121f6576121f6613002565b14156122445760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161061f565b600381600481111561225857612258613002565b14156122b15760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161061f565b60048160048111156122c5576122c5613002565b1415610e7a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161061f565b60006001600160e01b0319821663780e9d6360e01b148061051f575061051f826124f9565b6001600160a01b03831661239e5761239981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6123c1565b816001600160a01b0316836001600160a01b0316146123c1576123c18382612549565b6001600160a01b0382166123d857610755816125e6565b826001600160a01b0316826001600160a01b031614610755576107558282612695565b60608161241f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612449578061243381612f87565b91506124429050600a83612ebf565b9150612423565b60008167ffffffffffffffff81111561246457612464613044565b6040519080825280601f01601f19166020018201604052801561248e576020820181803683370190505b5090505b8415611523576124a3600183612ef2565b91506124b0600a86612fc2565b6124bb906030612ea7565b60f81b8183815181106124d0576124d061302e565b60200101906001600160f81b031916908160001a9053506124f2600a86612ebf565b9450612492565b60006001600160e01b031982166380ac58cd60e01b148061252a57506001600160e01b03198216635b5e139f60e01b145b8061051f57506301ffc9a760e01b6001600160e01b031983161461051f565b6000600161255684610c32565b6125609190612ef2565b6000838152600760205260409020549091508082146125b3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906125f890600190612ef2565b600083815260096020526040812054600880549394509092849081106126205761262061302e565b9060005260206000200154905080600883815481106126415761264161302e565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061267957612679613018565b6001900381819060005260206000200160009055905550505050565b60006126a083610c32565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546126e590612f4c565b90600052602060002090601f016020900481019282612707576000855561274d565b82601f1061272057805160ff191683800117855561274d565b8280016001018555821561274d579182015b8281111561274d578251825591602001919060010190612732565b5061275992915061275d565b5090565b5b80821115612759576000815560010161275e565b600067ffffffffffffffff83111561278c5761278c613044565b61279f601f8401601f1916602001612e52565b90508281528383830111156127b357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146127e157600080fd5b919050565b600082601f8301126127f757600080fd5b8135602061280c61280783612e83565b612e52565b80838252828201915082860187848660051b890101111561282c57600080fd5b60005b8581101561284b5781358452928401929084019060010161282f565b5090979650505050505050565b60006020828403121561286a57600080fd5b611e8c826127ca565b6000806040838503121561288657600080fd5b61288f836127ca565b915061289d602084016127ca565b90509250929050565b6000806000606084860312156128bb57600080fd5b6128c4846127ca565b92506128d2602085016127ca565b9150604084013590509250925092565b600080600080608085870312156128f857600080fd5b612901856127ca565b935061290f602086016127ca565b925060408501359150606085013567ffffffffffffffff81111561293257600080fd5b8501601f8101871361294357600080fd5b61295287823560208401612772565b91505092959194509250565b600080600080600080600060e0888a03121561297957600080fd5b612982886127ca565b9650612990602089016127ca565b95506040880135945060608801359350608088013560ff811681146129b457600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156129e457600080fd5b6129ed836127ca565b915060208301358015158114612a0257600080fd5b809150509250929050565b60008060408385031215612a2057600080fd5b612a29836127ca565b946020939093013593505050565b60008060408385031215612a4a57600080fd5b823567ffffffffffffffff80821115612a6257600080fd5b818501915085601f830112612a7657600080fd5b81356020612a8661280783612e83565b8083825282820191508286018a848660051b8901011115612aa657600080fd5b600096505b84871015612ad057612abc816127ca565b835260019690960195918301918301612aab565b5096505086013592505080821115612ae757600080fd5b50612af4858286016127e6565b9150509250929050565b600060208284031215612b1057600080fd5b5035919050565b60008060408385031215612b2a57600080fd5b8235915061289d602084016127ca565b600060208284031215612b4c57600080fd5b8135611e8c8161305a565b600060208284031215612b6957600080fd5b8151611e8c8161305a565b600060208284031215612b8657600080fd5b813567ffffffffffffffff811115612b9d57600080fd5b8201601f81018413612bae57600080fd5b61152384823560208401612772565b60008151808452612bd5816020860160208601612f09565b601f01601f19169290920160200192915050565b60008351612bfb818460208801612f09565b835190830190612c0f818360208801612f09565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612c50816017850160208801612f09565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612c81816028840160208801612f09565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cc090830184612bbd565b9695505050505050565b602081526000611e8c6020830184612bbd565b600060208083526000845481600182811c915080831680612cff57607f831692505b858310811415612d1d57634e487b7160e01b85526022600452602485fd5b878601838152602001818015612d3a5760018114612d4b57612d76565b60ff19861682528782019650612d76565b60008b81526020902060005b86811015612d7057815484820152908501908901612d57565b83019750505b50949998505050505050505050565b60208082526010908201526f26bab9ba1031329037b832b930ba37b960811b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612e7b57612e7b613044565b604052919050565b600067ffffffffffffffff821115612e9d57612e9d613044565b5060051b60200190565b60008219821115612eba57612eba612fd6565b500190565b600082612ece57612ece612fec565b500490565b6000816000190483118215151615612eed57612eed612fd6565b500290565b600082821015612f0457612f04612fd6565b500390565b60005b83811015612f24578181015183820152602001612f0c565b83811115610f745750506000910152565b600081612f4457612f44612fd6565b506000190190565b600181811c90821680612f6057607f821691505b60208210811415612f8157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f9b57612f9b612fd6565b5060010190565b600060ff821660ff811415612fb957612fb9612fd6565b60010192915050565b600082612fd157612fd1612fec565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e7a57600080fdfe523a704056dcd17bcf83bed8b68c59416dac1119be77755efe3bde0a64e46e0ca264697066735822122049161a9133728ed6acda8f400657b0ab6e3bca0ed3844c39f079c02f41a95c6664736f6c63430008060033523a704056dcd17bcf83bed8b68c59416dac1119be77755efe3bde0a64e46e0c68747470733a2f2f61706930312e67656e736f2e67616d652f6170692f6d657461646174612f
Deployed ByteCode Sourcemap
75800:1276:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76896:177;;;;;;:::i;:::-;;:::i;:::-;;;9591:14:1;;9584:22;9566:41;;9554:2;9539:18;76896:177:0;;;;;;;;21731:100;;;:::i;:::-;;;;;;;:::i;23290:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8889:32:1;;;8871:51;;8859:2;8844:18;23290:221:0;8826:102:1;22813:411:0;;;;;;:::i;:::-;;:::i;:::-;;51393:19;;;;;;;;;35478:113;35566:10;:17;35478:113;;;9764:25:1;;;9752:2;9737:18;35478:113:0;9719:76:1;24180:339:0;;;;;;:::i;:::-;;:::i;47901:123::-;;;;;;:::i;:::-;47967:7;47994:12;;;:6;:12;;;;;:22;;;;47901:123;48286:147;;;;;;:::i;:::-;;:::i;35146:256::-;;;;;;:::i;:::-;;:::i;71267:115::-;;;:::i;49334:218::-;;;;;;:::i;:::-;;:::i;52143:124::-;;;:::i;52740:125::-;;;;;;:::i;:::-;;:::i;24590:185::-;;;;;;:::i;:::-;;:::i;52615:117::-;;;;;;:::i;:::-;;:::i;35668:233::-;;;;;;:::i;:::-;;:::i;75901:25::-;;;:::i;21425:239::-;;;;;;:::i;:::-;;:::i;52873:264::-;;;;;;:::i;:::-;;:::i;21155:208::-;;;;;;:::i;:::-;;:::i;73173:94::-;;;:::i;71016:120::-;;;;;;:::i;:::-;;:::i;52013:122::-;;;:::i;72522:87::-;72595:6;;-1:-1:-1;;;;;72595:6:0;72522:87;;46786:139;;;;;;:::i;:::-;;:::i;21900:104::-;;;:::i;51252:56::-;;-1:-1:-1;;;;;;;;;;;51252:56:0;;51574:108;;;;;;:::i;:::-;;:::i;45877:49::-;;45922:4;45877:49;;23583:295;;;;;;:::i;:::-;;:::i;24846:328::-;;;;;;:::i;:::-;;:::i;76726:162::-;;;;;;:::i;:::-;;:::i;69823:1126::-;;;;;;:::i;:::-;;:::i;48678:149::-;;;;;;:::i;:::-;;:::i;76119:161::-;;;;;;:::i;:::-;;:::i;23949:164::-;;;;;;:::i;:::-;;:::i;73422:192::-;;;;;;:::i;:::-;;:::i;71390:123::-;;;;;;:::i;:::-;;:::i;76896:177::-;77005:4;77029:36;77053:11;77029:23;:36::i;:::-;77022:43;76896:177;-1:-1:-1;;76896:177:0:o;21731:100::-;21785:13;21818:5;21811:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21731:100;:::o;23290:221::-;23366:7;23394:16;23402:7;23394;:16::i;:::-;23386:73;;;;-1:-1:-1;;;23386:73:0;;21819:2:1;23386:73:0;;;21801:21:1;21858:2;21838:18;;;21831:30;21897:34;21877:18;;;21870:62;-1:-1:-1;;;21948:18:1;;;21941:42;22000:19;;23386:73:0;;;;;;;;;-1:-1:-1;23479:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23479:24:0;;23290:221::o;22813:411::-;22894:13;22910:23;22925:7;22910:14;:23::i;:::-;22894:39;;22958:5;-1:-1:-1;;;;;22952:11:0;:2;-1:-1:-1;;;;;22952:11:0;;;22944:57;;;;-1:-1:-1;;;22944:57:0;;23778:2:1;22944:57:0;;;23760:21:1;23817:2;23797:18;;;23790:30;23856:34;23836:18;;;23829:62;-1:-1:-1;;;23907:18:1;;;23900:31;23948:19;;22944:57:0;23750:223:1;22944:57:0;16274:10;-1:-1:-1;;;;;23036:21:0;;;;:62;;-1:-1:-1;23061:37:0;23078:5;16274:10;23949:164;:::i;23061:37::-;23014:168;;;;-1:-1:-1;;;23014:168:0;;19391:2:1;23014:168:0;;;19373:21:1;19430:2;19410:18;;;19403:30;19469:34;19449:18;;;19442:62;19540:26;19520:18;;;19513:54;19584:19;;23014:168:0;19363:246:1;23014:168:0;23195:21;23204:2;23208:7;23195:8;:21::i;:::-;22883:341;22813:411;;:::o;24180:339::-;24375:41;16274:10;24408:7;24375:18;:41::i;:::-;24367:103;;;;-1:-1:-1;;;24367:103:0;;;;;;;:::i;:::-;24483:28;24493:4;24499:2;24503:7;24483:9;:28::i;48286:147::-;47967:7;47994:12;;;:6;:12;;;;;:22;;;46368:30;46379:4;16274:10;46368;:30::i;:::-;48400:25:::1;48411:4;48417:7;48400:10;:25::i;35146:256::-:0;35243:7;35279:23;35296:5;35279:16;:23::i;:::-;35271:5;:31;35263:87;;;;-1:-1:-1;;;35263:87:0;;14677:2:1;35263:87:0;;;14659:21:1;14716:2;14696:18;;;14689:30;14755:34;14735:18;;;14728:62;-1:-1:-1;;;14806:18:1;;;14799:41;14857:19;;35263:87:0;14649:233:1;35263:87:0;-1:-1:-1;;;;;;35368:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35146:256::o;71267:115::-;71327:7;71354:20;:18;:20::i;:::-;71347:27;;71267:115;:::o;49334:218::-;-1:-1:-1;;;;;49430:23:0;;16274:10;49430:23;49422:83;;;;-1:-1:-1;;;49422:83:0;;25011:2:1;49422:83:0;;;24993:21:1;25050:2;25030:18;;;25023:30;25089:34;25069:18;;;25062:62;-1:-1:-1;;;25140:18:1;;;25133:45;25195:19;;49422:83:0;24983:237:1;49422:83:0;49518:26;49530:4;49536:7;49518:11;:26::i;:::-;49334:218;;:::o;52143:124::-;51733:29;-1:-1:-1;;;;;;;;;;;51751:10:0;51733:7;:29::i;:::-;51725:58;;;;-1:-1:-1;;;51725:58:0;;;;;;;:::i;:::-;51953:7:::1;::::0;::::1;;51945:40;;;::::0;-1:-1:-1;;;51945:40:0;;13623:2:1;51945:40:0::1;::::0;::::1;13605:21:1::0;13662:2;13642:18;;;13635:30;-1:-1:-1;;;13681:18:1;;;13674:50;13741:18;;51945:40:0::1;13595:170:1::0;51945:40:0::1;52208:7:::2;:15:::0;;-1:-1:-1;;52208:15:0::2;::::0;;52239:20:::2;::::0;52248:10:::2;8871:51:1::0;;52239:20:0::2;::::0;8859:2:1;8844:18;52239:20:0::2;;;;;;;;52143:124::o:0;52740:125::-;51733:29;-1:-1:-1;;;;;;;;;;;51751:10:0;51733:7;:29::i;:::-;51725:58;;;;-1:-1:-1;;;51725:58:0;;;;;;;:::i;:::-;52833:24:::1;52845:2;52849:7;52833:11;:24::i;24590:185::-:0;24728:39;24745:4;24751:2;24755:7;24728:39;;;;;;;;;;;;:16;:39::i;52615:117::-;52678:4;52702:22;52716:7;52702:13;:22::i;35668:233::-;35743:7;35779:30;35566:10;:17;;35478:113;35779:30;35771:5;:38;35763:95;;;;-1:-1:-1;;;35763:95:0;;24598:2:1;35763:95:0;;;24580:21:1;24637:2;24617:18;;;24610:30;24676:34;24656:18;;;24649:62;-1:-1:-1;;;24727:18:1;;;24720:42;24779:19;;35763:95:0;24570:234:1;35763:95:0;35876:10;35887:5;35876:17;;;;;;;;:::i;:::-;;;;;;;;;35869:24;;35668:233;;;:::o;75901:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21425:239::-;21497:7;21533:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21533:16:0;21568:19;21560:73;;;;-1:-1:-1;;;21560:73:0;;20227:2:1;21560:73:0;;;20209:21:1;20266:2;20246:18;;;20239:30;20305:34;20285:18;;;20278:62;-1:-1:-1;;;20356:18:1;;;20349:39;20405:19;;21560:73:0;20199:231:1;52873:264:0;51733:29;-1:-1:-1;;;;;;;;;;;51751:10:0;51733:7;:29::i;:::-;51725:58;;;;-1:-1:-1;;;51725:58:0;;;;;;;:::i;:::-;52998:9:::1;:16;52983:4;:11;:31;52975:40;;;::::0;::::1;;53026:7;53044:86;53060:4;:11;53056:1;:15;;;53044:86;;;53091:27;53096:4;53101:1;53096:7;;;;;;;;;;:::i;:::-;;;;;;;53105:9;53115:1;53105:12;;;;;;;;;;:::i;:::-;;;;;;;53091:4;:27::i;:::-;53073:3:::0;::::1;::::0;::::1;:::i;:::-;;;;53044:86;;21155:208:::0;21227:7;-1:-1:-1;;;;;21255:19:0;;21247:74;;;;-1:-1:-1;;;21247:74:0;;19816:2:1;21247:74:0;;;19798:21:1;19855:2;19835:18;;;19828:30;19894:34;19874:18;;;19867:62;-1:-1:-1;;;19945:18:1;;;19938:40;19995:19;;21247:74:0;19788:232:1;21247:74:0;-1:-1:-1;;;;;;21339:16:0;;;;;:9;:16;;;;;;;21155:208::o;73173:94::-;72595:6;;-1:-1:-1;;;;;72595:6:0;16274:10;72742:23;72734:68;;;;-1:-1:-1;;;72734:68:0;;22232:2:1;72734:68:0;;;22214:21:1;;;22251:18;;;22244:30;22310:34;22290:18;;;22283:62;22362:18;;72734:68:0;22204:182:1;72734:68:0;73238:21:::1;73256:1;73238:9;:21::i;:::-;73173:94::o:0;71016:120::-;-1:-1:-1;;;;;71104:14:0;;71077:7;71104:14;;;:7;:14;;;;;63265;71104:24;63173:114;52013:122;51733:29;-1:-1:-1;;;;;;;;;;;51751:10:0;51733:7;:29::i;:::-;51725:58;;;;-1:-1:-1;;;51725:58:0;;;;;;;:::i;:::-;51856:7:::1;::::0;::::1;;51855:8;51847:37;;;::::0;-1:-1:-1;;;51847:37:0;;19046:2:1;51847:37:0::1;::::0;::::1;19028:21:1::0;19085:2;19065:18;;;19058:30;-1:-1:-1;;;19104:18:1;;;19097:46;19160:18;;51847:37:0::1;19018:166:1::0;51847:37:0::1;52079:7:::2;:14:::0;;-1:-1:-1;;52079:14:0::2;52089:4;52079:14;::::0;;52109:18:::2;::::0;52116:10:::2;8871:51:1::0;;52109:18:0::2;::::0;8859:2:1;8844:18;52109::0::2;8826:102:1::0;46786:139:0;46864:4;46888:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;46888:29:0;;;;;;;;;;;;;;;46786:139::o;21900:104::-;21956:13;21989:7;21982:14;;;;;:::i;51574:108::-;51733:29;-1:-1:-1;;;;;;;;;;;51751:10:0;51733:7;:29::i;:::-;51725:58;;;;-1:-1:-1;;;51725:58:0;;;;;;;:::i;:::-;51645:29:::1;-1:-1:-1::0;;;;;;;;;;;51666:7:0::1;51645:10;:29::i;:::-;51574:108:::0;:::o;23583:295::-;-1:-1:-1;;;;;23686:24:0;;16274:10;23686:24;;23678:62;;;;-1:-1:-1;;;23678:62:0;;17085:2:1;23678:62:0;;;17067:21:1;17124:2;17104:18;;;17097:30;17163:27;17143:18;;;17136:55;17208:18;;23678:62:0;17057:175:1;23678:62:0;16274:10;23753:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23753:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23753:53:0;;;;;;;;;;23822:48;;9566:41:1;;;23753:42:0;;16274:10;23822:48;;9539:18:1;23822:48:0;;;;;;;23583:295;;:::o;24846:328::-;25021:41;16274:10;25054:7;25021:18;:41::i;:::-;25013:103;;;;-1:-1:-1;;;25013:103:0;;;;;;;:::i;:::-;25127:39;25141:4;25147:2;25151:7;25160:5;25127:13;:39::i;:::-;24846:328;;;;:::o;76726:162::-;76825:13;76857:23;76872:7;76857:14;:23::i;69823:1126::-;69974:18;69995:16;70003:7;69995;:16::i;:::-;69974:37;;70041:10;-1:-1:-1;;;;;70030:21:0;:7;-1:-1:-1;;;;;70030:21:0;;;70022:73;;;;-1:-1:-1;;;70022:73:0;;16272:2:1;70022:73:0;;;16254:21:1;16311:2;16291:18;;;16284:30;16350:34;16330:18;;;16323:62;-1:-1:-1;;;16401:18:1;;;16394:37;16448:19;;70022:73:0;16244:229:1;70022:73:0;70128:5;-1:-1:-1;;;;;70114:19:0;:10;-1:-1:-1;;;;;70114:19:0;;:58;;;;70137:35;70154:10;70166:5;70137:16;:35::i;:::-;70106:156;;;;-1:-1:-1;;;70106:156:0;;18202:2:1;70106:156:0;;;18184:21:1;18241:2;18221:18;;;18214:30;18280:34;18260:18;;;18253:62;18351:32;18331:18;;;18324:60;18401:19;;70106:156:0;18174:252:1;70106:156:0;70357:8;70338:15;:27;;70330:70;;;;-1:-1:-1;;;70330:70:0;;22593:2:1;70330:70:0;;;22575:21:1;22632:2;22612:18;;;22605:30;22671:32;22651:18;;;22644:60;22721:18;;70330:70:0;22565:180:1;70330:70:0;-1:-1:-1;;;;;70598:14:0;;;70413:18;70598:14;;;:7;:14;;;;;;;;63265;70458:206;;70487:16;70458:206;;;10087:25:1;10166:18;;;10159:43;;;;10238:15;;;10218:18;;;10211:43;10270:18;;;10263:34;;;10313:19;;;10306:35;;;;10357:19;;;;10350:35;;;70458:206:0;;;;;;;;;;10059:19:1;;;;70458:206:0;;;70434:241;;;;;;;;70703:28;70434:241;70703:16;:28::i;:::-;70688:43;;70744:14;70761:28;70775:4;70781:1;70784;70787;70761:13;:28::i;:::-;70744:45;;70818:5;-1:-1:-1;;;;;70808:15:0;:6;-1:-1:-1;;;;;70808:15:0;;70800:59;;;;-1:-1:-1;;;70800:59:0;;17439:2:1;70800:59:0;;;17421:21:1;17478:2;17458:18;;;17451:30;17517:33;17497:18;;;17490:61;17568:18;;70800:59:0;17411:181:1;70800:59:0;-1:-1:-1;;;;;70872:14:0;;;;;;:7;:14;;;;;63384:19;;63402:1;63384:19;;;70909:32;70924:7;70933;70909:14;:32::i;:::-;69961:988;;;;69823:1126;;;;;;;:::o;48678:149::-;47967:7;47994:12;;;:6;:12;;;;;:22;;;46368:30;46379:4;16274:10;46368;:30::i;:::-;48793:26:::1;48805:4;48811:7;48793:11;:26::i;76119:161::-:0;51733:29;-1:-1:-1;;;;;;;;;;;51751:10:0;51733:7;:29::i;:::-;51725:58;;;;-1:-1:-1;;;51725:58:0;;;;;;;:::i;:::-;76202:25;;::::1;::::0;:11:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;76243:29;76260:11;76243:29;;;;;;:::i;:::-;;;;;;;;76119:161:::0;:::o;23949:164::-;-1:-1:-1;;;;;24070:25:0;;;24046:4;24070:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23949:164::o;73422:192::-;72595:6;;-1:-1:-1;;;;;72595:6:0;16274:10;72742:23;72734:68;;;;-1:-1:-1;;;72734:68:0;;22232:2:1;72734:68:0;;;22214:21:1;;;22251:18;;;22244:30;22310:34;22290:18;;;22283:62;22362:18;;72734:68:0;22204:182:1;72734:68:0;-1:-1:-1;;;;;73511:22:0;::::1;73503:73;;;::::0;-1:-1:-1;;;73503:73:0;;15508:2:1;73503:73:0::1;::::0;::::1;15490:21:1::0;15547:2;15527:18;;;15520:30;15586:34;15566:18;;;15559:62;-1:-1:-1;;;15637:18:1;;;15630:36;15683:19;;73503:73:0::1;15480:228:1::0;73503:73:0::1;73587:19;73597:8;73587:9;:19::i;71390:123::-:0;71450:7;71477:28;71494:10;71477:16;:28::i;53145:186::-;53263:4;53287:36;53311:11;53287:23;:36::i;26684:127::-;26749:4;26773:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26773:16:0;:30;;;26684:127::o;30666:174::-;30741:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30741:29:0;-1:-1:-1;;;;;30741:29:0;;;;;;;;:24;;30795:23;30741:24;30795:14;:23::i;:::-;-1:-1:-1;;;;;30786:46:0;;;;;;;;;;;30666:174;;:::o;26978:348::-;27071:4;27096:16;27104:7;27096;:16::i;:::-;27088:73;;;;-1:-1:-1;;;27088:73:0;;18633:2:1;27088:73:0;;;18615:21:1;18672:2;18652:18;;;18645:30;18711:34;18691:18;;;18684:62;-1:-1:-1;;;18762:18:1;;;18755:42;18814:19;;27088:73:0;18605:234:1;27088:73:0;27172:13;27188:23;27203:7;27188:14;:23::i;:::-;27172:39;;27241:5;-1:-1:-1;;;;;27230:16:0;:7;-1:-1:-1;;;;;27230:16:0;;:51;;;;27274:7;-1:-1:-1;;;;;27250:31:0;:20;27262:7;27250:11;:20::i;:::-;-1:-1:-1;;;;;27250:31:0;;27230:51;:87;;;;27285:32;27302:5;27309:7;27285:16;:32::i;:::-;27222:96;26978:348;-1:-1:-1;;;;26978:348:0:o;29970:578::-;30129:4;-1:-1:-1;;;;;30102:31:0;:23;30117:7;30102:14;:23::i;:::-;-1:-1:-1;;;;;30102:31:0;;30094:85;;;;-1:-1:-1;;;30094:85:0;;22952:2:1;30094:85:0;;;22934:21:1;22991:2;22971:18;;;22964:30;23030:34;23010:18;;;23003:62;-1:-1:-1;;;23081:18:1;;;23074:39;23130:19;;30094:85:0;22924:231:1;30094:85:0;-1:-1:-1;;;;;30198:16:0;;30190:65;;;;-1:-1:-1;;;30190:65:0;;16680:2:1;30190:65:0;;;16662:21:1;16719:2;16699:18;;;16692:30;16758:34;16738:18;;;16731:62;-1:-1:-1;;;16809:18:1;;;16802:34;16853:19;;30190:65:0;16652:226:1;30190:65:0;30268:39;30289:4;30295:2;30299:7;30268:20;:39::i;:::-;30372:29;30389:1;30393:7;30372:8;:29::i;:::-;-1:-1:-1;;;;;30414:15:0;;;;;;:9;:15;;;;;:20;;30433:1;;30414:15;:20;;30433:1;;30414:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30445:13:0;;;;;;:9;:13;;;;;:18;;30462:1;;30445:13;:18;;30462:1;;30445:18;:::i;:::-;;;;-1:-1:-1;;30474:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30474:21:0;-1:-1:-1;;;;;30474:21:0;;;;;;;;;30513:27;;30474:16;;30513:27;;;;;;;29970:578;;;:::o;47215:497::-;47296:22;47304:4;47310:7;47296;:22::i;:::-;47291:414;;47484:41;47512:7;-1:-1:-1;;;;;47484:41:0;47522:2;47484:19;:41::i;:::-;47598:38;47626:4;47633:2;47598:19;:38::i;:::-;47389:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;47389:270:0;;;;;;;;;;-1:-1:-1;;;47335:358:0;;;;;;;:::i;50638:229::-;50713:22;50721:4;50727:7;50713;:22::i;:::-;50708:152;;50752:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;50752:29:0;;;;;;;;;:36;;-1:-1:-1;;50752:36:0;50784:4;50752:36;;;50835:12;16274:10;;16194:98;50835:12;-1:-1:-1;;;;;50808:40:0;50826:7;-1:-1:-1;;;;;50808:40:0;50820:4;50808:40;;;;;;;;;;50638:229;;:::o;66844:281::-;66897:7;66938:16;66921:13;:33;66917:201;;;-1:-1:-1;66978:24:0;;66844:281::o;66917:201::-;-1:-1:-1;67314:73:0;;;67064:10;67314:73;;;;10655:25:1;;;;67076:12:0;10696:18:1;;;10689:34;67090:15:0;10739:18:1;;;10732:34;67358:13:0;10782:18:1;;;10775:34;67381:4:0;10825:19:1;;;;10818:61;;;;67314:73:0;;;;;;;;;;10627:19:1;;;;67314:73:0;;;67304:84;;;;;;71267:115::o;50875:230::-;50950:22;50958:4;50964:7;50950;:22::i;:::-;50946:152;;;51021:5;50989:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;50989:29:0;;;;;;;;;;:37;;-1:-1:-1;;50989:37:0;;;51046:40;16274:10;;50989:12;;51046:40;;51021:5;51046:40;50875:230;;:::o;28662:382::-;-1:-1:-1;;;;;28742:16:0;;28734:61;;;;-1:-1:-1;;;28734:61:0;;21040:2:1;28734:61:0;;;21022:21:1;;;21059:18;;;21052:30;21118:34;21098:18;;;21091:62;21170:18;;28734:61:0;21012:182:1;28734:61:0;28815:16;28823:7;28815;:16::i;:::-;28814:17;28806:58;;;;-1:-1:-1;;;28806:58:0;;15915:2:1;28806:58:0;;;15897:21:1;15954:2;15934:18;;;15927:30;15993;15973:18;;;15966:58;16041:18;;28806:58:0;15887:178:1;28806:58:0;28877:45;28906:1;28910:2;28914:7;28877:20;:45::i;:::-;-1:-1:-1;;;;;28935:13:0;;;;;;:9;:13;;;;;:18;;28952:1;;28935:13;:18;;28952:1;;28935:18;:::i;:::-;;;;-1:-1:-1;;28964:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28964:21:0;-1:-1:-1;;;;;28964:21:0;;;;;;;;29003:33;;28964:16;;;29003:33;;28964:16;;29003:33;28662:382;;:::o;73622:173::-;73697:6;;;-1:-1:-1;;;;;73714:17:0;;;-1:-1:-1;;;;;;73714:17:0;;;;;;;73747:40;;73697:6;;;73714:17;73697:6;;73747:40;;73678:16;;73747:40;73667:128;73622:173;:::o;50135:112::-;50214:25;50225:4;50231:7;50214:10;:25::i;26056:315::-;26213:28;26223:4;26229:2;26233:7;26213:9;:28::i;:::-;26260:48;26283:4;26289:2;26293:7;26302:5;26260:22;:48::i;:::-;26252:111;;;;-1:-1:-1;;;26252:111:0;;;;;;;:::i;74236:679::-;74309:13;74343:16;74351:7;74343;:16::i;:::-;74335:78;;;;-1:-1:-1;;;74335:78:0;;21401:2:1;74335:78:0;;;21383:21:1;21440:2;21420:18;;;21413:30;21479:34;21459:18;;;21452:62;-1:-1:-1;;;21530:18:1;;;21523:47;21587:19;;74335:78:0;21373:239:1;74335:78:0;74426:23;74452:19;;;:10;:19;;;;;74426:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;74482:18;74503:10;:8;:10::i;:::-;74482:31;;74595:4;74589:18;74611:1;74589:23;74585:72;;;-1:-1:-1;74636:9:0;74236:679;-1:-1:-1;;74236:679:0:o;74585:72::-;74761:23;;:27;74757:108;;74836:4;74842:9;74819:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74805:48;;;;74236:679;;;:::o;74757:108::-;74884:23;74899:7;74884:14;:23::i;68038:167::-;68115:7;68142:55;68164:20;:18;:20::i;:::-;68186:10;62277:57;;-1:-1:-1;;;62277:57:0;;;7795:27:1;7838:11;;;7831:27;;;7874:12;;;7867:28;;;62240:7:0;;7911:12:1;;62277:57:0;;;;;;;;;;;;62267:68;;;;;;62260:75;;62147:196;;;;;60949:279;61077:7;61098:17;61117:18;61139:25;61150:4;61156:1;61159;61162;61139:10;:25::i;:::-;61097:67;;;;61175:18;61187:5;61175:11;:18::i;:::-;-1:-1:-1;61211:9:0;60949:279;-1:-1:-1;;;;;60949:279:0:o;46490:204::-;46575:4;-1:-1:-1;;;;;;46599:47:0;;-1:-1:-1;;;46599:47:0;;:87;;;46650:36;46674:11;46650:23;:36::i;76400:187::-;76535:44;76562:4;76568:2;76572:6;76535:26;:44::i;18026:451::-;18101:13;18127:19;18159:10;18163:6;18159:1;:10;:::i;:::-;:14;;18172:1;18159:14;:::i;:::-;18149:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18149:25:0;;18127:47;;-1:-1:-1;;;18185:6:0;18192:1;18185:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;18185:15:0;;;;;;;;;-1:-1:-1;;;18211:6:0;18218:1;18211:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;18211:15:0;;;;;;;;-1:-1:-1;18242:9:0;18254:10;18258:6;18254:1;:10;:::i;:::-;:14;;18267:1;18254:14;:::i;:::-;18242:26;;18237:135;18274:1;18270;:5;18237:135;;;-1:-1:-1;;;18322:5:0;18330:3;18322:11;18309:25;;;;;;;:::i;:::-;;;;18297:6;18304:1;18297:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;18297:37:0;;;;;;;;-1:-1:-1;18359:1:0;18349:11;;;;;18277:3;;;:::i;:::-;;;18237:135;;;-1:-1:-1;18390:10:0;;18382:55;;;;-1:-1:-1;;;18382:55:0;;13262:2:1;18382:55:0;;;13244:21:1;;;13281:18;;;13274:30;13340:34;13320:18;;;13313:62;13392:18;;18382:55:0;13234:182:1;18382:55:0;18462:6;18026:451;-1:-1:-1;;;18026:451:0:o;31405:799::-;31560:4;-1:-1:-1;;;;;31581:13:0;;8555:20;8603:8;31577:620;;31617:72;;-1:-1:-1;;;31617:72:0;;-1:-1:-1;;;;;31617:36:0;;;;;:72;;16274:10;;31668:4;;31674:7;;31683:5;;31617:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31617:72:0;;;;;;;;-1:-1:-1;;31617:72:0;;;;;;;;;;;;:::i;:::-;;;31613:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31859:13:0;;31855:272;;31902:60;;-1:-1:-1;;;31902:60:0;;;;;;;:::i;31855:272::-;32077:6;32071:13;32062:6;32058:2;32054:15;32047:38;31613:529;-1:-1:-1;;;;;;31740:51:0;-1:-1:-1;;;31740:51:0;;-1:-1:-1;31733:58:0;;31577:620;-1:-1:-1;32181:4:0;32174:11;;76288:104;76340:13;76373:11;76366:18;;;;;:::i;22075:334::-;22148:13;22182:16;22190:7;22182;:16::i;:::-;22174:76;;;;-1:-1:-1;;;22174:76:0;;23362:2:1;22174:76:0;;;23344:21:1;23401:2;23381:18;;;23374:30;23440:34;23420:18;;;23413:62;-1:-1:-1;;;23491:18:1;;;23484:45;23546:19;;22174:76:0;23334:237:1;22174:76:0;22263:21;22287:10;:8;:10::i;:::-;22263:34;;22339:1;22321:7;22315:21;:25;:86;;;;;;;;;;;;;;;;;22367:7;22376:18;:7;:16;:18::i;:::-;22350:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22308:93;22075:334;-1:-1:-1;;;22075:334:0:o;59178:1632::-;59309:7;;60243:66;60230:79;;60226:163;;;-1:-1:-1;60342:1:0;;-1:-1:-1;60346:30:0;60326:51;;60226:163;60403:1;:7;;60408:2;60403:7;;:18;;;;;60414:1;:7;;60419:2;60414:7;;60403:18;60399:102;;;-1:-1:-1;60454:1:0;;-1:-1:-1;60458:30:0;60438:51;;60399:102;60615:24;;;60598:14;60615:24;;;;;;;;;11117:25:1;;;11190:4;11178:17;;11158:18;;;11151:45;;;;11212:18;;;11205:34;;;11255:18;;;11248:34;;;60615:24:0;;11089:19:1;;60615:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;60615:24:0;;-1:-1:-1;;60615:24:0;;;-1:-1:-1;;;;;;;60654:20:0;;60650:103;;60707:1;60711:29;60691:50;;;;;;;60650:103;60773:6;-1:-1:-1;60781:20:0;;-1:-1:-1;59178:1632:0;;;;;;;;:::o;53840:643::-;53918:20;53909:5;:29;;;;;;;;:::i;:::-;;53905:571;;;53840:643;:::o;53905:571::-;54016:29;54007:5;:38;;;;;;;;:::i;:::-;;54003:473;;;54062:34;;-1:-1:-1;;;54062:34:0;;12909:2:1;54062:34:0;;;12891:21:1;12948:2;12928:18;;;12921:30;12987:26;12967:18;;;12960:54;13031:18;;54062:34:0;12881:174:1;54003:473:0;54127:35;54118:5;:44;;;;;;;;:::i;:::-;;54114:362;;;54179:41;;-1:-1:-1;;;54179:41:0;;14317:2:1;54179:41:0;;;14299:21:1;14356:2;14336:18;;;14329:30;14395:33;14375:18;;;14368:61;14446:18;;54179:41:0;14289:181:1;54114:362:0;54251:30;54242:5;:39;;;;;;;;:::i;:::-;;54238:238;;;54298:44;;-1:-1:-1;;;54298:44:0;;17799:2:1;54298:44:0;;;17781:21:1;17838:2;17818:18;;;17811:30;17877:34;17857:18;;;17850:62;-1:-1:-1;;;17928:18:1;;;17921:32;17970:19;;54298:44:0;17771:224:1;54238:238:0;54373:30;54364:5;:39;;;;;;;;:::i;:::-;;54360:116;;;54420:44;;-1:-1:-1;;;54420:44:0;;20637:2:1;54420:44:0;;;20619:21:1;20676:2;20656:18;;;20649:30;20715:34;20695:18;;;20688:62;-1:-1:-1;;;20766:18:1;;;20759:32;20808:19;;54420:44:0;20609:224:1;34838::0;34940:4;-1:-1:-1;;;;;;34964:50:0;;-1:-1:-1;;;34964:50:0;;:90;;;35018:36;35042:11;35018:23;:36::i;36514:589::-;-1:-1:-1;;;;;36720:18:0;;36716:187;;36755:40;36787:7;37930:10;:17;;37903:24;;;;:15;:24;;;;;:44;;;37958:24;;;;;;;;;;;;37826:164;36755:40;36716:187;;;36825:2;-1:-1:-1;;;;;36817:10:0;:4;-1:-1:-1;;;;;36817:10:0;;36813:90;;36844:47;36877:4;36883:7;36844:32;:47::i;:::-;-1:-1:-1;;;;;36917:16:0;;36913:183;;36950:45;36987:7;36950:36;:45::i;36913:183::-;37023:4;-1:-1:-1;;;;;37017:10:0;:2;-1:-1:-1;;;;;37017:10:0;;37013:83;;37044:40;37072:2;37076:7;37044:27;:40::i;16725:723::-;16781:13;17002:10;16998:53;;-1:-1:-1;;17029:10:0;;;;;;;;;;;;-1:-1:-1;;;17029:10:0;;;;;16725:723::o;16998:53::-;17076:5;17061:12;17117:78;17124:9;;17117:78;;17150:8;;;;:::i;:::-;;-1:-1:-1;17173:10:0;;-1:-1:-1;17181:2:0;17173:10;;:::i;:::-;;;17117:78;;;17205:19;17237:6;17227:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17227:17:0;;17205:39;;17255:154;17262:10;;17255:154;;17289:11;17299:1;17289:11;;:::i;:::-;;-1:-1:-1;17358:10:0;17366:2;17358:5;:10;:::i;:::-;17345:24;;:2;:24;:::i;:::-;17332:39;;17315:6;17322;17315:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17315:56:0;;;;;;;;-1:-1:-1;17386:11:0;17395:2;17386:11;;:::i;:::-;;;17255:154;;20786:305;20888:4;-1:-1:-1;;;;;;20925:40:0;;-1:-1:-1;;;20925:40:0;;:105;;-1:-1:-1;;;;;;;20982:48:0;;-1:-1:-1;;;20982:48:0;20925:105;:158;;;-1:-1:-1;;;;;;;;;;19395:40:0;;;21047:36;19286:157;38617:988;38883:22;38933:1;38908:22;38925:4;38908:16;:22::i;:::-;:26;;;;:::i;:::-;38945:18;38966:26;;;:17;:26;;;;;;38883:51;;-1:-1:-1;39099:28:0;;;39095:328;;-1:-1:-1;;;;;39166:18:0;;39144:19;39166:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39217:30;;;;;;:44;;;39334:30;;:17;:30;;;;;:43;;;39095:328;-1:-1:-1;39519:26:0;;;;:17;:26;;;;;;;;39512:33;;;-1:-1:-1;;;;;39563:18:0;;;;;:12;:18;;;;;:34;;;;;;;39556:41;38617:988::o;39900:1079::-;40178:10;:17;40153:22;;40178:21;;40198:1;;40178:21;:::i;:::-;40210:18;40231:24;;;:15;:24;;;;;;40604:10;:26;;40153:46;;-1:-1:-1;40231:24:0;;40153:46;;40604:26;;;;;;:::i;:::-;;;;;;;;;40582:48;;40668:11;40643:10;40654;40643:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40748:28;;;:15;:28;;;;;;;:41;;;40920:24;;;;;40913:31;40955:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39971:1008;;;39900:1079;:::o;37404:221::-;37489:14;37506:20;37523:2;37506:16;:20::i;:::-;-1:-1:-1;;;;;37537:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37582:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37404:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:673::-;657:5;710:3;703:4;695:6;691:17;687:27;677:2;;728:1;725;718:12;677:2;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:2;;;1052:1;1049;1042:12;995:2;1074:1;1084:163;1098:2;1095:1;1092:9;1084:163;;;1155:17;;1143:30;;1193:12;;;;1225;;;;1116:1;1109:9;1084:163;;;-1:-1:-1;1265:5:1;;667:609;-1:-1:-1;;;;;;;667:609:1:o;1281:186::-;1340:6;1393:2;1381:9;1372:7;1368:23;1364:32;1361:2;;;1409:1;1406;1399:12;1361:2;1432:29;1451:9;1432:29;:::i;1472:260::-;1540:6;1548;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1617:1;1614;1607:12;1569:2;1640:29;1659:9;1640:29;:::i;:::-;1630:39;;1688:38;1722:2;1711:9;1707:18;1688:38;:::i;:::-;1678:48;;1559:173;;;;;:::o;1737:328::-;1814:6;1822;1830;1883:2;1871:9;1862:7;1858:23;1854:32;1851:2;;;1899:1;1896;1889:12;1851:2;1922:29;1941:9;1922:29;:::i;:::-;1912:39;;1970:38;2004:2;1993:9;1989:18;1970:38;:::i;:::-;1960:48;;2055:2;2044:9;2040:18;2027:32;2017:42;;1841:224;;;;;:::o;2070:666::-;2165:6;2173;2181;2189;2242:3;2230:9;2221:7;2217:23;2213:33;2210:2;;;2259:1;2256;2249:12;2210:2;2282:29;2301:9;2282:29;:::i;:::-;2272:39;;2330:38;2364:2;2353:9;2349:18;2330:38;:::i;:::-;2320:48;;2415:2;2404:9;2400:18;2387:32;2377:42;;2470:2;2459:9;2455:18;2442:32;2497:18;2489:6;2486:30;2483:2;;;2529:1;2526;2519:12;2483:2;2552:22;;2605:4;2597:13;;2593:27;-1:-1:-1;2583:2:1;;2634:1;2631;2624:12;2583:2;2657:73;2722:7;2717:2;2704:16;2699:2;2695;2691:11;2657:73;:::i;:::-;2647:83;;;2200:536;;;;;;;:::o;2741:693::-;2852:6;2860;2868;2876;2884;2892;2900;2953:3;2941:9;2932:7;2928:23;2924:33;2921:2;;;2970:1;2967;2960:12;2921:2;2993:29;3012:9;2993:29;:::i;:::-;2983:39;;3041:38;3075:2;3064:9;3060:18;3041:38;:::i;:::-;3031:48;;3126:2;3115:9;3111:18;3098:32;3088:42;;3177:2;3166:9;3162:18;3149:32;3139:42;;3231:3;3220:9;3216:19;3203:33;3276:4;3269:5;3265:16;3258:5;3255:27;3245:2;;3296:1;3293;3286:12;3245:2;2911:523;;;;-1:-1:-1;2911:523:1;;;;3319:5;3371:3;3356:19;;3343:33;;-1:-1:-1;3423:3:1;3408:19;;;3395:33;;2911:523;-1:-1:-1;;2911:523:1:o;3439:347::-;3504:6;3512;3565:2;3553:9;3544:7;3540:23;3536:32;3533:2;;;3581:1;3578;3571:12;3533:2;3604:29;3623:9;3604:29;:::i;:::-;3594:39;;3683:2;3672:9;3668:18;3655:32;3730:5;3723:13;3716:21;3709:5;3706:32;3696:2;;3752:1;3749;3742:12;3696:2;3775:5;3765:15;;;3523:263;;;;;:::o;3791:254::-;3859:6;3867;3920:2;3908:9;3899:7;3895:23;3891:32;3888:2;;;3936:1;3933;3926:12;3888:2;3959:29;3978:9;3959:29;:::i;:::-;3949:39;4035:2;4020:18;;;;4007:32;;-1:-1:-1;;;3878:167:1:o;4050:1157::-;4168:6;4176;4229:2;4217:9;4208:7;4204:23;4200:32;4197:2;;;4245:1;4242;4235:12;4197:2;4285:9;4272:23;4314:18;4355:2;4347:6;4344:14;4341:2;;;4371:1;4368;4361:12;4341:2;4409:6;4398:9;4394:22;4384:32;;4454:7;4447:4;4443:2;4439:13;4435:27;4425:2;;4476:1;4473;4466:12;4425:2;4512;4499:16;4534:4;4558:60;4574:43;4614:2;4574:43;:::i;4558:60::-;4640:3;4664:2;4659:3;4652:15;4692:2;4687:3;4683:12;4676:19;;4723:2;4719;4715:11;4771:7;4766:2;4760;4757:1;4753:10;4749:2;4745:19;4741:28;4738:41;4735:2;;;4792:1;4789;4782:12;4735:2;4814:1;4805:10;;4824:169;4838:2;4835:1;4832:9;4824:169;;;4895:23;4914:3;4895:23;:::i;:::-;4883:36;;4856:1;4849:9;;;;;4939:12;;;;4971;;4824:169;;;-1:-1:-1;5012:5:1;-1:-1:-1;;5055:18:1;;5042:32;;-1:-1:-1;;5086:16:1;;;5083:2;;;5115:1;5112;5105:12;5083:2;;5138:63;5193:7;5182:8;5171:9;5167:24;5138:63;:::i;:::-;5128:73;;;4187:1020;;;;;:::o;5212:180::-;5271:6;5324:2;5312:9;5303:7;5299:23;5295:32;5292:2;;;5340:1;5337;5330:12;5292:2;-1:-1:-1;5363:23:1;;5282:110;-1:-1:-1;5282:110:1:o;5397:254::-;5465:6;5473;5526:2;5514:9;5505:7;5501:23;5497:32;5494:2;;;5542:1;5539;5532:12;5494:2;5578:9;5565:23;5555:33;;5607:38;5641:2;5630:9;5626:18;5607:38;:::i;5656:245::-;5714:6;5767:2;5755:9;5746:7;5742:23;5738:32;5735:2;;;5783:1;5780;5773:12;5735:2;5822:9;5809:23;5841:30;5865:5;5841:30;:::i;5906:249::-;5975:6;6028:2;6016:9;6007:7;6003:23;5999:32;5996:2;;;6044:1;6041;6034:12;5996:2;6076:9;6070:16;6095:30;6119:5;6095:30;:::i;6160:450::-;6229:6;6282:2;6270:9;6261:7;6257:23;6253:32;6250:2;;;6298:1;6295;6288:12;6250:2;6338:9;6325:23;6371:18;6363:6;6360:30;6357:2;;;6403:1;6400;6393:12;6357:2;6426:22;;6479:4;6471:13;;6467:27;-1:-1:-1;6457:2:1;;6508:1;6505;6498:12;6457:2;6531:73;6596:7;6591:2;6578:16;6573:2;6569;6565:11;6531:73;:::i;6800:257::-;6841:3;6879:5;6873:12;6906:6;6901:3;6894:19;6922:63;6978:6;6971:4;6966:3;6962:14;6955:4;6948:5;6944:16;6922:63;:::i;:::-;7039:2;7018:15;-1:-1:-1;;7014:29:1;7005:39;;;;7046:4;7001:50;;6849:208;-1:-1:-1;;6849:208:1:o;7062:470::-;7241:3;7279:6;7273:13;7295:53;7341:6;7336:3;7329:4;7321:6;7317:17;7295:53;:::i;:::-;7411:13;;7370:16;;;;7433:57;7411:13;7370:16;7467:4;7455:17;;7433:57;:::i;:::-;7506:20;;7249:283;-1:-1:-1;;;;7249:283:1:o;7934:786::-;8345:25;8340:3;8333:38;8315:3;8400:6;8394:13;8416:62;8471:6;8466:2;8461:3;8457:12;8450:4;8442:6;8438:17;8416:62;:::i;:::-;-1:-1:-1;;;8537:2:1;8497:16;;;8529:11;;;8522:40;8587:13;;8609:63;8587:13;8658:2;8650:11;;8643:4;8631:17;;8609:63;:::i;:::-;8692:17;8711:2;8688:26;;8323:397;-1:-1:-1;;;;8323:397:1:o;8933:488::-;-1:-1:-1;;;;;9202:15:1;;;9184:34;;9254:15;;9249:2;9234:18;;9227:43;9301:2;9286:18;;9279:34;;;9349:3;9344:2;9329:18;;9322:31;;;9127:4;;9370:45;;9395:19;;9387:6;9370:45;:::i;:::-;9362:53;9136:285;-1:-1:-1;;;;;;9136:285:1:o;11293:219::-;11442:2;11431:9;11424:21;11405:4;11462:44;11502:2;11491:9;11487:18;11479:6;11462:44;:::i;11517:1185::-;11626:4;11655:2;11684;11673:9;11666:21;11707:1;11740:6;11734:13;11770:3;11792:1;11820:9;11816:2;11812:18;11802:28;;11880:2;11869:9;11865:18;11902;11892:2;;11946:4;11938:6;11934:17;11924:27;;11892:2;11999;11991:6;11988:14;11968:18;11965:38;11962:2;;;-1:-1:-1;;;12026:33:1;;12082:4;12079:1;12072:15;12112:4;12033:3;12100:17;11962:2;12182:18;;;26087:19;;;26139:4;26130:14;12225:18;12252:100;;;;12366:1;12361:315;;;;12218:458;;12252:100;-1:-1:-1;;12285:24:1;;12273:37;;12330:12;;;;-1:-1:-1;12252:100:1;;12361:315;25948:1;25941:14;;;25985:4;25972:18;;12456:1;12470:165;12484:6;12481:1;12478:13;12470:165;;;12562:14;;12549:11;;;12542:35;12605:16;;;;12499:10;;12470:165;;;12655:11;;;-1:-1:-1;;12218:458:1;-1:-1:-1;12693:3:1;;11635:1067;-1:-1:-1;;;;;;;;;11635:1067:1:o;13770:340::-;13972:2;13954:21;;;14011:2;13991:18;;;13984:30;-1:-1:-1;;;14045:2:1;14030:18;;14023:46;14101:2;14086:18;;13944:166::o;14887:414::-;15089:2;15071:21;;;15128:2;15108:18;;;15101:30;15167:34;15162:2;15147:18;;15140:62;-1:-1:-1;;;15233:2:1;15218:18;;15211:48;15291:3;15276:19;;15061:240::o;23978:413::-;24180:2;24162:21;;;24219:2;24199:18;;;24192:30;24258:34;24253:2;24238:18;;24231:62;-1:-1:-1;;;24324:2:1;24309:18;;24302:47;24381:3;24366:19;;24152:239::o;25407:275::-;25478:2;25472:9;25543:2;25524:13;;-1:-1:-1;;25520:27:1;25508:40;;25578:18;25563:34;;25599:22;;;25560:62;25557:2;;;25625:18;;:::i;:::-;25661:2;25654:22;25452:230;;-1:-1:-1;25452:230:1:o;25687:183::-;25747:4;25780:18;25772:6;25769:30;25766:2;;;25802:18;;:::i;:::-;-1:-1:-1;25847:1:1;25843:14;25859:4;25839:25;;25756:114::o;26155:128::-;26195:3;26226:1;26222:6;26219:1;26216:13;26213:2;;;26232:18;;:::i;:::-;-1:-1:-1;26268:9:1;;26203:80::o;26288:120::-;26328:1;26354;26344:2;;26359:18;;:::i;:::-;-1:-1:-1;26393:9:1;;26334:74::o;26413:168::-;26453:7;26519:1;26515;26511:6;26507:14;26504:1;26501:21;26496:1;26489:9;26482:17;26478:45;26475:2;;;26526:18;;:::i;:::-;-1:-1:-1;26566:9:1;;26465:116::o;26586:125::-;26626:4;26654:1;26651;26648:8;26645:2;;;26659:18;;:::i;:::-;-1:-1:-1;26696:9:1;;26635:76::o;26716:258::-;26788:1;26798:113;26812:6;26809:1;26806:13;26798:113;;;26888:11;;;26882:18;26869:11;;;26862:39;26834:2;26827:10;26798:113;;;26929:6;26926:1;26923:13;26920:2;;;-1:-1:-1;;26964:1:1;26946:16;;26939:27;26769:205::o;26979:136::-;27018:3;27046:5;27036:2;;27055:18;;:::i;:::-;-1:-1:-1;;;27091:18:1;;27026:89::o;27120:380::-;27199:1;27195:12;;;;27242;;;27263:2;;27317:4;27309:6;27305:17;27295:27;;27263:2;27370;27362:6;27359:14;27339:18;27336:38;27333:2;;;27416:10;27411:3;27407:20;27404:1;27397:31;27451:4;27448:1;27441:15;27479:4;27476:1;27469:15;27333:2;;27175:325;;;:::o;27505:135::-;27544:3;-1:-1:-1;;27565:17:1;;27562:2;;;27585:18;;:::i;:::-;-1:-1:-1;27632:1:1;27621:13;;27552:88::o;27645:175::-;27682:3;27726:4;27719:5;27715:16;27755:4;27746:7;27743:17;27740:2;;;27763:18;;:::i;:::-;27812:1;27799:15;;27690:130;-1:-1:-1;;27690:130:1:o;27825:112::-;27857:1;27883;27873:2;;27888:18;;:::i;:::-;-1:-1:-1;27922:9:1;;27863:74::o;27942:127::-;28003:10;27998:3;27994:20;27991:1;27984:31;28034:4;28031:1;28024:15;28058:4;28055:1;28048:15;28074:127;28135:10;28130:3;28126:20;28123:1;28116:31;28166:4;28163:1;28156:15;28190:4;28187:1;28180:15;28206:127;28267:10;28262:3;28258:20;28255:1;28248:31;28298:4;28295:1;28288:15;28322:4;28319:1;28312:15;28338:127;28399:10;28394:3;28390:20;28387:1;28380:31;28430:4;28427:1;28420:15;28454:4;28451:1;28444:15;28470:127;28531:10;28526:3;28522:20;28519:1;28512:31;28562:4;28559:1;28552:15;28586:4;28583:1;28576:15;28602:127;28663:10;28658:3;28654:20;28651:1;28644:31;28694:4;28691:1;28684:15;28718:4;28715:1;28708:15;28734:131;-1:-1:-1;;;;;;28808:32:1;;28798:43;;28788:2;;28855:1;28852;28845:12
Swarm Source
ipfs://49161a9133728ed6acda8f400657b0ab6e3bca0ed3844c39f079c02f41a95c66