ERC-721
Overview
Max Total Supply
365 CMTB
Holders
111
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CMTBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CryptoMaidsBody
Compiler Version
v0.8.1+commit.df193b15
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-08-28 */ // Sources flattened with hardhat v2.1.1 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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[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}. 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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly 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` 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 { } } // 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 { /** * @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) { // Divide the signature in r, s and v variables bytes32 r; bytes32 s; uint8 v; // 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) { // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. // solhint-disable-next-line no-inline-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } } else if (signature.length == 64) { // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. // solhint-disable-next-line no-inline-assembly assembly { let vs := mload(add(signature, 0x40)) r := mload(add(signature, 0x20)) s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } } else { revert("ECDSA: invalid signature length"); } return recover(hash, v, r, s); } /** * @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) { // 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 (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): 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. require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value"); require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value"); // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); require(signer != address(0), "ECDSA: invalid signature"); return signer; } /** * @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 or decremented by one. 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; } } } // 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 name, bytes32 version) private view returns (bytes32) { return keccak256( abi.encode( typeHash, name, version, 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File @openzeppelin/contracts/token/ERC721/extensions/[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 @openzeppelin/contracts/utils/math/[email protected] pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { function hasRole(bytes32 role, address account) external view returns (bool); function getRoleAdmin(bytes32 role) external view returns (bytes32); function grantRole(bytes32 role, address account) external; function revokeRole(bytes32 role, address account) external; function renounceRole(bytes32 role, address account) external; } /** * @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 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 {_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 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]{20}) is missing role (0x[0-9a-f]{32})$/ * * _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]{20}) is missing role (0x[0-9a-f]{32})$/ */ 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 { emit RoleAdminChanged(role, getRoleAdmin(role), adminRole); _roles[role].adminRole = 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/CryptoMaidsBody.sol pragma solidity ^0.8.0; interface IERC721Mintable { function exists(uint256 _tokenId) external view returns (bool); function mint(address _to, uint256 _tokenId) external; function totalSupply() external view returns (uint256); } contract CryptoMaidsBody is ERC721Permit("CryptoMaids:Body") ,Ownable, ERC721URIStorage, AccessOperatable, IERC721Mintable{ using SafeMath for uint256; using Counters for Counters.Counter; string public _defaultURI; uint256 private _supply; uint256 public constant MAX_ELEMENTS = 10000; uint256 public constant PRICE = 8 * 10**16; uint256 public constant MAX_BY_MINT = 20; address public constant devAddress = 0xF0447B9722Accc3436e70c419e9d056DecFD1c29; event UpdateDefaultURI(string defaultURI); constructor() ERC721("CryptoMaids:Body", "CMTB") { setDefaultURI("https://api.cryptomaids.tokyo/metadata/body/"); pause(); } function exists(uint256 tokenId) override public view returns (bool) { return super._exists(tokenId); } function mint(address to, uint256 tokenId) virtual override public onlyOperator() { _supply++; super._mint(to, tokenId); } function _mintMaid(address to) private { _supply++; super._mint(to, _supply); } function burn(uint256 tokenId) virtual public onlyOperator() { _supply--; super._burn(tokenId); } function totalSupply() public view virtual override returns (uint256) { return _supply; } 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(ERC721, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } function setDefaultURI(string memory defaultURI_) public onlyOperator() { _defaultURI = defaultURI_; emit UpdateDefaultURI(_defaultURI); } function _baseURI() internal view override returns (string memory) { return _defaultURI; } 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 withdrawAll() public payable onlyOwner { uint256 balance = address(this).balance; require(balance > 0); _widthdraw(devAddress, address(this).balance); } function _widthdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Transfer failed."); } function recruitMaid(address _to, uint256 _count) public payable { uint256 total = totalSupply(); require(!_paused, "Sale paused"); require(total + _count <= MAX_ELEMENTS, "Max limit"); require(total <= MAX_ELEMENTS, "Sale end"); require(_count <= MAX_BY_MINT, "Exceeds number"); require(msg.value >= price(_count), "Value below price"); for (uint256 i = 0; i < _count; i++) { _mintMaid(_to); } } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721) { super._beforeTokenTransfer(from, to, tokenId); } function price(uint256 _count) public pure returns (uint256) { return PRICE.mul(_count); } }
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":"MAX_BY_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"recruitMaid","outputs":[],"stateMutability":"payable","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":"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"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6101406040527f48d39b37a35214940203bbbd4f383519797769b13d936f387d89430afef27688610120523480156200003757600080fd5b506040518060400160405280601081526020016f43727970746f4d616964733a426f647960801b81525080604051806040016040528060018152602001603160f81b8152506040518060400160405280601081526020016f43727970746f4d616964733a426f647960801b8152506040518060400160405280600481526020016321a6aa2160e11b8152508160009080519060200190620000da929190620004cb565b508051620000f0906001906020840190620004cb565b5050825160208085019190912083519184019190912060c082905260e08190524660a0529091507f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6200014581848462000224565b60805261010052506000935062000160925050620002609050565b600780546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001ca60008051602062003d63833981519152600062000264565b620001e560008051602062003d6383398151915233620002b0565b600a805460ff191690556040805160608101909152602c80825262000214919062003d376020830139620002c0565b6200021e62000356565b6200070d565b600083838346306040516020016200024195949392919062000585565b6040516020818303038152906040528051906020012090509392505050565b3390565b806200027083620003ff565b60405184907fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff90600090a460009182526009602052604090912060010155565b620002bc828262000414565b5050565b620002db60008051602062003d6383398151915233620004a0565b620003035760405162461bcd60e51b8152600401620002fa9062000667565b60405180910390fd5b80516200031890600b906020840190620004cb565b507f2405b30cce1d59580c3cc7fbdce2d552bd8e943d5dc4f66a37053027fc7ce880600b6040516200034b9190620005b1565b60405180910390a150565b6200037160008051602062003d6383398151915233620004a0565b620003905760405162461bcd60e51b8152600401620002fa9062000667565b600a5460ff1615620003b65760405162461bcd60e51b8152600401620002fa9062000691565b600a805460ff191660011790556040517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25890620003f590339062000571565b60405180910390a1565b60009081526009602052604090206001015490565b620004208282620004a0565b620002bc5760008281526009602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200045c62000260565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60009182526009602090815260408084206001600160a01b0393909316845291905290205460ff1690565b828054620004d990620006d0565b90600052602060002090601f016020900481019282620004fd576000855562000548565b82601f106200051857805160ff191683800117855562000548565b8280016001018555821562000548579182015b82811115620005485782518255916020019190600101906200052b565b50620005569291506200055a565b5090565b5b808211156200055657600081556001016200055b565b6001600160a01b0391909116815260200190565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b6000602080835281845483600282049050600180831680620005d457607f831692505b858310811415620005f357634e487b7160e01b87526022600452602487fd5b6200060183878a01620006c7565b8180156200061857600181146200062a5762000658565b60ff1986168252878201965062000658565b620006358b620006bb565b895b86811015620006525781548482015290850190890162000637565b83019750505b50949998505050505050505050565b60208082526010908201526f26bab9ba1031329037b832b930ba37b960811b604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60009081526020902090565b90815260200190565b600281046001821680620006e557607f821691505b602082108114156200070757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e05161010051610120516135da6200075d60003960006112630152600061189c015260006118de015260006118bd0152600061184a0152600061187301526135da6000f3fe6080604052600436106102725760003560e01c806370a082311161014f578063983d2737116100c1578063d505accf1161007a578063d505accf146106c1578063d547741f146106e1578063da1b9e0814610701578063e985e9c514610721578063f2fde38b14610741578063f9613ab21461076157610272565b8063983d2737146106175780639870d7fe1461062c578063a217fddf1461064c578063a22cb46514610661578063b88d4fde14610681578063c87b56dd146106a157610272565b8063853828b611610113578063853828b61461059b5780638ad5de28146105a35780638d859f3e146105b85780638da5cb5b146105cd57806391d14854146105e257806395d89b411461060257610272565b806370a082311461051e578063715018a61461053e5780637df300b0146105535780637ecebe00146105665780638456cb591461058657610272565b80633644e515116101e857806342842e0e116101ac57806342842e0e1461046957806342966c68146104895780634f558e79146104a957806356c4aedd146104c95780636352211e146104de5780636ae459bd146104fe57610272565b80633644e515146103ea57806336568abe146103ff5780633ad10ef61461041f5780633f4ba83a1461043457806340c10f191461044957610272565b806318160ddd1161023a57806318160ddd1461033357806323b872dd14610355578063248a9ca31461037557806326a49e37146103955780632f2ff15d146103b55780633502a716146103d557610272565b806301ffc9a71461027757806306fdde03146102ad578063081812fc146102cf578063095ea7b3146102fc57806316c61ccc1461031e575b600080fd5b34801561028357600080fd5b50610297610292366004612822565b610781565b6040516102a491906129dc565b60405180910390f35b3480156102b957600080fd5b506102c2610794565b6040516102a49190612a6e565b3480156102db57600080fd5b506102ef6102ea3660046127e8565b610827565b6040516102a4919061298b565b34801561030857600080fd5b5061031c610317366004612701565b610873565b005b34801561032a57600080fd5b5061029761090b565b34801561033f57600080fd5b50610348610914565b6040516102a491906129e7565b34801561036157600080fd5b5061031c6103703660046125a2565b61091a565b34801561038157600080fd5b506103486103903660046127e8565b610952565b3480156103a157600080fd5b506103486103b03660046127e8565b610967565b3480156103c157600080fd5b5061031c6103d0366004612800565b61097b565b3480156103e157600080fd5b5061034861099f565b3480156103f657600080fd5b506103486109a5565b34801561040b57600080fd5b5061031c61041a366004612800565b6109b4565b34801561042b57600080fd5b506102ef6109fa565b34801561044057600080fd5b5061031c610a12565b34801561045557600080fd5b5061031c610464366004612701565b610aac565b34801561047557600080fd5b5061031c6104843660046125a2565b610aff565b34801561049557600080fd5b5061031c6104a43660046127e8565b610b1a565b3480156104b557600080fd5b506102976104c43660046127e8565b610b6f565b3480156104d557600080fd5b506102c2610b7a565b3480156104ea57600080fd5b506102ef6104f93660046127e8565b610c08565b34801561050a57600080fd5b5061031c61051936600461272a565b610c3d565b34801561052a57600080fd5b50610348610539366004612556565b610cfe565b34801561054a57600080fd5b5061031c610d42565b61031c610561366004612701565b610dcb565b34801561057257600080fd5b50610348610581366004612556565b610ebd565b34801561059257600080fd5b5061031c610ede565b61031c610f72565b3480156105af57600080fd5b50610348610fda565b3480156105c457600080fd5b50610348610fdf565b3480156105d957600080fd5b506102ef610feb565b3480156105ee57600080fd5b506102976105fd366004612800565b610ffa565b34801561060e57600080fd5b506102c2611025565b34801561062357600080fd5b50610348611034565b34801561063857600080fd5b5061031c610647366004612556565b611046565b34801561065857600080fd5b50610348611092565b34801561066d57600080fd5b5061031c61067c3660046126c7565b611097565b34801561068d57600080fd5b5061031c61069c3660046125dd565b611165565b3480156106ad57600080fd5b506102c26106bc3660046127e8565b61119e565b3480156106cd57600080fd5b5061031c6106dc366004612656565b6111a9565b3480156106ed57600080fd5b5061031c6106fc366004612800565b611346565b34801561070d57600080fd5b5061031c61071c36600461285a565b611365565b34801561072d57600080fd5b5061029761073c366004612570565b6113e8565b34801561074d57600080fd5b5061031c61075c366004612556565b611416565b34801561076d57600080fd5b5061034861077c3660046127e8565b6114d7565b600061078c826114e2565b90505b919050565b6060600080546107a3906134a2565b80601f01602080910402602001604051908101604052809291908181526020018280546107cf906134a2565b801561081c5780601f106107f15761010080835404028352916020019161081c565b820191906000526020600020905b8154815290600101906020018083116107ff57829003601f168201915b505050505090505b90565b600061083282611507565b6108575760405162461bcd60e51b815260040161084e90613116565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087e82610c08565b9050806001600160a01b0316836001600160a01b031614156108b25760405162461bcd60e51b815260040161084e90613291565b806001600160a01b03166108c4611524565b6001600160a01b031614806108e057506108e08161073c611524565b6108fc5760405162461bcd60e51b815260040161084e90612f3c565b6109068383611528565b505050565b600a5460ff1681565b600c5490565b61092b610925611524565b82611596565b6109475760405162461bcd60e51b815260040161084e906132fc565b61090683838361161b565b60009081526009602052604090206001015490565b600061078c67011c37937e08000083611748565b61098482610952565b61099581610990611524565b61175b565b61090683836117bf565b61271081565b60006109af611846565b905090565b6109bc611524565b6001600160a01b0316816001600160a01b0316146109ec5760405162461bcd60e51b815260040161084e9061334d565b6109f68282611909565b5050565b73f0447b9722accc3436e70c419e9d056decfd1c2981565b610a2a60008051602061358583398151915233610ffa565b610a465760405162461bcd60e51b815260040161084e90612bea565b600a5460ff16610a685760405162461bcd60e51b815260040161084e90612bbc565b600a805460ff191690556040517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90610aa290339061298b565b60405180910390a1565b610ac460008051602061358583398151915233610ffa565b610ae05760405162461bcd60e51b815260040161084e90612bea565b600c8054906000610af0836134dd565b91905055506109f6828261198e565b61090683838360405180602001604052806000815250611165565b610b3260008051602061358583398151915233610ffa565b610b4e5760405162461bcd60e51b815260040161084e90612bea565b600c8054906000610b5e8361348b565b9190505550610b6c81611a6d565b50565b600061078c82611507565b600b8054610b87906134a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb3906134a2565b8015610c005780601f10610bd557610100808354040283529160200191610c00565b820191906000526020600020905b815481529060010190602001808311610be357829003601f168201915b505050505081565b6000818152600260205260408120546001600160a01b03168061078c5760405162461bcd60e51b815260040161084e90612fe3565b610c5560008051602061358583398151915233610ffa565b610c715760405162461bcd60e51b815260040161084e90612bea565b8051825114610c7f57600080fd5b60005b82518160ff16101561090657610cec838260ff1681518110610cb457634e487b7160e01b600052603260045260246000fd5b6020026020010151838360ff1681518110610cdf57634e487b7160e01b600052603260045260246000fd5b6020026020010151610aac565b80610cf6816134f8565b915050610c82565b60006001600160a01b038216610d265760405162461bcd60e51b815260040161084e90612f99565b506001600160a01b031660009081526003602052604090205490565b610d4a611524565b6001600160a01b0316610d5b610feb565b6001600160a01b031614610d815760405162461bcd60e51b815260040161084e90613162565b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b6000610dd5610914565b600a5490915060ff1615610dfb5760405162461bcd60e51b815260040161084e90612b97565b612710610e0883836133fd565b1115610e265760405162461bcd60e51b815260040161084e90612e46565b612710811115610e485760405162461bcd60e51b815260040161084e906130a3565b6014821115610e695760405162461bcd60e51b815260040161084e90612c14565b610e7282610967565b341015610e915760405162461bcd60e51b815260040161084e90613266565b60005b82811015610eb757610ea584611aad565b80610eaf816134dd565b915050610e94565b50505050565b6001600160a01b038116600090815260066020526040812061078c90611ace565b610ef660008051602061358583398151915233610ffa565b610f125760405162461bcd60e51b815260040161084e90612bea565b600a5460ff1615610f355760405162461bcd60e51b815260040161084e90612f12565b600a805460ff191660011790556040517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25890610aa290339061298b565b610f7a611524565b6001600160a01b0316610f8b610feb565b6001600160a01b031614610fb15760405162461bcd60e51b815260040161084e90613162565b4780610fbc57600080fd5b610b6c73f0447b9722accc3436e70c419e9d056decfd1c2947611ad2565b601481565b67011c37937e08000081565b6007546001600160a01b031690565b60009182526009602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600180546107a3906134a2565b60008051602061358583398151915281565b61105e60008051602061358583398151915233610ffa565b61107a5760405162461bcd60e51b815260040161084e90612bea565b610b6c60008051602061358583398151915282611b4e565b600081565b61109f611524565b6001600160a01b0316826001600160a01b031614156110d05760405162461bcd60e51b815260040161084e90612d96565b80600560006110dd611524565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611121611524565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161115991906129dc565b60405180910390a35050565b611176611170611524565b83611596565b6111925760405162461bcd60e51b815260040161084e906132fc565b610eb784848484611b58565b606061078c82611b8b565b60006111b486610c08565b9050806001600160a01b0316876001600160a01b031614156111e85760405162461bcd60e51b815260040161084e90612d0b565b876001600160a01b0316816001600160a01b0316148061120d575061120d81896113e8565b6112295760405162461bcd60e51b815260040161084e90612e69565b844211156112495760405162461bcd60e51b815260040161084e90613197565b6001600160a01b03881660009081526006602052604081207f0000000000000000000000000000000000000000000000000000000000000000908a908a908a9061129290611ace565b8a6040516020016112a8969594939291906129f0565b60405160208183030381529060405280519060200120905060006112cb82611ca4565b905060006112db82888888611cb7565b90508a6001600160a01b0316816001600160a01b03161461130e5760405162461bcd60e51b815260040161084e90612dcd565b6001600160a01b038b16600090815260066020526040902061132f90611dad565b6113398a8a611528565b5050505050505050505050565b61134f82610952565b61135b81610990611524565b6109068383611909565b61137d60008051602061358583398151915233610ffa565b6113995760405162461bcd60e51b815260040161084e90612bea565b80516113ac90600b9060208401906123aa565b507f2405b30cce1d59580c3cc7fbdce2d552bd8e943d5dc4f66a37053027fc7ce880600b6040516113dd9190612a81565b60405180910390a150565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61141e611524565b6001600160a01b031661142f610feb565b6001600160a01b0316146114555760405162461bcd60e51b815260040161084e90613162565b6001600160a01b03811661147b5760405162461bcd60e51b815260040161084e90612c8e565b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600061078c82611ca4565b60006001600160e01b03198216637965db0b60e01b148061078c575061078c82611db6565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061155d82610c08565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115a182611507565b6115bd5760405162461bcd60e51b815260040161084e90612ec6565b60006115c883610c08565b9050806001600160a01b0316846001600160a01b031614806116035750836001600160a01b03166115f884610827565b6001600160a01b0316145b80611613575061161381856113e8565b949350505050565b826001600160a01b031661162e82610c08565b6001600160a01b0316146116545760405162461bcd60e51b815260040161084e906131ce565b6001600160a01b03821661167a5760405162461bcd60e51b815260040161084e90612d52565b611685838383611df6565b611690600082611528565b6001600160a01b03831660009081526003602052604081208054600192906116b9908490613448565b90915550506001600160a01b03821660009081526003602052604081208054600192906116e79084906133fd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006117548284613429565b9392505050565b6117658282610ffa565b6109f65761177d816001600160a01b03166014611e01565b611788836020611e01565b604051602001611799929190612916565b60408051601f198184030181529082905262461bcd60e51b825261084e91600401612a6e565b6117c98282610ffa565b6109f65760008281526009602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611802611524565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60007f000000000000000000000000000000000000000000000000000000000000000046141561189757507f0000000000000000000000000000000000000000000000000000000000000000610824565b6119027f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611fb3565b9050610824565b6119138282610ffa565b156109f65760008281526009602090815260408083206001600160a01b03851684529091529020805460ff1916905561194a611524565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6001600160a01b0382166119b45760405162461bcd60e51b815260040161084e9061306e565b6119bd81611507565b156119da5760405162461bcd60e51b815260040161084e90612cd4565b6119e660008383611df6565b6001600160a01b0382166000908152600360205260408120805460019290611a0f9084906133fd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611a7681611fed565b60008181526008602052604090208054611a8f906134a2565b159050610b6c576000818152600860205260408120610b6c9161242e565b600c8054906000611abd836134dd565b9190505550610b6c81600c5461198e565b5490565b6000826001600160a01b031682604051611aeb90610824565b60006040518083038185875af1925050503d8060008114611b28576040519150601f19603f3d011682016040523d82523d6000602084013e611b2d565b606091505b50509050806109065760405162461bcd60e51b815260040161084e906132d2565b6109f682826117bf565b611b6384848461161b565b611b6f84848484612094565b610eb75760405162461bcd60e51b815260040161084e90612c3c565b6060611b9682611507565b611bb25760405162461bcd60e51b815260040161084e906130c5565b60008281526008602052604081208054611bcb906134a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf7906134a2565b8015611c445780601f10611c1957610100808354040283529160200191611c44565b820191906000526020600020905b815481529060010190602001808311611c2757829003601f168201915b505050505090506000611c556121ac565b9050805160001415611c695750905061078f565b815115611c9b578082604051602001611c839291906128cc565b6040516020818303038152906040529250505061078f565b611613846121bb565b600061078c611cb1611846565b8361223d565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115611cf95760405162461bcd60e51b815260040161084e90612e04565b8360ff16601b1480611d0e57508360ff16601c145b611d2a5760405162461bcd60e51b815260040161084e9061302c565b600060018686868660405160008152602001604052604051611d4f9493929190612a50565b6020604051602081039080840390855afa158015611d71573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611da45760405162461bcd60e51b815260040161084e90612b2b565b95945050505050565b80546001019055565b60006001600160e01b031982166380ac58cd60e01b1480611de757506001600160e01b03198216635b5e139f60e01b145b8061078c575061078c82612270565b610906838383610906565b60606000611e10836002613429565b611e1b9060026133fd565b67ffffffffffffffff811115611e4157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e6b576020820181803683370190505b509050600360fc1b81600081518110611e9457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611ed157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611ef5846002613429565b611f009060016133fd565b90505b6001811115611f94576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611f4257634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611f6657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611f8d8161348b565b9050611f03565b5083156117545760405162461bcd60e51b815260040161084e90612b62565b60008383834630604051602001611fce959493929190612a24565b6040516020818303038152906040528051906020012090509392505050565b6000611ff882610c08565b905061200681600084611df6565b612011600083611528565b6001600160a01b038116600090815260036020526040812080546001929061203a908490613448565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006120a8846001600160a01b0316612289565b156121a457836001600160a01b031663150b7a026120c4611524565b8786866040518563ffffffff1660e01b81526004016120e6949392919061299f565b602060405180830381600087803b15801561210057600080fd5b505af1925050508015612130575060408051601f3d908101601f1916820190925261212d9181019061283e565b60015b61218a573d80801561215e576040519150601f19603f3d011682016040523d82523d6000602084013e612163565b606091505b5080516121825760405162461bcd60e51b815260040161084e90612c3c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611613565b506001611613565b6060600b80546107a3906134a2565b60606121c682611507565b6121e25760405162461bcd60e51b815260040161084e90613217565b60006121ec6121ac565b9050600081511161220c5760405180602001604052806000815250611754565b806122168461228f565b6040516020016122279291906128cc565b6040516020818303038152906040529392505050565b600082826040516020016122529291906128fb565b60405160208183030381529060405280519060200120905092915050565b6001600160e01b031981166301ffc9a760e01b14919050565b3b151590565b6060816122b457506040805180820190915260018152600360fc1b602082015261078f565b8160005b81156122de57806122c8816134dd565b91506122d79050600a83613415565b91506122b8565b60008167ffffffffffffffff81111561230757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612331576020820181803683370190505b5090505b841561161357612346600183613448565b9150612353600a86613518565b61235e9060306133fd565b60f81b81838151811061238157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506123a3600a86613415565b9450612335565b8280546123b6906134a2565b90600052602060002090601f0160209004810192826123d8576000855561241e565b82601f106123f157805160ff191683800117855561241e565b8280016001018555821561241e579182015b8281111561241e578251825591602001919060010190612403565b5061242a929150612466565b5090565b50805461243a906134a2565b6000825580601f1061244c5750610b6c565b601f016020900490600052602060002090810190610b6c91905b5b8082111561242a5760008155600101612467565b600067ffffffffffffffff83111561249557612495613558565b6124a8601f8401601f191660200161339c565b90508281528383830111156124bc57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461078f57600080fd5b600082601f8301126124fa578081fd5b8135602061250f61250a836133cd565b61339c565b828152818101908583018385028701840188101561252b578586fd5b855b858110156125495781358452928401929084019060010161252d565b5090979650505050505050565b600060208284031215612567578081fd5b611754826124d3565b60008060408385031215612582578081fd5b61258b836124d3565b9150612599602084016124d3565b90509250929050565b6000806000606084860312156125b6578081fd5b6125bf846124d3565b92506125cd602085016124d3565b9150604084013590509250925092565b600080600080608085870312156125f2578081fd5b6125fb856124d3565b9350612609602086016124d3565b925060408501359150606085013567ffffffffffffffff81111561262b578182fd5b8501601f8101871361263b578182fd5b61264a8782356020840161247b565b91505092959194509250565b600080600080600080600060e0888a031215612670578283fd5b612679886124d3565b9650612687602089016124d3565b95506040880135945060608801359350608088013560ff811681146126aa578384fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156126d9578182fd5b6126e2836124d3565b9150602083013580151581146126f6578182fd5b809150509250929050565b60008060408385031215612713578182fd5b61271c836124d3565b946020939093013593505050565b6000806040838503121561273c578182fd5b823567ffffffffffffffff80821115612753578384fd5b818501915085601f830112612766578384fd5b8135602061277661250a836133cd565b82815281810190858301838502870184018b1015612792578889fd5b8896505b848710156127bb576127a7816124d3565b835260019690960195918301918301612796565b50965050860135925050808211156127d1578283fd5b506127de858286016124ea565b9150509250929050565b6000602082840312156127f9578081fd5b5035919050565b60008060408385031215612812578182fd5b82359150612599602084016124d3565b600060208284031215612833578081fd5b81356117548161356e565b60006020828403121561284f578081fd5b81516117548161356e565b60006020828403121561286b578081fd5b813567ffffffffffffffff811115612881578182fd5b8201601f81018413612891578182fd5b6116138482356020840161247b565b600081518084526128b881602086016020860161345f565b601f01601f19169290920160200192915050565b600083516128de81846020880161345f565b8351908301906128f281836020880161345f565b01949350505050565b61190160f01b81526002810192909252602282015260420190565b60007f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008252835161294e81601785016020880161345f565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161297f81602884016020880161345f565b01602801949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129d2908301846128a0565b9695505050505050565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b93845260ff9290921660208401526040830152606082015260800190565b60006020825261175460208301846128a0565b6000602080835281845483600282049050600180831680612aa357607f831692505b858310811415612ac157634e487b7160e01b87526022600452602487fd5b612acd83878a016129e7565b818015612ae15760018114612af257612b1c565b60ff19861682528782019650612b1c565b612afb8b6133f1565b895b86811015612b1657815484820152908501908901612afd565b83019750505b50949998505050505050505050565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526010908201526f26bab9ba1031329037b832b930ba37b960811b604082015260600190565b6020808252600e908201526d22bc31b2b2b23990373ab6b132b960911b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526027908201527f4552433732315065726d69743a20617070726f76616c20746f2063757272656e6040820152663a1037bbb732b960c91b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f4552433732315065726d69743a20696e76616c6964207369676e617475726500604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b6020808252603e908201527f4552433732315065726d69743a20617070726f7665207369676e65722069732060408201527f6e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f4552433732315065726d69743a206578706972656420646561646c696e650000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156133c5576133c5613558565b604052919050565b600067ffffffffffffffff8211156133e7576133e7613558565b5060209081020190565b60009081526020902090565b600082198211156134105761341061352c565b500190565b60008261342457613424613542565b500490565b60008160001904831182151516156134435761344361352c565b500290565b60008282101561345a5761345a61352c565b500390565b60005b8381101561347a578181015183820152602001613462565b83811115610eb75750506000910152565b60008161349a5761349a61352c565b506000190190565b6002810460018216806134b657607f821691505b602082108114156134d757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134f1576134f161352c565b5060010190565b600060ff821660ff81141561350f5761350f61352c565b60010192915050565b60008261352757613527613542565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b6c57600080fdfe523a704056dcd17bcf83bed8b68c59416dac1119be77755efe3bde0a64e46e0ca2646970667358221220dd8d9b3c22f041c97ab9e27f42401340327dc54789418d99828871357945944864736f6c6343000801003368747470733a2f2f6170692e63727970746f6d616964732e746f6b796f2f6d657461646174612f626f64792f523a704056dcd17bcf83bed8b68c59416dac1119be77755efe3bde0a64e46e0c
Deployed Bytecode
0x6080604052600436106102725760003560e01c806370a082311161014f578063983d2737116100c1578063d505accf1161007a578063d505accf146106c1578063d547741f146106e1578063da1b9e0814610701578063e985e9c514610721578063f2fde38b14610741578063f9613ab21461076157610272565b8063983d2737146106175780639870d7fe1461062c578063a217fddf1461064c578063a22cb46514610661578063b88d4fde14610681578063c87b56dd146106a157610272565b8063853828b611610113578063853828b61461059b5780638ad5de28146105a35780638d859f3e146105b85780638da5cb5b146105cd57806391d14854146105e257806395d89b411461060257610272565b806370a082311461051e578063715018a61461053e5780637df300b0146105535780637ecebe00146105665780638456cb591461058657610272565b80633644e515116101e857806342842e0e116101ac57806342842e0e1461046957806342966c68146104895780634f558e79146104a957806356c4aedd146104c95780636352211e146104de5780636ae459bd146104fe57610272565b80633644e515146103ea57806336568abe146103ff5780633ad10ef61461041f5780633f4ba83a1461043457806340c10f191461044957610272565b806318160ddd1161023a57806318160ddd1461033357806323b872dd14610355578063248a9ca31461037557806326a49e37146103955780632f2ff15d146103b55780633502a716146103d557610272565b806301ffc9a71461027757806306fdde03146102ad578063081812fc146102cf578063095ea7b3146102fc57806316c61ccc1461031e575b600080fd5b34801561028357600080fd5b50610297610292366004612822565b610781565b6040516102a491906129dc565b60405180910390f35b3480156102b957600080fd5b506102c2610794565b6040516102a49190612a6e565b3480156102db57600080fd5b506102ef6102ea3660046127e8565b610827565b6040516102a4919061298b565b34801561030857600080fd5b5061031c610317366004612701565b610873565b005b34801561032a57600080fd5b5061029761090b565b34801561033f57600080fd5b50610348610914565b6040516102a491906129e7565b34801561036157600080fd5b5061031c6103703660046125a2565b61091a565b34801561038157600080fd5b506103486103903660046127e8565b610952565b3480156103a157600080fd5b506103486103b03660046127e8565b610967565b3480156103c157600080fd5b5061031c6103d0366004612800565b61097b565b3480156103e157600080fd5b5061034861099f565b3480156103f657600080fd5b506103486109a5565b34801561040b57600080fd5b5061031c61041a366004612800565b6109b4565b34801561042b57600080fd5b506102ef6109fa565b34801561044057600080fd5b5061031c610a12565b34801561045557600080fd5b5061031c610464366004612701565b610aac565b34801561047557600080fd5b5061031c6104843660046125a2565b610aff565b34801561049557600080fd5b5061031c6104a43660046127e8565b610b1a565b3480156104b557600080fd5b506102976104c43660046127e8565b610b6f565b3480156104d557600080fd5b506102c2610b7a565b3480156104ea57600080fd5b506102ef6104f93660046127e8565b610c08565b34801561050a57600080fd5b5061031c61051936600461272a565b610c3d565b34801561052a57600080fd5b50610348610539366004612556565b610cfe565b34801561054a57600080fd5b5061031c610d42565b61031c610561366004612701565b610dcb565b34801561057257600080fd5b50610348610581366004612556565b610ebd565b34801561059257600080fd5b5061031c610ede565b61031c610f72565b3480156105af57600080fd5b50610348610fda565b3480156105c457600080fd5b50610348610fdf565b3480156105d957600080fd5b506102ef610feb565b3480156105ee57600080fd5b506102976105fd366004612800565b610ffa565b34801561060e57600080fd5b506102c2611025565b34801561062357600080fd5b50610348611034565b34801561063857600080fd5b5061031c610647366004612556565b611046565b34801561065857600080fd5b50610348611092565b34801561066d57600080fd5b5061031c61067c3660046126c7565b611097565b34801561068d57600080fd5b5061031c61069c3660046125dd565b611165565b3480156106ad57600080fd5b506102c26106bc3660046127e8565b61119e565b3480156106cd57600080fd5b5061031c6106dc366004612656565b6111a9565b3480156106ed57600080fd5b5061031c6106fc366004612800565b611346565b34801561070d57600080fd5b5061031c61071c36600461285a565b611365565b34801561072d57600080fd5b5061029761073c366004612570565b6113e8565b34801561074d57600080fd5b5061031c61075c366004612556565b611416565b34801561076d57600080fd5b5061034861077c3660046127e8565b6114d7565b600061078c826114e2565b90505b919050565b6060600080546107a3906134a2565b80601f01602080910402602001604051908101604052809291908181526020018280546107cf906134a2565b801561081c5780601f106107f15761010080835404028352916020019161081c565b820191906000526020600020905b8154815290600101906020018083116107ff57829003601f168201915b505050505090505b90565b600061083282611507565b6108575760405162461bcd60e51b815260040161084e90613116565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087e82610c08565b9050806001600160a01b0316836001600160a01b031614156108b25760405162461bcd60e51b815260040161084e90613291565b806001600160a01b03166108c4611524565b6001600160a01b031614806108e057506108e08161073c611524565b6108fc5760405162461bcd60e51b815260040161084e90612f3c565b6109068383611528565b505050565b600a5460ff1681565b600c5490565b61092b610925611524565b82611596565b6109475760405162461bcd60e51b815260040161084e906132fc565b61090683838361161b565b60009081526009602052604090206001015490565b600061078c67011c37937e08000083611748565b61098482610952565b61099581610990611524565b61175b565b61090683836117bf565b61271081565b60006109af611846565b905090565b6109bc611524565b6001600160a01b0316816001600160a01b0316146109ec5760405162461bcd60e51b815260040161084e9061334d565b6109f68282611909565b5050565b73f0447b9722accc3436e70c419e9d056decfd1c2981565b610a2a60008051602061358583398151915233610ffa565b610a465760405162461bcd60e51b815260040161084e90612bea565b600a5460ff16610a685760405162461bcd60e51b815260040161084e90612bbc565b600a805460ff191690556040517f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90610aa290339061298b565b60405180910390a1565b610ac460008051602061358583398151915233610ffa565b610ae05760405162461bcd60e51b815260040161084e90612bea565b600c8054906000610af0836134dd565b91905055506109f6828261198e565b61090683838360405180602001604052806000815250611165565b610b3260008051602061358583398151915233610ffa565b610b4e5760405162461bcd60e51b815260040161084e90612bea565b600c8054906000610b5e8361348b565b9190505550610b6c81611a6d565b50565b600061078c82611507565b600b8054610b87906134a2565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb3906134a2565b8015610c005780601f10610bd557610100808354040283529160200191610c00565b820191906000526020600020905b815481529060010190602001808311610be357829003601f168201915b505050505081565b6000818152600260205260408120546001600160a01b03168061078c5760405162461bcd60e51b815260040161084e90612fe3565b610c5560008051602061358583398151915233610ffa565b610c715760405162461bcd60e51b815260040161084e90612bea565b8051825114610c7f57600080fd5b60005b82518160ff16101561090657610cec838260ff1681518110610cb457634e487b7160e01b600052603260045260246000fd5b6020026020010151838360ff1681518110610cdf57634e487b7160e01b600052603260045260246000fd5b6020026020010151610aac565b80610cf6816134f8565b915050610c82565b60006001600160a01b038216610d265760405162461bcd60e51b815260040161084e90612f99565b506001600160a01b031660009081526003602052604090205490565b610d4a611524565b6001600160a01b0316610d5b610feb565b6001600160a01b031614610d815760405162461bcd60e51b815260040161084e90613162565b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b6000610dd5610914565b600a5490915060ff1615610dfb5760405162461bcd60e51b815260040161084e90612b97565b612710610e0883836133fd565b1115610e265760405162461bcd60e51b815260040161084e90612e46565b612710811115610e485760405162461bcd60e51b815260040161084e906130a3565b6014821115610e695760405162461bcd60e51b815260040161084e90612c14565b610e7282610967565b341015610e915760405162461bcd60e51b815260040161084e90613266565b60005b82811015610eb757610ea584611aad565b80610eaf816134dd565b915050610e94565b50505050565b6001600160a01b038116600090815260066020526040812061078c90611ace565b610ef660008051602061358583398151915233610ffa565b610f125760405162461bcd60e51b815260040161084e90612bea565b600a5460ff1615610f355760405162461bcd60e51b815260040161084e90612f12565b600a805460ff191660011790556040517f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25890610aa290339061298b565b610f7a611524565b6001600160a01b0316610f8b610feb565b6001600160a01b031614610fb15760405162461bcd60e51b815260040161084e90613162565b4780610fbc57600080fd5b610b6c73f0447b9722accc3436e70c419e9d056decfd1c2947611ad2565b601481565b67011c37937e08000081565b6007546001600160a01b031690565b60009182526009602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6060600180546107a3906134a2565b60008051602061358583398151915281565b61105e60008051602061358583398151915233610ffa565b61107a5760405162461bcd60e51b815260040161084e90612bea565b610b6c60008051602061358583398151915282611b4e565b600081565b61109f611524565b6001600160a01b0316826001600160a01b031614156110d05760405162461bcd60e51b815260040161084e90612d96565b80600560006110dd611524565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611121611524565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161115991906129dc565b60405180910390a35050565b611176611170611524565b83611596565b6111925760405162461bcd60e51b815260040161084e906132fc565b610eb784848484611b58565b606061078c82611b8b565b60006111b486610c08565b9050806001600160a01b0316876001600160a01b031614156111e85760405162461bcd60e51b815260040161084e90612d0b565b876001600160a01b0316816001600160a01b0316148061120d575061120d81896113e8565b6112295760405162461bcd60e51b815260040161084e90612e69565b844211156112495760405162461bcd60e51b815260040161084e90613197565b6001600160a01b03881660009081526006602052604081207f48d39b37a35214940203bbbd4f383519797769b13d936f387d89430afef27688908a908a908a9061129290611ace565b8a6040516020016112a8969594939291906129f0565b60405160208183030381529060405280519060200120905060006112cb82611ca4565b905060006112db82888888611cb7565b90508a6001600160a01b0316816001600160a01b03161461130e5760405162461bcd60e51b815260040161084e90612dcd565b6001600160a01b038b16600090815260066020526040902061132f90611dad565b6113398a8a611528565b5050505050505050505050565b61134f82610952565b61135b81610990611524565b6109068383611909565b61137d60008051602061358583398151915233610ffa565b6113995760405162461bcd60e51b815260040161084e90612bea565b80516113ac90600b9060208401906123aa565b507f2405b30cce1d59580c3cc7fbdce2d552bd8e943d5dc4f66a37053027fc7ce880600b6040516113dd9190612a81565b60405180910390a150565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61141e611524565b6001600160a01b031661142f610feb565b6001600160a01b0316146114555760405162461bcd60e51b815260040161084e90613162565b6001600160a01b03811661147b5760405162461bcd60e51b815260040161084e90612c8e565b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b600061078c82611ca4565b60006001600160e01b03198216637965db0b60e01b148061078c575061078c82611db6565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061155d82610c08565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115a182611507565b6115bd5760405162461bcd60e51b815260040161084e90612ec6565b60006115c883610c08565b9050806001600160a01b0316846001600160a01b031614806116035750836001600160a01b03166115f884610827565b6001600160a01b0316145b80611613575061161381856113e8565b949350505050565b826001600160a01b031661162e82610c08565b6001600160a01b0316146116545760405162461bcd60e51b815260040161084e906131ce565b6001600160a01b03821661167a5760405162461bcd60e51b815260040161084e90612d52565b611685838383611df6565b611690600082611528565b6001600160a01b03831660009081526003602052604081208054600192906116b9908490613448565b90915550506001600160a01b03821660009081526003602052604081208054600192906116e79084906133fd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006117548284613429565b9392505050565b6117658282610ffa565b6109f65761177d816001600160a01b03166014611e01565b611788836020611e01565b604051602001611799929190612916565b60408051601f198184030181529082905262461bcd60e51b825261084e91600401612a6e565b6117c98282610ffa565b6109f65760008281526009602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611802611524565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60007f000000000000000000000000000000000000000000000000000000000000000146141561189757507f089ba837e6cf8b278ac8016058a7cabbcf3b8e75f95f8e28e81e467b807219a6610824565b6119027f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7fb5217731d167b8412a33844d162acd45c08f3d18288a535c82ed3d6dbd22ef577fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6611fb3565b9050610824565b6119138282610ffa565b156109f65760008281526009602090815260408083206001600160a01b03851684529091529020805460ff1916905561194a611524565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6001600160a01b0382166119b45760405162461bcd60e51b815260040161084e9061306e565b6119bd81611507565b156119da5760405162461bcd60e51b815260040161084e90612cd4565b6119e660008383611df6565b6001600160a01b0382166000908152600360205260408120805460019290611a0f9084906133fd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611a7681611fed565b60008181526008602052604090208054611a8f906134a2565b159050610b6c576000818152600860205260408120610b6c9161242e565b600c8054906000611abd836134dd565b9190505550610b6c81600c5461198e565b5490565b6000826001600160a01b031682604051611aeb90610824565b60006040518083038185875af1925050503d8060008114611b28576040519150601f19603f3d011682016040523d82523d6000602084013e611b2d565b606091505b50509050806109065760405162461bcd60e51b815260040161084e906132d2565b6109f682826117bf565b611b6384848461161b565b611b6f84848484612094565b610eb75760405162461bcd60e51b815260040161084e90612c3c565b6060611b9682611507565b611bb25760405162461bcd60e51b815260040161084e906130c5565b60008281526008602052604081208054611bcb906134a2565b80601f0160208091040260200160405190810160405280929190818152602001828054611bf7906134a2565b8015611c445780601f10611c1957610100808354040283529160200191611c44565b820191906000526020600020905b815481529060010190602001808311611c2757829003601f168201915b505050505090506000611c556121ac565b9050805160001415611c695750905061078f565b815115611c9b578082604051602001611c839291906128cc565b6040516020818303038152906040529250505061078f565b611613846121bb565b600061078c611cb1611846565b8361223d565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115611cf95760405162461bcd60e51b815260040161084e90612e04565b8360ff16601b1480611d0e57508360ff16601c145b611d2a5760405162461bcd60e51b815260040161084e9061302c565b600060018686868660405160008152602001604052604051611d4f9493929190612a50565b6020604051602081039080840390855afa158015611d71573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611da45760405162461bcd60e51b815260040161084e90612b2b565b95945050505050565b80546001019055565b60006001600160e01b031982166380ac58cd60e01b1480611de757506001600160e01b03198216635b5e139f60e01b145b8061078c575061078c82612270565b610906838383610906565b60606000611e10836002613429565b611e1b9060026133fd565b67ffffffffffffffff811115611e4157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e6b576020820181803683370190505b509050600360fc1b81600081518110611e9457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611ed157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611ef5846002613429565b611f009060016133fd565b90505b6001811115611f94576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611f4257634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611f6657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611f8d8161348b565b9050611f03565b5083156117545760405162461bcd60e51b815260040161084e90612b62565b60008383834630604051602001611fce959493929190612a24565b6040516020818303038152906040528051906020012090509392505050565b6000611ff882610c08565b905061200681600084611df6565b612011600083611528565b6001600160a01b038116600090815260036020526040812080546001929061203a908490613448565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60006120a8846001600160a01b0316612289565b156121a457836001600160a01b031663150b7a026120c4611524565b8786866040518563ffffffff1660e01b81526004016120e6949392919061299f565b602060405180830381600087803b15801561210057600080fd5b505af1925050508015612130575060408051601f3d908101601f1916820190925261212d9181019061283e565b60015b61218a573d80801561215e576040519150601f19603f3d011682016040523d82523d6000602084013e612163565b606091505b5080516121825760405162461bcd60e51b815260040161084e90612c3c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611613565b506001611613565b6060600b80546107a3906134a2565b60606121c682611507565b6121e25760405162461bcd60e51b815260040161084e90613217565b60006121ec6121ac565b9050600081511161220c5760405180602001604052806000815250611754565b806122168461228f565b6040516020016122279291906128cc565b6040516020818303038152906040529392505050565b600082826040516020016122529291906128fb565b60405160208183030381529060405280519060200120905092915050565b6001600160e01b031981166301ffc9a760e01b14919050565b3b151590565b6060816122b457506040805180820190915260018152600360fc1b602082015261078f565b8160005b81156122de57806122c8816134dd565b91506122d79050600a83613415565b91506122b8565b60008167ffffffffffffffff81111561230757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612331576020820181803683370190505b5090505b841561161357612346600183613448565b9150612353600a86613518565b61235e9060306133fd565b60f81b81838151811061238157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506123a3600a86613415565b9450612335565b8280546123b6906134a2565b90600052602060002090601f0160209004810192826123d8576000855561241e565b82601f106123f157805160ff191683800117855561241e565b8280016001018555821561241e579182015b8281111561241e578251825591602001919060010190612403565b5061242a929150612466565b5090565b50805461243a906134a2565b6000825580601f1061244c5750610b6c565b601f016020900490600052602060002090810190610b6c91905b5b8082111561242a5760008155600101612467565b600067ffffffffffffffff83111561249557612495613558565b6124a8601f8401601f191660200161339c565b90508281528383830111156124bc57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461078f57600080fd5b600082601f8301126124fa578081fd5b8135602061250f61250a836133cd565b61339c565b828152818101908583018385028701840188101561252b578586fd5b855b858110156125495781358452928401929084019060010161252d565b5090979650505050505050565b600060208284031215612567578081fd5b611754826124d3565b60008060408385031215612582578081fd5b61258b836124d3565b9150612599602084016124d3565b90509250929050565b6000806000606084860312156125b6578081fd5b6125bf846124d3565b92506125cd602085016124d3565b9150604084013590509250925092565b600080600080608085870312156125f2578081fd5b6125fb856124d3565b9350612609602086016124d3565b925060408501359150606085013567ffffffffffffffff81111561262b578182fd5b8501601f8101871361263b578182fd5b61264a8782356020840161247b565b91505092959194509250565b600080600080600080600060e0888a031215612670578283fd5b612679886124d3565b9650612687602089016124d3565b95506040880135945060608801359350608088013560ff811681146126aa578384fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156126d9578182fd5b6126e2836124d3565b9150602083013580151581146126f6578182fd5b809150509250929050565b60008060408385031215612713578182fd5b61271c836124d3565b946020939093013593505050565b6000806040838503121561273c578182fd5b823567ffffffffffffffff80821115612753578384fd5b818501915085601f830112612766578384fd5b8135602061277661250a836133cd565b82815281810190858301838502870184018b1015612792578889fd5b8896505b848710156127bb576127a7816124d3565b835260019690960195918301918301612796565b50965050860135925050808211156127d1578283fd5b506127de858286016124ea565b9150509250929050565b6000602082840312156127f9578081fd5b5035919050565b60008060408385031215612812578182fd5b82359150612599602084016124d3565b600060208284031215612833578081fd5b81356117548161356e565b60006020828403121561284f578081fd5b81516117548161356e565b60006020828403121561286b578081fd5b813567ffffffffffffffff811115612881578182fd5b8201601f81018413612891578182fd5b6116138482356020840161247b565b600081518084526128b881602086016020860161345f565b601f01601f19169290920160200192915050565b600083516128de81846020880161345f565b8351908301906128f281836020880161345f565b01949350505050565b61190160f01b81526002810192909252602282015260420190565b60007f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008252835161294e81601785016020880161345f565b7001034b99036b4b9b9b4b733903937b6329607d1b601791840191820152835161297f81602884016020880161345f565b01602801949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129d2908301846128a0565b9695505050505050565b901515815260200190565b90815260200190565b9586526001600160a01b0394851660208701529290931660408501526060840152608083019190915260a082015260c00190565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b93845260ff9290921660208401526040830152606082015260800190565b60006020825261175460208301846128a0565b6000602080835281845483600282049050600180831680612aa357607f831692505b858310811415612ac157634e487b7160e01b87526022600452602487fd5b612acd83878a016129e7565b818015612ae15760018114612af257612b1c565b60ff19861682528782019650612b1c565b612afb8b6133f1565b895b86811015612b1657815484820152908501908901612afd565b83019750505b50949998505050505050505050565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b6020808252818101527f537472696e67733a20686578206c656e67746820696e73756666696369656e74604082015260600190565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b60208082526010908201526f26bab9ba1031329037b832b930ba37b960811b604082015260600190565b6020808252600e908201526d22bc31b2b2b23990373ab6b132b960911b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526027908201527f4552433732315065726d69743a20617070726f76616c20746f2063757272656e6040820152663a1037bbb732b960c91b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f4552433732315065726d69743a20696e76616c6964207369676e617475726500604082015260600190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b6020808252603e908201527f4552433732315065726d69743a20617070726f7665207369676e65722069732060408201527f6e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526008908201526714d85b1948195b9960c21b604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f4552433732315065726d69743a206578706972656420646561646c696e650000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156133c5576133c5613558565b604052919050565b600067ffffffffffffffff8211156133e7576133e7613558565b5060209081020190565b60009081526020902090565b600082198211156134105761341061352c565b500190565b60008261342457613424613542565b500490565b60008160001904831182151516156134435761344361352c565b500290565b60008282101561345a5761345a61352c565b500390565b60005b8381101561347a578181015183820152602001613462565b83811115610eb75750506000910152565b60008161349a5761349a61352c565b506000190190565b6002810460018216806134b657607f821691505b602082108114156134d757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134f1576134f161352c565b5060010190565b600060ff821660ff81141561350f5761350f61352c565b60010192915050565b60008261352757613527613542565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b6c57600080fdfe523a704056dcd17bcf83bed8b68c59416dac1119be77755efe3bde0a64e46e0ca2646970667358221220dd8d9b3c22f041c97ab9e27f42401340327dc54789418d99828871357945944864736f6c63430008010033
Deployed Bytecode Sourcemap
68359:3594:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69970:176;;;;;;;;;;-1:-1:-1;69970:176:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21655:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23115:221::-;;;;;;;;;;-1:-1:-1;23115:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22652:397::-;;;;;;;;;;-1:-1:-1;22652:397:0;;;;;:::i;:::-;;:::i;:::-;;67166:19;;;;;;;;;;;;;:::i;69587:103::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24005:305::-;;;;;;;;;;-1:-1:-1;24005:305:0;;;;;:::i;:::-;;:::i;63728:123::-;;;;;;;;;;-1:-1:-1;63728:123:0;;;;;:::i;:::-;;:::i;71844:104::-;;;;;;;;;;-1:-1:-1;71844:104:0;;;;;:::i;:::-;;:::i;64113:147::-;;;;;;;;;;-1:-1:-1;64113:147:0;;;;;:::i;:::-;;:::i;68627:44::-;;;;;;;;;;;;;:::i;46720:115::-;;;;;;;;;;;;;:::i;65161:218::-;;;;;;;;;;-1:-1:-1;65161:218:0;;;;;:::i;:::-;;:::i;68774:79::-;;;;;;;;;;;;;:::i;67916:124::-;;;;;;;;;;;;;:::i;69196:145::-;;;;;;;;;;-1:-1:-1;69196:145:0;;;;;:::i;:::-;;:::i;24381:151::-;;;;;;;;;;-1:-1:-1;24381:151:0;;;;;:::i;:::-;;:::i;69459:120::-;;;;;;;;;;-1:-1:-1;69459:120:0;;;;;:::i;:::-;;:::i;69071:117::-;;;;;;;;;;-1:-1:-1;69071:117:0;;;;;:::i;:::-;;:::i;68565:25::-;;;;;;;;;;;;;:::i;21349:239::-;;;;;;;;;;-1:-1:-1;21349:239:0;;;;;:::i;:::-;;:::i;69698:264::-;;;;;;;;;;-1:-1:-1;69698:264:0;;;;;:::i;:::-;;:::i;21079:208::-;;;;;;;;;;-1:-1:-1;21079:208:0;;;;;:::i;:::-;;:::i;48726:148::-;;;;;;;;;;;;;:::i;71135:488::-;;;;;;:::i;:::-;;:::i;46469:120::-;;;;;;;;;;-1:-1:-1;46469:120:0;;;;;:::i;:::-;;:::i;67786:122::-;;;;;;;;;;;;;:::i;70745:193::-;;;:::i;68727:40::-;;;;;;;;;;;;;:::i;68678:42::-;;;;;;;;;;;;;:::i;48075:87::-;;;;;;;;;;;;;:::i;62726:139::-;;;;;;;;;;-1:-1:-1;62726:139:0;;;;;:::i;:::-;;:::i;21824:104::-;;;;;;;;;;;;;:::i;67025:56::-;;;;;;;;;;;;;:::i;67347:108::-;;;;;;;;;;-1:-1:-1;67347:108:0;;;;;:::i;:::-;;:::i;60691:49::-;;;;;;;;;;;;;:::i;23408:295::-;;;;;;;;;;-1:-1:-1;23408:295:0;;;;;:::i;:::-;;:::i;24603:285::-;;;;;;;;;;-1:-1:-1;24603:285:0;;;;;:::i;:::-;;:::i;70566:162::-;;;;;;;;;;-1:-1:-1;70566:162:0;;;;;:::i;:::-;;:::i;45276:1126::-;;;;;;;;;;-1:-1:-1;45276:1126:0;;;;;:::i;:::-;;:::i;64505:149::-;;;;;;;;;;-1:-1:-1;64505:149:0;;;;;:::i;:::-;;:::i;70154:161::-;;;;;;;;;;-1:-1:-1;70154:161:0;;;;;:::i;:::-;;:::i;23774:164::-;;;;;;;;;;-1:-1:-1;23774:164:0;;;;;:::i;:::-;;:::i;49029:244::-;;;;;;;;;;-1:-1:-1;49029:244:0;;;;;:::i;:::-;;:::i;46843:123::-;;;;;;;;;;-1:-1:-1;46843:123:0;;;;;:::i;:::-;;:::i;69970:176::-;70078:4;70102:36;70126:11;70102:23;:36::i;:::-;70095:43;;69970:176;;;;:::o;21655:100::-;21709:13;21742:5;21735:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21655:100;;:::o;23115:221::-;23191:7;23219:16;23227:7;23219;:16::i;:::-;23211:73;;;;-1:-1:-1;;;23211:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;23304:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23304:24:0;;23115:221::o;22652:397::-;22733:13;22749:23;22764:7;22749:14;:23::i;:::-;22733:39;;22797:5;-1:-1:-1;;;;;22791:11:0;:2;-1:-1:-1;;;;;22791:11:0;;;22783:57;;;;-1:-1:-1;;;22783:57:0;;;;;;;:::i;:::-;22877:5;-1:-1:-1;;;;;22861:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22861:21:0;;:62;;;;22886:37;22903:5;22910:12;:10;:12::i;22886:37::-;22853:154;;;;-1:-1:-1;;;22853:154:0;;;;;;;:::i;:::-;23020:21;23029:2;23033:7;23020:8;:21::i;:::-;22652:397;;;:::o;67166:19::-;;;;;;:::o;69587:103::-;69675:7;;69587:103;:::o;24005:305::-;24166:41;24185:12;:10;:12::i;:::-;24199:7;24166:18;:41::i;:::-;24158:103;;;;-1:-1:-1;;;24158:103:0;;;;;;;:::i;:::-;24274:28;24284:4;24290:2;24294:7;24274:9;:28::i;63728:123::-;63794:7;63821:12;;;:6;:12;;;;;:22;;;;63728:123::o;71844:104::-;71896:7;71923:17;68710:10;71933:6;71923:9;:17::i;64113:147::-;64196:18;64209:4;64196:12;:18::i;:::-;62295:30;62306:4;62312:12;:10;:12::i;:::-;62295:10;:30::i;:::-;64227:25:::1;64238:4;64244:7;64227:10;:25::i;68627:44::-:0;68666:5;68627:44;:::o;46720:115::-;46780:7;46807:20;:18;:20::i;:::-;46800:27;;46720:115;:::o;65161:218::-;65268:12;:10;:12::i;:::-;-1:-1:-1;;;;;65257:23:0;:7;-1:-1:-1;;;;;65257:23:0;;65249:83;;;;-1:-1:-1;;;65249:83:0;;;;;;;:::i;:::-;65345:26;65357:4;65363:7;65345:11;:26::i;:::-;65161:218;;:::o;68774:79::-;68811:42;68774:79;:::o;67916:124::-;67506:29;-1:-1:-1;;;;;;;;;;;67524:10:0;67506:7;:29::i;:::-;67498:58;;;;-1:-1:-1;;;67498:58:0;;;;;;;:::i;:::-;67726:7:::1;::::0;::::1;;67718:40;;;;-1:-1:-1::0;;;67718:40:0::1;;;;;;;:::i;:::-;67981:7:::2;:15:::0;;-1:-1:-1;;67981:15:0::2;::::0;;68012:20:::2;::::0;::::2;::::0;::::2;::::0;68021:10:::2;::::0;68012:20:::2;:::i;:::-;;;;;;;;67916:124::o:0;69196:145::-;67506:29;-1:-1:-1;;;;;;;;;;;67524:10:0;67506:7;:29::i;:::-;67498:58;;;;-1:-1:-1;;;67498:58:0;;;;;;;:::i;:::-;69289:7:::1;:9:::0;;;:7:::1;:9;::::0;::::1;:::i;:::-;;;;;;69309:24;69321:2;69325:7;69309:11;:24::i;24381:151::-:0;24485:39;24502:4;24508:2;24512:7;24485:39;;;;;;;;;;;;:16;:39::i;69459:120::-;67506:29;-1:-1:-1;;;;;;;;;;;67524:10:0;67506:7;:29::i;:::-;67498:58;;;;-1:-1:-1;;;67498:58:0;;;;;;;:::i;:::-;69531:7:::1;:9:::0;;;:7:::1;:9;::::0;::::1;:::i;:::-;;;;;;69551:20;69563:7;69551:11;:20::i;:::-;69459:120:::0;:::o;69071:117::-;69134:4;69158:22;69172:7;69158:13;:22::i;68565:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21349:239::-;21421:7;21457:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21457:16:0;21492:19;21484:73;;;;-1:-1:-1;;;21484:73:0;;;;;;;:::i;69698:264::-;67506:29;-1:-1:-1;;;;;;;;;;;67524:10:0;67506:7;:29::i;:::-;67498:58;;;;-1:-1:-1;;;67498:58:0;;;;;;;:::i;:::-;69823:9:::1;:16;69808:4;:11;:31;69800:40;;;::::0;::::1;;69851:7;69869:86;69885:4;:11;69881:1;:15;;;69869:86;;;69916:27;69921:4;69926:1;69921:7;;;;;;;;-1:-1:-1::0;;;69921:7:0::1;;;;;;;;;;;;;;;69930:9;69940:1;69930:12;;;;;;;;-1:-1:-1::0;;;69930:12:0::1;;;;;;;;;;;;;;;69916:4;:27::i;:::-;69898:3:::0;::::1;::::0;::::1;:::i;:::-;;;;69869:86;;21079:208:::0;21151:7;-1:-1:-1;;;;;21179:19:0;;21171:74;;;;-1:-1:-1;;;21171:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;21263:16:0;;;;;:9;:16;;;;;;;21079:208::o;48726:148::-;48306:12;:10;:12::i;:::-;-1:-1:-1;;;;;48295:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;48295:23:0;;48287:68;;;;-1:-1:-1;;;48287:68:0;;;;;;;:::i;:::-;48817:6:::1;::::0;48796:40:::1;::::0;48833:1:::1;::::0;-1:-1:-1;;;;;48817:6:0::1;::::0;48796:40:::1;::::0;48833:1;;48796:40:::1;48847:6;:19:::0;;-1:-1:-1;;;;;;48847:19:0::1;::::0;;48726:148::o;71135:488::-;71211:13;71227;:11;:13::i;:::-;71260:7;;71211:29;;-1:-1:-1;71260:7:0;;71259:8;71251:32;;;;-1:-1:-1;;;71251:32:0;;;;;;;:::i;:::-;68666:5;71302:14;71310:6;71302:5;:14;:::i;:::-;:30;;71294:52;;;;-1:-1:-1;;;71294:52:0;;;;;;;:::i;:::-;68666:5;71365;:21;;71357:42;;;;-1:-1:-1;;;71357:42:0;;;;;;;:::i;:::-;68765:2;71418:6;:21;;71410:48;;;;-1:-1:-1;;;71410:48:0;;;;;;;:::i;:::-;71490:13;71496:6;71490:5;:13::i;:::-;71477:9;:26;;71469:56;;;;-1:-1:-1;;;71469:56:0;;;;;;;:::i;:::-;71543:9;71538:78;71562:6;71558:1;:10;71538:78;;;71590:14;71600:3;71590:9;:14::i;:::-;71570:3;;;;:::i;:::-;;;;71538:78;;;;71135:488;;;:::o;46469:120::-;-1:-1:-1;;;;;46557:14:0;;46530:7;46557:14;;;:7;:14;;;;;:24;;:22;:24::i;67786:122::-;67506:29;-1:-1:-1;;;;;;;;;;;67524:10:0;67506:7;:29::i;:::-;67498:58;;;;-1:-1:-1;;;67498:58:0;;;;;;;:::i;:::-;67629:7:::1;::::0;::::1;;67628:8;67620:37;;;;-1:-1:-1::0;;;67620:37:0::1;;;;;;;:::i;:::-;67852:7:::2;:14:::0;;-1:-1:-1;;67852:14:0::2;67862:4;67852:14;::::0;;67882:18:::2;::::0;::::2;::::0;::::2;::::0;67889:10:::2;::::0;67882:18:::2;:::i;70745:193::-:0;48306:12;:10;:12::i;:::-;-1:-1:-1;;;;;48295:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;48295:23:0;;48287:68;;;;-1:-1:-1;;;48287:68:0;;;;;;;:::i;:::-;70822:21:::1;70862:11:::0;70854:20:::1;;;::::0;::::1;;70885:45;68811:42;70908:21;70885:10;:45::i;68727:40::-:0;68765:2;68727:40;:::o;68678:42::-;68710:10;68678:42;:::o;48075:87::-;48148:6;;-1:-1:-1;;;;;48148:6:0;48075:87;:::o;62726:139::-;62804:4;62828:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;62828:29:0;;;;;;;;;;;;;;;62726:139::o;21824:104::-;21880:13;21913:7;21906:14;;;;;:::i;67025:56::-;-1:-1:-1;;;;;;;;;;;67025:56:0;:::o;67347:108::-;67506:29;-1:-1:-1;;;;;;;;;;;67524:10:0;67506:7;:29::i;:::-;67498:58;;;;-1:-1:-1;;;67498:58:0;;;;;;;:::i;:::-;67418:29:::1;-1:-1:-1::0;;;;;;;;;;;67439:7:0::1;67418:10;:29::i;60691:49::-:0;60736:4;60691:49;:::o;23408:295::-;23523:12;:10;:12::i;:::-;-1:-1:-1;;;;;23511:24:0;:8;-1:-1:-1;;;;;23511:24:0;;;23503:62;;;;-1:-1:-1;;;23503:62:0;;;;;;;:::i;:::-;23623:8;23578:18;:32;23597:12;:10;:12::i;:::-;-1:-1:-1;;;;;23578:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23578:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23578:53:0;;;;;;;;;;;23662:12;:10;:12::i;:::-;-1:-1:-1;;;;;23647:48:0;;23686:8;23647:48;;;;;;:::i;:::-;;;;;;;;23408:295;;:::o;24603:285::-;24735:41;24754:12;:10;:12::i;:::-;24768:7;24735:18;:41::i;:::-;24727:103;;;;-1:-1:-1;;;24727:103:0;;;;;;;:::i;:::-;24841:39;24855:4;24861:2;24865:7;24874:5;24841:13;:39::i;70566:162::-;70665:13;70697:23;70712:7;70697:14;:23::i;45276:1126::-;45427:18;45448:16;45456:7;45448;:16::i;:::-;45427:37;;45494:10;-1:-1:-1;;;;;45483:21:0;:7;-1:-1:-1;;;;;45483:21:0;;;45475:73;;;;-1:-1:-1;;;45475:73:0;;;;;;;:::i;:::-;45581:5;-1:-1:-1;;;;;45567:19:0;:10;-1:-1:-1;;;;;45567:19:0;;:58;;;;45590:35;45607:10;45619:5;45590:16;:35::i;:::-;45559:156;;;;-1:-1:-1;;;45559:156:0;;;;;;;:::i;:::-;45810:8;45791:15;:27;;45783:70;;;;-1:-1:-1;;;45783:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46051:14:0;;45866:18;46051:14;;;:7;:14;;;;;45940:16;;45975:5;;45999:7;;46025;;46051:24;;:22;:24::i;:::-;46094:8;45911:206;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45887:241;;;;;;45866:262;;46141:12;46156:28;46173:10;46156:16;:28::i;:::-;46141:43;;46197:14;46214:28;46228:4;46234:1;46237;46240;46214:13;:28::i;:::-;46197:45;;46271:5;-1:-1:-1;;;;;46261:15:0;:6;-1:-1:-1;;;;;46261:15:0;;46253:59;;;;-1:-1:-1;;;46253:59:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46325:14:0;;;;;;:7;:14;;;;;:26;;:24;:26::i;:::-;46362:32;46377:7;46386;46362:14;:32::i;:::-;45276:1126;;;;;;;;;;;:::o;64505:149::-;64589:18;64602:4;64589:12;:18::i;:::-;62295:30;62306:4;62312:12;:10;:12::i;62295:30::-;64620:26:::1;64632:4;64638:7;64620:11;:26::i;70154:161::-:0;67506:29;-1:-1:-1;;;;;;;;;;;67524:10:0;67506:7;:29::i;:::-;67498:58;;;;-1:-1:-1;;;67498:58:0;;;;;;;:::i;:::-;70237:25;;::::1;::::0;:11:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;70278:29;70295:11;70278:29;;;;;;:::i;:::-;;;;;;;;70154:161:::0;:::o;23774:164::-;-1:-1:-1;;;;;23895:25:0;;;23871:4;23895:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23774:164::o;49029:244::-;48306:12;:10;:12::i;:::-;-1:-1:-1;;;;;48295:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;48295:23:0;;48287:68;;;;-1:-1:-1;;;48287:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49118:22:0;::::1;49110:73;;;;-1:-1:-1::0;;;49110:73:0::1;;;;;;;:::i;:::-;49220:6;::::0;49199:38:::1;::::0;-1:-1:-1;;;;;49199:38:0;;::::1;::::0;49220:6:::1;::::0;49199:38:::1;::::0;49220:6:::1;::::0;49199:38:::1;49248:6;:17:::0;;-1:-1:-1;;;;;;49248:17:0::1;-1:-1:-1::0;;;;;49248:17:0;;;::::1;::::0;;;::::1;::::0;;49029:244::o;46843:123::-;46903:7;46930:28;46947:10;46930:16;:28::i;62417:217::-;62502:4;-1:-1:-1;;;;;;62526:47:0;;-1:-1:-1;;;62526:47:0;;:100;;;62590:36;62614:11;62590:23;:36::i;26355:127::-;26420:4;26444:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26444:16:0;:30;;;26355:127::o;15991:98::-;16071:10;15991:98;:::o;30232:174::-;30307:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30307:29:0;-1:-1:-1;;;;;30307:29:0;;;;;;;;:24;;30361:23;30307:24;30361:14;:23::i;:::-;-1:-1:-1;;;;;30352:46:0;;;;;;;;;;;30232:174;;:::o;26649:348::-;26742:4;26767:16;26775:7;26767;:16::i;:::-;26759:73;;;;-1:-1:-1;;;26759:73:0;;;;;;;:::i;:::-;26843:13;26859:23;26874:7;26859:14;:23::i;:::-;26843:39;;26912:5;-1:-1:-1;;;;;26901:16:0;:7;-1:-1:-1;;;;;26901:16:0;;:51;;;;26945:7;-1:-1:-1;;;;;26921:31:0;:20;26933:7;26921:11;:20::i;:::-;-1:-1:-1;;;;;26921:31:0;;26901:51;:87;;;;26956:32;26973:5;26980:7;26956:16;:32::i;:::-;26893:96;26649:348;-1:-1:-1;;;;26649:348:0:o;29570:544::-;29695:4;-1:-1:-1;;;;;29668:31:0;:23;29683:7;29668:14;:23::i;:::-;-1:-1:-1;;;;;29668:31:0;;29660:85;;;;-1:-1:-1;;;29660:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29764:16:0;;29756:65;;;;-1:-1:-1;;;29756:65:0;;;;;;;:::i;:::-;29834:39;29855:4;29861:2;29865:7;29834:20;:39::i;:::-;29938:29;29955:1;29959:7;29938:8;:29::i;:::-;-1:-1:-1;;;;;29980:15:0;;;;;;:9;:15;;;;;:20;;29999:1;;29980:15;:20;;29999:1;;29980:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30011:13:0;;;;;;:9;:13;;;;;:18;;30028:1;;30011:13;:18;;30028:1;;30011:18;:::i;:::-;;;;-1:-1:-1;;30040:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30040:21:0;-1:-1:-1;;;;;30040:21:0;;;;;;;;;30079:27;;30040:16;;30079:27;;;;;;;29570:544;;;:::o;54749:98::-;54807:7;54834:5;54838:1;54834;:5;:::i;:::-;54827:12;54749:98;-1:-1:-1;;;54749:98:0:o;63155:384::-;63235:22;63243:4;63249:7;63235;:22::i;:::-;63231:301;;63367:41;63395:7;-1:-1:-1;;;;;63367:41:0;63405:2;63367:19;:41::i;:::-;63465:38;63493:4;63500:2;63465:19;:38::i;:::-;63288:230;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;63288:230:0;;;;;;;;;;-1:-1:-1;;;63274:246:0;;;;;;;:::i;66409:229::-;66484:22;66492:4;66498:7;66484;:22::i;:::-;66479:152;;66523:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;66523:29:0;;;;;;;;;:36;;-1:-1:-1;;66523:36:0;66555:4;66523:36;;;66606:12;:10;:12::i;:::-;-1:-1:-1;;;;;66579:40:0;66597:7;-1:-1:-1;;;;;66579:40:0;66591:4;66579:40;;;;;;;;;;66409:229;;:::o;42221:281::-;42274:7;42315:16;42298:13;:33;42294:201;;;-1:-1:-1;42355:24:0;42348:31;;42294:201;42419:64;42441:10;42453:12;42467:15;42419:21;:64::i;:::-;42412:71;;;;66646:230;66721:22;66729:4;66735:7;66721;:22::i;:::-;66717:152;;;66792:5;66760:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;66760:29:0;;;;;;;;;:37;;-1:-1:-1;;66760:37:0;;;66844:12;:10;:12::i;:::-;-1:-1:-1;;;;;66817:40:0;66835:7;-1:-1:-1;;;;;66817:40:0;66829:4;66817:40;;;;;;;;;;66646:230;;:::o;28262:382::-;-1:-1:-1;;;;;28342:16:0;;28334:61;;;;-1:-1:-1;;;28334:61:0;;;;;;;:::i;:::-;28415:16;28423:7;28415;:16::i;:::-;28414:17;28406:58;;;;-1:-1:-1;;;28406:58:0;;;;;;;:::i;:::-;28477:45;28506:1;28510:2;28514:7;28477:20;:45::i;:::-;-1:-1:-1;;;;;28535:13:0;;;;;;:9;:13;;;;;:18;;28552:1;;28535:13;:18;;28552:1;;28535:18;:::i;:::-;;;;-1:-1:-1;;28564:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28564:21:0;-1:-1:-1;;;;;28564:21:0;;;;;;;;28603:33;;28564:16;;;28603:33;;28564:16;;28603:33;28262:382;;:::o;50998:206::-;51067:20;51079:7;51067:11;:20::i;:::-;51110:19;;;;:10;:19;;;;;51104:33;;;;;:::i;:::-;:38;;-1:-1:-1;51100:97:0;;51166:19;;;;:10;:19;;;;;51159:26;;;:::i;69349:102::-;69399:7;:9;;;:7;:9;;;:::i;:::-;;;;;;69419:24;69431:2;69435:7;;69419:11;:24::i;38668:114::-;38760:14;;38668:114::o;70946:181::-;71021:12;71039:8;-1:-1:-1;;;;;71039:13:0;71060:7;71039:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71020:52;;;71091:7;71083:36;;;;-1:-1:-1;;;71083:36:0;;;;;;;:::i;65962:112::-;66041:25;66052:4;66058:7;66041:10;:25::i;25770:272::-;25884:28;25894:4;25900:2;25904:7;25884:9;:28::i;:::-;25931:48;25954:4;25960:2;25964:7;25973:5;25931:22;:48::i;:::-;25923:111;;;;-1:-1:-1;;;25923:111:0;;;;;;;:::i;49717:679::-;49790:13;49824:16;49832:7;49824;:16::i;:::-;49816:78;;;;-1:-1:-1;;;49816:78:0;;;;;;;:::i;:::-;49907:23;49933:19;;;:10;:19;;;;;49907:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49963:18;49984:10;:8;:10::i;:::-;49963:31;;50076:4;50070:18;50092:1;50070:23;50066:72;;;-1:-1:-1;50117:9:0;-1:-1:-1;50110:16:0;;50066:72;50242:23;;:27;50238:108;;50317:4;50323:9;50300:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50286:48;;;;;;50238:108;50365:23;50380:7;50365:14;:23::i;43489:167::-;43566:7;43593:55;43615:20;:18;:20::i;:::-;43637:10;43593:21;:55::i;35289:1432::-;35374:7;36299:66;36285:80;;;36277:127;;;;-1:-1:-1;;;36277:127:0;;;;;;;:::i;:::-;36423:1;:7;;36428:2;36423:7;:18;;;;36434:1;:7;;36439:2;36434:7;36423:18;36415:65;;;;-1:-1:-1;;;36415:65:0;;;;;;;:::i;:::-;36578:14;36595:24;36605:4;36611:1;36614;36617;36595:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36595:24:0;;-1:-1:-1;;36595:24:0;;;-1:-1:-1;;;;;;;36638:20:0;;36630:57;;;;-1:-1:-1;;;36630:57:0;;;;;;;:::i;:::-;36707:6;35289:1432;-1:-1:-1;;;;;35289:1432:0:o;38790:127::-;38879:19;;38897:1;38879:19;;;38790:127::o;20723:292::-;20825:4;-1:-1:-1;;;;;;20849:40:0;;-1:-1:-1;;;20849:40:0;;:105;;-1:-1:-1;;;;;;;20906:48:0;;-1:-1:-1;;;20906:48:0;20849:105;:158;;;;20971:36;20995:11;20971:23;:36::i;71631:205::-;71783:45;71810:4;71816:2;71820:7;71783:26;:45::i;17955:447::-;18030:13;18056:19;18088:10;18092:6;18088:1;:10;:::i;:::-;:14;;18101:1;18088:14;:::i;:::-;18078:25;;;;;;-1:-1:-1;;;18078:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18078:25:0;;18056:47;;-1:-1:-1;;;18114:6:0;18121:1;18114:9;;;;;;-1:-1:-1;;;18114:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;18114:15:0;;;;;;;;;-1:-1:-1;;;18140:6:0;18147:1;18140:9;;;;;;-1:-1:-1;;;18140:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;18140:15:0;;;;;;;;-1:-1:-1;18171:9:0;18183:10;18187:6;18183:1;:10;:::i;:::-;:14;;18196:1;18183:14;:::i;:::-;18171:26;;18166:131;18203:1;18199;:5;18166:131;;;-1:-1:-1;;;18247:5:0;18255:3;18247:11;18238:21;;;;;-1:-1:-1;;;18238:21:0;;;;;;;;;;;;18226:6;18233:1;18226:9;;;;;;-1:-1:-1;;;18226:9:0;;;;;;;;;;;;:33;-1:-1:-1;;;;;18226:33:0;;;;;;;;-1:-1:-1;18284:1:0;18274:11;;;;;18206:3;;;:::i;:::-;;;18166:131;;;-1:-1:-1;18315:10:0;;18307:55;;;;-1:-1:-1;;;18307:55:0;;;;;;;:::i;42510:337::-;42612:7;42692:8;42719:4;42742:7;42768:13;42808:4;42663:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42639:200;;;;;;42632:207;;42510:337;;;;;:::o;28873:360::-;28933:13;28949:23;28964:7;28949:14;:23::i;:::-;28933:39;;28985:48;29006:5;29021:1;29025:7;28985:20;:48::i;:::-;29074:29;29091:1;29095:7;29074:8;:29::i;:::-;-1:-1:-1;;;;;29116:16:0;;;;;;:9;:16;;;;;:21;;29136:1;;29116:16;:21;;29136:1;;29116:21;:::i;:::-;;;;-1:-1:-1;;29155:16:0;;;;:7;:16;;;;;;29148:23;;-1:-1:-1;;;;;;29148:23:0;;;29189:36;29163:7;;29155:16;-1:-1:-1;;;;;29189:36:0;;;;;29155:16;;29189:36;28873:360;;:::o;30971:843::-;31092:4;31118:15;:2;-1:-1:-1;;;;;31118:13:0;;:15::i;:::-;31114:693;;;31170:2;-1:-1:-1;;;;;31154:36:0;;31191:12;:10;:12::i;:::-;31205:4;31211:7;31220:5;31154:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31154:72:0;;;;;;;;-1:-1:-1;;31154:72:0;;;;;;;;;;;;:::i;:::-;;;31150:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31400:13:0;;31396:341;;31443:60;;-1:-1:-1;;;31443:60:0;;;;;;;:::i;31396:341::-;31687:6;31681:13;31672:6;31668:2;31664:15;31657:38;31150:602;-1:-1:-1;;;;;;31277:55:0;-1:-1:-1;;;31277:55:0;;-1:-1:-1;31270:62:0;;31114:693;-1:-1:-1;31791:4:0;31784:11;;70323:104;70375:13;70408:11;70401:18;;;;;:::i;21999:360::-;22072:13;22106:16;22114:7;22106;:16::i;:::-;22098:76;;;;-1:-1:-1;;;22098:76:0;;;;;;;:::i;:::-;22187:21;22211:10;:8;:10::i;:::-;22187:34;;22263:1;22245:7;22239:21;:25;:112;;;;;;;;;;;;;;;;;22304:7;22313:18;:7;:16;:18::i;:::-;22287:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22232:119;21999:360;-1:-1:-1;;;21999:360:0:o;37640:196::-;37733:7;37799:15;37816:10;37770:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37760:68;;;;;;37753:75;;37640:196;;;;:::o;19215:157::-;-1:-1:-1;;;;;;19324:40:0;;-1:-1:-1;;;19324:40:0;19215:157;;;:::o;8100:422::-;8467:20;8506:8;;;8100:422::o;16654:723::-;16710:13;16931:10;16927:53;;-1:-1:-1;16958:10:0;;;;;;;;;;;;-1:-1:-1;;;16958:10:0;;;;;;16927:53;17005:5;16990:12;17046:78;17053:9;;17046:78;;17079:8;;;;:::i;:::-;;-1:-1:-1;17102:10:0;;-1:-1:-1;17110:2:0;17102:10;;:::i;:::-;;;17046:78;;;17134:19;17166:6;17156:17;;;;;;-1:-1:-1;;;17156:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17156:17:0;;17134:39;;17184:154;17191:10;;17184:154;;17218:11;17228:1;17218:11;;:::i;:::-;;-1:-1:-1;17287:10:0;17295:2;17287:5;:10;:::i;:::-;17274:24;;:2;:24;:::i;:::-;17261:39;;17244:6;17251;17244:14;;;;;;-1:-1:-1;;;17244:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17244:56:0;;;;;;;;-1:-1:-1;17315:11:0;17324:2;17315:11;;:::i;:::-;;;17184:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:408:1;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:57;219:2;198:15;;-1:-1:-1;;194:29:1;225:4;190:40;174:57;:::i;:::-;165:66;;254:6;247:5;240:21;294:3;285:6;280:3;276:16;273:25;270:2;;;311:1;308;301:12;270:2;360:6;355:3;348:4;341:5;337:16;324:43;414:1;407:4;398:6;391:5;387:18;383:29;376:40;90:332;;;;;:::o;427:175::-;497:20;;-1:-1:-1;;;;;546:31:1;;536:42;;526:2;;592:1;589;582:12;607:706;;720:3;713:4;705:6;701:17;697:27;687:2;;742:5;735;728:20;687:2;782:6;769:20;808:4;832:66;848:49;894:2;848:49;:::i;:::-;832:66;:::i;:::-;932:15;;;963:12;;;;995:15;;;1041:11;;;1029:24;;1025:33;;1022:42;-1:-1:-1;1019:2:1;;;1081:5;1074;1067:20;1019:2;1107:5;1121:163;1135:2;1132:1;1129:9;1121:163;;;1192:17;;1180:30;;1230:12;;;;1262;;;;1153:1;1146:9;1121:163;;;-1:-1:-1;1302:5:1;;677:636;-1:-1:-1;;;;;;;677:636:1:o;1318:198::-;;1430:2;1418:9;1409:7;1405:23;1401:32;1398:2;;;1451:6;1443;1436:22;1398:2;1479:31;1500:9;1479:31;:::i;1521:274::-;;;1650:2;1638:9;1629:7;1625:23;1621:32;1618:2;;;1671:6;1663;1656:22;1618:2;1699:31;1720:9;1699:31;:::i;:::-;1689:41;;1749:40;1785:2;1774:9;1770:18;1749:40;:::i;:::-;1739:50;;1608:187;;;;;:::o;1800:342::-;;;;1946:2;1934:9;1925:7;1921:23;1917:32;1914:2;;;1967:6;1959;1952:22;1914:2;1995:31;2016:9;1995:31;:::i;:::-;1985:41;;2045:40;2081:2;2070:9;2066:18;2045:40;:::i;:::-;2035:50;;2132:2;2121:9;2117:18;2104:32;2094:42;;1904:238;;;;;:::o;2147:702::-;;;;;2319:3;2307:9;2298:7;2294:23;2290:33;2287:2;;;2341:6;2333;2326:22;2287:2;2369:31;2390:9;2369:31;:::i;:::-;2359:41;;2419:40;2455:2;2444:9;2440:18;2419:40;:::i;:::-;2409:50;;2506:2;2495:9;2491:18;2478:32;2468:42;;2561:2;2550:9;2546:18;2533:32;2588:18;2580:6;2577:30;2574:2;;;2625:6;2617;2610:22;2574:2;2653:22;;2706:4;2698:13;;2694:27;-1:-1:-1;2684:2:1;;2740:6;2732;2725:22;2684:2;2768:75;2835:7;2830:2;2817:16;2812:2;2808;2804:11;2768:75;:::i;:::-;2758:85;;;2277:572;;;;;;;:::o;2854:717::-;;;;;;;;3066:3;3054:9;3045:7;3041:23;3037:33;3034:2;;;3088:6;3080;3073:22;3034:2;3116:31;3137:9;3116:31;:::i;:::-;3106:41;;3166:40;3202:2;3191:9;3187:18;3166:40;:::i;:::-;3156:50;;3253:2;3242:9;3238:18;3225:32;3215:42;;3304:2;3293:9;3289:18;3276:32;3266:42;;3358:3;3347:9;3343:19;3330:33;3403:4;3396:5;3392:16;3385:5;3382:27;3372:2;;3428:6;3420;3413:22;3372:2;3024:547;;;;-1:-1:-1;3024:547:1;;;;3456:5;3508:3;3493:19;;3480:33;;-1:-1:-1;3560:3:1;3545:19;;;3532:33;;3024:547;-1:-1:-1;;3024:547:1:o;3576:369::-;;;3702:2;3690:9;3681:7;3677:23;3673:32;3670:2;;;3723:6;3715;3708:22;3670:2;3751:31;3772:9;3751:31;:::i;:::-;3741:41;;3832:2;3821:9;3817:18;3804:32;3879:5;3872:13;3865:21;3858:5;3855:32;3845:2;;3906:6;3898;3891:22;3845:2;3934:5;3924:15;;;3660:285;;;;;:::o;3950:266::-;;;4079:2;4067:9;4058:7;4054:23;4050:32;4047:2;;;4100:6;4092;4085:22;4047:2;4128:31;4149:9;4128:31;:::i;:::-;4118:41;4206:2;4191:18;;;;4178:32;;-1:-1:-1;;;4037:179:1:o;4221:1227::-;;;4400:2;4388:9;4379:7;4375:23;4371:32;4368:2;;;4421:6;4413;4406:22;4368:2;4466:9;4453:23;4495:18;4536:2;4528:6;4525:14;4522:2;;;4557:6;4549;4542:22;4522:2;4600:6;4589:9;4585:22;4575:32;;4645:7;4638:4;4634:2;4630:13;4626:27;4616:2;;4672:6;4664;4657:22;4616:2;4713;4700:16;4735:4;4759:66;4775:49;4821:2;4775:49;:::i;4759:66::-;4859:15;;;4890:12;;;;4922:11;;;4960;;;4952:20;;4948:29;;4945:42;-1:-1:-1;4942:2:1;;;5005:6;4997;4990:22;4942:2;5032:6;5023:15;;5047:171;5061:2;5058:1;5055:9;5047:171;;;5118:25;5139:3;5118:25;:::i;:::-;5106:38;;5079:1;5072:9;;;;;5164:12;;;;5196;;5047:171;;;-1:-1:-1;5237:5:1;-1:-1:-1;;5280:18:1;;5267:32;;-1:-1:-1;;5311:16:1;;;5308:2;;;5345:6;5337;5330:22;5308:2;;5373:69;5434:7;5423:8;5412:9;5408:24;5373:69;:::i;:::-;5363:79;;;4358:1090;;;;;:::o;5453:190::-;;5565:2;5553:9;5544:7;5540:23;5536:32;5533:2;;;5586:6;5578;5571:22;5533:2;-1:-1:-1;5614:23:1;;5523:120;-1:-1:-1;5523:120:1:o;5648:266::-;;;5777:2;5765:9;5756:7;5752:23;5748:32;5745:2;;;5798:6;5790;5783:22;5745:2;5839:9;5826:23;5816:33;;5868:40;5904:2;5893:9;5889:18;5868:40;:::i;5919:257::-;;6030:2;6018:9;6009:7;6005:23;6001:32;5998:2;;;6051:6;6043;6036:22;5998:2;6095:9;6082:23;6114:32;6140:5;6114:32;:::i;6181:261::-;;6303:2;6291:9;6282:7;6278:23;6274:32;6271:2;;;6324:6;6316;6309:22;6271:2;6361:9;6355:16;6380:32;6406:5;6380:32;:::i;6447:482::-;;6569:2;6557:9;6548:7;6544:23;6540:32;6537:2;;;6590:6;6582;6575:22;6537:2;6635:9;6622:23;6668:18;6660:6;6657:30;6654:2;;;6705:6;6697;6690:22;6654:2;6733:22;;6786:4;6778:13;;6774:27;-1:-1:-1;6764:2:1;;6820:6;6812;6805:22;6764:2;6848:75;6915:7;6910:2;6897:16;6892:2;6888;6884:11;6848:75;:::i;7129:259::-;;7210:5;7204:12;7237:6;7232:3;7225:19;7253:63;7309:6;7302:4;7297:3;7293:14;7286:4;7279:5;7275:16;7253:63;:::i;:::-;7370:2;7349:15;-1:-1:-1;;7345:29:1;7336:39;;;;7377:4;7332:50;;7180:208;-1:-1:-1;;7180:208:1:o;7393:470::-;;7610:6;7604:13;7626:53;7672:6;7667:3;7660:4;7652:6;7648:17;7626:53;:::i;:::-;7742:13;;7701:16;;;;7764:57;7742:13;7701:16;7798:4;7786:17;;7764:57;:::i;:::-;7837:20;;7580:283;-1:-1:-1;;;;7580:283:1:o;7868:392::-;-1:-1:-1;;;8126:27:1;;8178:1;8169:11;;8162:27;;;;8214:2;8205:12;;8198:28;8251:2;8242:12;;8116:144::o;8475:786::-;;8886:25;8881:3;8874:38;8941:6;8935:13;8957:62;9012:6;9007:2;9002:3;8998:12;8991:4;8983:6;8979:17;8957:62;:::i;:::-;-1:-1:-1;;;9078:2:1;9038:16;;;9070:11;;;9063:40;9128:13;;9150:63;9128:13;9199:2;9191:11;;9184:4;9172:17;;9150:63;:::i;:::-;9233:17;9252:2;9229:26;;8864:397;-1:-1:-1;;;;8864:397:1:o;9266:203::-;-1:-1:-1;;;;;9430:32:1;;;;9412:51;;9400:2;9385:18;;9367:102::o;9474:490::-;-1:-1:-1;;;;;9743:15:1;;;9725:34;;9795:15;;9790:2;9775:18;;9768:43;9842:2;9827:18;;9820:34;;;9890:3;9885:2;9870:18;;9863:31;;;9474:490;;9911:47;;9938:19;;9930:6;9911:47;:::i;:::-;9903:55;9677:287;-1:-1:-1;;;;;;9677:287:1:o;9969:187::-;10134:14;;10127:22;10109:41;;10097:2;10082:18;;10064:92::o;10161:177::-;10307:25;;;10295:2;10280:18;;10262:76::o;10343:591::-;10630:25;;;-1:-1:-1;;;;;10729:15:1;;;10724:2;10709:18;;10702:43;10781:15;;;;10776:2;10761:18;;10754:43;10828:2;10813:18;;10806:34;10871:3;10856:19;;10849:35;;;;10682:3;10900:19;;10893:35;10617:3;10602:19;;10584:350::o;10939:489::-;11198:25;;;11254:2;11239:18;;11232:34;;;;11297:2;11282:18;;11275:34;;;;11340:2;11325:18;;11318:34;-1:-1:-1;;;;;11389:32:1;11383:3;11368:19;;11361:61;11185:3;11170:19;;11152:276::o;11433:398::-;11660:25;;;11733:4;11721:17;;;;11716:2;11701:18;;11694:45;11770:2;11755:18;;11748:34;11813:2;11798:18;;11791:34;11647:3;11632:19;;11614:217::o;11836:221::-;;11985:2;11974:9;11967:21;12005:46;12047:2;12036:9;12032:18;12024:6;12005:46;:::i;12062:1197::-;;12200:2;12229;12218:9;12211:21;12252:4;12288:6;12282:13;12318:4;12356:1;12345:9;12341:17;12331:27;;12377:1;12428:2;12417:9;12413:18;12450;12440:2;;12494:4;12486:6;12482:17;12472:27;;12440:2;12547;12539:6;12536:14;12516:18;12513:38;12510:2;;;-1:-1:-1;;;12574:34:1;;12631:4;12628:1;12621:15;12662:4;12581;12649:18;12510:2;12697:64;12754:6;12749:2;12738:9;12734:18;12697:64;:::i;:::-;12777:18;12804:100;;;;12918:1;12913:320;;;;12770:463;;12804:100;-1:-1:-1;;12837:24:1;;12825:37;;12882:12;;;;-1:-1:-1;12804:100:1;;12913:320;12949:39;12981:6;12949:39;:::i;:::-;13010:4;13027:165;13041:6;13038:1;13035:13;13027:165;;;13119:14;;13106:11;;;13099:35;13162:16;;;;13056:10;;13027:165;;;13212:11;;;-1:-1:-1;;12770:463:1;-1:-1:-1;13250:3:1;;12180:1079;-1:-1:-1;;;;;;;;;12180:1079:1:o;13264:348::-;13466:2;13448:21;;;13505:2;13485:18;;;13478:30;13544:26;13539:2;13524:18;;13517:54;13603:2;13588:18;;13438:174::o;13617:356::-;13819:2;13801:21;;;13838:18;;;13831:30;13897:34;13892:2;13877:18;;13870:62;13964:2;13949:18;;13791:182::o;13978:335::-;14180:2;14162:21;;;14219:2;14199:18;;;14192:30;-1:-1:-1;;;14253:2:1;14238:18;;14231:41;14304:2;14289:18;;14152:161::o;14318:344::-;14520:2;14502:21;;;14559:2;14539:18;;;14532:30;-1:-1:-1;;;14593:2:1;14578:18;;14571:50;14653:2;14638:18;;14492:170::o;14667:340::-;14869:2;14851:21;;;14908:2;14888:18;;;14881:30;-1:-1:-1;;;14942:2:1;14927:18;;14920:46;14998:2;14983:18;;14841:166::o;15012:338::-;15214:2;15196:21;;;15253:2;15233:18;;;15226:30;-1:-1:-1;;;15287:2:1;15272:18;;15265:44;15341:2;15326:18;;15186:164::o;15355:414::-;15557:2;15539:21;;;15596:2;15576:18;;;15569:30;15635:34;15630:2;15615:18;;15608:62;-1:-1:-1;;;15701:2:1;15686:18;;15679:48;15759:3;15744:19;;15529:240::o;15774:402::-;15976:2;15958:21;;;16015:2;15995:18;;;15988:30;16054:34;16049:2;16034:18;;16027:62;-1:-1:-1;;;16120:2:1;16105:18;;16098:36;16166:3;16151:19;;15948:228::o;16181:352::-;16383:2;16365:21;;;16422:2;16402:18;;;16395:30;16461;16456:2;16441:18;;16434:58;16524:2;16509:18;;16355:178::o;16538:403::-;16740:2;16722:21;;;16779:2;16759:18;;;16752:30;16818:34;16813:2;16798:18;;16791:62;-1:-1:-1;;;16884:2:1;16869:18;;16862:37;16931:3;16916:19;;16712:229::o;16946:400::-;17148:2;17130:21;;;17187:2;17167:18;;;17160:30;17226:34;17221:2;17206:18;;17199:62;-1:-1:-1;;;17292:2:1;17277:18;;17270:34;17336:3;17321:19;;17120:226::o;17351:349::-;17553:2;17535:21;;;17592:2;17572:18;;;17565:30;17631:27;17626:2;17611:18;;17604:55;17691:2;17676:18;;17525:175::o;17705:355::-;17907:2;17889:21;;;17946:2;17926:18;;;17919:30;17985:33;17980:2;17965:18;;17958:61;18051:2;18036:18;;17879:181::o;18065:398::-;18267:2;18249:21;;;18306:2;18286:18;;;18279:30;18345:34;18340:2;18325:18;;18318:62;-1:-1:-1;;;18411:2:1;18396:18;;18389:32;18453:3;18438:19;;18239:224::o;18468:332::-;18670:2;18652:21;;;18709:1;18689:18;;;18682:29;-1:-1:-1;;;18742:2:1;18727:18;;18720:39;18791:2;18776:18;;18642:158::o;18805:426::-;19007:2;18989:21;;;19046:2;19026:18;;;19019:30;19085:34;19080:2;19065:18;;19058:62;19156:32;19151:2;19136:18;;19129:60;19221:3;19206:19;;18979:252::o;19236:408::-;19438:2;19420:21;;;19477:2;19457:18;;;19450:30;19516:34;19511:2;19496:18;;19489:62;-1:-1:-1;;;19582:2:1;19567:18;;19560:42;19634:3;19619:19;;19410:234::o;19649:340::-;19851:2;19833:21;;;19890:2;19870:18;;;19863:30;-1:-1:-1;;;19924:2:1;19909:18;;19902:46;19980:2;19965:18;;19823:166::o;19994:420::-;20196:2;20178:21;;;20235:2;20215:18;;;20208:30;20274:34;20269:2;20254:18;;20247:62;20345:26;20340:2;20325:18;;20318:54;20404:3;20389:19;;20168:246::o;20419:406::-;20621:2;20603:21;;;20660:2;20640:18;;;20633:30;20699:34;20694:2;20679:18;;20672:62;-1:-1:-1;;;20765:2:1;20750:18;;20743:40;20815:3;20800:19;;20593:232::o;20830:405::-;21032:2;21014:21;;;21071:2;21051:18;;;21044:30;21110:34;21105:2;21090:18;;21083:62;-1:-1:-1;;;21176:2:1;21161:18;;21154:39;21225:3;21210:19;;21004:231::o;21240:398::-;21442:2;21424:21;;;21481:2;21461:18;;;21454:30;21520:34;21515:2;21500:18;;21493:62;-1:-1:-1;;;21586:2:1;21571:18;;21564:32;21628:3;21613:19;;21414:224::o;21643:356::-;21845:2;21827:21;;;21864:18;;;21857:30;21923:34;21918:2;21903:18;;21896:62;21990:2;21975:18;;21817:182::o;22004:331::-;22206:2;22188:21;;;22245:1;22225:18;;;22218:29;-1:-1:-1;;;22278:2:1;22263:18;;22256:38;22326:2;22311:18;;22178:157::o;22340:413::-;22542:2;22524:21;;;22581:2;22561:18;;;22554:30;22620:34;22615:2;22600:18;;22593:62;-1:-1:-1;;;22686:2:1;22671:18;;22664:47;22743:3;22728:19;;22514:239::o;22758:408::-;22960:2;22942:21;;;22999:2;22979:18;;;22972:30;23038:34;23033:2;23018:18;;23011:62;-1:-1:-1;;;23104:2:1;23089:18;;23082:42;23156:3;23141:19;;22932:234::o;23171:356::-;23373:2;23355:21;;;23392:18;;;23385:30;23451:34;23446:2;23431:18;;23424:62;23518:2;23503:18;;23345:182::o;23532:354::-;23734:2;23716:21;;;23773:2;23753:18;;;23746:30;23812:32;23807:2;23792:18;;23785:60;23877:2;23862:18;;23706:180::o;23891:405::-;24093:2;24075:21;;;24132:2;24112:18;;;24105:30;24171:34;24166:2;24151:18;;24144:62;-1:-1:-1;;;24237:2:1;24222:18;;24215:39;24286:3;24271:19;;24065:231::o;24301:411::-;24503:2;24485:21;;;24542:2;24522:18;;;24515:30;24581:34;24576:2;24561:18;;24554:62;-1:-1:-1;;;24647:2:1;24632:18;;24625:45;24702:3;24687:19;;24475:237::o;24717:341::-;24919:2;24901:21;;;24958:2;24938:18;;;24931:30;-1:-1:-1;;;24992:2:1;24977:18;;24970:47;25049:2;25034:18;;24891:167::o;25063:397::-;25265:2;25247:21;;;25304:2;25284:18;;;25277:30;25343:34;25338:2;25323:18;;25316:62;-1:-1:-1;;;25409:2:1;25394:18;;25387:31;25450:3;25435:19;;25237:223::o;25465:340::-;25667:2;25649:21;;;25706:2;25686:18;;;25679:30;-1:-1:-1;;;25740:2:1;25725:18;;25718:46;25796:2;25781:18;;25639:166::o;25810:413::-;26012:2;25994:21;;;26051:2;26031:18;;;26024:30;26090:34;26085:2;26070:18;;26063:62;-1:-1:-1;;;26156:2:1;26141:18;;26134:47;26213:3;26198:19;;25984:239::o;26228:411::-;26430:2;26412:21;;;26469:2;26449:18;;;26442:30;26508:34;26503:2;26488:18;;26481:62;-1:-1:-1;;;26574:2:1;26559:18;;26552:45;26629:3;26614:19;;26402:237::o;26826:275::-;26897:2;26891:9;26962:2;26943:13;;-1:-1:-1;;26939:27:1;26927:40;;26997:18;26982:34;;27018:22;;;26979:62;26976:2;;;27044:18;;:::i;:::-;27080:2;27073:22;26871:230;;-1:-1:-1;26871:230:1:o;27106:192::-;;27205:18;27197:6;27194:30;27191:2;;;27227:18;;:::i;:::-;-1:-1:-1;27287:4:1;27268:17;;;27264:28;;27181:117::o;27303:129::-;;27371:17;;;27421:4;27405:21;;;27361:71::o;27593:128::-;;27664:1;27660:6;27657:1;27654:13;27651:2;;;27670:18;;:::i;:::-;-1:-1:-1;27706:9:1;;27641:80::o;27726:120::-;;27792:1;27782:2;;27797:18;;:::i;:::-;-1:-1:-1;27831:9:1;;27772:74::o;27851:168::-;;27957:1;27953;27949:6;27945:14;27942:1;27939:21;27934:1;27927:9;27920:17;27916:45;27913:2;;;27964:18;;:::i;:::-;-1:-1:-1;28004:9:1;;27903:116::o;28024:125::-;;28092:1;28089;28086:8;28083:2;;;28097:18;;:::i;:::-;-1:-1:-1;28134:9:1;;28073:76::o;28154:258::-;28226:1;28236:113;28250:6;28247:1;28244:13;28236:113;;;28326:11;;;28320:18;28307:11;;;28300:39;28272:2;28265:10;28236:113;;;28367:6;28364:1;28361:13;28358:2;;;-1:-1:-1;;28402:1:1;28384:16;;28377:27;28207:205::o;28417:136::-;;28484:5;28474:2;;28493:18;;:::i;:::-;-1:-1:-1;;;28529:18:1;;28464:89::o;28558:380::-;28643:1;28633:12;;28690:1;28680:12;;;28701:2;;28755:4;28747:6;28743:17;28733:27;;28701:2;28808;28800:6;28797:14;28777:18;28774:38;28771:2;;;28854:10;28849:3;28845:20;28842:1;28835:31;28889:4;28886:1;28879:15;28917:4;28914:1;28907:15;28771:2;;28613:325;;;:::o;28943:135::-;;-1:-1:-1;;29003:17:1;;29000:2;;;29023:18;;:::i;:::-;-1:-1:-1;29070:1:1;29059:13;;28990:88::o;29083:175::-;;29164:4;29157:5;29153:16;29193:4;29184:7;29181:17;29178:2;;;29201:18;;:::i;:::-;29250:1;29237:15;;29128:130;-1:-1:-1;;29128:130:1:o;29263:112::-;;29321:1;29311:2;;29326:18;;:::i;:::-;-1:-1:-1;29360:9:1;;29301:74::o;29380:127::-;29441:10;29436:3;29432:20;29429:1;29422:31;29472:4;29469:1;29462:15;29496:4;29493:1;29486:15;29512:127;29573:10;29568:3;29564:20;29561:1;29554:31;29604:4;29601:1;29594:15;29628:4;29625:1;29618:15;29644:127;29705:10;29700:3;29696:20;29693:1;29686:31;29736:4;29733:1;29726:15;29760:4;29757:1;29750:15;29776:133;-1:-1:-1;;;;;;29852:32:1;;29842:43;;29832:2;;29899:1;29896;29889:12
Swarm Source
ipfs://dd8d9b3c22f041c97ab9e27f42401340327dc54789418d998288713579459448
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.