Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
185 OG
Holders
87
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 OGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OG_OTTER_ORGANIZATION
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-27 */ /* ░█████╗░ ░██████╗░ ░█████╗░████████╗████████╗███████╗██████╗░ ██╔══██╗ ██╔════╝░ ██╔══██╗╚══██╔══╝╚══██╔══╝██╔════╝██╔══██╗ ██║░░██║ ██║░░██╗░ ██║░░██║░░░██║░░░░░░██║░░░█████╗░░██████╔╝ ██║░░██║ ██║░░╚██╗ ██║░░██║░░░██║░░░░░░██║░░░██╔══╝░░██╔══██╗ ╚█████╔╝ ╚██████╔╝ ╚█████╔╝░░░██║░░░░░░██║░░░███████╗██║░░██║ ░╚════╝░ ░╚═════╝░ ░╚════╝░░░░╚═╝░░░░░░╚═╝░░░╚══════╝╚═╝░░╚═╝ ░█████╗░██████╗░░██████╗░░█████╗░███╗░░██╗██╗███████╗░█████╗░████████╗██╗░█████╗░███╗░░██╗ ██╔══██╗██╔══██╗██╔════╝░██╔══██╗████╗░██║██║╚════██║██╔══██╗╚══██╔══╝██║██╔══██╗████╗░██║ ██║░░██║██████╔╝██║░░██╗░███████║██╔██╗██║██║░░███╔═╝███████║░░░██║░░░██║██║░░██║██╔██╗██║ ██║░░██║██╔══██╗██║░░╚██╗██╔══██║██║╚████║██║██╔══╝░░██╔══██║░░░██║░░░██║██║░░██║██║╚████║ ╚█████╔╝██║░░██║╚██████╔╝██║░░██║██║░╚███║██║███████╗██║░░██║░░░██║░░░██║╚█████╔╝██║░╚███║ ░╚════╝░╚═╝░░╚═╝░╚═════╝░╚═╝░░╚═╝╚═╝░░╚══╝╚═╝╚══════╝╚═╝░░╚═╝░░░╚═╝░░░╚═╝░╚════╝░╚═╝░░╚══╝ */ // Sources flattened with hardhat v2.6.0 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev 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/og_otter_organization.sol pragma solidity ^0.8.0; contract OG_OTTER_ORGANIZATION is ERC721Enumerable, Ownable { uint256 public constant TOTAL_MAX_OTTERS = 10000; uint256 public constant PRESALE_MAX_OTTERS = 1500; uint256 public constant RESERVED_OTTERS = 100; uint256 public publicAmountMinted = 0; uint256 public privateAmountMinted = 0; uint256 public reservedAmountMinted = 0; bool private _paused = false; uint256 private _presalePurchaseLimit = 3; uint256 private _maxPerTx = 10; // 10 Otters max mint uint256 private _price = 70000000000000000; // .07 ETH uint256 private _saleTime = 1635609600; // Saturday, October 30th @ NOON EST, 9AM PST // Presale Time: 1635436800 - Thursday, October 28th @ NOON EST, 9AM PST // Faciliating the needed functionality for the presale mapping(address => bool) addressToPreSaleEntry; mapping(address => uint256) addressToPreSaleOttersMinted; string private _baseTokenURI; constructor(string memory baseURI, address[] memory preSaleWalletAddresses) ERC721("OG Otter Organization", "OG") { setBaseURI(baseURI); for (uint256 i; i < preSaleWalletAddresses.length; i++) { addressToPreSaleEntry[preSaleWalletAddresses[i]] = true; } } modifier preSaleIsOpen() { require(_paused == false, "Presale Paused"); require( block.timestamp >= _saleTime - 172800, "The presale has not yet started." ); require( block.timestamp < _saleTime, "The public sale has already started." ); _; } modifier saleIsOpen() { require(_paused == false, "Sale Paused"); require(block.timestamp >= _saleTime, "Sale is not yet open."); _; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setSaleTime(uint256 _time) public onlyOwner { _saleTime = _time; } function getSaleTime() public view returns (uint256) { return _saleTime; } function setPresaleMaxRate(uint256 _val) public onlyOwner { _presalePurchaseLimit = _val; } function getPresaleMaxRate() public view returns (uint256) { return _presalePurchaseLimit; } function setPrice(uint256 _newWEIPrice) public onlyOwner { _price = _newWEIPrice; } function getPrice() public view returns (uint256) { return _price; } function setPaused(bool _newPauseBoolValue) public onlyOwner { _paused = _newPauseBoolValue; } function getPaused() public view returns (bool) { return _paused; } function addWalletToPreSale(address _address) public onlyOwner { addressToPreSaleEntry[_address] = true; } function addToPresaleList(address[] calldata entries) external onlyOwner { for(uint256 i = 0; i < entries.length; i++) { address entry = entries[i]; require(entry != address(0), "NULL_ADDRESS"); require(!addressToPreSaleEntry[entry], "DUPLICATE_ENTRY"); addressToPreSaleEntry[entry] = true; } } function removeFromPresaleList(address[] calldata entries) external onlyOwner { for(uint256 i = 0; i < entries.length; i++) { address entry = entries[i]; require(entry != address(0), "NULL_ADDRESS"); addressToPreSaleEntry[entry] = false; } } function isWalletInPreSale(address _address) public view returns (bool) { return addressToPreSaleEntry[_address]; } function preSaleOttersMinted(address _address) public view returns (uint256) { return addressToPreSaleOttersMinted[_address]; } function preSaleMint(uint256 _count) external payable preSaleIsOpen { uint256 totalSupply = totalSupply(); require( totalSupply < TOTAL_MAX_OTTERS, "All Otters are already minted." ); require( totalSupply + _count <= TOTAL_MAX_OTTERS, "This amount of Otters will exceed total supply." ); require( privateAmountMinted + _count <= PRESALE_MAX_OTTERS, "This amount of Otters will exceed presale supply." ); require( _count <= _presalePurchaseLimit, "Mint transaction exceeds your available supply." ); require( addressToPreSaleEntry[msg.sender] == true, "This address is not whitelisted for the presale." ); require( addressToPreSaleOttersMinted[msg.sender] + _count <= _presalePurchaseLimit, "Exceeds supply of presale Otters you can mint." ); require(_price * _count <= msg.value, "Transaction value too low."); for (uint256 i; i < _count; i++) { privateAmountMinted++; _safeMint(msg.sender, totalSupply + i); } // Keeps track of how many they've minted addressToPreSaleOttersMinted[msg.sender] += _count; } function mint(uint256 _count) external payable saleIsOpen { uint256 totalSupply = totalSupply(); require( _count <= _maxPerTx, "Woah, You Otter slow down! That's too many Otters to mint!" ); require(totalSupply < TOTAL_MAX_OTTERS, "All Otters are already minted."); require( totalSupply + _count <= TOTAL_MAX_OTTERS, "This amount of Otters will exceed max supply." ); require(_price * _count <= msg.value, "Transaction value too low."); for (uint256 i; i < _count; i++) { publicAmountMinted++; _safeMint(msg.sender, totalSupply + i); } } function reserveOtters(uint256 _count) external onlyOwner { uint256 totalSupply = totalSupply(); require(totalSupply + _count <= TOTAL_MAX_OTTERS, "Beyond total otter limit"); require(reservedAmountMinted + _count <= RESERVED_OTTERS, "Beyond reserved otter limit"); for (uint256 i; i < _count; i++) { _safeMint(msg.sender, totalSupply + i); reservedAmountMinted++; } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { return new uint256[](0); } uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function withdrawAll() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address[]","name":"preSaleWalletAddresses","type":"address[]"}],"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":[],"name":"PRESALE_MAX_OTTERS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_OTTERS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_MAX_OTTERS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addWalletToPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPresaleMaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWalletInPreSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"preSaleOttersMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserveOtters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newPauseBoolValue","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_val","type":"uint256"}],"name":"setPresaleMaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWEIPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526000600b556000600c556000600d556000600e60006101000a81548160ff0219169083151502179055506003600f55600a60105566f8b0a10e47000060115563617d6c006012553480156200005857600080fd5b50604051620060ef380380620060ef83398181016040528101906200007e919062000586565b6040518060400160405280601581526020017f4f47204f74746572204f7267616e697a6174696f6e00000000000000000000008152506040518060400160405280600281526020017f4f4700000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200010292919062000393565b5080600190805190602001906200011b92919062000393565b5050506200013e62000132620001f060201b60201c565b620001f860201b60201c565b6200014f82620002be60201b60201c565b60005b8151811015620001e7576001601360008484815181106200017857620001776200087f565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080620001de90620007d3565b91505062000152565b5050506200094a565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ce620001f060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002f46200036960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200034d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003449062000632565b60405180910390fd5b80601590805190602001906200036592919062000393565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003a19062000767565b90600052602060002090601f016020900481019282620003c5576000855562000411565b82601f10620003e057805160ff191683800117855562000411565b8280016001018555821562000411579182015b8281111562000410578251825591602001919060010190620003f3565b5b50905062000420919062000424565b5090565b5b808211156200043f57600081600090555060010162000425565b5090565b60006200045a62000454846200067d565b62000654565b9050808382526020820190508285602086028201111562000480576200047f620008e2565b5b60005b85811015620004b4578162000499888262000509565b84526020840193506020830192505060018101905062000483565b5050509392505050565b6000620004d5620004cf84620006ac565b62000654565b905082815260208101848484011115620004f457620004f3620008e7565b5b6200050184828562000731565b509392505050565b6000815190506200051a8162000930565b92915050565b600082601f830112620005385762000537620008dd565b5b81516200054a84826020860162000443565b91505092915050565b600082601f8301126200056b576200056a620008dd565b5b81516200057d848260208601620004be565b91505092915050565b60008060408385031215620005a0576200059f620008f1565b5b600083015167ffffffffffffffff811115620005c157620005c0620008ec565b5b620005cf8582860162000553565b925050602083015167ffffffffffffffff811115620005f357620005f2620008ec565b5b620006018582860162000520565b9150509250929050565b60006200061a602083620006e2565b9150620006278262000907565b602082019050919050565b600060208201905081810360008301526200064d816200060b565b9050919050565b60006200066062000673565b90506200066e82826200079d565b919050565b6000604051905090565b600067ffffffffffffffff8211156200069b576200069a620008ae565b5b602082029050602081019050919050565b600067ffffffffffffffff821115620006ca57620006c9620008ae565b5b620006d582620008f6565b9050602081019050919050565b600082825260208201905092915050565b6000620007008262000707565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200075157808201518184015260208101905062000734565b8381111562000761576000848401525b50505050565b600060028204905060018216806200078057607f821691505b6020821081141562000797576200079662000850565b5b50919050565b620007a882620008f6565b810181811067ffffffffffffffff82111715620007ca57620007c9620008ae565b5b80604052505050565b6000620007e08262000727565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000816576200081562000821565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200093b81620006f3565b81146200094757600080fd5b50565b615795806200095a6000396000f3fe6080604052600436106102675760003560e01c806370a0823111610144578063a0712d68116100b6578063c87b56dd1161007a578063c87b56dd146108ef578063cba8cc151461092c578063cbf21fe414610957578063e1d2b81e14610982578063e985e9c5146109bf578063f2fde38b146109fc57610267565b8063a0712d681461081b578063a22cb46514610837578063ae8e5ec914610860578063b179e0601461089d578063b88d4fde146108c657610267565b8063853828b611610108578063853828b61461073c5780638da5cb5b1461074657806391b7f5ed14610771578063940f1ada1461079a57806395d89b41146107c557806398d5fdca146107f057610267565b806370a0823114610678578063715018a6146106b55780637204a3c9146106cc5780637835c635146106f55780637d3db00c1461071157610267565b80633087bd37116101dd5780634f6ccce7116101a15780634f6ccce71461055457806355f804b314610591578063585150ec146105ba57806359a12ad5146105e55780636352211e146106105780636805b84b1461064d57610267565b80633087bd371461046f5780633bd2b67d1461049a57806342842e0e146104c3578063438b6300146104ec5780634889555f1461052957610267565b806318160ddd1161022f57806318160ddd146103635780632226f9271461038e578063233f5066146103b757806323b872dd146103e05780632a908f36146104095780632f745c591461043257610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b31461031157806316c38b3c1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613c71565b610a25565b6040516102a0919061442f565b60405180910390f35b3480156102b557600080fd5b506102be610a9f565b6040516102cb919061444a565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613d14565b610b31565b60405161030891906143a6565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613bb7565b610bb6565b005b34801561034657600080fd5b50610361600480360381019061035c9190613c44565b610cce565b005b34801561036f57600080fd5b50610378610d67565b60405161038591906148ec565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613d14565b610d74565b005b3480156103c357600080fd5b506103de60048036038101906103d99190613a34565b610dfa565b005b3480156103ec57600080fd5b5061040760048036038101906104029190613aa1565b610ed1565b005b34801561041557600080fd5b50610430600480360381019061042b9190613d14565b610f31565b005b34801561043e57600080fd5b5061045960048036038101906104549190613bb7565b6110aa565b60405161046691906148ec565b60405180910390f35b34801561047b57600080fd5b5061048461114f565b60405161049191906148ec565b60405180910390f35b3480156104a657600080fd5b506104c160048036038101906104bc9190613d14565b611159565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190613aa1565b6111df565b005b3480156104f857600080fd5b50610513600480360381019061050e9190613a34565b6111ff565b604051610520919061440d565b60405180910390f35b34801561053557600080fd5b5061053e611309565b60405161054b91906148ec565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190613d14565b61130e565b60405161058891906148ec565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190613ccb565b61137f565b005b3480156105c657600080fd5b506105cf611415565b6040516105dc91906148ec565b60405180910390f35b3480156105f157600080fd5b506105fa61141b565b60405161060791906148ec565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190613d14565b611421565b60405161064491906143a6565b60405180910390f35b34801561065957600080fd5b506106626114d3565b60405161066f919061442f565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a9190613a34565b6114ea565b6040516106ac91906148ec565b60405180910390f35b3480156106c157600080fd5b506106ca6115a2565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190613bf7565b61162a565b005b61070f600480360381019061070a9190613d14565b61184e565b005b34801561071d57600080fd5b50610726611c8a565b60405161073391906148ec565b60405180910390f35b610744611c90565b005b34801561075257600080fd5b5061075b611d4c565b60405161076891906143a6565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190613d14565b611d76565b005b3480156107a657600080fd5b506107af611dfc565b6040516107bc91906148ec565b60405180910390f35b3480156107d157600080fd5b506107da611e02565b6040516107e7919061444a565b60405180910390f35b3480156107fc57600080fd5b50610805611e94565b60405161081291906148ec565b60405180910390f35b61083560048036038101906108309190613d14565b611e9e565b005b34801561084357600080fd5b5061085e60048036038101906108599190613b77565b6120be565b005b34801561086c57600080fd5b5061088760048036038101906108829190613a34565b61223f565b604051610894919061442f565b60405180910390f35b3480156108a957600080fd5b506108c460048036038101906108bf9190613bf7565b612295565b005b3480156108d257600080fd5b506108ed60048036038101906108e89190613af4565b61242c565b005b3480156108fb57600080fd5b5061091660048036038101906109119190613d14565b61248e565b604051610923919061444a565b60405180910390f35b34801561093857600080fd5b50610941612535565b60405161094e91906148ec565b60405180910390f35b34801561096357600080fd5b5061096c61253b565b60405161097991906148ec565b60405180910390f35b34801561098e57600080fd5b506109a960048036038101906109a49190613a34565b612545565b6040516109b691906148ec565b60405180910390f35b3480156109cb57600080fd5b506109e660048036038101906109e19190613a61565b61258e565b6040516109f3919061442f565b60405180910390f35b348015610a0857600080fd5b50610a236004803603810190610a1e9190613a34565b612622565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a985750610a978261271a565b5b9050919050565b606060008054610aae90614bd5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ada90614bd5565b8015610b275780601f10610afc57610100808354040283529160200191610b27565b820191906000526020600020905b815481529060010190602001808311610b0a57829003601f168201915b5050505050905090565b6000610b3c826127fc565b610b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b729061472c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc182611421565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c29906147cc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c51612868565b73ffffffffffffffffffffffffffffffffffffffff161480610c805750610c7f81610c7a612868565b61258e565b5b610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb69061466c565b60405180910390fd5b610cc98383612870565b505050565b610cd6612868565b73ffffffffffffffffffffffffffffffffffffffff16610cf4611d4c565b73ffffffffffffffffffffffffffffffffffffffff1614610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d419061476c565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000600880549050905090565b610d7c612868565b73ffffffffffffffffffffffffffffffffffffffff16610d9a611d4c565b73ffffffffffffffffffffffffffffffffffffffff1614610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de79061476c565b60405180910390fd5b80600f8190555050565b610e02612868565b73ffffffffffffffffffffffffffffffffffffffff16610e20611d4c565b73ffffffffffffffffffffffffffffffffffffffff1614610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d9061476c565b60405180910390fd5b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610ee2610edc612868565b82612929565b610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f189061480c565b60405180910390fd5b610f2c838383612a07565b505050565b610f39612868565b73ffffffffffffffffffffffffffffffffffffffff16610f57611d4c565b73ffffffffffffffffffffffffffffffffffffffff1614610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa49061476c565b60405180910390fd5b6000610fb7610d67565b90506127108282610fc89190614a0a565b1115611009576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110009061484c565b60405180910390fd5b606482600d546110199190614a0a565b111561105a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110519061468c565b60405180910390fd5b60005b828110156110a55761107a3382846110759190614a0a565b612c63565b600d600081548092919061108d90614c38565b9190505550808061109d90614c38565b91505061105d565b505050565b60006110b5836114ea565b82106110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed906144cc565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000600f54905090565b611161612868565b73ffffffffffffffffffffffffffffffffffffffff1661117f611d4c565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc9061476c565b60405180910390fd5b8060128190555050565b6111fa8383836040518060200160405280600081525061242c565b505050565b6060600061120c836114ea565b9050600081141561126957600067ffffffffffffffff81111561123257611231614d9d565b5b6040519080825280602002602001820160405280156112605781602001602082028036833780820191505090505b50915050611304565b60008167ffffffffffffffff81111561128557611284614d9d565b5b6040519080825280602002602001820160405280156112b35781602001602082028036833780820191505090505b50905060005b828110156112fd576112cb85826110aa565b8282815181106112de576112dd614d6e565b5b60200260200101818152505080806112f590614c38565b9150506112b9565b5080925050505b919050565b606481565b6000611318610d67565b8210611359576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113509061482c565b60405180910390fd5b6008828154811061136d5761136c614d6e565b5b90600052602060002001549050919050565b611387612868565b73ffffffffffffffffffffffffffffffffffffffff166113a5611d4c565b73ffffffffffffffffffffffffffffffffffffffff16146113fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f29061476c565b60405180910390fd5b80601590805190602001906114119291906137f2565b5050565b61271081565b600c5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c1906146cc565b60405180910390fd5b80915050919050565b6000600e60009054906101000a900460ff16905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561155b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611552906146ac565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115aa612868565b73ffffffffffffffffffffffffffffffffffffffff166115c8611d4c565b73ffffffffffffffffffffffffffffffffffffffff161461161e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116159061476c565b60405180910390fd5b6116286000612c81565b565b611632612868565b73ffffffffffffffffffffffffffffffffffffffff16611650611d4c565b73ffffffffffffffffffffffffffffffffffffffff16146116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d9061476c565b60405180910390fd5b60005b828290508110156118495760008383838181106116c9576116c8614d6e565b5b90506020020160208101906116de9190613a34565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611750576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117479061446c565b60405180910390fd5b601360008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d49061460c565b60405180910390fd5b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050808061184190614c38565b9150506116a9565b505050565b60001515600e60009054906101000a900460ff161515146118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b9061458c565b60405180910390fd5b6202a3006012546118b59190614aeb565b4210156118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee9061448c565b60405180910390fd5b601254421061193b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611932906147ec565b60405180910390fd5b6000611945610d67565b9050612710811061198b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119829061464c565b60405180910390fd5b612710828261199a9190614a0a565b11156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d29061486c565b60405180910390fd5b6105dc82600c546119ec9190614a0a565b1115611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a24906148cc565b60405180910390fd5b600f54821115611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a699061488c565b60405180910390fd5b60011515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afc9061474c565b60405180910390fd5b600f5482601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b539190614a0a565b1115611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b9061450c565b60405180910390fd5b3482601154611ba39190614a91565b1115611be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdb906144ac565b60405180910390fd5b60005b82811015611c2f57600c6000815480929190611c0290614c38565b9190505550611c1c338284611c179190614a0a565b612c63565b8080611c2790614c38565b915050611be7565b5081601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c7f9190614a0a565b925050819055505050565b6105dc81565b611c98612868565b73ffffffffffffffffffffffffffffffffffffffff16611cb6611d4c565b73ffffffffffffffffffffffffffffffffffffffff1614611d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d039061476c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611d4a57600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d7e612868565b73ffffffffffffffffffffffffffffffffffffffff16611d9c611d4c565b73ffffffffffffffffffffffffffffffffffffffff1614611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de99061476c565b60405180910390fd5b8060118190555050565b600b5481565b606060018054611e1190614bd5565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3d90614bd5565b8015611e8a5780601f10611e5f57610100808354040283529160200191611e8a565b820191906000526020600020905b815481529060010190602001808311611e6d57829003601f168201915b5050505050905090565b6000601154905090565b60001515600e60009054906101000a900460ff16151514611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb9061470c565b60405180910390fd5b601254421015611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f30906148ac565b60405180910390fd5b6000611f43610d67565b9050601054821115611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f819061452c565b60405180910390fd5b6127108110611fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc59061464c565b60405180910390fd5b6127108282611fdd9190614a0a565b111561201e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120159061462c565b60405180910390fd5b348260115461202d9190614a91565b111561206e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612065906144ac565b60405180910390fd5b60005b828110156120b957600b600081548092919061208c90614c38565b91905055506120a63382846120a19190614a0a565b612c63565b80806120b190614c38565b915050612071565b505050565b6120c6612868565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212b906145cc565b60405180910390fd5b8060056000612141612868565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121ee612868565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612233919061442f565b60405180910390a35050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61229d612868565b73ffffffffffffffffffffffffffffffffffffffff166122bb611d4c565b73ffffffffffffffffffffffffffffffffffffffff1614612311576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123089061476c565b60405180910390fd5b60005b8282905081101561242757600083838381811061233457612333614d6e565b5b90506020020160208101906123499190613a34565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b29061446c565b60405180910390fd5b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050808061241f90614c38565b915050612314565b505050565b61243d612437612868565b83612929565b61247c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124739061480c565b60405180910390fd5b61248884848484612d47565b50505050565b6060612499826127fc565b6124d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cf906147ac565b60405180910390fd5b60006124e2612da3565b90506000815111612502576040518060200160405280600081525061252d565b8061250c84612e35565b60405160200161251d929190614382565b6040516020818303038152906040525b915050919050565b600d5481565b6000601254905090565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61262a612868565b73ffffffffffffffffffffffffffffffffffffffff16612648611d4c565b73ffffffffffffffffffffffffffffffffffffffff161461269e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126959061476c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561270e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127059061454c565b60405180910390fd5b61271781612c81565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127e557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127f557506127f482612f96565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128e383611421565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612934826127fc565b612973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296a906145ec565b60405180910390fd5b600061297e83611421565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129ed57508373ffffffffffffffffffffffffffffffffffffffff166129d584610b31565b73ffffffffffffffffffffffffffffffffffffffff16145b806129fe57506129fd818561258e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a2782611421565b73ffffffffffffffffffffffffffffffffffffffff1614612a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a749061478c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae4906145ac565b60405180910390fd5b612af8838383613000565b612b03600082612870565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b539190614aeb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612baa9190614a0a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612c7d828260405180602001604052806000815250613114565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d52848484612a07565b612d5e8484848461316f565b612d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d94906144ec565b60405180910390fd5b50505050565b606060158054612db290614bd5565b80601f0160208091040260200160405190810160405280929190818152602001828054612dde90614bd5565b8015612e2b5780601f10612e0057610100808354040283529160200191612e2b565b820191906000526020600020905b815481529060010190602001808311612e0e57829003601f168201915b5050505050905090565b60606000821415612e7d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f91565b600082905060005b60008214612eaf578080612e9890614c38565b915050600a82612ea89190614a60565b9150612e85565b60008167ffffffffffffffff811115612ecb57612eca614d9d565b5b6040519080825280601f01601f191660200182016040528015612efd5781602001600182028036833780820191505090505b5090505b60008514612f8a57600182612f169190614aeb565b9150600a85612f259190614c81565b6030612f319190614a0a565b60f81b818381518110612f4757612f46614d6e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f839190614a60565b9450612f01565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61300b838383613306565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561304e576130498161330b565b61308d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461308c5761308b8382613354565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130d0576130cb816134c1565b61310f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461310e5761310d8282613592565b5b5b505050565b61311e8383613611565b61312b600084848461316f565b61316a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613161906144ec565b60405180910390fd5b505050565b60006131908473ffffffffffffffffffffffffffffffffffffffff166137df565b156132f9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131b9612868565b8786866040518563ffffffff1660e01b81526004016131db94939291906143c1565b602060405180830381600087803b1580156131f557600080fd5b505af192505050801561322657506040513d601f19601f820116820180604052508101906132239190613c9e565b60015b6132a9573d8060008114613256576040519150601f19603f3d011682016040523d82523d6000602084013e61325b565b606091505b506000815114156132a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613298906144ec565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132fe565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613361846114ea565b61336b9190614aeb565b9050600060076000848152602001908152602001600020549050818114613450576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134d59190614aeb565b905060006009600084815260200190815260200160002054905060006008838154811061350557613504614d6e565b5b90600052602060002001549050806008838154811061352757613526614d6e565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061357657613575614d3f565b5b6001900381819060005260206000200160009055905550505050565b600061359d836114ea565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613681576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613678906146ec565b60405180910390fd5b61368a816127fc565b156136ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136c19061456c565b60405180910390fd5b6136d660008383613000565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137269190614a0a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546137fe90614bd5565b90600052602060002090601f0160209004810192826138205760008555613867565b82601f1061383957805160ff1916838001178555613867565b82800160010185558215613867579182015b8281111561386657825182559160200191906001019061384b565b5b5090506138749190613878565b5090565b5b80821115613891576000816000905550600101613879565b5090565b60006138a86138a38461492c565b614907565b9050828152602081018484840111156138c4576138c3614ddb565b5b6138cf848285614b93565b509392505050565b60006138ea6138e58461495d565b614907565b90508281526020810184848401111561390657613905614ddb565b5b613911848285614b93565b509392505050565b60008135905061392881615703565b92915050565b60008083601f84011261394457613943614dd1565b5b8235905067ffffffffffffffff81111561396157613960614dcc565b5b60208301915083602082028301111561397d5761397c614dd6565b5b9250929050565b6000813590506139938161571a565b92915050565b6000813590506139a881615731565b92915050565b6000815190506139bd81615731565b92915050565b600082601f8301126139d8576139d7614dd1565b5b81356139e8848260208601613895565b91505092915050565b600082601f830112613a0657613a05614dd1565b5b8135613a168482602086016138d7565b91505092915050565b600081359050613a2e81615748565b92915050565b600060208284031215613a4a57613a49614de5565b5b6000613a5884828501613919565b91505092915050565b60008060408385031215613a7857613a77614de5565b5b6000613a8685828601613919565b9250506020613a9785828601613919565b9150509250929050565b600080600060608486031215613aba57613ab9614de5565b5b6000613ac886828701613919565b9350506020613ad986828701613919565b9250506040613aea86828701613a1f565b9150509250925092565b60008060008060808587031215613b0e57613b0d614de5565b5b6000613b1c87828801613919565b9450506020613b2d87828801613919565b9350506040613b3e87828801613a1f565b925050606085013567ffffffffffffffff811115613b5f57613b5e614de0565b5b613b6b878288016139c3565b91505092959194509250565b60008060408385031215613b8e57613b8d614de5565b5b6000613b9c85828601613919565b9250506020613bad85828601613984565b9150509250929050565b60008060408385031215613bce57613bcd614de5565b5b6000613bdc85828601613919565b9250506020613bed85828601613a1f565b9150509250929050565b60008060208385031215613c0e57613c0d614de5565b5b600083013567ffffffffffffffff811115613c2c57613c2b614de0565b5b613c388582860161392e565b92509250509250929050565b600060208284031215613c5a57613c59614de5565b5b6000613c6884828501613984565b91505092915050565b600060208284031215613c8757613c86614de5565b5b6000613c9584828501613999565b91505092915050565b600060208284031215613cb457613cb3614de5565b5b6000613cc2848285016139ae565b91505092915050565b600060208284031215613ce157613ce0614de5565b5b600082013567ffffffffffffffff811115613cff57613cfe614de0565b5b613d0b848285016139f1565b91505092915050565b600060208284031215613d2a57613d29614de5565b5b6000613d3884828501613a1f565b91505092915050565b6000613d4d8383614364565b60208301905092915050565b613d6281614b1f565b82525050565b6000613d738261499e565b613d7d81856149cc565b9350613d888361498e565b8060005b83811015613db9578151613da08882613d41565b9750613dab836149bf565b925050600181019050613d8c565b5085935050505092915050565b613dcf81614b31565b82525050565b6000613de0826149a9565b613dea81856149dd565b9350613dfa818560208601614ba2565b613e0381614dea565b840191505092915050565b6000613e19826149b4565b613e2381856149ee565b9350613e33818560208601614ba2565b613e3c81614dea565b840191505092915050565b6000613e52826149b4565b613e5c81856149ff565b9350613e6c818560208601614ba2565b80840191505092915050565b6000613e85600c836149ee565b9150613e9082614dfb565b602082019050919050565b6000613ea86020836149ee565b9150613eb382614e24565b602082019050919050565b6000613ecb601a836149ee565b9150613ed682614e4d565b602082019050919050565b6000613eee602b836149ee565b9150613ef982614e76565b604082019050919050565b6000613f116032836149ee565b9150613f1c82614ec5565b604082019050919050565b6000613f34602e836149ee565b9150613f3f82614f14565b604082019050919050565b6000613f57603a836149ee565b9150613f6282614f63565b604082019050919050565b6000613f7a6026836149ee565b9150613f8582614fb2565b604082019050919050565b6000613f9d601c836149ee565b9150613fa882615001565b602082019050919050565b6000613fc0600e836149ee565b9150613fcb8261502a565b602082019050919050565b6000613fe36024836149ee565b9150613fee82615053565b604082019050919050565b60006140066019836149ee565b9150614011826150a2565b602082019050919050565b6000614029602c836149ee565b9150614034826150cb565b604082019050919050565b600061404c600f836149ee565b91506140578261511a565b602082019050919050565b600061406f602d836149ee565b915061407a82615143565b604082019050919050565b6000614092601e836149ee565b915061409d82615192565b602082019050919050565b60006140b56038836149ee565b91506140c0826151bb565b604082019050919050565b60006140d8601b836149ee565b91506140e38261520a565b602082019050919050565b60006140fb602a836149ee565b915061410682615233565b604082019050919050565b600061411e6029836149ee565b915061412982615282565b604082019050919050565b60006141416020836149ee565b915061414c826152d1565b602082019050919050565b6000614164600b836149ee565b915061416f826152fa565b602082019050919050565b6000614187602c836149ee565b915061419282615323565b604082019050919050565b60006141aa6030836149ee565b91506141b582615372565b604082019050919050565b60006141cd6020836149ee565b91506141d8826153c1565b602082019050919050565b60006141f06029836149ee565b91506141fb826153ea565b604082019050919050565b6000614213602f836149ee565b915061421e82615439565b604082019050919050565b60006142366021836149ee565b915061424182615488565b604082019050919050565b60006142596024836149ee565b9150614264826154d7565b604082019050919050565b600061427c6031836149ee565b915061428782615526565b604082019050919050565b600061429f602c836149ee565b91506142aa82615575565b604082019050919050565b60006142c26018836149ee565b91506142cd826155c4565b602082019050919050565b60006142e5602f836149ee565b91506142f0826155ed565b604082019050919050565b6000614308602f836149ee565b91506143138261563c565b604082019050919050565b600061432b6015836149ee565b91506143368261568b565b602082019050919050565b600061434e6031836149ee565b9150614359826156b4565b604082019050919050565b61436d81614b89565b82525050565b61437c81614b89565b82525050565b600061438e8285613e47565b915061439a8284613e47565b91508190509392505050565b60006020820190506143bb6000830184613d59565b92915050565b60006080820190506143d66000830187613d59565b6143e36020830186613d59565b6143f06040830185614373565b81810360608301526144028184613dd5565b905095945050505050565b600060208201905081810360008301526144278184613d68565b905092915050565b60006020820190506144446000830184613dc6565b92915050565b600060208201905081810360008301526144648184613e0e565b905092915050565b6000602082019050818103600083015261448581613e78565b9050919050565b600060208201905081810360008301526144a581613e9b565b9050919050565b600060208201905081810360008301526144c581613ebe565b9050919050565b600060208201905081810360008301526144e581613ee1565b9050919050565b6000602082019050818103600083015261450581613f04565b9050919050565b6000602082019050818103600083015261452581613f27565b9050919050565b6000602082019050818103600083015261454581613f4a565b9050919050565b6000602082019050818103600083015261456581613f6d565b9050919050565b6000602082019050818103600083015261458581613f90565b9050919050565b600060208201905081810360008301526145a581613fb3565b9050919050565b600060208201905081810360008301526145c581613fd6565b9050919050565b600060208201905081810360008301526145e581613ff9565b9050919050565b600060208201905081810360008301526146058161401c565b9050919050565b600060208201905081810360008301526146258161403f565b9050919050565b6000602082019050818103600083015261464581614062565b9050919050565b6000602082019050818103600083015261466581614085565b9050919050565b60006020820190508181036000830152614685816140a8565b9050919050565b600060208201905081810360008301526146a5816140cb565b9050919050565b600060208201905081810360008301526146c5816140ee565b9050919050565b600060208201905081810360008301526146e581614111565b9050919050565b6000602082019050818103600083015261470581614134565b9050919050565b6000602082019050818103600083015261472581614157565b9050919050565b600060208201905081810360008301526147458161417a565b9050919050565b600060208201905081810360008301526147658161419d565b9050919050565b60006020820190508181036000830152614785816141c0565b9050919050565b600060208201905081810360008301526147a5816141e3565b9050919050565b600060208201905081810360008301526147c581614206565b9050919050565b600060208201905081810360008301526147e581614229565b9050919050565b600060208201905081810360008301526148058161424c565b9050919050565b600060208201905081810360008301526148258161426f565b9050919050565b6000602082019050818103600083015261484581614292565b9050919050565b60006020820190508181036000830152614865816142b5565b9050919050565b60006020820190508181036000830152614885816142d8565b9050919050565b600060208201905081810360008301526148a5816142fb565b9050919050565b600060208201905081810360008301526148c58161431e565b9050919050565b600060208201905081810360008301526148e581614341565b9050919050565b60006020820190506149016000830184614373565b92915050565b6000614911614922565b905061491d8282614c07565b919050565b6000604051905090565b600067ffffffffffffffff82111561494757614946614d9d565b5b61495082614dea565b9050602081019050919050565b600067ffffffffffffffff82111561497857614977614d9d565b5b61498182614dea565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a1582614b89565b9150614a2083614b89565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a5557614a54614cb2565b5b828201905092915050565b6000614a6b82614b89565b9150614a7683614b89565b925082614a8657614a85614ce1565b5b828204905092915050565b6000614a9c82614b89565b9150614aa783614b89565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ae057614adf614cb2565b5b828202905092915050565b6000614af682614b89565b9150614b0183614b89565b925082821015614b1457614b13614cb2565b5b828203905092915050565b6000614b2a82614b69565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614bc0578082015181840152602081019050614ba5565b83811115614bcf576000848401525b50505050565b60006002820490506001821680614bed57607f821691505b60208210811415614c0157614c00614d10565b5b50919050565b614c1082614dea565b810181811067ffffffffffffffff82111715614c2f57614c2e614d9d565b5b80604052505050565b6000614c4382614b89565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c7657614c75614cb2565b5b600182019050919050565b6000614c8c82614b89565b9150614c9783614b89565b925082614ca757614ca6614ce1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e554c4c5f414444524553530000000000000000000000000000000000000000600082015250565b7f5468652070726573616c6520686173206e6f742079657420737461727465642e600082015250565b7f5472616e73616374696f6e2076616c756520746f6f206c6f772e000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4578636565647320737570706c79206f662070726573616c65204f747465727360008201527f20796f752063616e206d696e742e000000000000000000000000000000000000602082015250565b7f576f61682c20596f75204f7474657220736c6f7720646f776e2120546861742760008201527f7320746f6f206d616e79204f747465727320746f206d696e7421000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f50726573616c6520506175736564000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4455504c49434154455f454e5452590000000000000000000000000000000000600082015250565b7f5468697320616d6f756e74206f66204f74746572732077696c6c20657863656560008201527f64206d617820737570706c792e00000000000000000000000000000000000000602082015250565b7f416c6c204f74746572732061726520616c7265616479206d696e7465642e0000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4265796f6e64207265736572766564206f74746572206c696d69740000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53616c6520506175736564000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f546869732061646472657373206973206e6f742077686974656c69737465642060008201527f666f72207468652070726573616c652e00000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546865207075626c69632073616c652068617320616c7265616479207374617260008201527f7465642e00000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4265796f6e6420746f74616c206f74746572206c696d69740000000000000000600082015250565b7f5468697320616d6f756e74206f66204f74746572732077696c6c20657863656560008201527f6420746f74616c20737570706c792e0000000000000000000000000000000000602082015250565b7f4d696e74207472616e73616374696f6e206578636565647320796f757220617660008201527f61696c61626c6520737570706c792e0000000000000000000000000000000000602082015250565b7f53616c65206973206e6f7420796574206f70656e2e0000000000000000000000600082015250565b7f5468697320616d6f756e74206f66204f74746572732077696c6c20657863656560008201527f642070726573616c6520737570706c792e000000000000000000000000000000602082015250565b61570c81614b1f565b811461571757600080fd5b50565b61572381614b31565b811461572e57600080fd5b50565b61573a81614b3d565b811461574557600080fd5b50565b61575181614b89565b811461575c57600080fd5b5056fea26469706673582212202d0149f007d979ccc07315aca5606dff5e07790462aa7710006fd1b54fbef32964736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000227270000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102675760003560e01c806370a0823111610144578063a0712d68116100b6578063c87b56dd1161007a578063c87b56dd146108ef578063cba8cc151461092c578063cbf21fe414610957578063e1d2b81e14610982578063e985e9c5146109bf578063f2fde38b146109fc57610267565b8063a0712d681461081b578063a22cb46514610837578063ae8e5ec914610860578063b179e0601461089d578063b88d4fde146108c657610267565b8063853828b611610108578063853828b61461073c5780638da5cb5b1461074657806391b7f5ed14610771578063940f1ada1461079a57806395d89b41146107c557806398d5fdca146107f057610267565b806370a0823114610678578063715018a6146106b55780637204a3c9146106cc5780637835c635146106f55780637d3db00c1461071157610267565b80633087bd37116101dd5780634f6ccce7116101a15780634f6ccce71461055457806355f804b314610591578063585150ec146105ba57806359a12ad5146105e55780636352211e146106105780636805b84b1461064d57610267565b80633087bd371461046f5780633bd2b67d1461049a57806342842e0e146104c3578063438b6300146104ec5780634889555f1461052957610267565b806318160ddd1161022f57806318160ddd146103635780632226f9271461038e578063233f5066146103b757806323b872dd146103e05780632a908f36146104095780632f745c591461043257610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b31461031157806316c38b3c1461033a575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e9190613c71565b610a25565b6040516102a0919061442f565b60405180910390f35b3480156102b557600080fd5b506102be610a9f565b6040516102cb919061444a565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613d14565b610b31565b60405161030891906143a6565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613bb7565b610bb6565b005b34801561034657600080fd5b50610361600480360381019061035c9190613c44565b610cce565b005b34801561036f57600080fd5b50610378610d67565b60405161038591906148ec565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613d14565b610d74565b005b3480156103c357600080fd5b506103de60048036038101906103d99190613a34565b610dfa565b005b3480156103ec57600080fd5b5061040760048036038101906104029190613aa1565b610ed1565b005b34801561041557600080fd5b50610430600480360381019061042b9190613d14565b610f31565b005b34801561043e57600080fd5b5061045960048036038101906104549190613bb7565b6110aa565b60405161046691906148ec565b60405180910390f35b34801561047b57600080fd5b5061048461114f565b60405161049191906148ec565b60405180910390f35b3480156104a657600080fd5b506104c160048036038101906104bc9190613d14565b611159565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190613aa1565b6111df565b005b3480156104f857600080fd5b50610513600480360381019061050e9190613a34565b6111ff565b604051610520919061440d565b60405180910390f35b34801561053557600080fd5b5061053e611309565b60405161054b91906148ec565b60405180910390f35b34801561056057600080fd5b5061057b60048036038101906105769190613d14565b61130e565b60405161058891906148ec565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190613ccb565b61137f565b005b3480156105c657600080fd5b506105cf611415565b6040516105dc91906148ec565b60405180910390f35b3480156105f157600080fd5b506105fa61141b565b60405161060791906148ec565b60405180910390f35b34801561061c57600080fd5b5061063760048036038101906106329190613d14565b611421565b60405161064491906143a6565b60405180910390f35b34801561065957600080fd5b506106626114d3565b60405161066f919061442f565b60405180910390f35b34801561068457600080fd5b5061069f600480360381019061069a9190613a34565b6114ea565b6040516106ac91906148ec565b60405180910390f35b3480156106c157600080fd5b506106ca6115a2565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190613bf7565b61162a565b005b61070f600480360381019061070a9190613d14565b61184e565b005b34801561071d57600080fd5b50610726611c8a565b60405161073391906148ec565b60405180910390f35b610744611c90565b005b34801561075257600080fd5b5061075b611d4c565b60405161076891906143a6565b60405180910390f35b34801561077d57600080fd5b5061079860048036038101906107939190613d14565b611d76565b005b3480156107a657600080fd5b506107af611dfc565b6040516107bc91906148ec565b60405180910390f35b3480156107d157600080fd5b506107da611e02565b6040516107e7919061444a565b60405180910390f35b3480156107fc57600080fd5b50610805611e94565b60405161081291906148ec565b60405180910390f35b61083560048036038101906108309190613d14565b611e9e565b005b34801561084357600080fd5b5061085e60048036038101906108599190613b77565b6120be565b005b34801561086c57600080fd5b5061088760048036038101906108829190613a34565b61223f565b604051610894919061442f565b60405180910390f35b3480156108a957600080fd5b506108c460048036038101906108bf9190613bf7565b612295565b005b3480156108d257600080fd5b506108ed60048036038101906108e89190613af4565b61242c565b005b3480156108fb57600080fd5b5061091660048036038101906109119190613d14565b61248e565b604051610923919061444a565b60405180910390f35b34801561093857600080fd5b50610941612535565b60405161094e91906148ec565b60405180910390f35b34801561096357600080fd5b5061096c61253b565b60405161097991906148ec565b60405180910390f35b34801561098e57600080fd5b506109a960048036038101906109a49190613a34565b612545565b6040516109b691906148ec565b60405180910390f35b3480156109cb57600080fd5b506109e660048036038101906109e19190613a61565b61258e565b6040516109f3919061442f565b60405180910390f35b348015610a0857600080fd5b50610a236004803603810190610a1e9190613a34565b612622565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a985750610a978261271a565b5b9050919050565b606060008054610aae90614bd5565b80601f0160208091040260200160405190810160405280929190818152602001828054610ada90614bd5565b8015610b275780601f10610afc57610100808354040283529160200191610b27565b820191906000526020600020905b815481529060010190602001808311610b0a57829003601f168201915b5050505050905090565b6000610b3c826127fc565b610b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b729061472c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc182611421565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c29906147cc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c51612868565b73ffffffffffffffffffffffffffffffffffffffff161480610c805750610c7f81610c7a612868565b61258e565b5b610cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb69061466c565b60405180910390fd5b610cc98383612870565b505050565b610cd6612868565b73ffffffffffffffffffffffffffffffffffffffff16610cf4611d4c565b73ffffffffffffffffffffffffffffffffffffffff1614610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d419061476c565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6000600880549050905090565b610d7c612868565b73ffffffffffffffffffffffffffffffffffffffff16610d9a611d4c565b73ffffffffffffffffffffffffffffffffffffffff1614610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de79061476c565b60405180910390fd5b80600f8190555050565b610e02612868565b73ffffffffffffffffffffffffffffffffffffffff16610e20611d4c565b73ffffffffffffffffffffffffffffffffffffffff1614610e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6d9061476c565b60405180910390fd5b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610ee2610edc612868565b82612929565b610f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f189061480c565b60405180910390fd5b610f2c838383612a07565b505050565b610f39612868565b73ffffffffffffffffffffffffffffffffffffffff16610f57611d4c565b73ffffffffffffffffffffffffffffffffffffffff1614610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa49061476c565b60405180910390fd5b6000610fb7610d67565b90506127108282610fc89190614a0a565b1115611009576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110009061484c565b60405180910390fd5b606482600d546110199190614a0a565b111561105a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110519061468c565b60405180910390fd5b60005b828110156110a55761107a3382846110759190614a0a565b612c63565b600d600081548092919061108d90614c38565b9190505550808061109d90614c38565b91505061105d565b505050565b60006110b5836114ea565b82106110f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ed906144cc565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000600f54905090565b611161612868565b73ffffffffffffffffffffffffffffffffffffffff1661117f611d4c565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc9061476c565b60405180910390fd5b8060128190555050565b6111fa8383836040518060200160405280600081525061242c565b505050565b6060600061120c836114ea565b9050600081141561126957600067ffffffffffffffff81111561123257611231614d9d565b5b6040519080825280602002602001820160405280156112605781602001602082028036833780820191505090505b50915050611304565b60008167ffffffffffffffff81111561128557611284614d9d565b5b6040519080825280602002602001820160405280156112b35781602001602082028036833780820191505090505b50905060005b828110156112fd576112cb85826110aa565b8282815181106112de576112dd614d6e565b5b60200260200101818152505080806112f590614c38565b9150506112b9565b5080925050505b919050565b606481565b6000611318610d67565b8210611359576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113509061482c565b60405180910390fd5b6008828154811061136d5761136c614d6e565b5b90600052602060002001549050919050565b611387612868565b73ffffffffffffffffffffffffffffffffffffffff166113a5611d4c565b73ffffffffffffffffffffffffffffffffffffffff16146113fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f29061476c565b60405180910390fd5b80601590805190602001906114119291906137f2565b5050565b61271081565b600c5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c1906146cc565b60405180910390fd5b80915050919050565b6000600e60009054906101000a900460ff16905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561155b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611552906146ac565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115aa612868565b73ffffffffffffffffffffffffffffffffffffffff166115c8611d4c565b73ffffffffffffffffffffffffffffffffffffffff161461161e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116159061476c565b60405180910390fd5b6116286000612c81565b565b611632612868565b73ffffffffffffffffffffffffffffffffffffffff16611650611d4c565b73ffffffffffffffffffffffffffffffffffffffff16146116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d9061476c565b60405180910390fd5b60005b828290508110156118495760008383838181106116c9576116c8614d6e565b5b90506020020160208101906116de9190613a34565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611750576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117479061446c565b60405180910390fd5b601360008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d49061460c565b60405180910390fd5b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050808061184190614c38565b9150506116a9565b505050565b60001515600e60009054906101000a900460ff161515146118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b9061458c565b60405180910390fd5b6202a3006012546118b59190614aeb565b4210156118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee9061448c565b60405180910390fd5b601254421061193b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611932906147ec565b60405180910390fd5b6000611945610d67565b9050612710811061198b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119829061464c565b60405180910390fd5b612710828261199a9190614a0a565b11156119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d29061486c565b60405180910390fd5b6105dc82600c546119ec9190614a0a565b1115611a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a24906148cc565b60405180910390fd5b600f54821115611a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a699061488c565b60405180910390fd5b60011515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afc9061474c565b60405180910390fd5b600f5482601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b539190614a0a565b1115611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b9061450c565b60405180910390fd5b3482601154611ba39190614a91565b1115611be4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdb906144ac565b60405180910390fd5b60005b82811015611c2f57600c6000815480929190611c0290614c38565b9190505550611c1c338284611c179190614a0a565b612c63565b8080611c2790614c38565b915050611be7565b5081601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c7f9190614a0a565b925050819055505050565b6105dc81565b611c98612868565b73ffffffffffffffffffffffffffffffffffffffff16611cb6611d4c565b73ffffffffffffffffffffffffffffffffffffffff1614611d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d039061476c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611d4a57600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d7e612868565b73ffffffffffffffffffffffffffffffffffffffff16611d9c611d4c565b73ffffffffffffffffffffffffffffffffffffffff1614611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de99061476c565b60405180910390fd5b8060118190555050565b600b5481565b606060018054611e1190614bd5565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3d90614bd5565b8015611e8a5780601f10611e5f57610100808354040283529160200191611e8a565b820191906000526020600020905b815481529060010190602001808311611e6d57829003601f168201915b5050505050905090565b6000601154905090565b60001515600e60009054906101000a900460ff16151514611ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eeb9061470c565b60405180910390fd5b601254421015611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f30906148ac565b60405180910390fd5b6000611f43610d67565b9050601054821115611f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f819061452c565b60405180910390fd5b6127108110611fce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc59061464c565b60405180910390fd5b6127108282611fdd9190614a0a565b111561201e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120159061462c565b60405180910390fd5b348260115461202d9190614a91565b111561206e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612065906144ac565b60405180910390fd5b60005b828110156120b957600b600081548092919061208c90614c38565b91905055506120a63382846120a19190614a0a565b612c63565b80806120b190614c38565b915050612071565b505050565b6120c6612868565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212b906145cc565b60405180910390fd5b8060056000612141612868565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166121ee612868565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612233919061442f565b60405180910390a35050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61229d612868565b73ffffffffffffffffffffffffffffffffffffffff166122bb611d4c565b73ffffffffffffffffffffffffffffffffffffffff1614612311576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123089061476c565b60405180910390fd5b60005b8282905081101561242757600083838381811061233457612333614d6e565b5b90506020020160208101906123499190613a34565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b29061446c565b60405180910390fd5b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050808061241f90614c38565b915050612314565b505050565b61243d612437612868565b83612929565b61247c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124739061480c565b60405180910390fd5b61248884848484612d47565b50505050565b6060612499826127fc565b6124d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cf906147ac565b60405180910390fd5b60006124e2612da3565b90506000815111612502576040518060200160405280600081525061252d565b8061250c84612e35565b60405160200161251d929190614382565b6040516020818303038152906040525b915050919050565b600d5481565b6000601254905090565b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61262a612868565b73ffffffffffffffffffffffffffffffffffffffff16612648611d4c565b73ffffffffffffffffffffffffffffffffffffffff161461269e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126959061476c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561270e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127059061454c565b60405180910390fd5b61271781612c81565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127e557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127f557506127f482612f96565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128e383611421565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612934826127fc565b612973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296a906145ec565b60405180910390fd5b600061297e83611421565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129ed57508373ffffffffffffffffffffffffffffffffffffffff166129d584610b31565b73ffffffffffffffffffffffffffffffffffffffff16145b806129fe57506129fd818561258e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a2782611421565b73ffffffffffffffffffffffffffffffffffffffff1614612a7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a749061478c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae4906145ac565b60405180910390fd5b612af8838383613000565b612b03600082612870565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b539190614aeb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612baa9190614a0a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612c7d828260405180602001604052806000815250613114565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d52848484612a07565b612d5e8484848461316f565b612d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d94906144ec565b60405180910390fd5b50505050565b606060158054612db290614bd5565b80601f0160208091040260200160405190810160405280929190818152602001828054612dde90614bd5565b8015612e2b5780601f10612e0057610100808354040283529160200191612e2b565b820191906000526020600020905b815481529060010190602001808311612e0e57829003601f168201915b5050505050905090565b60606000821415612e7d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f91565b600082905060005b60008214612eaf578080612e9890614c38565b915050600a82612ea89190614a60565b9150612e85565b60008167ffffffffffffffff811115612ecb57612eca614d9d565b5b6040519080825280601f01601f191660200182016040528015612efd5781602001600182028036833780820191505090505b5090505b60008514612f8a57600182612f169190614aeb565b9150600a85612f259190614c81565b6030612f319190614a0a565b60f81b818381518110612f4757612f46614d6e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f839190614a60565b9450612f01565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61300b838383613306565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561304e576130498161330b565b61308d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461308c5761308b8382613354565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156130d0576130cb816134c1565b61310f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461310e5761310d8282613592565b5b5b505050565b61311e8383613611565b61312b600084848461316f565b61316a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613161906144ec565b60405180910390fd5b505050565b60006131908473ffffffffffffffffffffffffffffffffffffffff166137df565b156132f9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131b9612868565b8786866040518563ffffffff1660e01b81526004016131db94939291906143c1565b602060405180830381600087803b1580156131f557600080fd5b505af192505050801561322657506040513d601f19601f820116820180604052508101906132239190613c9e565b60015b6132a9573d8060008114613256576040519150601f19603f3d011682016040523d82523d6000602084013e61325b565b606091505b506000815114156132a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613298906144ec565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132fe565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613361846114ea565b61336b9190614aeb565b9050600060076000848152602001908152602001600020549050818114613450576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134d59190614aeb565b905060006009600084815260200190815260200160002054905060006008838154811061350557613504614d6e565b5b90600052602060002001549050806008838154811061352757613526614d6e565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061357657613575614d3f565b5b6001900381819060005260206000200160009055905550505050565b600061359d836114ea565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613681576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613678906146ec565b60405180910390fd5b61368a816127fc565b156136ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136c19061456c565b60405180910390fd5b6136d660008383613000565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137269190614a0a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546137fe90614bd5565b90600052602060002090601f0160209004810192826138205760008555613867565b82601f1061383957805160ff1916838001178555613867565b82800160010185558215613867579182015b8281111561386657825182559160200191906001019061384b565b5b5090506138749190613878565b5090565b5b80821115613891576000816000905550600101613879565b5090565b60006138a86138a38461492c565b614907565b9050828152602081018484840111156138c4576138c3614ddb565b5b6138cf848285614b93565b509392505050565b60006138ea6138e58461495d565b614907565b90508281526020810184848401111561390657613905614ddb565b5b613911848285614b93565b509392505050565b60008135905061392881615703565b92915050565b60008083601f84011261394457613943614dd1565b5b8235905067ffffffffffffffff81111561396157613960614dcc565b5b60208301915083602082028301111561397d5761397c614dd6565b5b9250929050565b6000813590506139938161571a565b92915050565b6000813590506139a881615731565b92915050565b6000815190506139bd81615731565b92915050565b600082601f8301126139d8576139d7614dd1565b5b81356139e8848260208601613895565b91505092915050565b600082601f830112613a0657613a05614dd1565b5b8135613a168482602086016138d7565b91505092915050565b600081359050613a2e81615748565b92915050565b600060208284031215613a4a57613a49614de5565b5b6000613a5884828501613919565b91505092915050565b60008060408385031215613a7857613a77614de5565b5b6000613a8685828601613919565b9250506020613a9785828601613919565b9150509250929050565b600080600060608486031215613aba57613ab9614de5565b5b6000613ac886828701613919565b9350506020613ad986828701613919565b9250506040613aea86828701613a1f565b9150509250925092565b60008060008060808587031215613b0e57613b0d614de5565b5b6000613b1c87828801613919565b9450506020613b2d87828801613919565b9350506040613b3e87828801613a1f565b925050606085013567ffffffffffffffff811115613b5f57613b5e614de0565b5b613b6b878288016139c3565b91505092959194509250565b60008060408385031215613b8e57613b8d614de5565b5b6000613b9c85828601613919565b9250506020613bad85828601613984565b9150509250929050565b60008060408385031215613bce57613bcd614de5565b5b6000613bdc85828601613919565b9250506020613bed85828601613a1f565b9150509250929050565b60008060208385031215613c0e57613c0d614de5565b5b600083013567ffffffffffffffff811115613c2c57613c2b614de0565b5b613c388582860161392e565b92509250509250929050565b600060208284031215613c5a57613c59614de5565b5b6000613c6884828501613984565b91505092915050565b600060208284031215613c8757613c86614de5565b5b6000613c9584828501613999565b91505092915050565b600060208284031215613cb457613cb3614de5565b5b6000613cc2848285016139ae565b91505092915050565b600060208284031215613ce157613ce0614de5565b5b600082013567ffffffffffffffff811115613cff57613cfe614de0565b5b613d0b848285016139f1565b91505092915050565b600060208284031215613d2a57613d29614de5565b5b6000613d3884828501613a1f565b91505092915050565b6000613d4d8383614364565b60208301905092915050565b613d6281614b1f565b82525050565b6000613d738261499e565b613d7d81856149cc565b9350613d888361498e565b8060005b83811015613db9578151613da08882613d41565b9750613dab836149bf565b925050600181019050613d8c565b5085935050505092915050565b613dcf81614b31565b82525050565b6000613de0826149a9565b613dea81856149dd565b9350613dfa818560208601614ba2565b613e0381614dea565b840191505092915050565b6000613e19826149b4565b613e2381856149ee565b9350613e33818560208601614ba2565b613e3c81614dea565b840191505092915050565b6000613e52826149b4565b613e5c81856149ff565b9350613e6c818560208601614ba2565b80840191505092915050565b6000613e85600c836149ee565b9150613e9082614dfb565b602082019050919050565b6000613ea86020836149ee565b9150613eb382614e24565b602082019050919050565b6000613ecb601a836149ee565b9150613ed682614e4d565b602082019050919050565b6000613eee602b836149ee565b9150613ef982614e76565b604082019050919050565b6000613f116032836149ee565b9150613f1c82614ec5565b604082019050919050565b6000613f34602e836149ee565b9150613f3f82614f14565b604082019050919050565b6000613f57603a836149ee565b9150613f6282614f63565b604082019050919050565b6000613f7a6026836149ee565b9150613f8582614fb2565b604082019050919050565b6000613f9d601c836149ee565b9150613fa882615001565b602082019050919050565b6000613fc0600e836149ee565b9150613fcb8261502a565b602082019050919050565b6000613fe36024836149ee565b9150613fee82615053565b604082019050919050565b60006140066019836149ee565b9150614011826150a2565b602082019050919050565b6000614029602c836149ee565b9150614034826150cb565b604082019050919050565b600061404c600f836149ee565b91506140578261511a565b602082019050919050565b600061406f602d836149ee565b915061407a82615143565b604082019050919050565b6000614092601e836149ee565b915061409d82615192565b602082019050919050565b60006140b56038836149ee565b91506140c0826151bb565b604082019050919050565b60006140d8601b836149ee565b91506140e38261520a565b602082019050919050565b60006140fb602a836149ee565b915061410682615233565b604082019050919050565b600061411e6029836149ee565b915061412982615282565b604082019050919050565b60006141416020836149ee565b915061414c826152d1565b602082019050919050565b6000614164600b836149ee565b915061416f826152fa565b602082019050919050565b6000614187602c836149ee565b915061419282615323565b604082019050919050565b60006141aa6030836149ee565b91506141b582615372565b604082019050919050565b60006141cd6020836149ee565b91506141d8826153c1565b602082019050919050565b60006141f06029836149ee565b91506141fb826153ea565b604082019050919050565b6000614213602f836149ee565b915061421e82615439565b604082019050919050565b60006142366021836149ee565b915061424182615488565b604082019050919050565b60006142596024836149ee565b9150614264826154d7565b604082019050919050565b600061427c6031836149ee565b915061428782615526565b604082019050919050565b600061429f602c836149ee565b91506142aa82615575565b604082019050919050565b60006142c26018836149ee565b91506142cd826155c4565b602082019050919050565b60006142e5602f836149ee565b91506142f0826155ed565b604082019050919050565b6000614308602f836149ee565b91506143138261563c565b604082019050919050565b600061432b6015836149ee565b91506143368261568b565b602082019050919050565b600061434e6031836149ee565b9150614359826156b4565b604082019050919050565b61436d81614b89565b82525050565b61437c81614b89565b82525050565b600061438e8285613e47565b915061439a8284613e47565b91508190509392505050565b60006020820190506143bb6000830184613d59565b92915050565b60006080820190506143d66000830187613d59565b6143e36020830186613d59565b6143f06040830185614373565b81810360608301526144028184613dd5565b905095945050505050565b600060208201905081810360008301526144278184613d68565b905092915050565b60006020820190506144446000830184613dc6565b92915050565b600060208201905081810360008301526144648184613e0e565b905092915050565b6000602082019050818103600083015261448581613e78565b9050919050565b600060208201905081810360008301526144a581613e9b565b9050919050565b600060208201905081810360008301526144c581613ebe565b9050919050565b600060208201905081810360008301526144e581613ee1565b9050919050565b6000602082019050818103600083015261450581613f04565b9050919050565b6000602082019050818103600083015261452581613f27565b9050919050565b6000602082019050818103600083015261454581613f4a565b9050919050565b6000602082019050818103600083015261456581613f6d565b9050919050565b6000602082019050818103600083015261458581613f90565b9050919050565b600060208201905081810360008301526145a581613fb3565b9050919050565b600060208201905081810360008301526145c581613fd6565b9050919050565b600060208201905081810360008301526145e581613ff9565b9050919050565b600060208201905081810360008301526146058161401c565b9050919050565b600060208201905081810360008301526146258161403f565b9050919050565b6000602082019050818103600083015261464581614062565b9050919050565b6000602082019050818103600083015261466581614085565b9050919050565b60006020820190508181036000830152614685816140a8565b9050919050565b600060208201905081810360008301526146a5816140cb565b9050919050565b600060208201905081810360008301526146c5816140ee565b9050919050565b600060208201905081810360008301526146e581614111565b9050919050565b6000602082019050818103600083015261470581614134565b9050919050565b6000602082019050818103600083015261472581614157565b9050919050565b600060208201905081810360008301526147458161417a565b9050919050565b600060208201905081810360008301526147658161419d565b9050919050565b60006020820190508181036000830152614785816141c0565b9050919050565b600060208201905081810360008301526147a5816141e3565b9050919050565b600060208201905081810360008301526147c581614206565b9050919050565b600060208201905081810360008301526147e581614229565b9050919050565b600060208201905081810360008301526148058161424c565b9050919050565b600060208201905081810360008301526148258161426f565b9050919050565b6000602082019050818103600083015261484581614292565b9050919050565b60006020820190508181036000830152614865816142b5565b9050919050565b60006020820190508181036000830152614885816142d8565b9050919050565b600060208201905081810360008301526148a5816142fb565b9050919050565b600060208201905081810360008301526148c58161431e565b9050919050565b600060208201905081810360008301526148e581614341565b9050919050565b60006020820190506149016000830184614373565b92915050565b6000614911614922565b905061491d8282614c07565b919050565b6000604051905090565b600067ffffffffffffffff82111561494757614946614d9d565b5b61495082614dea565b9050602081019050919050565b600067ffffffffffffffff82111561497857614977614d9d565b5b61498182614dea565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614a1582614b89565b9150614a2083614b89565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a5557614a54614cb2565b5b828201905092915050565b6000614a6b82614b89565b9150614a7683614b89565b925082614a8657614a85614ce1565b5b828204905092915050565b6000614a9c82614b89565b9150614aa783614b89565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ae057614adf614cb2565b5b828202905092915050565b6000614af682614b89565b9150614b0183614b89565b925082821015614b1457614b13614cb2565b5b828203905092915050565b6000614b2a82614b69565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614bc0578082015181840152602081019050614ba5565b83811115614bcf576000848401525b50505050565b60006002820490506001821680614bed57607f821691505b60208210811415614c0157614c00614d10565b5b50919050565b614c1082614dea565b810181811067ffffffffffffffff82111715614c2f57614c2e614d9d565b5b80604052505050565b6000614c4382614b89565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c7657614c75614cb2565b5b600182019050919050565b6000614c8c82614b89565b9150614c9783614b89565b925082614ca757614ca6614ce1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e554c4c5f414444524553530000000000000000000000000000000000000000600082015250565b7f5468652070726573616c6520686173206e6f742079657420737461727465642e600082015250565b7f5472616e73616374696f6e2076616c756520746f6f206c6f772e000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4578636565647320737570706c79206f662070726573616c65204f747465727360008201527f20796f752063616e206d696e742e000000000000000000000000000000000000602082015250565b7f576f61682c20596f75204f7474657220736c6f7720646f776e2120546861742760008201527f7320746f6f206d616e79204f747465727320746f206d696e7421000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f50726573616c6520506175736564000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4455504c49434154455f454e5452590000000000000000000000000000000000600082015250565b7f5468697320616d6f756e74206f66204f74746572732077696c6c20657863656560008201527f64206d617820737570706c792e00000000000000000000000000000000000000602082015250565b7f416c6c204f74746572732061726520616c7265616479206d696e7465642e0000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4265796f6e64207265736572766564206f74746572206c696d69740000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53616c6520506175736564000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f546869732061646472657373206973206e6f742077686974656c69737465642060008201527f666f72207468652070726573616c652e00000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546865207075626c69632073616c652068617320616c7265616479207374617260008201527f7465642e00000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4265796f6e6420746f74616c206f74746572206c696d69740000000000000000600082015250565b7f5468697320616d6f756e74206f66204f74746572732077696c6c20657863656560008201527f6420746f74616c20737570706c792e0000000000000000000000000000000000602082015250565b7f4d696e74207472616e73616374696f6e206578636565647320796f757220617660008201527f61696c61626c6520737570706c792e0000000000000000000000000000000000602082015250565b7f53616c65206973206e6f7420796574206f70656e2e0000000000000000000000600082015250565b7f5468697320616d6f756e74206f66204f74746572732077696c6c20657863656560008201527f642070726573616c6520737570706c792e000000000000000000000000000000602082015250565b61570c81614b1f565b811461571757600080fd5b50565b61572381614b31565b811461572e57600080fd5b50565b61573a81614b3d565b811461574557600080fd5b50565b61575181614b89565b811461575c57600080fd5b5056fea26469706673582212202d0149f007d979ccc07315aca5606dff5e07790462aa7710006fd1b54fbef32964736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000227270000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): ''
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [3] : 2727000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
46046:7166:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37540:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24429:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25988:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25511:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48708:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38180:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48288:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48913:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26878:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52166:446;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37848:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48401:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48095:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27288:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52620:458;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46224:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38370:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47863:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46113:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46320:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24123:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48824:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23853:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45341:94;;;;;;;;;;;;;:::i;:::-;;49041:374;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50072:1375;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46168:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53086:123;;;:::i;:::-;;44690:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48515:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46276:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24598:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48620:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51455:703;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26281:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49754:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49423:317;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27544:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24773:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46365:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48192:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49891:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26647:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45590:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37540:224;37642:4;37681:35;37666:50;;;:11;:50;;;;:90;;;;37720:36;37744:11;37720:23;:36::i;:::-;37666:90;37659:97;;37540:224;;;:::o;24429:100::-;24483:13;24516:5;24509:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24429:100;:::o;25988:221::-;26064:7;26092:16;26100:7;26092;:16::i;:::-;26084:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26177:15;:24;26193:7;26177:24;;;;;;;;;;;;;;;;;;;;;26170:31;;25988:221;;;:::o;25511:411::-;25592:13;25608:23;25623:7;25608:14;:23::i;:::-;25592:39;;25656:5;25650:11;;:2;:11;;;;25642:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;25750:5;25734:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;25759:37;25776:5;25783:12;:10;:12::i;:::-;25759:16;:37::i;:::-;25734:62;25712:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;25893:21;25902:2;25906:7;25893:8;:21::i;:::-;25581:341;25511:411;;:::o;48708:108::-;44921:12;:10;:12::i;:::-;44910:23;;:7;:5;:7::i;:::-;:23;;;44902:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48790:18:::1;48780:7;;:28;;;;;;;;;;;;;;;;;;48708:108:::0;:::o;38180:113::-;38241:7;38268:10;:17;;;;38261:24;;38180:113;:::o;48288:105::-;44921:12;:10;:12::i;:::-;44910:23;;:7;:5;:7::i;:::-;:23;;;44902:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48381:4:::1;48357:21;:28;;;;48288:105:::0;:::o;48913:120::-;44921:12;:10;:12::i;:::-;44910:23;;:7;:5;:7::i;:::-;:23;;;44902:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49021:4:::1;48987:21;:31;49009:8;48987:31;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;48913:120:::0;:::o;26878:339::-;27073:41;27092:12;:10;:12::i;:::-;27106:7;27073:18;:41::i;:::-;27065:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27181:28;27191:4;27197:2;27201:7;27181:9;:28::i;:::-;26878:339;;;:::o;52166:446::-;44921:12;:10;:12::i;:::-;44910:23;;:7;:5;:7::i;:::-;:23;;;44902:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52235:19:::1;52257:13;:11;:13::i;:::-;52235:35;;46156:5;52303:6;52289:11;:20;;;;:::i;:::-;:40;;52281:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;46266:3;52400:6;52377:20;;:29;;;;:::i;:::-;:48;;52369:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;52475:9;52470:135;52490:6;52486:1;:10;52470:135;;;52518:38;52528:10;52554:1;52540:11;:15;;;;:::i;:::-;52518:9;:38::i;:::-;52571:20;;:22;;;;;;;;;:::i;:::-;;;;;;52498:3;;;;;:::i;:::-;;;;52470:135;;;;52224:388;52166:446:::0;:::o;37848:256::-;37945:7;37981:23;37998:5;37981:16;:23::i;:::-;37973:5;:31;37965:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38070:12;:19;38083:5;38070:19;;;;;;;;;;;;;;;:26;38090:5;38070:26;;;;;;;;;;;;38063:33;;37848:256;;;;:::o;48401:106::-;48451:7;48478:21;;48471:28;;48401:106;:::o;48095:89::-;44921:12;:10;:12::i;:::-;44910:23;;:7;:5;:7::i;:::-;:23;;;44902:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48171:5:::1;48159:9;:17;;;;48095:89:::0;:::o;27288:185::-;27426:39;27443:4;27449:2;27453:7;27426:39;;;;;;;;;;;;:16;:39::i;:::-;27288:185;;;:::o;52620:458::-;52707:16;52741:18;52762:17;52772:6;52762:9;:17::i;:::-;52741:38;;52808:1;52794:10;:15;52790:71;;;52847:1;52833:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52826:23;;;;;52790:71;52873:25;52915:10;52901:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52873:53;;52942:9;52937:108;52957:10;52953:1;:14;52937:108;;;53003:30;53023:6;53031:1;53003:19;:30::i;:::-;52989:8;52998:1;52989:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;52969:3;;;;;:::i;:::-;;;;52937:108;;;;53062:8;53055:15;;;;52620:458;;;;:::o;46224:45::-;46266:3;46224:45;:::o;38370:233::-;38445:7;38481:30;:28;:30::i;:::-;38473:5;:38;38465:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;38578:10;38589:5;38578:17;;;;;;;;:::i;:::-;;;;;;;;;;38571:24;;38370:233;;;:::o;47863:102::-;44921:12;:10;:12::i;:::-;44910:23;;:7;:5;:7::i;:::-;:23;;;44902:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47950:7:::1;47934:13;:23;;;;;;;;;;;;:::i;:::-;;47863:102:::0;:::o;46113:48::-;46156:5;46113:48;:::o;46320:38::-;;;;:::o;24123:239::-;24195:7;24215:13;24231:7;:16;24239:7;24231:16;;;;;;;;;;;;;;;;;;;;;24215:32;;24283:1;24266:19;;:5;:19;;;;24258:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24349:5;24342:12;;;24123:239;;;:::o;48824:81::-;48866:4;48890:7;;;;;;;;;;;48883:14;;48824:81;:::o;23853:208::-;23925:7;23970:1;23953:19;;:5;:19;;;;23945:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24037:9;:16;24047:5;24037:16;;;;;;;;;;;;;;;;24030:23;;23853:208;;;:::o;45341:94::-;44921:12;:10;:12::i;:::-;44910:23;;:7;:5;:7::i;:::-;:23;;;44902:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45406:21:::1;45424:1;45406:9;:21::i;:::-;45341:94::o:0;49041:374::-;44921:12;:10;:12::i;:::-;44910:23;;:7;:5;:7::i;:::-;:23;;;44902:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49129:9:::1;49125:280;49148:7;;:14;;49144:1;:18;49125:280;;;49184:13;49200:7;;49208:1;49200:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;49184:26;;49250:1;49233:19;;:5;:19;;;;49225:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;49293:21;:28;49315:5;49293:28;;;;;;;;;;;;;;;;;;;;;;;;;49292:29;49284:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;49389:4;49358:21;:28;49380:5;49358:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;49169:236;49164:3;;;;;:::i;:::-;;;;49125:280;;;;49041:374:::0;;:::o;50072:1375::-;47383:5;47372:16;;:7;;;;;;;;;;;:16;;;47364:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;47471:6;47459:9;;:18;;;;:::i;:::-;47440:15;:37;;47418:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;47588:9;;47570:15;:27;47548:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;50151:19:::1;50173:13;:11;:13::i;:::-;50151:35;;46156:5;50217:11;:30;50197:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;46156:5;50353:6;50339:11;:20;;;;:::i;:::-;:40;;50317:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;46213:4;50509:6;50487:19;;:28;;;;:::i;:::-;:50;;50465:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;50657:21;;50647:6;:31;;50625:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;50823:4;50786:41;;:21;:33;50808:10;50786:33;;;;;;;;;;;;;;;;;;;;;;;;;:41;;;50764:139;;;;;;;;;;;;:::i;:::-;;;;;;;;;51006:21;;50979:6;50936:28;:40;50965:10;50936:40;;;;;;;;;;;;;;;;:49;;;;:::i;:::-;:91;;50914:187;;;;;;;;;;;;:::i;:::-;;;;;;;;;51139:9;51129:6;51120;;:15;;;;:::i;:::-;:28;;51112:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51197:9;51192:134;51212:6;51208:1;:10;51192:134;;;51240:19;;:21;;;;;;;;;:::i;:::-;;;;;;51276:38;51286:10;51312:1;51298:11;:15;;;;:::i;:::-;51276:9;:38::i;:::-;51220:3;;;;;:::i;:::-;;;;51192:134;;;;51433:6;51389:28;:40;51418:10;51389:40;;;;;;;;;;;;;;;;:50;;;;;;;:::i;:::-;;;;;;;;50140:1307;50072:1375:::0;:::o;46168:49::-;46213:4;46168:49;:::o;53086:123::-;44921:12;:10;:12::i;:::-;44910:23;;:7;:5;:7::i;:::-;:23;;;44902:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53161:10:::1;53153:24;;:47;53178:21;53153:47;;;;;;;;;;;;;;;;;;;;;;;53145:56;;;::::0;::::1;;53086:123::o:0;44690:87::-;44736:7;44763:6;;;;;;;;;;;44756:13;;44690:87;:::o;48515:97::-;44921:12;:10;:12::i;:::-;44910:23;;:7;:5;:7::i;:::-;:23;;;44902:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48592:12:::1;48583:6;:21;;;;48515:97:::0;:::o;46276:37::-;;;;:::o;24598:104::-;24654:13;24687:7;24680:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24598:104;:::o;48620:82::-;48661:7;48688:6;;48681:13;;48620:82;:::o;51455:703::-;47741:5;47730:16;;:7;;;;;;;;;;;:16;;;47722:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;47800:9;;47781:15;:28;;47773:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;51524:19:::1;51546:13;:11;:13::i;:::-;51524:35;;51602:9;;51592:6;:19;;51570:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;46156:5;51716:11;:30;51708:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46156:5;51828:6;51814:11;:20;;;;:::i;:::-;:40;;51792:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;51965:9;51955:6;51946;;:15;;;;:::i;:::-;:28;;51938:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;52023:9;52018:133;52038:6;52034:1;:10;52018:133;;;52066:18;;:20;;;;;;;;;:::i;:::-;;;;;;52101:38;52111:10;52137:1;52123:11;:15;;;;:::i;:::-;52101:9;:38::i;:::-;52046:3;;;;;:::i;:::-;;;;52018:133;;;;51513:645;51455:703:::0;:::o;26281:295::-;26396:12;:10;:12::i;:::-;26384:24;;:8;:24;;;;26376:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26496:8;26451:18;:32;26470:12;:10;:12::i;:::-;26451:32;;;;;;;;;;;;;;;:42;26484:8;26451:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26549:8;26520:48;;26535:12;:10;:12::i;:::-;26520:48;;;26559:8;26520:48;;;;;;:::i;:::-;;;;;;;;26281:295;;:::o;49754:129::-;49820:4;49844:21;:31;49866:8;49844:31;;;;;;;;;;;;;;;;;;;;;;;;;49837:38;;49754:129;;;:::o;49423:317::-;44921:12;:10;:12::i;:::-;44910:23;;:7;:5;:7::i;:::-;:23;;;44902:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49516:9:::1;49512:221;49535:7;;:14;;49531:1;:18;49512:221;;;49571:13;49587:7;;49595:1;49587:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;49571:26;;49637:1;49620:19;;:5;:19;;;;49612:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;49716:5;49685:21;:28;49707:5;49685:28;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;49556:177;49551:3;;;;;:::i;:::-;;;;49512:221;;;;49423:317:::0;;:::o;27544:328::-;27719:41;27738:12;:10;:12::i;:::-;27752:7;27719:18;:41::i;:::-;27711:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27825:39;27839:4;27845:2;27849:7;27858:5;27825:13;:39::i;:::-;27544:328;;;;:::o;24773:334::-;24846:13;24880:16;24888:7;24880;:16::i;:::-;24872:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;24961:21;24985:10;:8;:10::i;:::-;24961:34;;25037:1;25019:7;25013:21;:25;:86;;;;;;;;;;;;;;;;;25065:7;25074:18;:7;:16;:18::i;:::-;25048:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25013:86;25006:93;;;24773:334;;;:::o;46365:39::-;;;;:::o;48192:88::-;48236:7;48263:9;;48256:16;;48192:88;:::o;49891:173::-;49986:7;50018:28;:38;50047:8;50018:38;;;;;;;;;;;;;;;;50011:45;;49891:173;;;:::o;26647:164::-;26744:4;26768:18;:25;26787:5;26768:25;;;;;;;;;;;;;;;:35;26794:8;26768:35;;;;;;;;;;;;;;;;;;;;;;;;;26761:42;;26647:164;;;;:::o;45590:192::-;44921:12;:10;:12::i;:::-;44910:23;;:7;:5;:7::i;:::-;:23;;;44902:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45699:1:::1;45679:22;;:8;:22;;;;45671:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45755:19;45765:8;45755:9;:19::i;:::-;45590:192:::0;:::o;23484:305::-;23586:4;23638:25;23623:40;;;:11;:40;;;;:105;;;;23695:33;23680:48;;;:11;:48;;;;23623:105;:158;;;;23745:36;23769:11;23745:23;:36::i;:::-;23623:158;23603:178;;23484:305;;;:::o;29382:127::-;29447:4;29499:1;29471:30;;:7;:16;29479:7;29471:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29464:37;;29382:127;;;:::o;18892:98::-;18945:7;18972:10;18965:17;;18892:98;:::o;33364:174::-;33466:2;33439:15;:24;33455:7;33439:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33522:7;33518:2;33484:46;;33493:23;33508:7;33493:14;:23::i;:::-;33484:46;;;;;;;;;;;;33364:174;;:::o;29676:348::-;29769:4;29794:16;29802:7;29794;:16::i;:::-;29786:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29870:13;29886:23;29901:7;29886:14;:23::i;:::-;29870:39;;29939:5;29928:16;;:7;:16;;;:51;;;;29972:7;29948:31;;:20;29960:7;29948:11;:20::i;:::-;:31;;;29928:51;:87;;;;29983:32;30000:5;30007:7;29983:16;:32::i;:::-;29928:87;29920:96;;;29676:348;;;;:::o;32668:578::-;32827:4;32800:31;;:23;32815:7;32800:14;:23::i;:::-;:31;;;32792:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32910:1;32896:16;;:2;:16;;;;32888:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32966:39;32987:4;32993:2;32997:7;32966:20;:39::i;:::-;33070:29;33087:1;33091:7;33070:8;:29::i;:::-;33131:1;33112:9;:15;33122:4;33112:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33160:1;33143:9;:13;33153:2;33143:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33191:2;33172:7;:16;33180:7;33172:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33230:7;33226:2;33211:27;;33220:4;33211:27;;;;;;;;;;;;32668:578;;;:::o;30366:110::-;30442:26;30452:2;30456:7;30442:26;;;;;;;;;;;;:9;:26::i;:::-;30366:110;;:::o;45790:173::-;45846:16;45865:6;;;;;;;;;;;45846:25;;45891:8;45882:6;;:17;;;;;;;;;;;;;;;;;;45946:8;45915:40;;45936:8;45915:40;;;;;;;;;;;;45835:128;45790:173;:::o;28754:315::-;28911:28;28921:4;28927:2;28931:7;28911:9;:28::i;:::-;28958:48;28981:4;28987:2;28991:7;29000:5;28958:22;:48::i;:::-;28950:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;28754:315;;;;:::o;47973:114::-;48033:13;48066;48059:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47973:114;:::o;19423:723::-;19479:13;19709:1;19700:5;:10;19696:53;;;19727:10;;;;;;;;;;;;;;;;;;;;;19696:53;19759:12;19774:5;19759:20;;19790:14;19815:78;19830:1;19822:4;:9;19815:78;;19848:8;;;;;:::i;:::-;;;;19879:2;19871:10;;;;;:::i;:::-;;;19815:78;;;19903:19;19935:6;19925:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19903:39;;19953:154;19969:1;19960:5;:10;19953:154;;19997:1;19987:11;;;;;:::i;:::-;;;20064:2;20056:5;:10;;;;:::i;:::-;20043:2;:24;;;;:::i;:::-;20030:39;;20013:6;20020;20013:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;20093:2;20084:11;;;;;:::i;:::-;;;19953:154;;;20131:6;20117:21;;;;;19423:723;;;;:::o;21984:157::-;22069:4;22108:25;22093:40;;;:11;:40;;;;22086:47;;21984:157;;;:::o;39216:589::-;39360:45;39387:4;39393:2;39397:7;39360:26;:45::i;:::-;39438:1;39422:18;;:4;:18;;;39418:187;;;39457:40;39489:7;39457:31;:40::i;:::-;39418:187;;;39527:2;39519:10;;:4;:10;;;39515:90;;39546:47;39579:4;39585:7;39546:32;:47::i;:::-;39515:90;39418:187;39633:1;39619:16;;:2;:16;;;39615:183;;;39652:45;39689:7;39652:36;:45::i;:::-;39615:183;;;39725:4;39719:10;;:2;:10;;;39715:83;;39746:40;39774:2;39778:7;39746:27;:40::i;:::-;39715:83;39615:183;39216:589;;;:::o;30703:321::-;30833:18;30839:2;30843:7;30833:5;:18::i;:::-;30884:54;30915:1;30919:2;30923:7;30932:5;30884:22;:54::i;:::-;30862:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;30703:321;;;:::o;34103:803::-;34258:4;34279:15;:2;:13;;;:15::i;:::-;34275:624;;;34331:2;34315:36;;;34352:12;:10;:12::i;:::-;34366:4;34372:7;34381:5;34315:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34311:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34578:1;34561:6;:13;:18;34557:272;;;34604:60;;;;;;;;;;:::i;:::-;;;;;;;;34557:272;34779:6;34773:13;34764:6;34760:2;34756:15;34749:38;34311:533;34448:45;;;34438:55;;;:6;:55;;;;34431:62;;;;;34275:624;34883:4;34876:11;;34103:803;;;;;;;:::o;35478:126::-;;;;:::o;40528:164::-;40632:10;:17;;;;40605:15;:24;40621:7;40605:24;;;;;;;;;;;:44;;;;40660:10;40676:7;40660:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40528:164;:::o;41319:988::-;41585:22;41635:1;41610:22;41627:4;41610:16;:22::i;:::-;:26;;;;:::i;:::-;41585:51;;41647:18;41668:17;:26;41686:7;41668:26;;;;;;;;;;;;41647:47;;41815:14;41801:10;:28;41797:328;;41846:19;41868:12;:18;41881:4;41868:18;;;;;;;;;;;;;;;:34;41887:14;41868:34;;;;;;;;;;;;41846:56;;41952:11;41919:12;:18;41932:4;41919:18;;;;;;;;;;;;;;;:30;41938:10;41919:30;;;;;;;;;;;:44;;;;42069:10;42036:17;:30;42054:11;42036:30;;;;;;;;;;;:43;;;;41831:294;41797:328;42221:17;:26;42239:7;42221:26;;;;;;;;;;;42214:33;;;42265:12;:18;42278:4;42265:18;;;;;;;;;;;;;;;:34;42284:14;42265:34;;;;;;;;;;;42258:41;;;41400:907;;41319:988;;:::o;42602:1079::-;42855:22;42900:1;42880:10;:17;;;;:21;;;;:::i;:::-;42855:46;;42912:18;42933:15;:24;42949:7;42933:24;;;;;;;;;;;;42912:45;;43284:19;43306:10;43317:14;43306:26;;;;;;;;:::i;:::-;;;;;;;;;;43284:48;;43370:11;43345:10;43356;43345:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;43481:10;43450:15;:28;43466:11;43450:28;;;;;;;;;;;:41;;;;43622:15;:24;43638:7;43622:24;;;;;;;;;;;43615:31;;;43657:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42673:1008;;;42602:1079;:::o;40106:221::-;40191:14;40208:20;40225:2;40208:16;:20::i;:::-;40191:37;;40266:7;40239:12;:16;40252:2;40239:16;;;;;;;;;;;;;;;:24;40256:6;40239:24;;;;;;;;;;;:34;;;;40313:6;40284:17;:26;40302:7;40284:26;;;;;;;;;;;:35;;;;40180:147;40106:221;;:::o;31360:382::-;31454:1;31440:16;;:2;:16;;;;31432:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31513:16;31521:7;31513;:16::i;:::-;31512:17;31504:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31575:45;31604:1;31608:2;31612:7;31575:20;:45::i;:::-;31650:1;31633:9;:13;31643:2;31633:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31681:2;31662:7;:16;31670:7;31662:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31726:7;31722:2;31701:33;;31718:1;31701:33;;;;;;;;;;;;31360:382;;:::o;11148:387::-;11208:4;11416:12;11483:7;11471:20;11463:28;;11526:1;11519:4;:8;11512:15;;;11148:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:179::-;8712:10;8733:46;8775:3;8767:6;8733:46;:::i;:::-;8811:4;8806:3;8802:14;8788:28;;8643:179;;;;:::o;8828:118::-;8915:24;8933:5;8915:24;:::i;:::-;8910:3;8903:37;8828:118;;:::o;8982:732::-;9101:3;9130:54;9178:5;9130:54;:::i;:::-;9200:86;9279:6;9274:3;9200:86;:::i;:::-;9193:93;;9310:56;9360:5;9310:56;:::i;:::-;9389:7;9420:1;9405:284;9430:6;9427:1;9424:13;9405:284;;;9506:6;9500:13;9533:63;9592:3;9577:13;9533:63;:::i;:::-;9526:70;;9619:60;9672:6;9619:60;:::i;:::-;9609:70;;9465:224;9452:1;9449;9445:9;9440:14;;9405:284;;;9409:14;9705:3;9698:10;;9106:608;;;8982:732;;;;:::o;9720:109::-;9801:21;9816:5;9801:21;:::i;:::-;9796:3;9789:34;9720:109;;:::o;9835:360::-;9921:3;9949:38;9981:5;9949:38;:::i;:::-;10003:70;10066:6;10061:3;10003:70;:::i;:::-;9996:77;;10082:52;10127:6;10122:3;10115:4;10108:5;10104:16;10082:52;:::i;:::-;10159:29;10181:6;10159:29;:::i;:::-;10154:3;10150:39;10143:46;;9925:270;9835:360;;;;:::o;10201:364::-;10289:3;10317:39;10350:5;10317:39;:::i;:::-;10372:71;10436:6;10431:3;10372:71;:::i;:::-;10365:78;;10452:52;10497:6;10492:3;10485:4;10478:5;10474:16;10452:52;:::i;:::-;10529:29;10551:6;10529:29;:::i;:::-;10524:3;10520:39;10513:46;;10293:272;10201:364;;;;:::o;10571:377::-;10677:3;10705:39;10738:5;10705:39;:::i;:::-;10760:89;10842:6;10837:3;10760:89;:::i;:::-;10753:96;;10858:52;10903:6;10898:3;10891:4;10884:5;10880:16;10858:52;:::i;:::-;10935:6;10930:3;10926:16;10919:23;;10681:267;10571:377;;;;:::o;10954:366::-;11096:3;11117:67;11181:2;11176:3;11117:67;:::i;:::-;11110:74;;11193:93;11282:3;11193:93;:::i;:::-;11311:2;11306:3;11302:12;11295:19;;10954:366;;;:::o;11326:::-;11468:3;11489:67;11553:2;11548:3;11489:67;:::i;:::-;11482:74;;11565:93;11654:3;11565:93;:::i;:::-;11683:2;11678:3;11674:12;11667:19;;11326:366;;;:::o;11698:::-;11840:3;11861:67;11925:2;11920:3;11861:67;:::i;:::-;11854:74;;11937:93;12026:3;11937:93;:::i;:::-;12055:2;12050:3;12046:12;12039:19;;11698:366;;;:::o;12070:::-;12212:3;12233:67;12297:2;12292:3;12233:67;:::i;:::-;12226:74;;12309:93;12398:3;12309:93;:::i;:::-;12427:2;12422:3;12418:12;12411:19;;12070:366;;;:::o;12442:::-;12584:3;12605:67;12669:2;12664:3;12605:67;:::i;:::-;12598:74;;12681:93;12770:3;12681:93;:::i;:::-;12799:2;12794:3;12790:12;12783:19;;12442:366;;;:::o;12814:::-;12956:3;12977:67;13041:2;13036:3;12977:67;:::i;:::-;12970:74;;13053:93;13142:3;13053:93;:::i;:::-;13171:2;13166:3;13162:12;13155:19;;12814:366;;;:::o;13186:::-;13328:3;13349:67;13413:2;13408:3;13349:67;:::i;:::-;13342:74;;13425:93;13514:3;13425:93;:::i;:::-;13543:2;13538:3;13534:12;13527:19;;13186:366;;;:::o;13558:::-;13700:3;13721:67;13785:2;13780:3;13721:67;:::i;:::-;13714:74;;13797:93;13886:3;13797:93;:::i;:::-;13915:2;13910:3;13906:12;13899:19;;13558:366;;;:::o;13930:::-;14072:3;14093:67;14157:2;14152:3;14093:67;:::i;:::-;14086:74;;14169:93;14258:3;14169:93;:::i;:::-;14287:2;14282:3;14278:12;14271:19;;13930:366;;;:::o;14302:::-;14444:3;14465:67;14529:2;14524:3;14465:67;:::i;:::-;14458:74;;14541:93;14630:3;14541:93;:::i;:::-;14659:2;14654:3;14650:12;14643:19;;14302:366;;;:::o;14674:::-;14816:3;14837:67;14901:2;14896:3;14837:67;:::i;:::-;14830:74;;14913:93;15002:3;14913:93;:::i;:::-;15031:2;15026:3;15022:12;15015:19;;14674:366;;;:::o;15046:::-;15188:3;15209:67;15273:2;15268:3;15209:67;:::i;:::-;15202:74;;15285:93;15374:3;15285:93;:::i;:::-;15403:2;15398:3;15394:12;15387:19;;15046:366;;;:::o;15418:::-;15560:3;15581:67;15645:2;15640:3;15581:67;:::i;:::-;15574:74;;15657:93;15746:3;15657:93;:::i;:::-;15775:2;15770:3;15766:12;15759:19;;15418:366;;;:::o;15790:::-;15932:3;15953:67;16017:2;16012:3;15953:67;:::i;:::-;15946:74;;16029:93;16118:3;16029:93;:::i;:::-;16147:2;16142:3;16138:12;16131:19;;15790:366;;;:::o;16162:::-;16304:3;16325:67;16389:2;16384:3;16325:67;:::i;:::-;16318:74;;16401:93;16490:3;16401:93;:::i;:::-;16519:2;16514:3;16510:12;16503:19;;16162:366;;;:::o;16534:::-;16676:3;16697:67;16761:2;16756:3;16697:67;:::i;:::-;16690:74;;16773:93;16862:3;16773:93;:::i;:::-;16891:2;16886:3;16882:12;16875:19;;16534:366;;;:::o;16906:::-;17048:3;17069:67;17133:2;17128:3;17069:67;:::i;:::-;17062:74;;17145:93;17234:3;17145:93;:::i;:::-;17263:2;17258:3;17254:12;17247:19;;16906:366;;;:::o;17278:::-;17420:3;17441:67;17505:2;17500:3;17441:67;:::i;:::-;17434:74;;17517:93;17606:3;17517:93;:::i;:::-;17635:2;17630:3;17626:12;17619:19;;17278:366;;;:::o;17650:::-;17792:3;17813:67;17877:2;17872:3;17813:67;:::i;:::-;17806:74;;17889:93;17978:3;17889:93;:::i;:::-;18007:2;18002:3;17998:12;17991:19;;17650:366;;;:::o;18022:::-;18164:3;18185:67;18249:2;18244:3;18185:67;:::i;:::-;18178:74;;18261:93;18350:3;18261:93;:::i;:::-;18379:2;18374:3;18370:12;18363:19;;18022:366;;;:::o;18394:::-;18536:3;18557:67;18621:2;18616:3;18557:67;:::i;:::-;18550:74;;18633:93;18722:3;18633:93;:::i;:::-;18751:2;18746:3;18742:12;18735:19;;18394:366;;;:::o;18766:::-;18908:3;18929:67;18993:2;18988:3;18929:67;:::i;:::-;18922:74;;19005:93;19094:3;19005:93;:::i;:::-;19123:2;19118:3;19114:12;19107:19;;18766:366;;;:::o;19138:::-;19280:3;19301:67;19365:2;19360:3;19301:67;:::i;:::-;19294:74;;19377:93;19466:3;19377:93;:::i;:::-;19495:2;19490:3;19486:12;19479:19;;19138:366;;;:::o;19510:::-;19652:3;19673:67;19737:2;19732:3;19673:67;:::i;:::-;19666:74;;19749:93;19838:3;19749:93;:::i;:::-;19867:2;19862:3;19858:12;19851:19;;19510:366;;;:::o;19882:::-;20024:3;20045:67;20109:2;20104:3;20045:67;:::i;:::-;20038:74;;20121:93;20210:3;20121:93;:::i;:::-;20239:2;20234:3;20230:12;20223:19;;19882:366;;;:::o;20254:::-;20396:3;20417:67;20481:2;20476:3;20417:67;:::i;:::-;20410:74;;20493:93;20582:3;20493:93;:::i;:::-;20611:2;20606:3;20602:12;20595:19;;20254:366;;;:::o;20626:::-;20768:3;20789:67;20853:2;20848:3;20789:67;:::i;:::-;20782:74;;20865:93;20954:3;20865:93;:::i;:::-;20983:2;20978:3;20974:12;20967:19;;20626:366;;;:::o;20998:::-;21140:3;21161:67;21225:2;21220:3;21161:67;:::i;:::-;21154:74;;21237:93;21326:3;21237:93;:::i;:::-;21355:2;21350:3;21346:12;21339:19;;20998:366;;;:::o;21370:::-;21512:3;21533:67;21597:2;21592:3;21533:67;:::i;:::-;21526:74;;21609:93;21698:3;21609:93;:::i;:::-;21727:2;21722:3;21718:12;21711:19;;21370:366;;;:::o;21742:::-;21884:3;21905:67;21969:2;21964:3;21905:67;:::i;:::-;21898:74;;21981:93;22070:3;21981:93;:::i;:::-;22099:2;22094:3;22090:12;22083:19;;21742:366;;;:::o;22114:::-;22256:3;22277:67;22341:2;22336:3;22277:67;:::i;:::-;22270:74;;22353:93;22442:3;22353:93;:::i;:::-;22471:2;22466:3;22462:12;22455:19;;22114:366;;;:::o;22486:::-;22628:3;22649:67;22713:2;22708:3;22649:67;:::i;:::-;22642:74;;22725:93;22814:3;22725:93;:::i;:::-;22843:2;22838:3;22834:12;22827:19;;22486:366;;;:::o;22858:::-;23000:3;23021:67;23085:2;23080:3;23021:67;:::i;:::-;23014:74;;23097:93;23186:3;23097:93;:::i;:::-;23215:2;23210:3;23206:12;23199:19;;22858:366;;;:::o;23230:::-;23372:3;23393:67;23457:2;23452:3;23393:67;:::i;:::-;23386:74;;23469:93;23558:3;23469:93;:::i;:::-;23587:2;23582:3;23578:12;23571:19;;23230:366;;;:::o;23602:::-;23744:3;23765:67;23829:2;23824:3;23765:67;:::i;:::-;23758:74;;23841:93;23930:3;23841:93;:::i;:::-;23959:2;23954:3;23950:12;23943:19;;23602:366;;;:::o;23974:::-;24116:3;24137:67;24201:2;24196:3;24137:67;:::i;:::-;24130:74;;24213:93;24302:3;24213:93;:::i;:::-;24331:2;24326:3;24322:12;24315:19;;23974:366;;;:::o;24346:108::-;24423:24;24441:5;24423:24;:::i;:::-;24418:3;24411:37;24346:108;;:::o;24460:118::-;24547:24;24565:5;24547:24;:::i;:::-;24542:3;24535:37;24460:118;;:::o;24584:435::-;24764:3;24786:95;24877:3;24868:6;24786:95;:::i;:::-;24779:102;;24898:95;24989:3;24980:6;24898:95;:::i;:::-;24891:102;;25010:3;25003:10;;24584:435;;;;;:::o;25025:222::-;25118:4;25156:2;25145:9;25141:18;25133:26;;25169:71;25237:1;25226:9;25222:17;25213:6;25169:71;:::i;:::-;25025:222;;;;:::o;25253:640::-;25448:4;25486:3;25475:9;25471:19;25463:27;;25500:71;25568:1;25557:9;25553:17;25544:6;25500:71;:::i;:::-;25581:72;25649:2;25638:9;25634:18;25625:6;25581:72;:::i;:::-;25663;25731:2;25720:9;25716:18;25707:6;25663:72;:::i;:::-;25782:9;25776:4;25772:20;25767:2;25756:9;25752:18;25745:48;25810:76;25881:4;25872:6;25810:76;:::i;:::-;25802:84;;25253:640;;;;;;;:::o;25899:373::-;26042:4;26080:2;26069:9;26065:18;26057:26;;26129:9;26123:4;26119:20;26115:1;26104:9;26100:17;26093:47;26157:108;26260:4;26251:6;26157:108;:::i;:::-;26149:116;;25899:373;;;;:::o;26278:210::-;26365:4;26403:2;26392:9;26388:18;26380:26;;26416:65;26478:1;26467:9;26463:17;26454:6;26416:65;:::i;:::-;26278:210;;;;:::o;26494:313::-;26607:4;26645:2;26634:9;26630:18;26622:26;;26694:9;26688:4;26684:20;26680:1;26669:9;26665:17;26658:47;26722:78;26795:4;26786:6;26722:78;:::i;:::-;26714:86;;26494:313;;;;:::o;26813:419::-;26979:4;27017:2;27006:9;27002:18;26994:26;;27066:9;27060:4;27056:20;27052:1;27041:9;27037:17;27030:47;27094:131;27220:4;27094:131;:::i;:::-;27086:139;;26813:419;;;:::o;27238:::-;27404:4;27442:2;27431:9;27427:18;27419:26;;27491:9;27485:4;27481:20;27477:1;27466:9;27462:17;27455:47;27519:131;27645:4;27519:131;:::i;:::-;27511:139;;27238:419;;;:::o;27663:::-;27829:4;27867:2;27856:9;27852:18;27844:26;;27916:9;27910:4;27906:20;27902:1;27891:9;27887:17;27880:47;27944:131;28070:4;27944:131;:::i;:::-;27936:139;;27663:419;;;:::o;28088:::-;28254:4;28292:2;28281:9;28277:18;28269:26;;28341:9;28335:4;28331:20;28327:1;28316:9;28312:17;28305:47;28369:131;28495:4;28369:131;:::i;:::-;28361:139;;28088:419;;;:::o;28513:::-;28679:4;28717:2;28706:9;28702:18;28694:26;;28766:9;28760:4;28756:20;28752:1;28741:9;28737:17;28730:47;28794:131;28920:4;28794:131;:::i;:::-;28786:139;;28513:419;;;:::o;28938:::-;29104:4;29142:2;29131:9;29127:18;29119:26;;29191:9;29185:4;29181:20;29177:1;29166:9;29162:17;29155:47;29219:131;29345:4;29219:131;:::i;:::-;29211:139;;28938:419;;;:::o;29363:::-;29529:4;29567:2;29556:9;29552:18;29544:26;;29616:9;29610:4;29606:20;29602:1;29591:9;29587:17;29580:47;29644:131;29770:4;29644:131;:::i;:::-;29636:139;;29363:419;;;:::o;29788:::-;29954:4;29992:2;29981:9;29977:18;29969:26;;30041:9;30035:4;30031:20;30027:1;30016:9;30012:17;30005:47;30069:131;30195:4;30069:131;:::i;:::-;30061:139;;29788:419;;;:::o;30213:::-;30379:4;30417:2;30406:9;30402:18;30394:26;;30466:9;30460:4;30456:20;30452:1;30441:9;30437:17;30430:47;30494:131;30620:4;30494:131;:::i;:::-;30486:139;;30213:419;;;:::o;30638:::-;30804:4;30842:2;30831:9;30827:18;30819:26;;30891:9;30885:4;30881:20;30877:1;30866:9;30862:17;30855:47;30919:131;31045:4;30919:131;:::i;:::-;30911:139;;30638:419;;;:::o;31063:::-;31229:4;31267:2;31256:9;31252:18;31244:26;;31316:9;31310:4;31306:20;31302:1;31291:9;31287:17;31280:47;31344:131;31470:4;31344:131;:::i;:::-;31336:139;;31063:419;;;:::o;31488:::-;31654:4;31692:2;31681:9;31677:18;31669:26;;31741:9;31735:4;31731:20;31727:1;31716:9;31712:17;31705:47;31769:131;31895:4;31769:131;:::i;:::-;31761:139;;31488:419;;;:::o;31913:::-;32079:4;32117:2;32106:9;32102:18;32094:26;;32166:9;32160:4;32156:20;32152:1;32141:9;32137:17;32130:47;32194:131;32320:4;32194:131;:::i;:::-;32186:139;;31913:419;;;:::o;32338:::-;32504:4;32542:2;32531:9;32527:18;32519:26;;32591:9;32585:4;32581:20;32577:1;32566:9;32562:17;32555:47;32619:131;32745:4;32619:131;:::i;:::-;32611:139;;32338:419;;;:::o;32763:::-;32929:4;32967:2;32956:9;32952:18;32944:26;;33016:9;33010:4;33006:20;33002:1;32991:9;32987:17;32980:47;33044:131;33170:4;33044:131;:::i;:::-;33036:139;;32763:419;;;:::o;33188:::-;33354:4;33392:2;33381:9;33377:18;33369:26;;33441:9;33435:4;33431:20;33427:1;33416:9;33412:17;33405:47;33469:131;33595:4;33469:131;:::i;:::-;33461:139;;33188:419;;;:::o;33613:::-;33779:4;33817:2;33806:9;33802:18;33794:26;;33866:9;33860:4;33856:20;33852:1;33841:9;33837:17;33830:47;33894:131;34020:4;33894:131;:::i;:::-;33886:139;;33613:419;;;:::o;34038:::-;34204:4;34242:2;34231:9;34227:18;34219:26;;34291:9;34285:4;34281:20;34277:1;34266:9;34262:17;34255:47;34319:131;34445:4;34319:131;:::i;:::-;34311:139;;34038:419;;;:::o;34463:::-;34629:4;34667:2;34656:9;34652:18;34644:26;;34716:9;34710:4;34706:20;34702:1;34691:9;34687:17;34680:47;34744:131;34870:4;34744:131;:::i;:::-;34736:139;;34463:419;;;:::o;34888:::-;35054:4;35092:2;35081:9;35077:18;35069:26;;35141:9;35135:4;35131:20;35127:1;35116:9;35112:17;35105:47;35169:131;35295:4;35169:131;:::i;:::-;35161:139;;34888:419;;;:::o;35313:::-;35479:4;35517:2;35506:9;35502:18;35494:26;;35566:9;35560:4;35556:20;35552:1;35541:9;35537:17;35530:47;35594:131;35720:4;35594:131;:::i;:::-;35586:139;;35313:419;;;:::o;35738:::-;35904:4;35942:2;35931:9;35927:18;35919:26;;35991:9;35985:4;35981:20;35977:1;35966:9;35962:17;35955:47;36019:131;36145:4;36019:131;:::i;:::-;36011:139;;35738:419;;;:::o;36163:::-;36329:4;36367:2;36356:9;36352:18;36344:26;;36416:9;36410:4;36406:20;36402:1;36391:9;36387:17;36380:47;36444:131;36570:4;36444:131;:::i;:::-;36436:139;;36163:419;;;:::o;36588:::-;36754:4;36792:2;36781:9;36777:18;36769:26;;36841:9;36835:4;36831:20;36827:1;36816:9;36812:17;36805:47;36869:131;36995:4;36869:131;:::i;:::-;36861:139;;36588:419;;;:::o;37013:::-;37179:4;37217:2;37206:9;37202:18;37194:26;;37266:9;37260:4;37256:20;37252:1;37241:9;37237:17;37230:47;37294:131;37420:4;37294:131;:::i;:::-;37286:139;;37013:419;;;:::o;37438:::-;37604:4;37642:2;37631:9;37627:18;37619:26;;37691:9;37685:4;37681:20;37677:1;37666:9;37662:17;37655:47;37719:131;37845:4;37719:131;:::i;:::-;37711:139;;37438:419;;;:::o;37863:::-;38029:4;38067:2;38056:9;38052:18;38044:26;;38116:9;38110:4;38106:20;38102:1;38091:9;38087:17;38080:47;38144:131;38270:4;38144:131;:::i;:::-;38136:139;;37863:419;;;:::o;38288:::-;38454:4;38492:2;38481:9;38477:18;38469:26;;38541:9;38535:4;38531:20;38527:1;38516:9;38512:17;38505:47;38569:131;38695:4;38569:131;:::i;:::-;38561:139;;38288:419;;;:::o;38713:::-;38879:4;38917:2;38906:9;38902:18;38894:26;;38966:9;38960:4;38956:20;38952:1;38941:9;38937:17;38930:47;38994:131;39120:4;38994:131;:::i;:::-;38986:139;;38713:419;;;:::o;39138:::-;39304:4;39342:2;39331:9;39327:18;39319:26;;39391:9;39385:4;39381:20;39377:1;39366:9;39362:17;39355:47;39419:131;39545:4;39419:131;:::i;:::-;39411:139;;39138:419;;;:::o;39563:::-;39729:4;39767:2;39756:9;39752:18;39744:26;;39816:9;39810:4;39806:20;39802:1;39791:9;39787:17;39780:47;39844:131;39970:4;39844:131;:::i;:::-;39836:139;;39563:419;;;:::o;39988:::-;40154:4;40192:2;40181:9;40177:18;40169:26;;40241:9;40235:4;40231:20;40227:1;40216:9;40212:17;40205:47;40269:131;40395:4;40269:131;:::i;:::-;40261:139;;39988:419;;;:::o;40413:::-;40579:4;40617:2;40606:9;40602:18;40594:26;;40666:9;40660:4;40656:20;40652:1;40641:9;40637:17;40630:47;40694:131;40820:4;40694:131;:::i;:::-;40686:139;;40413:419;;;:::o;40838:::-;41004:4;41042:2;41031:9;41027:18;41019:26;;41091:9;41085:4;41081:20;41077:1;41066:9;41062:17;41055:47;41119:131;41245:4;41119:131;:::i;:::-;41111:139;;40838:419;;;:::o;41263:::-;41429:4;41467:2;41456:9;41452:18;41444:26;;41516:9;41510:4;41506:20;41502:1;41491:9;41487:17;41480:47;41544:131;41670:4;41544:131;:::i;:::-;41536:139;;41263:419;;;:::o;41688:::-;41854:4;41892:2;41881:9;41877:18;41869:26;;41941:9;41935:4;41931:20;41927:1;41916:9;41912:17;41905:47;41969:131;42095:4;41969:131;:::i;:::-;41961:139;;41688:419;;;:::o;42113:222::-;42206:4;42244:2;42233:9;42229:18;42221:26;;42257:71;42325:1;42314:9;42310:17;42301:6;42257:71;:::i;:::-;42113:222;;;;:::o;42341:129::-;42375:6;42402:20;;:::i;:::-;42392:30;;42431:33;42459:4;42451:6;42431:33;:::i;:::-;42341:129;;;:::o;42476:75::-;42509:6;42542:2;42536:9;42526:19;;42476:75;:::o;42557:307::-;42618:4;42708:18;42700:6;42697:30;42694:56;;;42730:18;;:::i;:::-;42694:56;42768:29;42790:6;42768:29;:::i;:::-;42760:37;;42852:4;42846;42842:15;42834:23;;42557:307;;;:::o;42870:308::-;42932:4;43022:18;43014:6;43011:30;43008:56;;;43044:18;;:::i;:::-;43008:56;43082:29;43104:6;43082:29;:::i;:::-;43074:37;;43166:4;43160;43156:15;43148:23;;42870:308;;;:::o;43184:132::-;43251:4;43274:3;43266:11;;43304:4;43299:3;43295:14;43287:22;;43184:132;;;:::o;43322:114::-;43389:6;43423:5;43417:12;43407:22;;43322:114;;;:::o;43442:98::-;43493:6;43527:5;43521:12;43511:22;;43442:98;;;:::o;43546:99::-;43598:6;43632:5;43626:12;43616:22;;43546:99;;;:::o;43651:113::-;43721:4;43753;43748:3;43744:14;43736:22;;43651:113;;;:::o;43770:184::-;43869:11;43903:6;43898:3;43891:19;43943:4;43938:3;43934:14;43919:29;;43770:184;;;;:::o;43960:168::-;44043:11;44077:6;44072:3;44065:19;44117:4;44112:3;44108:14;44093:29;;43960:168;;;;:::o;44134:169::-;44218:11;44252:6;44247:3;44240:19;44292:4;44287:3;44283:14;44268:29;;44134:169;;;;:::o;44309:148::-;44411:11;44448:3;44433:18;;44309:148;;;;:::o;44463:305::-;44503:3;44522:20;44540:1;44522:20;:::i;:::-;44517:25;;44556:20;44574:1;44556:20;:::i;:::-;44551:25;;44710:1;44642:66;44638:74;44635:1;44632:81;44629:107;;;44716:18;;:::i;:::-;44629:107;44760:1;44757;44753:9;44746:16;;44463:305;;;;:::o;44774:185::-;44814:1;44831:20;44849:1;44831:20;:::i;:::-;44826:25;;44865:20;44883:1;44865:20;:::i;:::-;44860:25;;44904:1;44894:35;;44909:18;;:::i;:::-;44894:35;44951:1;44948;44944:9;44939:14;;44774:185;;;;:::o;44965:348::-;45005:7;45028:20;45046:1;45028:20;:::i;:::-;45023:25;;45062:20;45080:1;45062:20;:::i;:::-;45057:25;;45250:1;45182:66;45178:74;45175:1;45172:81;45167:1;45160:9;45153:17;45149:105;45146:131;;;45257:18;;:::i;:::-;45146:131;45305:1;45302;45298:9;45287:20;;44965:348;;;;:::o;45319:191::-;45359:4;45379:20;45397:1;45379:20;:::i;:::-;45374:25;;45413:20;45431:1;45413:20;:::i;:::-;45408:25;;45452:1;45449;45446:8;45443:34;;;45457:18;;:::i;:::-;45443:34;45502:1;45499;45495:9;45487:17;;45319:191;;;;:::o;45516:96::-;45553:7;45582:24;45600:5;45582:24;:::i;:::-;45571:35;;45516:96;;;:::o;45618:90::-;45652:7;45695:5;45688:13;45681:21;45670:32;;45618:90;;;:::o;45714:149::-;45750:7;45790:66;45783:5;45779:78;45768:89;;45714:149;;;:::o;45869:126::-;45906:7;45946:42;45939:5;45935:54;45924:65;;45869:126;;;:::o;46001:77::-;46038:7;46067:5;46056:16;;46001:77;;;:::o;46084:154::-;46168:6;46163:3;46158;46145:30;46230:1;46221:6;46216:3;46212:16;46205:27;46084:154;;;:::o;46244:307::-;46312:1;46322:113;46336:6;46333:1;46330:13;46322:113;;;46421:1;46416:3;46412:11;46406:18;46402:1;46397:3;46393:11;46386:39;46358:2;46355:1;46351:10;46346:15;;46322:113;;;46453:6;46450:1;46447:13;46444:101;;;46533:1;46524:6;46519:3;46515:16;46508:27;46444:101;46293:258;46244:307;;;:::o;46557:320::-;46601:6;46638:1;46632:4;46628:12;46618:22;;46685:1;46679:4;46675:12;46706:18;46696:81;;46762:4;46754:6;46750:17;46740:27;;46696:81;46824:2;46816:6;46813:14;46793:18;46790:38;46787:84;;;46843:18;;:::i;:::-;46787:84;46608:269;46557:320;;;:::o;46883:281::-;46966:27;46988:4;46966:27;:::i;:::-;46958:6;46954:40;47096:6;47084:10;47081:22;47060:18;47048:10;47045:34;47042:62;47039:88;;;47107:18;;:::i;:::-;47039:88;47147:10;47143:2;47136:22;46926:238;46883:281;;:::o;47170:233::-;47209:3;47232:24;47250:5;47232:24;:::i;:::-;47223:33;;47278:66;47271:5;47268:77;47265:103;;;47348:18;;:::i;:::-;47265:103;47395:1;47388:5;47384:13;47377:20;;47170:233;;;:::o;47409:176::-;47441:1;47458:20;47476:1;47458:20;:::i;:::-;47453:25;;47492:20;47510:1;47492:20;:::i;:::-;47487:25;;47531:1;47521:35;;47536:18;;:::i;:::-;47521:35;47577:1;47574;47570:9;47565:14;;47409:176;;;;:::o;47591:180::-;47639:77;47636:1;47629:88;47736:4;47733:1;47726:15;47760:4;47757:1;47750:15;47777:180;47825:77;47822:1;47815:88;47922:4;47919:1;47912:15;47946:4;47943:1;47936:15;47963:180;48011:77;48008:1;48001:88;48108:4;48105:1;48098:15;48132:4;48129:1;48122:15;48149:180;48197:77;48194:1;48187:88;48294:4;48291:1;48284:15;48318:4;48315:1;48308:15;48335:180;48383:77;48380:1;48373:88;48480:4;48477:1;48470:15;48504:4;48501:1;48494:15;48521:180;48569:77;48566:1;48559:88;48666:4;48663:1;48656:15;48690:4;48687:1;48680:15;48707:117;48816:1;48813;48806:12;48830:117;48939:1;48936;48929:12;48953:117;49062:1;49059;49052:12;49076:117;49185:1;49182;49175:12;49199:117;49308:1;49305;49298:12;49322:117;49431:1;49428;49421:12;49445:102;49486:6;49537:2;49533:7;49528:2;49521:5;49517:14;49513:28;49503:38;;49445:102;;;:::o;49553:162::-;49693:14;49689:1;49681:6;49677:14;49670:38;49553:162;:::o;49721:182::-;49861:34;49857:1;49849:6;49845:14;49838:58;49721:182;:::o;49909:176::-;50049:28;50045:1;50037:6;50033:14;50026:52;49909:176;:::o;50091:230::-;50231:34;50227:1;50219:6;50215:14;50208:58;50300:13;50295:2;50287:6;50283:15;50276:38;50091:230;:::o;50327:237::-;50467:34;50463:1;50455:6;50451:14;50444:58;50536:20;50531:2;50523:6;50519:15;50512:45;50327:237;:::o;50570:233::-;50710:34;50706:1;50698:6;50694:14;50687:58;50779:16;50774:2;50766:6;50762:15;50755:41;50570:233;:::o;50809:245::-;50949:34;50945:1;50937:6;50933:14;50926:58;51018:28;51013:2;51005:6;51001:15;50994:53;50809:245;:::o;51060:225::-;51200:34;51196:1;51188:6;51184:14;51177:58;51269:8;51264:2;51256:6;51252:15;51245:33;51060:225;:::o;51291:178::-;51431:30;51427:1;51419:6;51415:14;51408:54;51291:178;:::o;51475:164::-;51615:16;51611:1;51603:6;51599:14;51592:40;51475:164;:::o;51645:223::-;51785:34;51781:1;51773:6;51769:14;51762:58;51854:6;51849:2;51841:6;51837:15;51830:31;51645:223;:::o;51874:175::-;52014:27;52010:1;52002:6;51998:14;51991:51;51874:175;:::o;52055:231::-;52195:34;52191:1;52183:6;52179:14;52172:58;52264:14;52259:2;52251:6;52247:15;52240:39;52055:231;:::o;52292:165::-;52432:17;52428:1;52420:6;52416:14;52409:41;52292:165;:::o;52463:232::-;52603:34;52599:1;52591:6;52587:14;52580:58;52672:15;52667:2;52659:6;52655:15;52648:40;52463:232;:::o;52701:180::-;52841:32;52837:1;52829:6;52825:14;52818:56;52701:180;:::o;52887:243::-;53027:34;53023:1;53015:6;53011:14;53004:58;53096:26;53091:2;53083:6;53079:15;53072:51;52887:243;:::o;53136:177::-;53276:29;53272:1;53264:6;53260:14;53253:53;53136:177;:::o;53319:229::-;53459:34;53455:1;53447:6;53443:14;53436:58;53528:12;53523:2;53515:6;53511:15;53504:37;53319:229;:::o;53554:228::-;53694:34;53690:1;53682:6;53678:14;53671:58;53763:11;53758:2;53750:6;53746:15;53739:36;53554:228;:::o;53788:182::-;53928:34;53924:1;53916:6;53912:14;53905:58;53788:182;:::o;53976:161::-;54116:13;54112:1;54104:6;54100:14;54093:37;53976:161;:::o;54143:231::-;54283:34;54279:1;54271:6;54267:14;54260:58;54352:14;54347:2;54339:6;54335:15;54328:39;54143:231;:::o;54380:235::-;54520:34;54516:1;54508:6;54504:14;54497:58;54589:18;54584:2;54576:6;54572:15;54565:43;54380:235;:::o;54621:182::-;54761:34;54757:1;54749:6;54745:14;54738:58;54621:182;:::o;54809:228::-;54949:34;54945:1;54937:6;54933:14;54926:58;55018:11;55013:2;55005:6;55001:15;54994:36;54809:228;:::o;55043:234::-;55183:34;55179:1;55171:6;55167:14;55160:58;55252:17;55247:2;55239:6;55235:15;55228:42;55043:234;:::o;55283:220::-;55423:34;55419:1;55411:6;55407:14;55400:58;55492:3;55487:2;55479:6;55475:15;55468:28;55283:220;:::o;55509:223::-;55649:34;55645:1;55637:6;55633:14;55626:58;55718:6;55713:2;55705:6;55701:15;55694:31;55509:223;:::o;55738:236::-;55878:34;55874:1;55866:6;55862:14;55855:58;55947:19;55942:2;55934:6;55930:15;55923:44;55738:236;:::o;55980:231::-;56120:34;56116:1;56108:6;56104:14;56097:58;56189:14;56184:2;56176:6;56172:15;56165:39;55980:231;:::o;56217:174::-;56357:26;56353:1;56345:6;56341:14;56334:50;56217:174;:::o;56397:234::-;56537:34;56533:1;56525:6;56521:14;56514:58;56606:17;56601:2;56593:6;56589:15;56582:42;56397:234;:::o;56637:::-;56777:34;56773:1;56765:6;56761:14;56754:58;56846:17;56841:2;56833:6;56829:15;56822:42;56637:234;:::o;56877:171::-;57017:23;57013:1;57005:6;57001:14;56994:47;56877:171;:::o;57054:236::-;57194:34;57190:1;57182:6;57178:14;57171:58;57263:19;57258:2;57250:6;57246:15;57239:44;57054:236;:::o;57296:122::-;57369:24;57387:5;57369:24;:::i;:::-;57362:5;57359:35;57349:63;;57408:1;57405;57398:12;57349:63;57296:122;:::o;57424:116::-;57494:21;57509:5;57494:21;:::i;:::-;57487:5;57484:32;57474:60;;57530:1;57527;57520:12;57474:60;57424:116;:::o;57546:120::-;57618:23;57635:5;57618:23;:::i;:::-;57611:5;57608:34;57598:62;;57656:1;57653;57646:12;57598:62;57546:120;:::o;57672:122::-;57745:24;57763:5;57745:24;:::i;:::-;57738:5;57735:35;57725:63;;57784:1;57781;57774:12;57725:63;57672:122;:::o
Swarm Source
ipfs://2d0149f007d979ccc07315aca5606dff5e07790462aa7710006fd1b54fbef329
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.