ERC-721
Overview
Max Total Supply
0 GM
Holders
266
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 GMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GmErc721
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-13 */ // SPDX-License-Identifier: MIT /* ______ _____ _____ | | | \ \ |_____/ | | | /_____ | | | ______| | | / \____/ /__ say it back! messages :) each NFT shows you gm/gn based on your time zone default set for GMT +0 gm: 00:00 - 12:00 gn: 12:00 - 24:00 to set your GMT time zone, use set_gmt with a value between 0 and 23 to specify, use positive numbers only! e.g. for, (GMT - 1) use 23, for (GMT - 2), use 22, etc. to change the gm/gn intervals: set the gmOffset for gm to start e.g. set_gmOffset 9 if you wake up at 9am same goes for set_gnOffset; set the gnOffset for gn to start e.g. if you'd like to say good night at 7 pm, simply set_gnOffset to 7! refresh metadata if not shown correctly! rarities: %60 lowercase helvetica / times new roman / comic sans %30 uppercase helvetica / times new roman / comic sans %10 uppercase helvetica / times new roman / comic sans *italic* :) free distro with 1 NFT/txn %6,9 secondary royalties say gm in our discord https://discord.gg/N82Sg94R ______ _____ | | | | |_____/ | | /_____ | | ______| /_ \____/ */ 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/IERC721.sol 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/IERC721Receiver.sol 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/IERC721Metadata.sol 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/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/math/SafeMath.sol 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) { 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) { 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) { // 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) { 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) { 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) { 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. 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) { 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) { require(b > 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/Utils/IUtils.sol pragma solidity ^0.8.0; interface IUtils { // Strings.sol function toString(uint256 value) external pure returns (string memory); function toHexString(uint256 value) external pure returns (string memory); function toHexString(uint256 value, uint256 length) external pure returns (string memory); // Base64.sol function encode(bytes memory data) external pure returns (string memory); // KeyValueStorage.sol struct StorageItemArg { string key; string value; } function set(string memory _key, string memory _value, address[] memory _whitelist) external; function setBatch(StorageItemArg[] memory _storageItems, address _whitelist) external; function setValue(string memory _key, string memory _value) external; function setWhitelist(string memory _key, address[] memory _whitelist) external; function getValue(string memory _key) external view returns (string memory); } // File: contracts/GmRenderer.sol pragma solidity ^0.8.0; contract GmRenderer is Ownable { IUtils UTILS_CONTRACT = IUtils(0x0000000000000000000000000000000000000000); function setUtilsContractAddress(address _address) public onlyOwner { UTILS_CONTRACT = IUtils(_address); } mapping(uint16 => uint32) internal dna_bank; uint16 public gm_count; string[21] private kolor = [ 'EFFD5F', 'FFFFFF', 'B2BEB5', 'FFFDD0', 'E3B778', '000000', '30D5C8', '30D5C8', 'BFFF00', 'd73b3e', 'FFFDD0', 'ffc0cb', '000000', 'B2BEB5', '36454f', 'FFFFFF', '795c32', '4b382a', '36454f', '6F8FAF', 'e0115f' ]; function random() internal view returns (uint32) { return uint32(uint256(keccak256(abi.encodePacked(msg.sender, dna_bank[gm_count-1])))); } function get_h() internal view returns (string memory) { return UTILS_CONTRACT.getValue("gm_get_h"); } function get_r(string memory _f) internal pure returns (string memory) { return string(abi.encodePacked('<rect height="600" width="600" y="0" x="0" fill="#', _f, '"/>')); } function get_e(string memory _s, string memory _f) internal pure returns (string memory) { return string(abi.encodePacked('<ellipse ry="297" rx="297" cy="300" cx="300" stroke="#', _s, '" stroke-width="5px" fill="#', _f, '"/></g>')); } function get_g(string memory _s, string memory _f) internal pure returns (string memory) { return string(abi.encodePacked('<g filter="url(#sh)" transform="scale(0.75)" stroke="#', _s, '" stroke-width="0.1px" fill="#', _f, '">')); } function get_p_string(uint8 _c) internal pure returns (string memory) { if (_c < 20){ return "c"; } if (_c < 30){ return "c_u"; } if (_c < 33){ return "c_u_i"; } if (_c < 53){ return "h"; } if (_c < 63){ return "h_u"; } if (_c < 66){ return "h_u_i"; } if (_c < 86){ return "t"; } if (_c < 96){ return "t_u"; } return "t_u_i"; } function get_p(string memory _f, string memory _t) internal view returns (string memory) { return string(abi.encodePacked( UTILS_CONTRACT.getValue(string(abi.encodePacked("g_", _f))), UTILS_CONTRACT.getValue(string(abi.encodePacked(_t, "_", _f))) )); } function get_f(string memory _f) internal pure returns (string memory) { return string(abi.encodePacked('<filter id="sh" x="0" y="0" width="300%" height="300%"><feDropShadow dx="10" dy="10" stdDeviation="0" flood-color="#', _f, '" flood-opacity="1"></feDropShadow></filter></g></svg>')); } struct DNA_Decoded { // rect kolor string _r; // ellipse stroke string _es; // ellipse fill string _ef; // text stroke string _gs; // text fill string _gf; // font string _p; // text shadow string _f; } function decode_dna(uint _initial) internal view returns (DNA_Decoded memory) { // rect kolor string memory r = kolor[uint8(_initial % 21)]; // ellipse stroke string memory es = kolor[uint8((_initial / 21) % 21)]; // ellipse fill string memory ef = kolor[uint8((_initial / 21 ** 2) % 21)]; // text stroke string memory gs = kolor[uint8((_initial / 21 ** 3) % 21)]; // text fill string memory gf = kolor[uint8((_initial / 21 ** 4) % 21)]; // font string memory p = get_p_string(uint8(_initial % 101)); // text shadow string memory f = kolor[uint8((_initial / 21 ** 5) % 21)]; DNA_Decoded memory d = DNA_Decoded(r, es, ef, gs, gf, p, f); return d; } function show(uint16 _i, string memory _t) internal view returns (string memory){ require(_i > 0, "gm"); DNA_Decoded memory d = decode_dna(dna_bank[_i]); string memory svg = string(abi.encodePacked( get_h(), get_r(d._r), get_e(d._es, d._ef), get_g(d._gs, d._gf), get_p(d._p, _t), get_f(d._f))); return svg; } constructor() onlyOwner {} } // File: contracts/GmErc721.sol pragma solidity ^0.8.2; contract GmErc721 is ERC721, ReentrancyGuard, GmRenderer { using SafeMath for uint256; using SafeMath for uint16; string private withdrawAddress = ""; uint256 MAX_SUPPLY = 4444; mapping(uint256 => uint8) public _gmtMapping; mapping(uint256 => uint8) public _gmOffsetMapping; mapping(uint256 => uint8) public _gnOffsetMapping; function withdrawToPayees(uint256 _amount) internal { payable(0x3B99E794378bD057F3AD7aEA9206fB6C01f3Ee60).transfer( _amount.mul(33).div(100) ); // artist payable(0x575CBC1D88c266B18f1BB221C1a1a79A55A3d3BE).transfer( _amount.mul(33).div(100) ); // developer payable(0xBF7288346588897afdae38288fff58d2e27dd235).transfer( _amount.mul(33).div(100) ); // developer } function _mint(address _to) internal { gm_count++; dna_bank[gm_count] = random(); _safeMint(_to, gm_count); } function generate() external nonReentrant { require(gm_count.add(1) <= MAX_SUPPLY, "sold out"); _mint(msg.sender); if (gm_count % 100 == 99) { _mint(address(0x3B99E794378bD057F3AD7aEA9206fB6C01f3Ee60)); } } function render(uint256) private view returns (string memory) { return UTILS_CONTRACT.getValue("gm_get_b"); } function set_gmt(uint256 _tokenId, uint8 _gmt) public { require(msg.sender == ownerOf(_tokenId), "mind your own gm"); require(_gmt <= 23, "only up to 12 hours of offset is allowed"); _gmtMapping[_tokenId] = _gmt; } function set_gmOffset(uint256 _tokenId, uint8 _gmOffset) public { require(msg.sender == ownerOf(_tokenId), "mind your own gm"); require(_gmOffset <= 12, "only up to 12 hours of offset is allowed"); _gmOffsetMapping[_tokenId] = _gmOffset; } function set_gnOffset(uint256 _tokenId, uint8 _gnOffset) public { require(msg.sender == ownerOf(_tokenId), "mind your own gm"); require(_gnOffset <= 12, "only up to 12 hours of offset is allowed"); _gnOffsetMapping[_tokenId] = _gnOffset; } function gm_gn(uint256 _tokenId) public view returns (string memory) { string memory _t = "m"; uint8 _local_time = what_time_is_it(_tokenId); if ( _local_time > 12 + _gnOffsetMapping[_tokenId] || _local_time < 0 + _gmOffsetMapping[_tokenId] ) { _t = "n"; } return _t; } function what_time_is_it(uint256 _tokenId) public view returns (uint8){ return uint8((block.timestamp / 60 / 60) + _gmtMapping[_tokenId]) % 24; } function getAttributes(uint256 tokenId) internal view returns (string memory) { DNA_Decoded memory d; uint256 dna; string memory traits1; string memory traits2; { dna = dna_bank[uint16(tokenId)]; } { d = decode_dna(dna); } { traits1 = string( abi.encodePacked( '[{"trait_type": "Background Kolor", "value": "', d._r, '"}, {"trait_type": "Outline Kolor", "value": "', d._es, '"}, {"trait_type": "Circle Kolor", "value": "', d._ef, '"}, ' ) ); } { traits2 = string( abi.encodePacked( '{"trait_type": "Text Outline Kolor", "value": "', d._gs, '"}, {"trait_type": "Text Kolor", "value": "', d._gf, '"}, {"trait_type": "Text Shadow Kolor", "value": "', d._f, '"}, {"trait_type": "Font", "value": "', d._p, '"}]' ) ); } return string(abi.encodePacked(traits1, traits2)); } function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { super.tokenURI(tokenId); return string( abi.encodePacked( "data:application/json;base64,", UTILS_CONTRACT.encode( bytes( abi.encodePacked( '{"attributes": ', getAttributes(tokenId), ', "name": "say it back! #', UTILS_CONTRACT.toString(tokenId), '", "description": "4444 on-chain generated & stored daily messages - visit etherscan contract to set it to your time zone (do not compromise your opSec). say it back!", "image": "data:image/svg+xml;base64,', string( UTILS_CONTRACT.encode( bytes( abi.encodePacked( show( uint16(tokenId), gm_gn(tokenId) ) ) ) ) ), '"}' ) ) ), "#" ) ); } function setWithdrawAddress(string memory _address) public onlyOwner { withdrawAddress = _address; } function contractURI() public view returns (string memory) { return string( abi.encodePacked( "data:application/json;base64,", UTILS_CONTRACT.encode( bytes( abi.encodePacked( '{"name": "say it back!", "description": "4444 on-chain generated & stored daily messages - visit etherscan contract to set it to your time zone (do not compromise your opSec). say it back!", "seller_fee_basis_points": 690, "fee_recipient": "', withdrawAddress, '"}' ) ) ) ) ); } receive() external payable { withdrawToPayees(msg.value); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721) returns (bool) { return ERC721.supportsInterface(interfaceId); } constructor() //address _utilsAddress ERC721("GM", "GM") onlyOwner { //setUtilsContractAddress(_utilsAddress); } }
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":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"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_gmOffsetMapping","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_gmtMapping","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_gnOffsetMapping","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"generate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gm_count","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"gm_gn","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":"address","name":"_address","type":"address"}],"name":"setUtilsContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_address","type":"string"}],"name":"setWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint8","name":"_gmOffset","type":"uint8"}],"name":"set_gmOffset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint8","name":"_gmt","type":"uint8"}],"name":"set_gmt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint8","name":"_gnOffset","type":"uint8"}],"name":"set_gnOffset","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":[{"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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"what_time_is_it","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
600880546001600160a01b031916905560066103208181526522a323221aa360d11b6103405260809081526103608281526523232323232360d11b61038081905260a0919091526103a08381526542324245423560d01b6103c081905260c0919091526103e08481526504646464444360d41b61040081905260e0919091526104208581526508a66846e6e760d31b61044052610100526104608581526503030303030360d41b610480819052610120919091526104a08681526506660886a86760d31b6104c0819052610140919091526104e087815261050091909152610160526105208681526504246464630360d41b61054052610180526105608681526564373362336560d01b610580526101a0526105a08681526105c0929092526101c0919091526105e0858152653333319831b160d11b610600526101e052610620858152610640919091526102005261066084815261068091909152610220526106a083815265199b1a1a9a3360d11b6106c0819052610240919091526106e08481526107009290925261026091909152610720838152651b9c9ab1999960d11b61074052610280526107608381526534623338326160d01b610780526102a0526107a08381526107c0919091526102c0526107e0828152651b231c2320a360d11b610800526102e05261086060405261082091825265329818989ab360d11b61084052610300919091526200021a90600b906015620003a8565b50604080516020808201928390526000918290526200023b929091620003ff565b5061115c6021553480156200024f57600080fd5b50604080518082018252600280825261474d60f01b6020808401828152855180870190965292855284015281519192916200028d91600091620003ff565b508051620002a3906001906020840190620003ff565b5050600160065550620002b63362000356565b6007546001600160a01b03163314620003055760405162461bcd60e51b8152602060048201819052602482015260008051602062003f2583398151915260448201526064015b60405180910390fd5b6007546001600160a01b03163314620003505760405162461bcd60e51b8152602060048201819052602482015260008051602062003f258339815191526044820152606401620002fc565b62000541565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8260158101928215620003ed579160200282015b82811115620003ed5782518051620003dc918491602090910190620003ff565b5091602001919060010190620003bc565b50620003fb9291506200048a565b5090565b8280546200040d9062000504565b90600052602060002090601f0160209004810192826200043157600085556200047c565b82601f106200044c57805160ff19168380011785556200047c565b828001600101855582156200047c579182015b828111156200047c5782518255916020019190600101906200045f565b50620003fb929150620004ab565b80821115620003fb576000620004a18282620004c2565b506001016200048a565b5b80821115620003fb5760008155600101620004ac565b508054620004d09062000504565b6000825580601f10620004e1575050565b601f016020900490600052602060002090810190620005019190620004ab565b50565b600181811c908216806200051957607f821691505b602082108114156200053b57634e487b7160e01b600052602260045260246000fd5b50919050565b6139d480620005516000396000f3fe6080604052600436106101c65760003560e01c806395d89b41116100f7578063c4cce3ea11610095578063e8a3d48511610064578063e8a3d48514610565578063e985e9c51461057a578063eb101349146105c3578063f2fde38b146105e357600080fd5b8063c4cce3ea146104e5578063c87b56dd14610505578063d494d22514610525578063e38712921461054557600080fd5b8063a58b25f8116100d1578063a58b25f814610447578063b88d4fde14610467578063b91ddc6d14610487578063bc34ea32146104b757600080fd5b806395d89b41146103e2578063a22cb465146103f7578063a397f74c1461041757600080fd5b806347fca6f41161016457806370a082311161013e57806370a082311461033f578063715018a61461036d57806383c62e66146103825780638da5cb5b146103c457600080fd5b806347fca6f4146102df5780636352211e146102ff5780636be09ded1461031f57600080fd5b8063095ea7b3116101a0578063095ea7b31461026a57806323b872dd1461028a5780632a1bbc34146102aa57806342842e0e146102bf57600080fd5b806301ffc9a7146101db57806306fdde0314610210578063081812fc1461023257600080fd5b366101d6576101d434610603565b005b600080fd5b3480156101e757600080fd5b506101fb6101f63660046129cd565b6106ff565b60405190151581526020015b60405180910390f35b34801561021c57600080fd5b50610225610710565b60405161020791906135d5565b34801561023e57600080fd5b5061025261024d366004612ac7565b6107a2565b6040516001600160a01b039091168152602001610207565b34801561027657600080fd5b506101d46102853660046129a3565b61083c565b34801561029657600080fd5b506101d46102a53660046128af565b610952565b3480156102b657600080fd5b506101d4610983565b3480156102cb57600080fd5b506101d46102da3660046128af565b610a75565b3480156102eb57600080fd5b506102256102fa366004612ac7565b610a90565b34801561030b57600080fd5b5061025261031a366004612ac7565b610b34565b34801561032b57600080fd5b506101d461033a366004612ae0565b610bab565b34801561034b57600080fd5b5061035f61035a366004612861565b610c2a565b604051908152602001610207565b34801561037957600080fd5b506101d4610cb1565b34801561038e57600080fd5b506103b261039d366004612ac7565b60226020526000908152604090205460ff1681565b60405160ff9091168152602001610207565b3480156103d057600080fd5b506007546001600160a01b0316610252565b3480156103ee57600080fd5b50610225610ce7565b34801561040357600080fd5b506101d4610412366004612967565b610cf6565b34801561042357600080fd5b506103b2610432366004612ac7565b60246020526000908152604090205460ff1681565b34801561045357600080fd5b506101d4610462366004612ae0565b610dbb565b34801561047357600080fd5b506101d46104823660046128eb565b610e3a565b34801561049357600080fd5b506103b26104a2366004612ac7565b60236020526000908152604090205460ff1681565b3480156104c357600080fd5b50600a546104d29061ffff1681565b60405161ffff9091168152602001610207565b3480156104f157600080fd5b506101d4610500366004612861565b610e72565b34801561051157600080fd5b50610225610520366004612ac7565b610ebe565b34801561053157600080fd5b506101d4610540366004612a07565b6110cd565b34801561055157600080fd5b506103b2610560366004612ac7565b611109565b34801561057157600080fd5b50610225611148565b34801561058657600080fd5b506101fb61059536600461287c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105cf57600080fd5b506101d46105de366004612ae0565b611212565b3480156105ef57600080fd5b506101d46105fe366004612861565b611291565b733b99e794378bd057f3ad7aea9206fb6c01f3ee606108fc610631606461062b85602161132c565b9061133f565b6040518115909202916000818181858888f19350505050158015610659573d6000803e3d6000fd5b5073575cbc1d88c266b18f1bb221c1a1a79a55a3d3be6108fc610682606461062b85602161132c565b6040518115909202916000818181858888f193505050501580156106aa573d6000803e3d6000fd5b5073bf7288346588897afdae38288fff58d2e27dd2356108fc6106d3606461062b85602161132c565b6040518115909202916000818181858888f193505050501580156106fb573d6000803e3d6000fd5b5050565b600061070a8261134b565b92915050565b60606000805461071f90613861565b80601f016020809104026020016040519081016040528092919081815260200182805461074b90613861565b80156107985780601f1061076d57610100808354040283529160200191610798565b820191906000526020600020905b81548152906001019060200180831161077b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108205760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061084782610b34565b9050806001600160a01b0316836001600160a01b031614156108b55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610817565b336001600160a01b03821614806108d157506108d18133610595565b6109435760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610817565b61094d838361139b565b505050565b61095c3382611409565b6109785760405162461bcd60e51b8152600401610817906136e1565b61094d838383611500565b600260065414156109d65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610817565b6002600655602154600a546109f09061ffff1660016116a0565b1115610a295760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b6044820152606401610817565b610a32336116ac565b600a54610a459060649061ffff166138d9565b61ffff1660631415610a6e57610a6e733b99e794378bd057f3ad7aea9206fb6c01f3ee606116ac565b6001600655565b61094d83838360405180602001604052806000815250610e3a565b6040805180820190915260018152606d60f81b60208201526060906000610ab684611109565b600085815260246020526040902054909150610ad69060ff16600c6137a3565b60ff168160ff161180610b0b5750600084815260236020526040812054610b029160ff909116906137a3565b60ff168160ff16105b15610b2d57604051806040016040528060018152602001603760f91b81525091505b5092915050565b6000818152600260205260408120546001600160a01b03168061070a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610817565b610bb482610b34565b6001600160a01b0316336001600160a01b031614610be45760405162461bcd60e51b8152600401610817906135e8565b600c8160ff161115610c085760405162461bcd60e51b815260040161081790613699565b600091825260246020526040909120805460ff191660ff909216919091179055565b60006001600160a01b038216610c955760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610817565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610cdb5760405162461bcd60e51b815260040161081790613664565b610ce56000611721565b565b60606001805461071f90613861565b6001600160a01b038216331415610d4f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610817565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dc482610b34565b6001600160a01b0316336001600160a01b031614610df45760405162461bcd60e51b8152600401610817906135e8565b600c8160ff161115610e185760405162461bcd60e51b815260040161081790613699565b600091825260236020526040909120805460ff191660ff909216919091179055565b610e443383611409565b610e605760405162461bcd60e51b8152600401610817906136e1565b610e6c84848484611773565b50505050565b6007546001600160a01b03163314610e9c5760405162461bcd60e51b815260040161081790613664565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6060610ec9826117a6565b506008546001600160a01b03166312496a1b610ee48461188d565b60085460405163348051d760e11b8152600481018790526001600160a01b0390911690636900a3ae9060240160006040518083038186803b158015610f2857600080fd5b505afa158015610f3c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610f649190810190612a50565b6008546001600160a01b03166312496a1b610f8788610f8281610a90565b61198e565b604051602001610f979190612b53565b6040516020818303038152906040526040518263ffffffff1660e01b8152600401610fc291906135d5565b60006040518083038186803b158015610fda57600080fd5b505afa158015610fee573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526110169190810190612a50565b6040516020016110289392919061311c565b6040516020818303038152906040526040518263ffffffff1660e01b815260040161105391906135d5565b60006040518083038186803b15801561106b57600080fd5b505afa15801561107f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526110a79190810190612a50565b6040516020016110b7919061305f565b6040516020818303038152906040529050919050565b6007546001600160a01b031633146110f75760405162461bcd60e51b815260040161081790613664565b80516106fb906020908184019061276e565b60008181526022602052604081205460189060ff16603c61112a81426137c8565b61113491906137c8565b61113e919061378b565b61070a919061390e565b6008546040516060916001600160a01b0316906312496a1b9061116f906020908101612e40565b6040516020818303038152906040526040518263ffffffff1660e01b815260040161119a91906135d5565b60006040518083038186803b1580156111b257600080fd5b505afa1580156111c6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526111ee9190810190612a50565b6040516020016111fe919061301a565b604051602081830303815290604052905090565b61121b82610b34565b6001600160a01b0316336001600160a01b03161461124b5760405162461bcd60e51b8152600401610817906135e8565b60178160ff16111561126f5760405162461bcd60e51b815260040161081790613699565b600091825260226020526040909120805460ff191660ff909216919091179055565b6007546001600160a01b031633146112bb5760405162461bcd60e51b815260040161081790613664565b6001600160a01b0381166113205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610817565b61132981611721565b50565b600061133882846137dc565b9392505050565b600061133882846137c8565b60006001600160e01b031982166380ac58cd60e01b148061137c57506001600160e01b03198216635b5e139f60e01b145b8061070a57506301ffc9a760e01b6001600160e01b031983161461070a565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113d082610b34565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610817565b600061148d83610b34565b9050806001600160a01b0316846001600160a01b031614806114c85750836001600160a01b03166114bd846107a2565b6001600160a01b0316145b806114f857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661151382610b34565b6001600160a01b03161461157b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610817565b6001600160a01b0382166115dd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610817565b6115e860008261139b565b6001600160a01b038316600090815260036020526040812080546001929061161190849061381e565b90915550506001600160a01b038216600090815260036020526040812080546001929061163f90849061378b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611338828461378b565b600a805461ffff169060006116c08361389c565b91906101000a81548161ffff021916908361ffff160217905550506116e3611a70565b600a805461ffff9081166000908152600960205260409020805463ffffffff191663ffffffff94909416939093179092555461132991839116611b03565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61177e848484611500565b61178a84848484611b1d565b610e6c5760405162461bcd60e51b815260040161081790613612565b6000818152600260205260409020546060906001600160a01b03166118255760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610817565b600061183c60408051602081019091526000815290565b9050600081511161185c5760405180602001604052806000815250611338565b8061186684611c2a565b604051602001611877929190612b6f565b6040516020818303038152906040529392505050565b60606118cf6040518060e00160405280606081526020016060815260200160608152602001606081526020016060815260200160608152602001606081525090565b61ffff831660009081526009602052604090205463ffffffff166060806118f583611d28565b935083600001518460200151856040015160405160200161191893929190612d0d565b6040516020818303038152906040529150836060015184608001518560c001518660a0015160405160200161195094939291906132a1565b60405160208183030381529060405290508181604051602001611974929190612b6f565b604051602081830303815290604052945050505050919050565b606060008361ffff16116119c95760405162461bcd60e51b8152602060048201526002602482015261676d60f01b6044820152606401610817565b61ffff83166000908152600960205260408120546119ec9063ffffffff16611d28565b905060006119f8612216565b8251611a03906122bb565b611a15846020015185604001516122ce565b611a27856060015186608001516122fa565b611a358660a001518961230f565b611a428760c0015161246d565b604051602001611a5796959493929190612b9e565b60408051808303601f1901815291905295945050505050565b600a5460009033906009908390611a8d9060019061ffff166137fb565b61ffff1681526020808201929092526040908101600020549051611ae5939263ffffffff909216910160609290921b6bffffffffffffffffffffffff1916825260e01b6001600160e01b031916601482015260180190565b6040516020818303038152906040528051906020012060001c905090565b6106fb828260405180602001604052806000815250612480565b60006001600160a01b0384163b15611c1f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b619033908990889088906004016135a2565b602060405180830381600087803b158015611b7b57600080fd5b505af1925050508015611bab575060408051601f3d908101601f19168201909252611ba8918101906129ea565b60015b611c05573d808015611bd9576040519150601f19603f3d011682016040523d82523d6000602084013e611bde565b606091505b508051611bfd5760405162461bcd60e51b815260040161081790613612565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114f8565b506001949350505050565b606081611c4e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c785780611c62816138be565b9150611c719050600a836137c8565b9150611c52565b60008167ffffffffffffffff811115611c9357611c93613972565b6040519080825280601f01601f191660200182016040528015611cbd576020820181803683370190505b5090505b84156114f857611cd260018361381e565b9150611cdf600a866138fa565b611cea90603061378b565b60f81b818381518110611cff57611cff61395c565b60200101906001600160f81b031916908160001a905350611d21600a866137c8565b9450611cc1565b611d686040518060e00160405280606081526020016060815260200160608152602001606081526020016060815260200160608152602001606081525090565b6000600b611d776015856138fa565b60ff1660158110611d8a57611d8a61395c565b018054611d9690613861565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc290613861565b8015611e0f5780601f10611de457610100808354040283529160200191611e0f565b820191906000526020600020905b815481529060010190602001808311611df257829003601f168201915b505050505090506000600b60158086611e2891906137c8565b611e3291906138fa565b60ff1660158110611e4557611e4561395c565b018054611e5190613861565b80601f0160208091040260200160405190810160405280929190818152602001828054611e7d90613861565b8015611eca5780601f10611e9f57610100808354040283529160200191611eca565b820191906000526020600020905b815481529060010190602001808311611ead57829003601f168201915b505050505090506000600b60156101b987611ee591906137c8565b611eef91906138fa565b60ff1660158110611f0257611f0261395c565b018054611f0e90613861565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3a90613861565b8015611f875780601f10611f5c57610100808354040283529160200191611f87565b820191906000526020600020905b815481529060010190602001808311611f6a57829003601f168201915b505050505090506000600b601561242d88611fa291906137c8565b611fac91906138fa565b60ff1660158110611fbf57611fbf61395c565b018054611fcb90613861565b80601f0160208091040260200160405190810160405280929190818152602001828054611ff790613861565b80156120445780601f1061201957610100808354040283529160200191612044565b820191906000526020600020905b81548152906001019060200180831161202757829003601f168201915b505050505090506000600b60156202f7b18961206091906137c8565b61206a91906138fa565b60ff166015811061207d5761207d61395c565b01805461208990613861565b80601f01602080910402602001604051908101604052809291908181526020018280546120b590613861565b80156121025780601f106120d757610100808354040283529160200191612102565b820191906000526020600020905b8154815290600101906020018083116120e557829003601f168201915b50505050509050600061212060658961211b91906138fa565b6124b3565b90506000600b6015612135623e51858c6137c8565b61213f91906138fa565b60ff16601581106121525761215261395c565b01805461215e90613861565b80601f016020809104026020016040519081016040528092919081815260200182805461218a90613861565b80156121d75780601f106121ac576101008083540402835291602001916121d7565b820191906000526020600020905b8154815290600101906020018083116121ba57829003601f168201915b50506040805160e0810182529b8c5260208c019a909a52505050958701949094526060860192909252608085015260a08401525060c082015292915050565b6008546040516304b01c2560e51b81526060916001600160a01b03169063960384a090612262906004016020808252600890820152670cedabececae8bed60c31b604082015260600190565b60006040518083038186803b15801561227a57600080fd5b505afa15801561228e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526122b69190810190612a50565b905090565b6060816040516020016110b791906130af565b606082826040516020016122e3929190612c59565b604051602081830303815290604052905092915050565b606082826040516020016122e39291906134f3565b6008546040516060916001600160a01b03169063960384a090612336908690602001612e16565b6040516020818303038152906040526040518263ffffffff1660e01b815260040161236191906135d5565b60006040518083038186803b15801561237957600080fd5b505afa15801561238d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526123b59190810190612a50565b6008546040516001600160a01b039091169063960384a0906123dd9086908890602001612c1d565b6040516020818303038152906040526040518263ffffffff1660e01b815260040161240891906135d5565b60006040518083038186803b15801561242057600080fd5b505afa158015612434573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261245c9190810190612a50565b6040516020016122e3929190612b6f565b6060816040516020016110b791906133ff565b61248a838361262c565b6124976000848484611b1d565b61094d5760405162461bcd60e51b815260040161081790613612565b606060148260ff1610156124de5750506040805180820190915260018152606360f81b602082015290565b601e8260ff161015612509575050604080518082019091526003815262635f7560e81b602082015290565b60218260ff161015612536575050604080518082019091526005815264635f755f6960d81b602082015290565b60358260ff16101561255f5750506040805180820190915260018152600d60fb1b602082015290565b603f8260ff16101561258a575050604080518082019091526003815262685f7560e81b602082015290565b60428260ff1610156125b7575050604080518082019091526005815264685f755f6960d81b602082015290565b60568260ff1610156125e05750506040805180820190915260018152601d60fa1b602082015290565b60608260ff16101561260b575050604080518082019091526003815262745f7560e81b602082015290565b5050604080518082019091526005815264745f755f6960d81b602082015290565b6001600160a01b0382166126825760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610817565b6000818152600260205260409020546001600160a01b0316156126e75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610817565b6001600160a01b038216600090815260036020526040812080546001929061271090849061378b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461277a90613861565b90600052602060002090601f01602090048101928261279c57600085556127e2565b82601f106127b557805160ff19168380011785556127e2565b828001600101855582156127e2579182015b828111156127e25782518255916020019190600101906127c7565b506127ee9291506127f2565b5090565b5b808211156127ee57600081556001016127f3565b600061281a61281584613763565b613732565b905082815283838301111561282e57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461285c57600080fd5b919050565b60006020828403121561287357600080fd5b61133882612845565b6000806040838503121561288f57600080fd5b61289883612845565b91506128a660208401612845565b90509250929050565b6000806000606084860312156128c457600080fd5b6128cd84612845565b92506128db60208501612845565b9150604084013590509250925092565b6000806000806080858703121561290157600080fd5b61290a85612845565b935061291860208601612845565b925060408501359150606085013567ffffffffffffffff81111561293b57600080fd5b8501601f8101871361294c57600080fd5b61295b87823560208401612807565b91505092959194509250565b6000806040838503121561297a57600080fd5b61298383612845565b91506020830135801515811461299857600080fd5b809150509250929050565b600080604083850312156129b657600080fd5b6129bf83612845565b946020939093013593505050565b6000602082840312156129df57600080fd5b813561133881613988565b6000602082840312156129fc57600080fd5b815161133881613988565b600060208284031215612a1957600080fd5b813567ffffffffffffffff811115612a3057600080fd5b8201601f81018413612a4157600080fd5b6114f884823560208401612807565b600060208284031215612a6257600080fd5b815167ffffffffffffffff811115612a7957600080fd5b8201601f81018413612a8a57600080fd5b8051612a9861281582613763565b818152856020838501011115612aad57600080fd5b612abe826020830160208601613835565b95945050505050565b600060208284031215612ad957600080fd5b5035919050565b60008060408385031215612af357600080fd5b82359150602083013560ff8116811461299857600080fd5b60008151808452612b23816020860160208601613835565b601f01601f19169290920160200192915050565b60008151612b49818560208601613835565b9290920192915050565b60008251612b65818460208701613835565b9190910192915050565b60008351612b81818460208801613835565b835190830190612b95818360208801613835565b01949350505050565b600087516020612bb18285838d01613835565b885191840191612bc48184848d01613835565b8851920191612bd68184848c01613835565b8751920191612be88184848b01613835565b8651920191612bfa8184848a01613835565b8551920191612c0c8184848901613835565b919091019998505050505050505050565b60008351612c2f818460208801613835565b605f60f81b9083019081528351612c4d816001840160208801613835565b01600101949350505050565b7f3c656c6c697073652072793d22323937222072783d22323937222063793d22338152753030222063783d2233303022207374726f6b653d222360501b602082015260008351612cb0816036850160208801613835565b7f22207374726f6b652d77696474683d22357078222066696c6c3d2223000000006036918401918201528351612ced816052840160208801613835565b6611179f1e17b39f60c91b60529290910191820152605901949350505050565b7f5b7b2274726169745f74797065223a20224261636b67726f756e64204b6f6c6f815260006d39111610113b30b63ab2911d101160911b8060208401528551612d5d81602e860160208a01613835565b80840190507f227d2c207b2274726169745f74797065223a20224f75746c696e65204b6f6c6f602e82015281604e82015285519150612da382605c830160208901613835565b8181019150507f227d2c207b2274726169745f74797065223a2022436972636c65204b6f6c6f72605c8201526c111610113b30b63ab2911d101160991b607c8201528351612df8816089840160208801613835565b630113e96160e51b60899290910191820152608d0195945050505050565b61675f60f01b815260008251612e33816002850160208701613835565b9190910160020192915050565b7f7b226e616d65223a2022736179206974206261636b21222c20226465736372698152600060207f7074696f6e223a202234343434206f6e2d636861696e2067656e657261746564818401527f20262073746f726564206461696c79206d65737361676573202d20766973697460408401527f2065746865727363616e20636f6e747261637420746f2073657420697420746f60608401527f20796f75722074696d65207a6f6e652028646f206e6f7420636f6d70726f6d6960808401527f736520796f7572206f70536563292e20736179206974206261636b21222c202260a08401527f73656c6c65725f6665655f62617369735f706f696e7473223a203639302c202260c0840152703332b2afb932b1b4b834b2b73a111d101160791b60e084015260f16000855481600182811c915080831680612f8157607f831692505b868310811415612f9f57634e487b7160e01b85526022600452602485fd5b808015612fb35760018114612fc857612ff9565b60ff1985168a880152838a0187019550612ff9565b60008b81526020902060005b85811015612fef5781548c82018a0152908401908901612fd4565b505086848b010195505b50505050506130108161227d60f01b815260020190565b9695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161305281601d850160208701613835565b91909101601d0192915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161309781601d850160208701613835565b602360f81b601d939091019283015250601e01919050565b7f3c72656374206865696768743d22363030222077696474683d223630302220798152713d22302220783d2230222066696c6c3d222360701b602082015260008251613102816032850160208701613835565b6211179f60e91b6032939091019283015250603501919050565b6e03d9130ba3a3934b13aba32b9911d1608d1b8152835160009061314781600f850160208901613835565b7f2c2020226e616d65223a2022736179206974206261636b212023000000000000600f918401918201528451613184816029840160208901613835565b7f222c20226465736372697074696f6e223a202234343434206f6e2d636861696e602992909101918201527f2067656e65726174656420262073746f726564206461696c79206d657373616760498201527f6573202d2076697369742065746865727363616e20636f6e747261637420746f60698201527f2073657420697420746f20796f75722074696d65207a6f6e652028646f206e6f60898201527f7420636f6d70726f6d69736520796f7572206f70536563292e2073617920697460a98201527f206261636b21222c2022696d616765223a2022646174613a696d6167652f737660c98201526c19cade1b5b0ed8985cd94d8d0b609a1b60e982015261301061329360f6830186612b37565b61227d60f01b815260020190565b7f7b2274726169745f74797065223a202254657874204f75746c696e65204b6f6c81526e37b9111610113b30b63ab2911d101160891b6020820152600085516132f181602f850160208a01613835565b7f227d2c207b2274726169745f74797065223a202254657874204b6f6c6f72222c602f918401918201526a10113b30b63ab2911d101160a91b604f820152855161334281605a840160208a01613835565b7f227d2c20207b2274726169745f74797065223a20225465787420536861646f77605a9290910191820152721025b7b637b9111610113b30b63ab2911d101160691b607a820152845161339c81608d840160208901613835565b7f227d2c207b2274726169745f74797065223a2022466f6e74222c202276616c75608d92909101918201526432911d101160d91b60ad8201526133f46133e560b2830186612b37565b62227d5d60e81b815260030190565b979650505050505050565b7f3c66696c7465722069643d2273682220783d22302220793d223022207769647481527f683d223330302522206865696768743d2233303025223e3c666544726f70536860208201527f61646f772064783d223130222064793d2231302220737464446576696174696f6040820152736e3d22302220666c6f6f642d636f6c6f723d222360601b6060820152600082516134a0816074850160208701613835565b7f2220666c6f6f642d6f7061636974793d2231223e3c2f666544726f705368616460749390910192830152507537bb9f1e17b334b63a32b91f1e17b39f1e17b9bb339f60511b609482015260aa01919050565b7f3c672066696c7465723d2275726c282373682922207472616e73666f726d3d228152757363616c6528302e37352922207374726f6b653d222360501b60208201526000835161354a816036850160208801613835565b7f22207374726f6b652d77696474683d22302e317078222066696c6c3d222300006036918401918201528351613587816054840160208801613835565b61111f60f11b60549290910191820152605601949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061301090830184612b0b565b6020815260006113386020830184612b0b565b60208082526010908201526f6d696e6420796f7572206f776e20676d60801b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f6f6e6c7920757020746f20313220686f757273206f66206f666673657420697360408201526708185b1b1bddd95960c21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561375b5761375b613972565b604052919050565b600067ffffffffffffffff82111561377d5761377d613972565b50601f01601f191660200190565b6000821982111561379e5761379e613930565b500190565b600060ff821660ff84168060ff038211156137c0576137c0613930565b019392505050565b6000826137d7576137d7613946565b500490565b60008160001904831182151516156137f6576137f6613930565b500290565b600061ffff8381169083168181101561381657613816613930565b039392505050565b60008282101561383057613830613930565b500390565b60005b83811015613850578181015183820152602001613838565b83811115610e6c5750506000910152565b600181811c9082168061387557607f821691505b6020821081141561389657634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff808316818114156138b4576138b4613930565b6001019392505050565b60006000198214156138d2576138d2613930565b5060010190565b600061ffff808416806138ee576138ee613946565b92169190910692915050565b60008261390957613909613946565b500690565b600060ff83168061392157613921613946565b8060ff84160691505092915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461132957600080fdfea26469706673582212207315e278253efa1a1a2e6b4a03afcf686fe2b179271ff8e60365bfa33fe4c2ef64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106101c65760003560e01c806395d89b41116100f7578063c4cce3ea11610095578063e8a3d48511610064578063e8a3d48514610565578063e985e9c51461057a578063eb101349146105c3578063f2fde38b146105e357600080fd5b8063c4cce3ea146104e5578063c87b56dd14610505578063d494d22514610525578063e38712921461054557600080fd5b8063a58b25f8116100d1578063a58b25f814610447578063b88d4fde14610467578063b91ddc6d14610487578063bc34ea32146104b757600080fd5b806395d89b41146103e2578063a22cb465146103f7578063a397f74c1461041757600080fd5b806347fca6f41161016457806370a082311161013e57806370a082311461033f578063715018a61461036d57806383c62e66146103825780638da5cb5b146103c457600080fd5b806347fca6f4146102df5780636352211e146102ff5780636be09ded1461031f57600080fd5b8063095ea7b3116101a0578063095ea7b31461026a57806323b872dd1461028a5780632a1bbc34146102aa57806342842e0e146102bf57600080fd5b806301ffc9a7146101db57806306fdde0314610210578063081812fc1461023257600080fd5b366101d6576101d434610603565b005b600080fd5b3480156101e757600080fd5b506101fb6101f63660046129cd565b6106ff565b60405190151581526020015b60405180910390f35b34801561021c57600080fd5b50610225610710565b60405161020791906135d5565b34801561023e57600080fd5b5061025261024d366004612ac7565b6107a2565b6040516001600160a01b039091168152602001610207565b34801561027657600080fd5b506101d46102853660046129a3565b61083c565b34801561029657600080fd5b506101d46102a53660046128af565b610952565b3480156102b657600080fd5b506101d4610983565b3480156102cb57600080fd5b506101d46102da3660046128af565b610a75565b3480156102eb57600080fd5b506102256102fa366004612ac7565b610a90565b34801561030b57600080fd5b5061025261031a366004612ac7565b610b34565b34801561032b57600080fd5b506101d461033a366004612ae0565b610bab565b34801561034b57600080fd5b5061035f61035a366004612861565b610c2a565b604051908152602001610207565b34801561037957600080fd5b506101d4610cb1565b34801561038e57600080fd5b506103b261039d366004612ac7565b60226020526000908152604090205460ff1681565b60405160ff9091168152602001610207565b3480156103d057600080fd5b506007546001600160a01b0316610252565b3480156103ee57600080fd5b50610225610ce7565b34801561040357600080fd5b506101d4610412366004612967565b610cf6565b34801561042357600080fd5b506103b2610432366004612ac7565b60246020526000908152604090205460ff1681565b34801561045357600080fd5b506101d4610462366004612ae0565b610dbb565b34801561047357600080fd5b506101d46104823660046128eb565b610e3a565b34801561049357600080fd5b506103b26104a2366004612ac7565b60236020526000908152604090205460ff1681565b3480156104c357600080fd5b50600a546104d29061ffff1681565b60405161ffff9091168152602001610207565b3480156104f157600080fd5b506101d4610500366004612861565b610e72565b34801561051157600080fd5b50610225610520366004612ac7565b610ebe565b34801561053157600080fd5b506101d4610540366004612a07565b6110cd565b34801561055157600080fd5b506103b2610560366004612ac7565b611109565b34801561057157600080fd5b50610225611148565b34801561058657600080fd5b506101fb61059536600461287c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105cf57600080fd5b506101d46105de366004612ae0565b611212565b3480156105ef57600080fd5b506101d46105fe366004612861565b611291565b733b99e794378bd057f3ad7aea9206fb6c01f3ee606108fc610631606461062b85602161132c565b9061133f565b6040518115909202916000818181858888f19350505050158015610659573d6000803e3d6000fd5b5073575cbc1d88c266b18f1bb221c1a1a79a55a3d3be6108fc610682606461062b85602161132c565b6040518115909202916000818181858888f193505050501580156106aa573d6000803e3d6000fd5b5073bf7288346588897afdae38288fff58d2e27dd2356108fc6106d3606461062b85602161132c565b6040518115909202916000818181858888f193505050501580156106fb573d6000803e3d6000fd5b5050565b600061070a8261134b565b92915050565b60606000805461071f90613861565b80601f016020809104026020016040519081016040528092919081815260200182805461074b90613861565b80156107985780601f1061076d57610100808354040283529160200191610798565b820191906000526020600020905b81548152906001019060200180831161077b57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108205760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061084782610b34565b9050806001600160a01b0316836001600160a01b031614156108b55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610817565b336001600160a01b03821614806108d157506108d18133610595565b6109435760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610817565b61094d838361139b565b505050565b61095c3382611409565b6109785760405162461bcd60e51b8152600401610817906136e1565b61094d838383611500565b600260065414156109d65760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610817565b6002600655602154600a546109f09061ffff1660016116a0565b1115610a295760405162461bcd60e51b81526020600482015260086024820152671cdbdb19081bdd5d60c21b6044820152606401610817565b610a32336116ac565b600a54610a459060649061ffff166138d9565b61ffff1660631415610a6e57610a6e733b99e794378bd057f3ad7aea9206fb6c01f3ee606116ac565b6001600655565b61094d83838360405180602001604052806000815250610e3a565b6040805180820190915260018152606d60f81b60208201526060906000610ab684611109565b600085815260246020526040902054909150610ad69060ff16600c6137a3565b60ff168160ff161180610b0b5750600084815260236020526040812054610b029160ff909116906137a3565b60ff168160ff16105b15610b2d57604051806040016040528060018152602001603760f91b81525091505b5092915050565b6000818152600260205260408120546001600160a01b03168061070a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610817565b610bb482610b34565b6001600160a01b0316336001600160a01b031614610be45760405162461bcd60e51b8152600401610817906135e8565b600c8160ff161115610c085760405162461bcd60e51b815260040161081790613699565b600091825260246020526040909120805460ff191660ff909216919091179055565b60006001600160a01b038216610c955760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610817565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610cdb5760405162461bcd60e51b815260040161081790613664565b610ce56000611721565b565b60606001805461071f90613861565b6001600160a01b038216331415610d4f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610817565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dc482610b34565b6001600160a01b0316336001600160a01b031614610df45760405162461bcd60e51b8152600401610817906135e8565b600c8160ff161115610e185760405162461bcd60e51b815260040161081790613699565b600091825260236020526040909120805460ff191660ff909216919091179055565b610e443383611409565b610e605760405162461bcd60e51b8152600401610817906136e1565b610e6c84848484611773565b50505050565b6007546001600160a01b03163314610e9c5760405162461bcd60e51b815260040161081790613664565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6060610ec9826117a6565b506008546001600160a01b03166312496a1b610ee48461188d565b60085460405163348051d760e11b8152600481018790526001600160a01b0390911690636900a3ae9060240160006040518083038186803b158015610f2857600080fd5b505afa158015610f3c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610f649190810190612a50565b6008546001600160a01b03166312496a1b610f8788610f8281610a90565b61198e565b604051602001610f979190612b53565b6040516020818303038152906040526040518263ffffffff1660e01b8152600401610fc291906135d5565b60006040518083038186803b158015610fda57600080fd5b505afa158015610fee573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526110169190810190612a50565b6040516020016110289392919061311c565b6040516020818303038152906040526040518263ffffffff1660e01b815260040161105391906135d5565b60006040518083038186803b15801561106b57600080fd5b505afa15801561107f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526110a79190810190612a50565b6040516020016110b7919061305f565b6040516020818303038152906040529050919050565b6007546001600160a01b031633146110f75760405162461bcd60e51b815260040161081790613664565b80516106fb906020908184019061276e565b60008181526022602052604081205460189060ff16603c61112a81426137c8565b61113491906137c8565b61113e919061378b565b61070a919061390e565b6008546040516060916001600160a01b0316906312496a1b9061116f906020908101612e40565b6040516020818303038152906040526040518263ffffffff1660e01b815260040161119a91906135d5565b60006040518083038186803b1580156111b257600080fd5b505afa1580156111c6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526111ee9190810190612a50565b6040516020016111fe919061301a565b604051602081830303815290604052905090565b61121b82610b34565b6001600160a01b0316336001600160a01b03161461124b5760405162461bcd60e51b8152600401610817906135e8565b60178160ff16111561126f5760405162461bcd60e51b815260040161081790613699565b600091825260226020526040909120805460ff191660ff909216919091179055565b6007546001600160a01b031633146112bb5760405162461bcd60e51b815260040161081790613664565b6001600160a01b0381166113205760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610817565b61132981611721565b50565b600061133882846137dc565b9392505050565b600061133882846137c8565b60006001600160e01b031982166380ac58cd60e01b148061137c57506001600160e01b03198216635b5e139f60e01b145b8061070a57506301ffc9a760e01b6001600160e01b031983161461070a565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113d082610b34565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610817565b600061148d83610b34565b9050806001600160a01b0316846001600160a01b031614806114c85750836001600160a01b03166114bd846107a2565b6001600160a01b0316145b806114f857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661151382610b34565b6001600160a01b03161461157b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610817565b6001600160a01b0382166115dd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610817565b6115e860008261139b565b6001600160a01b038316600090815260036020526040812080546001929061161190849061381e565b90915550506001600160a01b038216600090815260036020526040812080546001929061163f90849061378b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611338828461378b565b600a805461ffff169060006116c08361389c565b91906101000a81548161ffff021916908361ffff160217905550506116e3611a70565b600a805461ffff9081166000908152600960205260409020805463ffffffff191663ffffffff94909416939093179092555461132991839116611b03565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61177e848484611500565b61178a84848484611b1d565b610e6c5760405162461bcd60e51b815260040161081790613612565b6000818152600260205260409020546060906001600160a01b03166118255760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610817565b600061183c60408051602081019091526000815290565b9050600081511161185c5760405180602001604052806000815250611338565b8061186684611c2a565b604051602001611877929190612b6f565b6040516020818303038152906040529392505050565b60606118cf6040518060e00160405280606081526020016060815260200160608152602001606081526020016060815260200160608152602001606081525090565b61ffff831660009081526009602052604090205463ffffffff166060806118f583611d28565b935083600001518460200151856040015160405160200161191893929190612d0d565b6040516020818303038152906040529150836060015184608001518560c001518660a0015160405160200161195094939291906132a1565b60405160208183030381529060405290508181604051602001611974929190612b6f565b604051602081830303815290604052945050505050919050565b606060008361ffff16116119c95760405162461bcd60e51b8152602060048201526002602482015261676d60f01b6044820152606401610817565b61ffff83166000908152600960205260408120546119ec9063ffffffff16611d28565b905060006119f8612216565b8251611a03906122bb565b611a15846020015185604001516122ce565b611a27856060015186608001516122fa565b611a358660a001518961230f565b611a428760c0015161246d565b604051602001611a5796959493929190612b9e565b60408051808303601f1901815291905295945050505050565b600a5460009033906009908390611a8d9060019061ffff166137fb565b61ffff1681526020808201929092526040908101600020549051611ae5939263ffffffff909216910160609290921b6bffffffffffffffffffffffff1916825260e01b6001600160e01b031916601482015260180190565b6040516020818303038152906040528051906020012060001c905090565b6106fb828260405180602001604052806000815250612480565b60006001600160a01b0384163b15611c1f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b619033908990889088906004016135a2565b602060405180830381600087803b158015611b7b57600080fd5b505af1925050508015611bab575060408051601f3d908101601f19168201909252611ba8918101906129ea565b60015b611c05573d808015611bd9576040519150601f19603f3d011682016040523d82523d6000602084013e611bde565b606091505b508051611bfd5760405162461bcd60e51b815260040161081790613612565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114f8565b506001949350505050565b606081611c4e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c785780611c62816138be565b9150611c719050600a836137c8565b9150611c52565b60008167ffffffffffffffff811115611c9357611c93613972565b6040519080825280601f01601f191660200182016040528015611cbd576020820181803683370190505b5090505b84156114f857611cd260018361381e565b9150611cdf600a866138fa565b611cea90603061378b565b60f81b818381518110611cff57611cff61395c565b60200101906001600160f81b031916908160001a905350611d21600a866137c8565b9450611cc1565b611d686040518060e00160405280606081526020016060815260200160608152602001606081526020016060815260200160608152602001606081525090565b6000600b611d776015856138fa565b60ff1660158110611d8a57611d8a61395c565b018054611d9690613861565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc290613861565b8015611e0f5780601f10611de457610100808354040283529160200191611e0f565b820191906000526020600020905b815481529060010190602001808311611df257829003601f168201915b505050505090506000600b60158086611e2891906137c8565b611e3291906138fa565b60ff1660158110611e4557611e4561395c565b018054611e5190613861565b80601f0160208091040260200160405190810160405280929190818152602001828054611e7d90613861565b8015611eca5780601f10611e9f57610100808354040283529160200191611eca565b820191906000526020600020905b815481529060010190602001808311611ead57829003601f168201915b505050505090506000600b60156101b987611ee591906137c8565b611eef91906138fa565b60ff1660158110611f0257611f0261395c565b018054611f0e90613861565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3a90613861565b8015611f875780601f10611f5c57610100808354040283529160200191611f87565b820191906000526020600020905b815481529060010190602001808311611f6a57829003601f168201915b505050505090506000600b601561242d88611fa291906137c8565b611fac91906138fa565b60ff1660158110611fbf57611fbf61395c565b018054611fcb90613861565b80601f0160208091040260200160405190810160405280929190818152602001828054611ff790613861565b80156120445780601f1061201957610100808354040283529160200191612044565b820191906000526020600020905b81548152906001019060200180831161202757829003601f168201915b505050505090506000600b60156202f7b18961206091906137c8565b61206a91906138fa565b60ff166015811061207d5761207d61395c565b01805461208990613861565b80601f01602080910402602001604051908101604052809291908181526020018280546120b590613861565b80156121025780601f106120d757610100808354040283529160200191612102565b820191906000526020600020905b8154815290600101906020018083116120e557829003601f168201915b50505050509050600061212060658961211b91906138fa565b6124b3565b90506000600b6015612135623e51858c6137c8565b61213f91906138fa565b60ff16601581106121525761215261395c565b01805461215e90613861565b80601f016020809104026020016040519081016040528092919081815260200182805461218a90613861565b80156121d75780601f106121ac576101008083540402835291602001916121d7565b820191906000526020600020905b8154815290600101906020018083116121ba57829003601f168201915b50506040805160e0810182529b8c5260208c019a909a52505050958701949094526060860192909252608085015260a08401525060c082015292915050565b6008546040516304b01c2560e51b81526060916001600160a01b03169063960384a090612262906004016020808252600890820152670cedabececae8bed60c31b604082015260600190565b60006040518083038186803b15801561227a57600080fd5b505afa15801561228e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526122b69190810190612a50565b905090565b6060816040516020016110b791906130af565b606082826040516020016122e3929190612c59565b604051602081830303815290604052905092915050565b606082826040516020016122e39291906134f3565b6008546040516060916001600160a01b03169063960384a090612336908690602001612e16565b6040516020818303038152906040526040518263ffffffff1660e01b815260040161236191906135d5565b60006040518083038186803b15801561237957600080fd5b505afa15801561238d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526123b59190810190612a50565b6008546040516001600160a01b039091169063960384a0906123dd9086908890602001612c1d565b6040516020818303038152906040526040518263ffffffff1660e01b815260040161240891906135d5565b60006040518083038186803b15801561242057600080fd5b505afa158015612434573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261245c9190810190612a50565b6040516020016122e3929190612b6f565b6060816040516020016110b791906133ff565b61248a838361262c565b6124976000848484611b1d565b61094d5760405162461bcd60e51b815260040161081790613612565b606060148260ff1610156124de5750506040805180820190915260018152606360f81b602082015290565b601e8260ff161015612509575050604080518082019091526003815262635f7560e81b602082015290565b60218260ff161015612536575050604080518082019091526005815264635f755f6960d81b602082015290565b60358260ff16101561255f5750506040805180820190915260018152600d60fb1b602082015290565b603f8260ff16101561258a575050604080518082019091526003815262685f7560e81b602082015290565b60428260ff1610156125b7575050604080518082019091526005815264685f755f6960d81b602082015290565b60568260ff1610156125e05750506040805180820190915260018152601d60fa1b602082015290565b60608260ff16101561260b575050604080518082019091526003815262745f7560e81b602082015290565b5050604080518082019091526005815264745f755f6960d81b602082015290565b6001600160a01b0382166126825760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610817565b6000818152600260205260409020546001600160a01b0316156126e75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610817565b6001600160a01b038216600090815260036020526040812080546001929061271090849061378b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461277a90613861565b90600052602060002090601f01602090048101928261279c57600085556127e2565b82601f106127b557805160ff19168380011785556127e2565b828001600101855582156127e2579182015b828111156127e25782518255916020019190600101906127c7565b506127ee9291506127f2565b5090565b5b808211156127ee57600081556001016127f3565b600061281a61281584613763565b613732565b905082815283838301111561282e57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461285c57600080fd5b919050565b60006020828403121561287357600080fd5b61133882612845565b6000806040838503121561288f57600080fd5b61289883612845565b91506128a660208401612845565b90509250929050565b6000806000606084860312156128c457600080fd5b6128cd84612845565b92506128db60208501612845565b9150604084013590509250925092565b6000806000806080858703121561290157600080fd5b61290a85612845565b935061291860208601612845565b925060408501359150606085013567ffffffffffffffff81111561293b57600080fd5b8501601f8101871361294c57600080fd5b61295b87823560208401612807565b91505092959194509250565b6000806040838503121561297a57600080fd5b61298383612845565b91506020830135801515811461299857600080fd5b809150509250929050565b600080604083850312156129b657600080fd5b6129bf83612845565b946020939093013593505050565b6000602082840312156129df57600080fd5b813561133881613988565b6000602082840312156129fc57600080fd5b815161133881613988565b600060208284031215612a1957600080fd5b813567ffffffffffffffff811115612a3057600080fd5b8201601f81018413612a4157600080fd5b6114f884823560208401612807565b600060208284031215612a6257600080fd5b815167ffffffffffffffff811115612a7957600080fd5b8201601f81018413612a8a57600080fd5b8051612a9861281582613763565b818152856020838501011115612aad57600080fd5b612abe826020830160208601613835565b95945050505050565b600060208284031215612ad957600080fd5b5035919050565b60008060408385031215612af357600080fd5b82359150602083013560ff8116811461299857600080fd5b60008151808452612b23816020860160208601613835565b601f01601f19169290920160200192915050565b60008151612b49818560208601613835565b9290920192915050565b60008251612b65818460208701613835565b9190910192915050565b60008351612b81818460208801613835565b835190830190612b95818360208801613835565b01949350505050565b600087516020612bb18285838d01613835565b885191840191612bc48184848d01613835565b8851920191612bd68184848c01613835565b8751920191612be88184848b01613835565b8651920191612bfa8184848a01613835565b8551920191612c0c8184848901613835565b919091019998505050505050505050565b60008351612c2f818460208801613835565b605f60f81b9083019081528351612c4d816001840160208801613835565b01600101949350505050565b7f3c656c6c697073652072793d22323937222072783d22323937222063793d22338152753030222063783d2233303022207374726f6b653d222360501b602082015260008351612cb0816036850160208801613835565b7f22207374726f6b652d77696474683d22357078222066696c6c3d2223000000006036918401918201528351612ced816052840160208801613835565b6611179f1e17b39f60c91b60529290910191820152605901949350505050565b7f5b7b2274726169745f74797065223a20224261636b67726f756e64204b6f6c6f815260006d39111610113b30b63ab2911d101160911b8060208401528551612d5d81602e860160208a01613835565b80840190507f227d2c207b2274726169745f74797065223a20224f75746c696e65204b6f6c6f602e82015281604e82015285519150612da382605c830160208901613835565b8181019150507f227d2c207b2274726169745f74797065223a2022436972636c65204b6f6c6f72605c8201526c111610113b30b63ab2911d101160991b607c8201528351612df8816089840160208801613835565b630113e96160e51b60899290910191820152608d0195945050505050565b61675f60f01b815260008251612e33816002850160208701613835565b9190910160020192915050565b7f7b226e616d65223a2022736179206974206261636b21222c20226465736372698152600060207f7074696f6e223a202234343434206f6e2d636861696e2067656e657261746564818401527f20262073746f726564206461696c79206d65737361676573202d20766973697460408401527f2065746865727363616e20636f6e747261637420746f2073657420697420746f60608401527f20796f75722074696d65207a6f6e652028646f206e6f7420636f6d70726f6d6960808401527f736520796f7572206f70536563292e20736179206974206261636b21222c202260a08401527f73656c6c65725f6665655f62617369735f706f696e7473223a203639302c202260c0840152703332b2afb932b1b4b834b2b73a111d101160791b60e084015260f16000855481600182811c915080831680612f8157607f831692505b868310811415612f9f57634e487b7160e01b85526022600452602485fd5b808015612fb35760018114612fc857612ff9565b60ff1985168a880152838a0187019550612ff9565b60008b81526020902060005b85811015612fef5781548c82018a0152908401908901612fd4565b505086848b010195505b50505050506130108161227d60f01b815260020190565b9695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161305281601d850160208701613835565b91909101601d0192915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161309781601d850160208701613835565b602360f81b601d939091019283015250601e01919050565b7f3c72656374206865696768743d22363030222077696474683d223630302220798152713d22302220783d2230222066696c6c3d222360701b602082015260008251613102816032850160208701613835565b6211179f60e91b6032939091019283015250603501919050565b6e03d9130ba3a3934b13aba32b9911d1608d1b8152835160009061314781600f850160208901613835565b7f2c2020226e616d65223a2022736179206974206261636b212023000000000000600f918401918201528451613184816029840160208901613835565b7f222c20226465736372697074696f6e223a202234343434206f6e2d636861696e602992909101918201527f2067656e65726174656420262073746f726564206461696c79206d657373616760498201527f6573202d2076697369742065746865727363616e20636f6e747261637420746f60698201527f2073657420697420746f20796f75722074696d65207a6f6e652028646f206e6f60898201527f7420636f6d70726f6d69736520796f7572206f70536563292e2073617920697460a98201527f206261636b21222c2022696d616765223a2022646174613a696d6167652f737660c98201526c19cade1b5b0ed8985cd94d8d0b609a1b60e982015261301061329360f6830186612b37565b61227d60f01b815260020190565b7f7b2274726169745f74797065223a202254657874204f75746c696e65204b6f6c81526e37b9111610113b30b63ab2911d101160891b6020820152600085516132f181602f850160208a01613835565b7f227d2c207b2274726169745f74797065223a202254657874204b6f6c6f72222c602f918401918201526a10113b30b63ab2911d101160a91b604f820152855161334281605a840160208a01613835565b7f227d2c20207b2274726169745f74797065223a20225465787420536861646f77605a9290910191820152721025b7b637b9111610113b30b63ab2911d101160691b607a820152845161339c81608d840160208901613835565b7f227d2c207b2274726169745f74797065223a2022466f6e74222c202276616c75608d92909101918201526432911d101160d91b60ad8201526133f46133e560b2830186612b37565b62227d5d60e81b815260030190565b979650505050505050565b7f3c66696c7465722069643d2273682220783d22302220793d223022207769647481527f683d223330302522206865696768743d2233303025223e3c666544726f70536860208201527f61646f772064783d223130222064793d2231302220737464446576696174696f6040820152736e3d22302220666c6f6f642d636f6c6f723d222360601b6060820152600082516134a0816074850160208701613835565b7f2220666c6f6f642d6f7061636974793d2231223e3c2f666544726f705368616460749390910192830152507537bb9f1e17b334b63a32b91f1e17b39f1e17b9bb339f60511b609482015260aa01919050565b7f3c672066696c7465723d2275726c282373682922207472616e73666f726d3d228152757363616c6528302e37352922207374726f6b653d222360501b60208201526000835161354a816036850160208801613835565b7f22207374726f6b652d77696474683d22302e317078222066696c6c3d222300006036918401918201528351613587816054840160208801613835565b61111f60f11b60549290910191820152605601949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061301090830184612b0b565b6020815260006113386020830184612b0b565b60208082526010908201526f6d696e6420796f7572206f776e20676d60801b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526028908201527f6f6e6c7920757020746f20313220686f757273206f66206f666673657420697360408201526708185b1b1bddd95960c21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561375b5761375b613972565b604052919050565b600067ffffffffffffffff82111561377d5761377d613972565b50601f01601f191660200190565b6000821982111561379e5761379e613930565b500190565b600060ff821660ff84168060ff038211156137c0576137c0613930565b019392505050565b6000826137d7576137d7613946565b500490565b60008160001904831182151516156137f6576137f6613930565b500290565b600061ffff8381169083168181101561381657613816613930565b039392505050565b60008282101561383057613830613930565b500390565b60005b83811015613850578181015183820152602001613838565b83811115610e6c5750506000910152565b600181811c9082168061387557607f821691505b6020821081141561389657634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff808316818114156138b4576138b4613930565b6001019392505050565b60006000198214156138d2576138d2613930565b5060010190565b600061ffff808416806138ee576138ee613946565b92169190910692915050565b60008261390957613909613946565b500690565b600060ff83168061392157613921613946565b8060ff84160691505092915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461132957600080fdfea26469706673582212207315e278253efa1a1a2e6b4a03afcf686fe2b179271ff8e60365bfa33fe4c2ef64736f6c63430008070033
Deployed Bytecode Sourcemap
51561:7303:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58427:27;58444:9;58427:16;:27::i;:::-;51561:7303;;;;;58470:225;;;;;;;;;;-1:-1:-1;58470:225:0;;;;;:::i;:::-;;:::i;:::-;;;22133:14:1;;22126:22;22108:41;;22096:2;22081:18;58470:225:0;;;;;;;;22927:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24486:221::-;;;;;;;;;;-1:-1:-1;24486:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;21431:32:1;;;21413:51;;21401:2;21386:18;24486:221:0;21267:203:1;24009:411:0;;;;;;;;;;-1:-1:-1;24009:411:0;;;;;:::i;:::-;;:::i;25376:339::-;;;;;;;;;;-1:-1:-1;25376:339:0;;;;;:::i;:::-;;:::i;52573:260::-;;;;;;;;;;;;;:::i;25786:185::-;;;;;;;;;;-1:-1:-1;25786:185:0;;;;;:::i;:::-;;:::i;53784:367::-;;;;;;;;;;-1:-1:-1;53784:367:0;;;;;:::i;:::-;;:::i;22621:239::-;;;;;;;;;;-1:-1:-1;22621:239:0;;;;;:::i;:::-;;:::i;53505:271::-;;;;;;;;;;-1:-1:-1;53505:271:0;;;;;:::i;:::-;;:::i;22351:208::-;;;;;;;;;;-1:-1:-1;22351:208:0;;;;;:::i;:::-;;:::i;:::-;;;31443:25:1;;;31431:2;31416:18;22351:208:0;31297:177:1;45147:94:0;;;;;;;;;;;;;:::i;51788:44::-;;;;;;;;;;-1:-1:-1;51788:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31651:4:1;31639:17;;;31621:36;;31609:2;31594:18;51788:44:0;31479:184:1;44496:87:0;;;;;;;;;;-1:-1:-1;44569:6:0;;-1:-1:-1;;;;;44569:6:0;44496:87;;23096:104;;;;;;;;;;;;;:::i;24779:295::-;;;;;;;;;;-1:-1:-1;24779:295:0;;;;;:::i;:::-;;:::i;51895:49::-;;;;;;;;;;-1:-1:-1;51895:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;53226:271;;;;;;;;;;-1:-1:-1;53226:271:0;;;;;:::i;:::-;;:::i;26042:328::-;;;;;;;;;;-1:-1:-1;26042:328:0;;;;;:::i;:::-;;:::i;51839:49::-;;;;;;;;;;-1:-1:-1;51839:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;47150:22;;;;;;;;;;-1:-1:-1;47150:22:0;;;;;;;;;;;31278:6:1;31266:19;;;31248:38;;31236:2;31221:18;47150:22:0;31104:188:1;46970:120:0;;;;;;;;;;-1:-1:-1;46970:120:0;;;;;:::i;:::-;;:::i;55741:1702::-;;;;;;;;;;-1:-1:-1;55741:1702:0;;;;;:::i;:::-;;:::i;57459:114::-;;;;;;;;;;-1:-1:-1;57459:114:0;;;;;:::i;:::-;;:::i;54163:159::-;;;;;;;;;;-1:-1:-1;54163:159:0;;;;;:::i;:::-;;:::i;57583:798::-;;;;;;;;;;;;;:::i;25145:164::-;;;;;;;;;;-1:-1:-1;25145:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25266:25:0;;;25242:4;25266:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25145:164;52972:246;;;;;;;;;;-1:-1:-1;52972:246:0;;;;;:::i;:::-;;:::i;45396:192::-;;;;;;;;;;-1:-1:-1;45396:192:0;;;;;:::i;:::-;;:::i;51953:463::-;52024:42;52016:110;52091:24;52111:3;52091:15;:7;52103:2;52091:11;:15::i;:::-;:19;;:24::i;:::-;52016:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52157:42:0;52149:110;52224:24;52244:3;52224:15;:7;52236:2;52224:11;:15::i;:24::-;52149:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52293:42:0;52285:110;52360:24;52380:3;52360:15;:7;52372:2;52360:11;:15::i;:24::-;52285:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51953:463;:::o;58470:225::-;58608:4;58650:37;58675:11;58650:24;:37::i;:::-;58630:57;58470:225;-1:-1:-1;;58470:225:0:o;22927:100::-;22981:13;23014:5;23007:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22927:100;:::o;24486:221::-;24562:7;27969:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27969:16:0;24582:73;;;;-1:-1:-1;;;24582:73:0;;28117:2:1;24582:73:0;;;28099:21:1;28156:2;28136:18;;;28129:30;28195:34;28175:18;;;28168:62;-1:-1:-1;;;28246:18:1;;;28239:42;28298:19;;24582:73:0;;;;;;;;;-1:-1:-1;24675:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24675:24:0;;24486:221::o;24009:411::-;24090:13;24106:23;24121:7;24106:14;:23::i;:::-;24090:39;;24154:5;-1:-1:-1;;;;;24148:11:0;:2;-1:-1:-1;;;;;24148:11:0;;;24140:57;;;;-1:-1:-1;;;24140:57:0;;29717:2:1;24140:57:0;;;29699:21:1;29756:2;29736:18;;;29729:30;29795:34;29775:18;;;29768:62;-1:-1:-1;;;29846:18:1;;;29839:31;29887:19;;24140:57:0;29515:397:1;24140:57:0;17484:10;-1:-1:-1;;;;;24232:21:0;;;;:62;;-1:-1:-1;24257:37:0;24274:5;17484:10;25145:164;:::i;24257:37::-;24210:168;;;;-1:-1:-1;;;24210:168:0;;25844:2:1;24210:168:0;;;25826:21:1;25883:2;25863:18;;;25856:30;25922:34;25902:18;;;25895:62;25993:26;25973:18;;;25966:54;26037:19;;24210:168:0;25642:420:1;24210:168:0;24391:21;24400:2;24404:7;24391:8;:21::i;:::-;24079:341;24009:411;;:::o;25376:339::-;25571:41;17484:10;25604:7;25571:18;:41::i;:::-;25563:103;;;;-1:-1:-1;;;25563:103:0;;;;;;;:::i;:::-;25679:28;25689:4;25695:2;25699:7;25679:9;:28::i;52573:260::-;35852:1;36448:7;;:19;;36440:63;;;;-1:-1:-1;;;36440:63:0;;30946:2:1;36440:63:0;;;30928:21:1;30985:2;30965:18;;;30958:30;31024:33;31004:18;;;30997:61;31075:18;;36440:63:0;30744:355:1;36440:63:0;35852:1;36581:7;:18;52653:10:::1;::::0;52634:8:::1;::::0;:15:::1;::::0;:8:::1;;52647:1;52634:12;:15::i;:::-;:29;;52626:50;;;::::0;-1:-1:-1;;;52626:50:0;;25508:2:1;52626:50:0::1;::::0;::::1;25490:21:1::0;25547:1;25527:18;;;25520:29;-1:-1:-1;;;25565:18:1;;;25558:38;25613:18;;52626:50:0::1;25306:331:1::0;52626:50:0::1;52687:17;52693:10;52687:5;:17::i;:::-;52719:8;::::0;:14:::1;::::0;52730:3:::1;::::0;52719:8:::1;;:14;:::i;:::-;:20;;52737:2;52719:20;52715:111;;;52756:58;52770:42;52756:5;:58::i;:::-;35808:1:::0;36760:7;:22;52573:260::o;25786:185::-;25924:39;25941:4;25947:2;25951:7;25924:39;;;;;;;;;;;;:16;:39::i;53784:367::-;53864:22;;;;;;;;;;;;-1:-1:-1;;;53864:22:0;;;;53838:13;;53864:16;53917:25;53933:8;53917:15;:25::i;:::-;53990:26;;;;:16;:26;;;;;;53897:45;;-1:-1:-1;53985:31:0;;53990:26;;53985:2;:31;:::i;:::-;53971:45;;:11;:45;;;:106;;;-1:-1:-1;54051:26:0;;;;:16;:26;;;;;;54047:30;;54051:26;;;;;54047:30;:::i;:::-;54033:44;;:11;:44;;;53971:106;53953:171;;;54104:8;;;;;;;;;;;;;-1:-1:-1;;;54104:8:0;;;;;53953:171;-1:-1:-1;54141:2:0;53784:367;-1:-1:-1;;53784:367:0:o;22621:239::-;22693:7;22729:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22729:16:0;22764:19;22756:73;;;;-1:-1:-1;;;22756:73:0;;27010:2:1;22756:73:0;;;26992:21:1;27049:2;27029:18;;;27022:30;27088:34;27068:18;;;27061:62;-1:-1:-1;;;27139:18:1;;;27132:39;27188:19;;22756:73:0;26808:405:1;53505:271:0;53602:17;53610:8;53602:7;:17::i;:::-;-1:-1:-1;;;;;53588:31:0;:10;-1:-1:-1;;;;;53588:31:0;;53580:60;;;;-1:-1:-1;;;53580:60:0;;;;;;;:::i;:::-;53672:2;53659:9;:15;;;;53651:68;;;;-1:-1:-1;;;53651:68:0;;;;;;;:::i;:::-;53730:26;;;;:16;:26;;;;;;:38;;-1:-1:-1;;53730:38:0;;;;;;;;;;;53505:271::o;22351:208::-;22423:7;-1:-1:-1;;;;;22451:19:0;;22443:74;;;;-1:-1:-1;;;22443:74:0;;26599:2:1;22443:74:0;;;26581:21:1;26638:2;26618:18;;;26611:30;26677:34;26657:18;;;26650:62;-1:-1:-1;;;26728:18:1;;;26721:40;26778:19;;22443:74:0;26397:406:1;22443:74:0;-1:-1:-1;;;;;;22535:16:0;;;;;:9;:16;;;;;;;22351:208::o;45147:94::-;44569:6;;-1:-1:-1;;;;;44569:6:0;17484:10;44716:23;44708:68;;;;-1:-1:-1;;;44708:68:0;;;;;;;:::i;:::-;45212:21:::1;45230:1;45212:9;:21::i;:::-;45147:94::o:0;23096:104::-;23152:13;23185:7;23178:14;;;;;:::i;24779:295::-;-1:-1:-1;;;;;24882:24:0;;17484:10;24882:24;;24874:62;;;;-1:-1:-1;;;24874:62:0;;24741:2:1;24874:62:0;;;24723:21:1;24780:2;24760:18;;;24753:30;24819:27;24799:18;;;24792:55;24864:18;;24874:62:0;24539:349:1;24874:62:0;17484:10;24949:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24949:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24949:53:0;;;;;;;;;;25018:48;;22108:41:1;;;24949:42:0;;17484:10;25018:48;;22081:18:1;25018:48:0;;;;;;;24779:295;;:::o;53226:271::-;53323:17;53331:8;53323:7;:17::i;:::-;-1:-1:-1;;;;;53309:31:0;:10;-1:-1:-1;;;;;53309:31:0;;53301:60;;;;-1:-1:-1;;;53301:60:0;;;;;;;:::i;:::-;53393:2;53380:9;:15;;;;53372:68;;;;-1:-1:-1;;;53372:68:0;;;;;;;:::i;:::-;53451:26;;;;:16;:26;;;;;;:38;;-1:-1:-1;;53451:38:0;;;;;;;;;;;53226:271::o;26042:328::-;26217:41;17484:10;26250:7;26217:18;:41::i;:::-;26209:103;;;;-1:-1:-1;;;26209:103:0;;;;;;;:::i;:::-;26323:39;26337:4;26343:2;26347:7;26356:5;26323:13;:39::i;:::-;26042:328;;;;:::o;46970:120::-;44569:6;;-1:-1:-1;;;;;44569:6:0;17484:10;44716:23;44708:68;;;;-1:-1:-1;;;44708:68:0;;;;;;;:::i;:::-;47049:14:::1;:33:::0;;-1:-1:-1;;;;;;47049:33:0::1;-1:-1:-1::0;;;;;47049:33:0;;;::::1;::::0;;;::::1;::::0;;46970:120::o;55741:1702::-;55850:13;55881:23;55896:7;55881:14;:23::i;:::-;-1:-1:-1;56053:14:0;;-1:-1:-1;;;;;56053:14:0;:21;56240:22;56254:7;56240:13;:22::i;:::-;56360:14;;:32;;-1:-1:-1;;;56360:32:0;;;;;31443:25:1;;;-1:-1:-1;;;;;56360:14:0;;;;:23;;31416:18:1;;56360:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56360:32:0;;;;;;;;;;;;:::i;:::-;56714:14;;-1:-1:-1;;;;;56714:14:0;:21;56897:194;56963:7;57026:14;56963:7;57026:5;:14::i;:::-;56897:4;:194::i;:::-;56830:308;;;;;;;;:::i;:::-;;;;;;;;;;;;;56714:506;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56714:506:0;;;;;;;;;;;;:::i;:::-;56137:1188;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56053:1322;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56053:1322:0;;;;;;;;;;;;:::i;:::-;55960:1460;;;;;;;;:::i;:::-;;;;;;;;;;;;;55915:1520;;55741:1702;;;:::o;57459:114::-;44569:6;;-1:-1:-1;;;;;44569:6:0;17484:10;44716:23;44708:68;;;;-1:-1:-1;;;44708:68:0;;;;;;;:::i;:::-;57539:26;;::::1;::::0;:15:::1;::::0;:26;;::::1;::::0;::::1;:::i;54163:159::-:0;54227:5;54287:21;;;:11;:21;;;;;;54312:2;;54287:21;;54281:2;54258:20;54281:2;54258:15;:20;:::i;:::-;:25;;;;:::i;:::-;54257:51;;;;:::i;:::-;54251:63;;;;:::i;57583:798::-;57791:14;;57875:414;;57627:13;;-1:-1:-1;;;;;57791:14:0;;:21;;57875:414;;58204:15;;57875:414;;;:::i;:::-;;;;;;;;;;;;;57791:548;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57791:548:0;;;;;;;;;;;;:::i;:::-;57698:660;;;;;;;;:::i;:::-;;;;;;;;;;;;;57653:720;;57583:798;:::o;52972:246::-;53059:17;53067:8;53059:7;:17::i;:::-;-1:-1:-1;;;;;53045:31:0;:10;-1:-1:-1;;;;;53045:31:0;;53037:60;;;;-1:-1:-1;;;53037:60:0;;;;;;;:::i;:::-;53124:2;53116:4;:10;;;;53108:63;;;;-1:-1:-1;;;53108:63:0;;;;;;;:::i;:::-;53182:21;;;;:11;:21;;;;;;:28;;-1:-1:-1;;53182:28:0;;;;;;;;;;;52972:246::o;45396:192::-;44569:6;;-1:-1:-1;;;;;44569:6:0;17484:10;44716:23;44708:68;;;;-1:-1:-1;;;44708:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45485:22:0;::::1;45477:73;;;::::0;-1:-1:-1;;;45477:73:0;;23572:2:1;45477:73:0::1;::::0;::::1;23554:21:1::0;23611:2;23591:18;;;23584:30;23650:34;23630:18;;;23623:62;-1:-1:-1;;;23701:18:1;;;23694:36;23747:19;;45477:73:0::1;23370:402:1::0;45477:73:0::1;45561:19;45571:8;45561:9;:19::i;:::-;45396:192:::0;:::o;40167:98::-;40225:7;40252:5;40256:1;40252;:5;:::i;:::-;40245:12;40167:98;-1:-1:-1;;;40167:98:0:o;40566:::-;40624:7;40651:5;40655:1;40651;:5;:::i;21982:305::-;22084:4;-1:-1:-1;;;;;;22121:40:0;;-1:-1:-1;;;22121:40:0;;:105;;-1:-1:-1;;;;;;;22178:48:0;;-1:-1:-1;;;22178:48:0;22121:105;:158;;;-1:-1:-1;;;;;;;;;;20595:40:0;;;22243:36;20486:157;31862:174;31937:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31937:29:0;-1:-1:-1;;;;;31937:29:0;;;;;;;;:24;;31991:23;31937:24;31991:14;:23::i;:::-;-1:-1:-1;;;;;31982:46:0;;;;;;;;;;;31862:174;;:::o;28174:348::-;28267:4;27969:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27969:16:0;28284:73;;;;-1:-1:-1;;;28284:73:0;;25095:2:1;28284:73:0;;;25077:21:1;25134:2;25114:18;;;25107:30;25173:34;25153:18;;;25146:62;-1:-1:-1;;;25224:18:1;;;25217:42;25276:19;;28284:73:0;24893:408:1;28284:73:0;28368:13;28384:23;28399:7;28384:14;:23::i;:::-;28368:39;;28437:5;-1:-1:-1;;;;;28426:16:0;:7;-1:-1:-1;;;;;28426:16:0;;:51;;;;28470:7;-1:-1:-1;;;;;28446:31:0;:20;28458:7;28446:11;:20::i;:::-;-1:-1:-1;;;;;28446:31:0;;28426:51;:87;;;-1:-1:-1;;;;;;25266:25:0;;;25242:4;25266:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28481:32;28418:96;28174:348;-1:-1:-1;;;;28174:348:0:o;31166:578::-;31325:4;-1:-1:-1;;;;;31298:31:0;:23;31313:7;31298:14;:23::i;:::-;-1:-1:-1;;;;;31298:31:0;;31290:85;;;;-1:-1:-1;;;31290:85:0;;28891:2:1;31290:85:0;;;28873:21:1;28930:2;28910:18;;;28903:30;28969:34;28949:18;;;28942:62;-1:-1:-1;;;29020:18:1;;;29013:39;29069:19;;31290:85:0;28689:405:1;31290:85:0;-1:-1:-1;;;;;31394:16:0;;31386:65;;;;-1:-1:-1;;;31386:65:0;;24336:2:1;31386:65:0;;;24318:21:1;24375:2;24355:18;;;24348:30;24414:34;24394:18;;;24387:62;-1:-1:-1;;;24465:18:1;;;24458:34;24509:19;;31386:65:0;24134:400:1;31386:65:0;31568:29;31585:1;31589:7;31568:8;:29::i;:::-;-1:-1:-1;;;;;31610:15:0;;;;;;:9;:15;;;;;:20;;31629:1;;31610:15;:20;;31629:1;;31610:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31641:13:0;;;;;;:9;:13;;;;;:18;;31658:1;;31641:13;:18;;31658:1;;31641:18;:::i;:::-;;;;-1:-1:-1;;31670:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31670:21:0;-1:-1:-1;;;;;31670:21:0;;;;;;;;;31709:27;;31670:16;;31709:27;;;;;;;31166:578;;;:::o;39429:98::-;39487:7;39514:5;39518:1;39514;:5;:::i;52424:141::-;52472:8;:10;;;;;:8;:10;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;52514:8;:6;:8::i;:::-;52502;;;;;;;52493:18;;;;:8;:18;;;;;:29;;-1:-1:-1;;52493:29:0;;;;;;;;;;;;;52548:8;52533:24;;52543:3;;52548:8;52533:9;:24::i;45596:173::-;45671:6;;;-1:-1:-1;;;;;45688:17:0;;;-1:-1:-1;;;;;;45688:17:0;;;;;;;45721:40;;45671:6;;;45688:17;45671:6;;45721:40;;45652:16;;45721:40;45641:128;45596:173;:::o;27252:315::-;27409:28;27419:4;27425:2;27429:7;27409:9;:28::i;:::-;27456:48;27479:4;27485:2;27489:7;27498:5;27456:22;:48::i;:::-;27448:111;;;;-1:-1:-1;;;27448:111:0;;;;;;;:::i;23271:334::-;27945:4;27969:16;;;:7;:16;;;;;;23344:13;;-1:-1:-1;;;;;27969:16:0;23370:76;;;;-1:-1:-1;;;23370:76:0;;29301:2:1;23370:76:0;;;29283:21:1;29340:2;29320:18;;;29313:30;29379:34;29359:18;;;29352:62;-1:-1:-1;;;29430:18:1;;;29423:45;29485:19;;23370:76:0;29099:411:1;23370:76:0;23459:21;23483:10;23930:9;;;;;;;;;-1:-1:-1;23930:9:0;;;23853:94;23483:10;23459:34;;23535:1;23517:7;23511:21;:25;:86;;;;;;;;;;;;;;;;;23563:7;23572:18;:7;:16;:18::i;:::-;23546:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23504:93;23271:334;-1:-1:-1;;;23271:334:0:o;54330:1403::-;54420:13;54451:20;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54451:20:0;54589:25;;;54482:11;54589:25;;;:8;:25;;;;;;;;54504:21;;54655:15;54589:25;54655:10;:15::i;:::-;54651:19;;54852:1;:4;;;54950:1;:5;;;55048:1;:5;;;54742:359;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54707:409;;55299:1;:5;;;55395:1;:5;;;55499:1;:4;;;55588:1;:4;;;55188:451;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55153:501;;55707:7;55716;55690:34;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55676:49;;;;;;54330:1403;;;:::o;51010:428::-;51076:13;51114:1;51109:2;:6;;;51101:21;;;;-1:-1:-1;;;51101:21:0;;26269:2:1;51101:21:0;;;26251::1;26308:1;26288:18;;;26281:29;-1:-1:-1;;;26326:18:1;;;26319:32;26368:18;;51101:21:0;26067:325:1;51101:21:0;51168:12;;;51133:20;51168:12;;;:8;:12;;;;;;51157:24;;51168:12;;51157:10;:24::i;:::-;51133:48;;51192:17;51250:7;:5;:7::i;:::-;51278:4;;51272:11;;:5;:11::i;:::-;51298:19;51304:1;:5;;;51311:1;:5;;;51298;:19::i;:::-;51332;51338:1;:5;;;51345:1;:5;;;51332;:19::i;:::-;51366:15;51372:1;:4;;;51378:2;51366:5;:15::i;:::-;51396:11;51402:1;:4;;;51396:5;:11::i;:::-;51219:189;;;;;;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;51219:189:0;;;;;;;51010:428;-1:-1:-1;;;;;51010:428:0:o;47625:153::-;47755:8;;47666:6;;47734:10;;47746:8;;47666:6;;47755:10;;47764:1;;47755:8;;:10;:::i;:::-;47746:20;;;;;;;;;;;;;;;;-1:-1:-1;47746:20:0;;47717:50;;;;;47746:20;;;;;47717:50;5620:2:1;5616:15;;;;-1:-1:-1;;5612:53:1;5600:66;;5722:3;5700:16;-1:-1:-1;;;;;;5696:43:1;5691:2;5682:12;;5675:65;5765:2;5756:12;;5445:329;47717:50:0;;;;;;;;;;;;;47707:61;;;;;;47699:70;;47685:85;;47625:153;:::o;28864:110::-;28940:26;28950:2;28954:7;28940:26;;;;;;;;;;;;:9;:26::i;32601:799::-;32756:4;-1:-1:-1;;;;;32777:13:0;;9771:20;9819:8;32773:620;;32813:72;;-1:-1:-1;;;32813:72:0;;-1:-1:-1;;;;;32813:36:0;;;;;:72;;17484:10;;32864:4;;32870:7;;32879:5;;32813:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32813:72:0;;;;;;;;-1:-1:-1;;32813:72:0;;;;;;;;;;;;:::i;:::-;;;32809:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33055:13:0;;33051:272;;33098:60;;-1:-1:-1;;;33098:60:0;;;;;;;:::i;33051:272::-;33273:6;33267:13;33258:6;33254:2;33250:15;33243:38;32809:529;-1:-1:-1;;;;;;32936:51:0;-1:-1:-1;;;32936:51:0;;-1:-1:-1;32929:58:0;;32773:620;-1:-1:-1;33377:4:0;32601:799;;;;;;:::o;17929:723::-;17985:13;18206:10;18202:53;;-1:-1:-1;;18233:10:0;;;;;;;;;;;;-1:-1:-1;;;18233:10:0;;;;;17929:723::o;18202:53::-;18280:5;18265:12;18321:78;18328:9;;18321:78;;18354:8;;;;:::i;:::-;;-1:-1:-1;18377:10:0;;-1:-1:-1;18385:2:0;18377:10;;:::i;:::-;;;18321:78;;;18409:19;18441:6;18431:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18431:17:0;;18409:39;;18459:154;18466:10;;18459:154;;18493:11;18503:1;18493:11;;:::i;:::-;;-1:-1:-1;18562:10:0;18570:2;18562:5;:10;:::i;:::-;18549:24;;:2;:24;:::i;:::-;18536:39;;18519:6;18526;18519:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18519:56:0;;;;;;;;-1:-1:-1;18590:11:0;18599:2;18590:11;;:::i;:::-;;;18459:154;;50205:797;50263:18;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50263:18:0;50317:15;50335:5;50347:13;50358:2;50347:8;:13;:::i;:::-;50335:27;;;;;;;;;:::i;:::-;;50317:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50400:16;50419:5;50449:2;50443;50432:8;:13;;;;:::i;:::-;50431:20;;;;:::i;:::-;50419:34;;;;;;;;;:::i;:::-;;50400:53;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50489:16;50508:5;50543:2;50532:7;50521:8;:18;;;;:::i;:::-;50520:25;;;;:::i;:::-;50508:39;;;;;;;;;:::i;:::-;;50489:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50582:16;50601:5;50636:2;50625:7;50614:8;:18;;;;:::i;:::-;50613:25;;;;:::i;:::-;50601:39;;;;;;;;;:::i;:::-;;50582:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50673:16;50692:5;50727:2;50716:7;50705:8;:18;;;;:::i;:::-;50704:25;;;;:::i;:::-;50692:39;;;;;;;;;:::i;:::-;;50673:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50759:15;50777:35;50807:3;50796:8;:14;;;;:::i;:::-;50777:12;:35::i;:::-;50759:53;-1:-1:-1;50848:15:0;50866:5;50901:2;50879:18;50890:7;50879:8;:18;:::i;:::-;50878:25;;;;:::i;:::-;50866:39;;;;;;;;;:::i;:::-;;50848:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50939:36:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;50939:36:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50939:36:0;;;;;50205:797;-1:-1:-1;;50205:797:0:o;47790:116::-;47863:14;;:35;;-1:-1:-1;;;47863:35:0;;47830:13;;-1:-1:-1;;;;;47863:14:0;;:23;;:35;;;;27420:2:1;27402:21;;;27459:1;27439:18;;;27432:29;-1:-1:-1;;;27492:2:1;27477:18;;27470:38;27540:2;27525:18;;27218:331;47863:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47863:35:0;;;;;;;;;;;;:::i;:::-;47856:42;;47790:116;:::o;47912:186::-;47968:13;48079:2;48008:81;;;;;;;;:::i;48104:248::-;48178:13;48293:2;48329;48218:125;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48204:140;;48104:248;;;;:::o;48364:245::-;48438:13;48553:2;48591;48478:122;;;;;;;;;:::i;49227:310::-;49372:14;;49403:26;;49301:13;;-1:-1:-1;;;;;49372:14:0;;:23;;49403:26;;49426:2;;49403:26;;;:::i;:::-;;;;;;;;;;;;;49372:59;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49372:59:0;;;;;;;;;;;;:::i;:::-;49446:14;;49477:29;;-1:-1:-1;;;;;49446:14:0;;;;:23;;49477:29;;49494:2;;49503;;49477:29;;;:::i;:::-;;;;;;;;;;;;;49446:62;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49446:62:0;;;;;;;;;;;;:::i;:::-;49341:186;;;;;;;;;:::i;49545:303::-;49601:13;49778:2;49641:198;;;;;;;;:::i;29201:321::-;29331:18;29337:2;29341:7;29331:5;:18::i;:::-;29382:54;29413:1;29417:2;29421:7;29430:5;29382:22;:54::i;:::-;29360:154;;;;-1:-1:-1;;;29360:154:0;;;;;;;:::i;48621:598::-;48676:13;48711:2;48706;:7;;;48702:50;;;-1:-1:-1;;48729:10:0;;;;;;;;;;;;-1:-1:-1;;;48729:10:0;;;;;48621:598::o;48702:50::-;48771:2;48766;:7;;;48762:52;;;-1:-1:-1;;48789:12:0;;;;;;;;;;;;-1:-1:-1;;;48789:12:0;;;;;48621:598::o;48762:52::-;48833:2;48828;:7;;;48824:54;;;-1:-1:-1;;48851:14:0;;;;;;;;;;;;-1:-1:-1;;;48851:14:0;;;;;48621:598::o;48824:54::-;48897:2;48892;:7;;;48888:50;;;-1:-1:-1;;48915:10:0;;;;;;;;;;;;-1:-1:-1;;;48915:10:0;;;;;48621:598::o;48888:50::-;48957:2;48952;:7;;;48948:52;;;-1:-1:-1;;48975:12:0;;;;;;;;;;;;-1:-1:-1;;;48975:12:0;;;;;48621:598::o;48948:52::-;49019:2;49014;:7;;;49010:54;;;-1:-1:-1;;49037:14:0;;;;;;;;;;;;-1:-1:-1;;;49037:14:0;;;;;48621:598::o;49010:54::-;49083:2;49078;:7;;;49074:50;;;-1:-1:-1;;49101:10:0;;;;;;;;;;;;-1:-1:-1;;;49101:10:0;;;;;48621:598::o;49074:50::-;49143:2;49138;:7;;;49134:52;;;-1:-1:-1;;49161:12:0;;;;;;;;;;;;-1:-1:-1;;;49161:12:0;;;;;48621:598::o;49134:52::-;-1:-1:-1;;49196:14:0;;;;;;;;;;;;-1:-1:-1;;;49196:14:0;;;;;48621:598::o;29858:382::-;-1:-1:-1;;;;;29938:16:0;;29930:61;;;;-1:-1:-1;;;29930:61:0;;27756:2:1;29930:61:0;;;27738:21:1;;;27775:18;;;27768:30;27834:34;27814:18;;;27807:62;27886:18;;29930:61:0;27554:356:1;29930:61:0;27945:4;27969:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27969:16:0;:30;30002:58;;;;-1:-1:-1;;;30002:58:0;;23979:2:1;30002:58:0;;;23961:21:1;24018:2;23998:18;;;23991:30;24057;24037:18;;;24030:58;24105:18;;30002:58:0;23777:352:1;30002:58:0;-1:-1:-1;;;;;30131:13:0;;;;;;:9;:13;;;;;:18;;30148:1;;30131:13;:18;;30148:1;;30131:18;:::i;:::-;;;;-1:-1:-1;;30160:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30160:21:0;-1:-1:-1;;;;;30160:21:0;;;;;;;;30199:33;;30160:16;;;30199:33;;30160:16;;30199:33;29858:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:336:1;78:5;107:52;123:35;151:6;123:35;:::i;:::-;107:52;:::i;:::-;98:61;;182:6;175:5;168:21;222:3;213:6;208:3;204:16;201:25;198:45;;;239:1;236;229:12;198:45;288:6;283:3;276:4;269:5;265:16;252:43;342:1;335:4;326:6;319:5;315:18;311:29;304:40;14:336;;;;;:::o;355:173::-;423:20;;-1:-1:-1;;;;;472:31:1;;462:42;;452:70;;518:1;515;508:12;452:70;355:173;;;:::o;533:186::-;592:6;645:2;633:9;624:7;620:23;616:32;613:52;;;661:1;658;651:12;613:52;684:29;703:9;684:29;:::i;724:260::-;792:6;800;853:2;841:9;832:7;828:23;824:32;821:52;;;869:1;866;859:12;821:52;892:29;911:9;892:29;:::i;:::-;882:39;;940:38;974:2;963:9;959:18;940:38;:::i;:::-;930:48;;724:260;;;;;:::o;989:328::-;1066:6;1074;1082;1135:2;1123:9;1114:7;1110:23;1106:32;1103:52;;;1151:1;1148;1141:12;1103:52;1174:29;1193:9;1174:29;:::i;:::-;1164:39;;1222:38;1256:2;1245:9;1241:18;1222:38;:::i;:::-;1212:48;;1307:2;1296:9;1292:18;1279:32;1269:42;;989:328;;;;;:::o;1322:666::-;1417:6;1425;1433;1441;1494:3;1482:9;1473:7;1469:23;1465:33;1462:53;;;1511:1;1508;1501:12;1462:53;1534:29;1553:9;1534:29;:::i;:::-;1524:39;;1582:38;1616:2;1605:9;1601:18;1582:38;:::i;:::-;1572:48;;1667:2;1656:9;1652:18;1639:32;1629:42;;1722:2;1711:9;1707:18;1694:32;1749:18;1741:6;1738:30;1735:50;;;1781:1;1778;1771:12;1735:50;1804:22;;1857:4;1849:13;;1845:27;-1:-1:-1;1835:55:1;;1886:1;1883;1876:12;1835:55;1909:73;1974:7;1969:2;1956:16;1951:2;1947;1943:11;1909:73;:::i;:::-;1899:83;;;1322:666;;;;;;;:::o;1993:347::-;2058:6;2066;2119:2;2107:9;2098:7;2094:23;2090:32;2087:52;;;2135:1;2132;2125:12;2087:52;2158:29;2177:9;2158:29;:::i;:::-;2148:39;;2237:2;2226:9;2222:18;2209:32;2284:5;2277:13;2270:21;2263:5;2260:32;2250:60;;2306:1;2303;2296:12;2250:60;2329:5;2319:15;;;1993:347;;;;;:::o;2345:254::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:52;;;2490:1;2487;2480:12;2442:52;2513:29;2532:9;2513:29;:::i;:::-;2503:39;2589:2;2574:18;;;;2561:32;;-1:-1:-1;;;2345:254:1:o;2604:245::-;2662:6;2715:2;2703:9;2694:7;2690:23;2686:32;2683:52;;;2731:1;2728;2721:12;2683:52;2770:9;2757:23;2789:30;2813:5;2789:30;:::i;2854:249::-;2923:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:52;;;2992:1;2989;2982:12;2944:52;3024:9;3018:16;3043:30;3067:5;3043:30;:::i;3108:450::-;3177:6;3230:2;3218:9;3209:7;3205:23;3201:32;3198:52;;;3246:1;3243;3236:12;3198:52;3286:9;3273:23;3319:18;3311:6;3308:30;3305:50;;;3351:1;3348;3341:12;3305:50;3374:22;;3427:4;3419:13;;3415:27;-1:-1:-1;3405:55:1;;3456:1;3453;3446:12;3405:55;3479:73;3544:7;3539:2;3526:16;3521:2;3517;3513:11;3479:73;:::i;3563:635::-;3643:6;3696:2;3684:9;3675:7;3671:23;3667:32;3664:52;;;3712:1;3709;3702:12;3664:52;3745:9;3739:16;3778:18;3770:6;3767:30;3764:50;;;3810:1;3807;3800:12;3764:50;3833:22;;3886:4;3878:13;;3874:27;-1:-1:-1;3864:55:1;;3915:1;3912;3905:12;3864:55;3944:2;3938:9;3969:48;3985:31;4013:2;3985:31;:::i;3969:48::-;4040:2;4033:5;4026:17;4080:7;4075:2;4070;4066;4062:11;4058:20;4055:33;4052:53;;;4101:1;4098;4091:12;4052:53;4114:54;4165:2;4160;4153:5;4149:14;4144:2;4140;4136:11;4114:54;:::i;:::-;4187:5;3563:635;-1:-1:-1;;;;;3563:635:1:o;4203:180::-;4262:6;4315:2;4303:9;4294:7;4290:23;4286:32;4283:52;;;4331:1;4328;4321:12;4283:52;-1:-1:-1;4354:23:1;;4203:180;-1:-1:-1;4203:180:1:o;4388:337::-;4454:6;4462;4515:2;4503:9;4494:7;4490:23;4486:32;4483:52;;;4531:1;4528;4521:12;4483:52;4567:9;4554:23;4544:33;;4627:2;4616:9;4612:18;4599:32;4671:4;4664:5;4660:16;4653:5;4650:27;4640:55;;4691:1;4688;4681:12;4730:257;4771:3;4809:5;4803:12;4836:6;4831:3;4824:19;4852:63;4908:6;4901:4;4896:3;4892:14;4885:4;4878:5;4874:16;4852:63;:::i;:::-;4969:2;4948:15;-1:-1:-1;;4944:29:1;4935:39;;;;4976:4;4931:50;;4730:257;-1:-1:-1;;4730:257:1:o;4992:185::-;5034:3;5072:5;5066:12;5087:52;5132:6;5127:3;5120:4;5113:5;5109:16;5087:52;:::i;:::-;5155:16;;;;;4992:185;-1:-1:-1;;4992:185:1:o;5779:276::-;5910:3;5948:6;5942:13;5964:53;6010:6;6005:3;5998:4;5990:6;5986:17;5964:53;:::i;:::-;6033:16;;;;;5779:276;-1:-1:-1;;5779:276:1:o;6060:470::-;6239:3;6277:6;6271:13;6293:53;6339:6;6334:3;6327:4;6319:6;6315:17;6293:53;:::i;:::-;6409:13;;6368:16;;;;6431:57;6409:13;6368:16;6465:4;6453:17;;6431:57;:::i;:::-;6504:20;;6060:470;-1:-1:-1;;;;6060:470:1:o;6535:1257::-;6906:3;6944:6;6938:13;6970:4;6983:51;7027:6;7022:3;7017:2;7009:6;7005:15;6983:51;:::i;:::-;7097:13;;7056:16;;;;7119:55;7097:13;7056:16;7141:15;;;7119:55;:::i;:::-;7241:13;;7196:20;;;7263:55;7241:13;7196:20;7285:15;;;7263:55;:::i;:::-;7385:13;;7340:20;;;7407:55;7385:13;7340:20;7429:15;;;7407:55;:::i;:::-;7529:13;;7484:20;;;7551:55;7529:13;7484:20;7573:15;;;7551:55;:::i;:::-;7673:13;;7628:20;;;7695:55;7673:13;7628:20;7717:15;;;7695:55;:::i;:::-;7766:20;;;;;6535:1257;-1:-1:-1;;;;;;;;;6535:1257:1:o;7797:614::-;8077:3;8115:6;8109:13;8131:53;8177:6;8172:3;8165:4;8157:6;8153:17;8131:53;:::i;:::-;-1:-1:-1;;;8206:16:1;;;8231:18;;;8274:13;;8296:65;8274:13;8348:1;8337:13;;8330:4;8318:17;;8296:65;:::i;:::-;8381:20;8403:1;8377:28;;7797:614;-1:-1:-1;;;;7797:614:1:o;8416:1134::-;8928:66;8923:3;8916:79;9033:46;9029:2;9025:55;9020:2;9015:3;9011:12;9004:77;8898:3;9110:6;9104:13;9126:60;9179:6;9174:2;9169:3;9165:12;9160:2;9152:6;9148:15;9126:60;:::i;:::-;9250:66;9245:2;9205:16;;;9237:11;;;9230:87;9342:13;;9364:61;9342:13;9411:2;9403:11;;9398:2;9386:15;;9364:61;:::i;:::-;-1:-1:-1;;;9485:2:1;9444:17;;;;9477:11;;;9470:47;9541:2;9533:11;;8416:1134;-1:-1:-1;;;;8416:1134:1:o;9555:1627::-;10216:66;10211:3;10204:79;10186:3;10311:30;10306:3;10302:40;10372:2;10367;10362:3;10358:12;10351:24;10404:6;10398:13;10420:60;10473:6;10468:2;10463:3;10459:12;10454:2;10446:6;10442:15;10420:60;:::i;:::-;10508:6;10503:3;10499:16;10489:26;;10544:66;10539:2;10535;10531:11;10524:87;10640:2;10635;10631;10627:11;10620:23;10674:6;10668:13;10652:29;;10690:61;10742:8;10737:2;10733;10729:11;10724:2;10716:6;10712:15;10690:61;:::i;:::-;10778:8;10774:2;10770:17;10760:27;;;10816:66;10811:2;10807;10803:11;10796:87;10922:28;10917:3;10913:38;10907:3;10903:2;10899:12;10892:60;10983:6;10977:13;10999:62;11052:8;11046:3;11042:2;11038:12;11033:2;11025:6;11021:15;10999:62;:::i;:::-;-1:-1:-1;;;11121:3:1;11080:17;;;;11113:12;;;11106:42;11172:3;11164:12;;9555:1627;-1:-1:-1;;;;;9555:1627:1:o;11187:419::-;-1:-1:-1;;;11444:3:1;11437:17;11419:3;11483:6;11477:13;11499:61;11553:6;11549:1;11544:3;11540:11;11533:4;11525:6;11521:17;11499:61;:::i;:::-;11580:16;;;;11598:1;11576:24;;11187:419;-1:-1:-1;;11187:419:1:o;11611:2045::-;11971:66;11966:3;11959:79;11941:3;12057:2;12089:66;12084:2;12079:3;12075:12;12068:88;12186:34;12181:2;12176:3;12172:12;12165:56;12251:34;12246:2;12241:3;12237:12;12230:56;12317:34;12311:3;12306;12302:13;12295:57;12383:66;12377:3;12372;12368:13;12361:89;12481:66;12475:3;12470;12466:13;12459:89;12588:36;12583:3;12579:46;12573:3;12568;12564:13;12557:69;12645:3;12668:1;12701:6;12695:13;12731:3;12753:1;12781:9;12777:2;12773:18;12763:28;;12841:2;12830:9;12826:18;12863;12853:61;;12907:4;12899:6;12895:17;12885:27;;12853:61;12960:2;12952:6;12949:14;12929:18;12926:38;12923:165;;;-1:-1:-1;;;12987:33:1;;13043:4;13040:1;13033:15;13073:4;12994:3;13061:17;12923:165;13104:18;13131:122;;;;13267:1;13262:338;;;;13097:503;;13131:122;-1:-1:-1;;13173:24:1;;13159:12;;;13152:46;13222:16;;;13218:25;;;-1:-1:-1;13131:122:1;;13262:338;32212:1;32205:14;;;32249:4;32236:18;;13357:1;13371:174;13385:6;13382:1;13379:13;13371:174;;;13472:14;;13454:11;;;13450:20;;13443:44;13515:16;;;;13400:10;;13371:174;;;13375:3;;13587:2;13578:6;13573:3;13569:16;13565:25;13558:32;;13097:503;;;;;;13616:34;13646:3;-1:-1:-1;;;5380:27:1;;5432:1;5423:11;;5315:125;13616:34;13609:41;11611:2045;-1:-1:-1;;;;;;11611:2045:1:o;13661:448::-;13923:31;13918:3;13911:44;13893:3;13984:6;13978:13;14000:62;14055:6;14050:2;14045:3;14041:12;14034:4;14026:6;14022:17;14000:62;:::i;:::-;14082:16;;;;14100:2;14078:25;;13661:448;-1:-1:-1;;13661:448:1:o;14114:603::-;14477:31;14472:3;14465:44;14447:3;14538:6;14532:13;14554:62;14609:6;14604:2;14599:3;14595:12;14588:4;14580:6;14576:17;14554:62;:::i;:::-;-1:-1:-1;;;14675:2:1;14635:16;;;;14667:11;;;14660:24;-1:-1:-1;14708:2:1;14700:11;;14114:603;-1:-1:-1;14114:603:1:o;14722:729::-;15085:66;15080:3;15073:79;15191:38;15186:3;15182:48;15177:2;15172:3;15168:12;15161:70;15055:3;15260:6;15254:13;15276:60;15329:6;15324:2;15319:3;15315:12;15310:2;15302:6;15298:15;15276:60;:::i;:::-;-1:-1:-1;;;15395:2:1;15355:16;;;;15387:11;;;15380:38;-1:-1:-1;15442:2:1;15434:11;;14722:729;-1:-1:-1;14722:729:1:o;15456:1678::-;-1:-1:-1;;;16105:55:1;;16183:13;;16087:3;;16205:62;16183:13;16255:2;16246:12;;16239:4;16227:17;;16205:62;:::i;:::-;16331:66;16326:2;16286:16;;;16318:11;;;16311:87;16423:13;;16445:63;16423:13;16494:2;16486:11;;16479:4;16467:17;;16445:63;:::i;:::-;16573:66;16568:2;16527:17;;;;16560:11;;;16553:87;16669:34;16664:2;16656:11;;16649:55;16734:34;16728:3;16720:12;;16713:56;16799:34;16793:3;16785:12;;16778:56;16864:34;16858:3;16850:12;;16843:56;16929:66;16923:3;16915:12;;16908:88;-1:-1:-1;;;17020:3:1;17012:12;;17005:37;17058:70;17088:39;17122:3;17114:12;;17106:6;17088:39;:::i;:::-;-1:-1:-1;;;5380:27:1;;5432:1;5423:11;;5315:125;17139:1958;17949:66;17944:3;17937:79;18055:32;18050:3;18046:42;18041:2;18036:3;18032:12;18025:64;17919:3;18118:6;18112:13;18134:60;18187:6;18182:2;18177:3;18173:12;18168:2;18160:6;18156:15;18134:60;:::i;:::-;18258:66;18253:2;18213:16;;;18245:11;;;18238:87;-1:-1:-1;;;18349:2:1;18341:11;;18334:55;18414:13;;18436:61;18414:13;18483:2;18475:11;;18470:2;18458:15;;18436:61;:::i;:::-;18562:66;18557:2;18516:17;;;;18549:11;;;18542:87;-1:-1:-1;;;18653:3:1;18645:12;;18638:72;18735:13;;18757:62;18735:13;18804:3;18796:12;;18791:2;18779:15;;18757:62;:::i;:::-;18885:66;18879:3;18838:17;;;;18871:12;;;18864:88;-1:-1:-1;;;18976:3:1;18968:12;;18961:44;19021:70;19051:39;19085:3;19077:12;;19069:6;19051:39;:::i;:::-;-1:-1:-1;;;5247:30:1;;5302:1;5293:11;;5182:128;19021:70;19014:77;17139:1958;-1:-1:-1;;;;;;;17139:1958:1:o;19102:1033::-;19465:66;19460:3;19453:79;19562:66;19557:2;19552:3;19548:12;19541:88;19659:66;19654:2;19649:3;19645:12;19638:88;19764:42;19760:2;19756:51;19751:2;19746:3;19742:12;19735:73;19435:3;19837:6;19831:13;19853:61;19907:6;19901:3;19896;19892:13;19887:2;19879:6;19875:15;19853:61;:::i;:::-;19979:66;19973:3;19933:16;;;;19965:12;;;19958:88;-1:-1:-1;;;;20070:3:1;20062:12;;20055:46;20125:3;20117:12;;19102:1033;-1:-1:-1;19102:1033:1:o;20140:1122::-;20652:66;20647:3;20640:79;20757:46;20753:2;20749:55;20744:2;20739:3;20735:12;20728:77;20622:3;20834:6;20828:13;20850:60;20903:6;20898:2;20893:3;20889:12;20884:2;20876:6;20872:15;20850:60;:::i;:::-;20974:66;20969:2;20929:16;;;20961:11;;;20954:87;21066:13;;21088:61;21066:13;21135:2;21127:11;;21122:2;21110:15;;21088:61;:::i;:::-;-1:-1:-1;;;21209:2:1;21168:17;;;;21201:11;;;21194:35;21253:2;21245:11;;20140:1122;-1:-1:-1;;;;20140:1122:1:o;21475:488::-;-1:-1:-1;;;;;21744:15:1;;;21726:34;;21796:15;;21791:2;21776:18;;21769:43;21843:2;21828:18;;21821:34;;;21891:3;21886:2;21871:18;;21864:31;;;21669:4;;21912:45;;21937:19;;21929:6;21912:45;:::i;22160:217::-;22307:2;22296:9;22289:21;22270:4;22327:44;22367:2;22356:9;22352:18;22344:6;22327:44;:::i;22606:340::-;22808:2;22790:21;;;22847:2;22827:18;;;22820:30;-1:-1:-1;;;22881:2:1;22866:18;;22859:46;22937:2;22922:18;;22606:340::o;22951:414::-;23153:2;23135:21;;;23192:2;23172:18;;;23165:30;23231:34;23226:2;23211:18;;23204:62;-1:-1:-1;;;23297:2:1;23282:18;;23275:48;23355:3;23340:19;;22951:414::o;28328:356::-;28530:2;28512:21;;;28549:18;;;28542:30;28608:34;28603:2;28588:18;;28581:62;28675:2;28660:18;;28328:356::o;29917:404::-;30119:2;30101:21;;;30158:2;30138:18;;;30131:30;30197:34;30192:2;30177:18;;30170:62;-1:-1:-1;;;30263:2:1;30248:18;;30241:38;30311:3;30296:19;;29917:404::o;30326:413::-;30528:2;30510:21;;;30567:2;30547:18;;;30540:30;30606:34;30601:2;30586:18;;30579:62;-1:-1:-1;;;30672:2:1;30657:18;;30650:47;30729:3;30714:19;;30326:413::o;31668:275::-;31739:2;31733:9;31804:2;31785:13;;-1:-1:-1;;31781:27:1;31769:40;;31839:18;31824:34;;31860:22;;;31821:62;31818:88;;;31886:18;;:::i;:::-;31922:2;31915:22;31668:275;;-1:-1:-1;31668:275:1:o;31948:186::-;31996:4;32029:18;32021:6;32018:30;32015:56;;;32051:18;;:::i;:::-;-1:-1:-1;32117:2:1;32096:15;-1:-1:-1;;32092:29:1;32123:4;32088:40;;31948:186::o;32265:128::-;32305:3;32336:1;32332:6;32329:1;32326:13;32323:39;;;32342:18;;:::i;:::-;-1:-1:-1;32378:9:1;;32265:128::o;32398:204::-;32436:3;32472:4;32469:1;32465:12;32504:4;32501:1;32497:12;32539:3;32533:4;32529:14;32524:3;32521:23;32518:49;;;32547:18;;:::i;:::-;32583:13;;32398:204;-1:-1:-1;;;32398:204:1:o;32607:120::-;32647:1;32673;32663:35;;32678:18;;:::i;:::-;-1:-1:-1;32712:9:1;;32607:120::o;32732:168::-;32772:7;32838:1;32834;32830:6;32826:14;32823:1;32820:21;32815:1;32808:9;32801:17;32797:45;32794:71;;;32845:18;;:::i;:::-;-1:-1:-1;32885:9:1;;32732:168::o;32905:217::-;32944:4;32973:6;33029:10;;;;32999;;33051:12;;;33048:38;;;33066:18;;:::i;:::-;33103:13;;32905:217;-1:-1:-1;;;32905:217:1:o;33127:125::-;33167:4;33195:1;33192;33189:8;33186:34;;;33200:18;;:::i;:::-;-1:-1:-1;33237:9:1;;33127:125::o;33257:258::-;33329:1;33339:113;33353:6;33350:1;33347:13;33339:113;;;33429:11;;;33423:18;33410:11;;;33403:39;33375:2;33368:10;33339:113;;;33470:6;33467:1;33464:13;33461:48;;;-1:-1:-1;;33505:1:1;33487:16;;33480:27;33257:258::o;33520:380::-;33599:1;33595:12;;;;33642;;;33663:61;;33717:4;33709:6;33705:17;33695:27;;33663:61;33770:2;33762:6;33759:14;33739:18;33736:38;33733:161;;;33816:10;33811:3;33807:20;33804:1;33797:31;33851:4;33848:1;33841:15;33879:4;33876:1;33869:15;33733:161;;33520:380;;;:::o;33905:197::-;33943:3;33971:6;34012:2;34005:5;34001:14;34039:2;34030:7;34027:15;34024:41;;;34045:18;;:::i;:::-;34094:1;34081:15;;33905:197;-1:-1:-1;;;33905:197:1:o;34107:135::-;34146:3;-1:-1:-1;;34167:17:1;;34164:43;;;34187:18;;:::i;:::-;-1:-1:-1;34234:1:1;34223:13;;34107:135::o;34247:179::-;34278:1;34304:6;34337:2;34334:1;34330:10;34359:3;34349:37;;34366:18;;:::i;:::-;34404:10;;34400:20;;;;;34247:179;-1:-1:-1;;34247:179:1:o;34431:112::-;34463:1;34489;34479:35;;34494:18;;:::i;:::-;-1:-1:-1;34528:9:1;;34431:112::o;34548:157::-;34578:1;34612:4;34609:1;34605:12;34636:3;34626:37;;34643:18;;:::i;:::-;34695:3;34688:4;34685:1;34681:12;34677:22;34672:27;;;34548:157;;;;:::o;34710:127::-;34771:10;34766:3;34762:20;34759:1;34752:31;34802:4;34799:1;34792:15;34826:4;34823:1;34816:15;34842:127;34903:10;34898:3;34894:20;34891:1;34884:31;34934:4;34931:1;34924:15;34958:4;34955:1;34948:15;34974:127;35035:10;35030:3;35026:20;35023:1;35016:31;35066:4;35063:1;35056:15;35090:4;35087:1;35080:15;35106:127;35167:10;35162:3;35158:20;35155:1;35148:31;35198:4;35195:1;35188:15;35222:4;35219:1;35212:15;35238:131;-1:-1:-1;;;;;;35312:32:1;;35302:43;;35292:71;;35359:1;35356;35349:12
Swarm Source
ipfs://7315e278253efa1a1a2e6b4a03afcf686fe2b179271ff8e60365bfa33fe4c2ef
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.