Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
379 PH
Holders
135
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PHLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PartyHardNFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-23 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: contracts/PartyHardNFT.sol pragma solidity >=0.7.0 <0.9.0; contract PartyHardNFT is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; string public uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public cost = 0.03 ether; uint256 public maxSupply = 8888; uint256 public maxMintAmountPerTx = 5; uint256 public nftPerWhitelistedAddress = 3; bool public paused = true; bool public revealed = false; bool public onlyWhitelisted = true; address[] public whitelistedAddresses; constructor() ERC721("PartyHardNFT", "PH") { setHiddenMetadataUri("ipfs://QmdEW75KUtFHy7q3hAoPEpR1dDMGBatoxFQXSg8M2kGnxb/hidden.json"); } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function totalSupply() public view returns (uint256) { return supply.current(); } function setOnlyWhitelisted(bool _state) public onlyOwner { onlyWhitelisted = _state; } function setNftPerWhitelistedAddress(uint256 _limit) public onlyOwner { nftPerWhitelistedAddress = _limit; } function whiteListUsers(address[] calldata _users) public onlyOwner { delete whitelistedAddresses; whitelistedAddresses = _users; } function isWhitelisted(address _user) public view returns (bool) { for(uint256 i = 0; i < whitelistedAddresses.length; i++) { if (whitelistedAddresses[i] == _user) { return true; } } return false; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(!paused, "The contract is paused!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); if (onlyWhitelisted) { require(isWhitelisted(msg.sender), "Address is not whitelisted"); uint256 ownerTokenCount = balanceOf(msg.sender); require(ownerTokenCount < nftPerWhitelistedAddress); } _mintLoop(msg.sender, _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _mintLoop(_receiver, _mintAmount); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function _mintLoop(address _receiver, uint256 _mintAmount) internal { for (uint256 i = 0; i < _mintAmount; i++) { supply.increment(); _safeMint(_receiver, supply.current()); } } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerWhitelistedAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerWhitelistedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whiteListUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600890805190602001906200002b92919062000387565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200007992919062000387565b50666a94d74f430000600b556122b8600c556005600d556003600e556001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff021916908315150217905550348015620000f357600080fd5b506040518060400160405280600c81526020017f5061727479486172644e465400000000000000000000000000000000000000008152506040518060400160405280600281526020017f504800000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200017892919062000387565b5080600190805190602001906200019192919062000387565b505050620001b4620001a8620001e460201b60201c565b620001ec60201b60201c565b620001de60405180608001604052806041815260200162004ddc60419139620002b260201b60201c565b6200051f565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002c2620001e460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e86200035d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000338906200045e565b60405180910390fd5b80600a90805190602001906200035992919062000387565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003959062000491565b90600052602060002090601f016020900481019282620003b9576000855562000405565b82601f10620003d457805160ff191683800117855562000405565b8280016001018555821562000405579182015b8281111562000404578251825591602001919060010190620003e7565b5b50905062000414919062000418565b5090565b5b808211156200043357600081600090555060010162000419565b5090565b60006200044660208362000480565b91506200045382620004f6565b602082019050919050565b60006020820190508181036000830152620004798162000437565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004aa57607f821691505b60208210811415620004c157620004c0620004c7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6148ad806200052f6000396000f3fe60806040526004361061025c5760003560e01c80636352211e11610144578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd146108c3578063d5abeb0114610900578063e0a808531461092b578063e985e9c514610954578063efbd73f414610991578063f2fde38b146109ba5761025c565b8063a22cb465146107e0578063a45ba8e714610809578063b071401b14610834578063b88d4fde1461085d578063ba4e5c49146108865761025c565b80637ec4a659116101085780637ec4a659146106ef5780638da5cb5b1461071857806394354fd01461074357806395d89b411461076e5780639c70b51214610799578063a0712d68146107c45761025c565b80636352211e1461060a5780636a021a3e1461064757806370a0823114610672578063715018a6146106af5780637160f70f146106c65761025c565b80633c952764116101dd578063475fda0e116101a1578063475fda0e1461050c5780634fdd43cb14610535578063518302271461055e5780635503a0e8146105895780635c975abb146105b457806362b99ad4146105df5761025c565b80633c9527641461043d5780633ccfd60b1461046657806342842e0e1461047d578063438b6300146104a657806344a0d68a146104e35761025c565b806316ba10e01161022457806316ba10e01461035a57806316c38b3c1461038357806318160ddd146103ac57806323b872dd146103d75780633af32abf146104005761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806313faede61461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613461565b6109e3565b6040516102959190613b16565b60405180910390f35b3480156102aa57600080fd5b506102b3610ac5565b6040516102c09190613b31565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613504565b610b57565b6040516102fd9190613a8d565b60405180910390f35b34801561031257600080fd5b5061032d600480360381019061032891906133a7565b610bdc565b005b34801561033b57600080fd5b50610344610cf4565b6040516103519190613df3565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c91906134bb565b610cfa565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190613434565b610d90565b005b3480156103b857600080fd5b506103c1610e29565b6040516103ce9190613df3565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190613291565b610e3a565b005b34801561040c57600080fd5b5061042760048036038101906104229190613224565b610e9a565b6040516104349190613b16565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f9190613434565b610f49565b005b34801561047257600080fd5b5061047b610fe2565b005b34801561048957600080fd5b506104a4600480360381019061049f9190613291565b6110de565b005b3480156104b257600080fd5b506104cd60048036038101906104c89190613224565b6110fe565b6040516104da9190613af4565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190613504565b611209565b005b34801561051857600080fd5b50610533600480360381019061052e91906133e7565b61128f565b005b34801561054157600080fd5b5061055c600480360381019061055791906134bb565b61132f565b005b34801561056a57600080fd5b506105736113c5565b6040516105809190613b16565b60405180910390f35b34801561059557600080fd5b5061059e6113d8565b6040516105ab9190613b31565b60405180910390f35b3480156105c057600080fd5b506105c9611466565b6040516105d69190613b16565b60405180910390f35b3480156105eb57600080fd5b506105f4611479565b6040516106019190613b31565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c9190613504565b611507565b60405161063e9190613a8d565b60405180910390f35b34801561065357600080fd5b5061065c6115b9565b6040516106699190613df3565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190613224565b6115bf565b6040516106a69190613df3565b60405180910390f35b3480156106bb57600080fd5b506106c4611677565b005b3480156106d257600080fd5b506106ed60048036038101906106e89190613504565b6116ff565b005b3480156106fb57600080fd5b50610716600480360381019061071191906134bb565b611785565b005b34801561072457600080fd5b5061072d61181b565b60405161073a9190613a8d565b60405180910390f35b34801561074f57600080fd5b50610758611845565b6040516107659190613df3565b60405180910390f35b34801561077a57600080fd5b5061078361184b565b6040516107909190613b31565b60405180910390f35b3480156107a557600080fd5b506107ae6118dd565b6040516107bb9190613b16565b60405180910390f35b6107de60048036038101906107d99190613504565b6118f0565b005b3480156107ec57600080fd5b5061080760048036038101906108029190613367565b611ac3565b005b34801561081557600080fd5b5061081e611ad9565b60405161082b9190613b31565b60405180910390f35b34801561084057600080fd5b5061085b60048036038101906108569190613504565b611b67565b005b34801561086957600080fd5b50610884600480360381019061087f91906132e4565b611bed565b005b34801561089257600080fd5b506108ad60048036038101906108a89190613504565b611c4f565b6040516108ba9190613a8d565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190613504565b611c8e565b6040516108f79190613b31565b60405180910390f35b34801561090c57600080fd5b50610915611de7565b6040516109229190613df3565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d9190613434565b611ded565b005b34801561096057600080fd5b5061097b60048036038101906109769190613251565b611e86565b6040516109889190613b16565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b39190613531565b611f1a565b005b3480156109c657600080fd5b506109e160048036038101906109dc9190613224565b612050565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abe5750610abd82612148565b5b9050919050565b606060008054610ad4906140fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610b00906140fc565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b5050505050905090565b6000610b62826121b2565b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890613cf3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be782611507565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f90613d73565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7761221e565b73ffffffffffffffffffffffffffffffffffffffff161480610ca65750610ca581610ca061221e565b611e86565b5b610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc90613c73565b60405180910390fd5b610cef8383612226565b505050565b600b5481565b610d0261221e565b73ffffffffffffffffffffffffffffffffffffffff16610d2061181b565b73ffffffffffffffffffffffffffffffffffffffff1614610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90613d13565b60405180910390fd5b8060099080519060200190610d8c929190612f21565b5050565b610d9861221e565b73ffffffffffffffffffffffffffffffffffffffff16610db661181b565b73ffffffffffffffffffffffffffffffffffffffff1614610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390613d13565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610e3560076122df565b905090565b610e4b610e4561221e565b826122ed565b610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190613db3565b60405180910390fd5b610e958383836123cb565b505050565b600080600090505b601080549050811015610f3e578273ffffffffffffffffffffffffffffffffffffffff1660108281548110610eda57610ed9614266565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f2b576001915050610f44565b8080610f369061415f565b915050610ea2565b50600090505b919050565b610f5161221e565b73ffffffffffffffffffffffffffffffffffffffff16610f6f61181b565b73ffffffffffffffffffffffffffffffffffffffff1614610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc90613d13565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b610fea61221e565b73ffffffffffffffffffffffffffffffffffffffff1661100861181b565b73ffffffffffffffffffffffffffffffffffffffff161461105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590613d13565b60405180910390fd5b600061106861181b565b73ffffffffffffffffffffffffffffffffffffffff164760405161108b90613a78565b60006040518083038185875af1925050503d80600081146110c8576040519150601f19603f3d011682016040523d82523d6000602084013e6110cd565b606091505b50509050806110db57600080fd5b50565b6110f983838360405180602001604052806000815250611bed565b505050565b6060600061110b836115bf565b905060008167ffffffffffffffff81111561112957611128614295565b5b6040519080825280602002602001820160405280156111575781602001602082028036833780820191505090505b50905060006001905060005b83811080156111745750600c548211155b156111fd57600061118483611507565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111e957828483815181106111ce576111cd614266565b5b60200260200101818152505081806111e59061415f565b9250505b82806111f49061415f565b93505050611163565b82945050505050919050565b61121161221e565b73ffffffffffffffffffffffffffffffffffffffff1661122f61181b565b73ffffffffffffffffffffffffffffffffffffffff1614611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90613d13565b60405180910390fd5b80600b8190555050565b61129761221e565b73ffffffffffffffffffffffffffffffffffffffff166112b561181b565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613d13565b60405180910390fd5b601060006113199190612fa7565b81816010919061132a929190612fc8565b505050565b61133761221e565b73ffffffffffffffffffffffffffffffffffffffff1661135561181b565b73ffffffffffffffffffffffffffffffffffffffff16146113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a290613d13565b60405180910390fd5b80600a90805190602001906113c1929190612f21565b5050565b600f60019054906101000a900460ff1681565b600980546113e5906140fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611411906140fc565b801561145e5780601f106114335761010080835404028352916020019161145e565b820191906000526020600020905b81548152906001019060200180831161144157829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b60088054611486906140fc565b80601f01602080910402602001604051908101604052809291908181526020018280546114b2906140fc565b80156114ff5780601f106114d4576101008083540402835291602001916114ff565b820191906000526020600020905b8154815290600101906020018083116114e257829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a790613cb3565b60405180910390fd5b80915050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162790613c93565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61167f61221e565b73ffffffffffffffffffffffffffffffffffffffff1661169d61181b565b73ffffffffffffffffffffffffffffffffffffffff16146116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea90613d13565b60405180910390fd5b6116fd6000612632565b565b61170761221e565b73ffffffffffffffffffffffffffffffffffffffff1661172561181b565b73ffffffffffffffffffffffffffffffffffffffff161461177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290613d13565b60405180910390fd5b80600e8190555050565b61178d61221e565b73ffffffffffffffffffffffffffffffffffffffff166117ab61181b565b73ffffffffffffffffffffffffffffffffffffffff1614611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f890613d13565b60405180910390fd5b8060089080519060200190611817929190612f21565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606001805461185a906140fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611886906140fc565b80156118d35780601f106118a8576101008083540402835291602001916118d3565b820191906000526020600020905b8154815290600101906020018083116118b657829003601f168201915b5050505050905090565b600f60029054906101000a900460ff1681565b806000811180156119035750600d548111155b611942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193990613bd3565b60405180910390fd5b600c548161195060076122df565b61195a9190613f31565b111561199b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199290613d93565b60405180910390fd5b600f60009054906101000a900460ff16156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613d33565b60405180910390fd5b81600b546119f99190613fb8565b341015611a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3290613dd3565b60405180910390fd5b600f60029054906101000a900460ff1615611ab557611a5933610e9a565b611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f90613c33565b60405180910390fd5b6000611aa3336115bf565b9050600e548110611ab357600080fd5b505b611abf33836126f8565b5050565b611ad5611ace61221e565b8383612738565b5050565b600a8054611ae6906140fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611b12906140fc565b8015611b5f5780601f10611b3457610100808354040283529160200191611b5f565b820191906000526020600020905b815481529060010190602001808311611b4257829003601f168201915b505050505081565b611b6f61221e565b73ffffffffffffffffffffffffffffffffffffffff16611b8d61181b565b73ffffffffffffffffffffffffffffffffffffffff1614611be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bda90613d13565b60405180910390fd5b80600d8190555050565b611bfe611bf861221e565b836122ed565b611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490613db3565b60405180910390fd5b611c49848484846128a5565b50505050565b60108181548110611c5f57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060611c99826121b2565b611cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccf90613d53565b60405180910390fd5b60001515600f60019054906101000a900460ff1615151415611d8657600a8054611d01906140fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2d906140fc565b8015611d7a5780601f10611d4f57610100808354040283529160200191611d7a565b820191906000526020600020905b815481529060010190602001808311611d5d57829003601f168201915b50505050509050611de2565b6000611d90612901565b90506000815111611db05760405180602001604052806000815250611dde565b80611dba84612993565b6009604051602001611dce93929190613a47565b6040516020818303038152906040525b9150505b919050565b600c5481565b611df561221e565b73ffffffffffffffffffffffffffffffffffffffff16611e1361181b565b73ffffffffffffffffffffffffffffffffffffffff1614611e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6090613d13565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611f2d5750600d548111155b611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6390613bd3565b60405180910390fd5b600c5481611f7a60076122df565b611f849190613f31565b1115611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc90613d93565b60405180910390fd5b611fcd61221e565b73ffffffffffffffffffffffffffffffffffffffff16611feb61181b565b73ffffffffffffffffffffffffffffffffffffffff1614612041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203890613d13565b60405180910390fd5b61204b82846126f8565b505050565b61205861221e565b73ffffffffffffffffffffffffffffffffffffffff1661207661181b565b73ffffffffffffffffffffffffffffffffffffffff16146120cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c390613d13565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561213c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213390613b73565b60405180910390fd5b61214581612632565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661229983611507565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006122f8826121b2565b612337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232e90613c53565b60405180910390fd5b600061234283611507565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123b157508373ffffffffffffffffffffffffffffffffffffffff1661239984610b57565b73ffffffffffffffffffffffffffffffffffffffff16145b806123c257506123c18185611e86565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123eb82611507565b73ffffffffffffffffffffffffffffffffffffffff1614612441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243890613b93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a890613bf3565b60405180910390fd5b6124bc838383612af4565b6124c7600082612226565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125179190614012565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461256e9190613f31565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461262d838383612af9565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156127335761270d6007612afe565b6127208361271b60076122df565b612b14565b808061272b9061415f565b9150506126fb565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279e90613c13565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128989190613b16565b60405180910390a3505050565b6128b08484846123cb565b6128bc84848484612b32565b6128fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f290613b53565b60405180910390fd5b50505050565b606060088054612910906140fc565b80601f016020809104026020016040519081016040528092919081815260200182805461293c906140fc565b80156129895780601f1061295e57610100808354040283529160200191612989565b820191906000526020600020905b81548152906001019060200180831161296c57829003601f168201915b5050505050905090565b606060008214156129db576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612aef565b600082905060005b60008214612a0d5780806129f69061415f565b915050600a82612a069190613f87565b91506129e3565b60008167ffffffffffffffff811115612a2957612a28614295565b5b6040519080825280601f01601f191660200182016040528015612a5b5781602001600182028036833780820191505090505b5090505b60008514612ae857600182612a749190614012565b9150600a85612a8391906141a8565b6030612a8f9190613f31565b60f81b818381518110612aa557612aa4614266565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ae19190613f87565b9450612a5f565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b612b2e828260405180602001604052806000815250612cc9565b5050565b6000612b538473ffffffffffffffffffffffffffffffffffffffff16612d24565b15612cbc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b7c61221e565b8786866040518563ffffffff1660e01b8152600401612b9e9493929190613aa8565b602060405180830381600087803b158015612bb857600080fd5b505af1925050508015612be957506040513d601f19601f82011682018060405250810190612be6919061348e565b60015b612c6c573d8060008114612c19576040519150601f19603f3d011682016040523d82523d6000602084013e612c1e565b606091505b50600081511415612c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5b90613b53565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612cc1565b600190505b949350505050565b612cd38383612d47565b612ce06000848484612b32565b612d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1690613b53565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dae90613cd3565b60405180910390fd5b612dc0816121b2565b15612e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df790613bb3565b60405180910390fd5b612e0c60008383612af4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e5c9190613f31565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f1d60008383612af9565b5050565b828054612f2d906140fc565b90600052602060002090601f016020900481019282612f4f5760008555612f96565b82601f10612f6857805160ff1916838001178555612f96565b82800160010185558215612f96579182015b82811115612f95578251825591602001919060010190612f7a565b5b509050612fa39190613068565b5090565b5080546000825590600052602060002090810190612fc59190613068565b50565b828054828255906000526020600020908101928215613057579160200282015b8281111561305657823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612fe8565b5b5090506130649190613068565b5090565b5b80821115613081576000816000905550600101613069565b5090565b600061309861309384613e33565b613e0e565b9050828152602081018484840111156130b4576130b36142d3565b5b6130bf8482856140ba565b509392505050565b60006130da6130d584613e64565b613e0e565b9050828152602081018484840111156130f6576130f56142d3565b5b6131018482856140ba565b509392505050565b6000813590506131188161481b565b92915050565b60008083601f840112613134576131336142c9565b5b8235905067ffffffffffffffff811115613151576131506142c4565b5b60208301915083602082028301111561316d5761316c6142ce565b5b9250929050565b60008135905061318381614832565b92915050565b60008135905061319881614849565b92915050565b6000815190506131ad81614849565b92915050565b600082601f8301126131c8576131c76142c9565b5b81356131d8848260208601613085565b91505092915050565b600082601f8301126131f6576131f56142c9565b5b81356132068482602086016130c7565b91505092915050565b60008135905061321e81614860565b92915050565b60006020828403121561323a576132396142dd565b5b600061324884828501613109565b91505092915050565b60008060408385031215613268576132676142dd565b5b600061327685828601613109565b925050602061328785828601613109565b9150509250929050565b6000806000606084860312156132aa576132a96142dd565b5b60006132b886828701613109565b93505060206132c986828701613109565b92505060406132da8682870161320f565b9150509250925092565b600080600080608085870312156132fe576132fd6142dd565b5b600061330c87828801613109565b945050602061331d87828801613109565b935050604061332e8782880161320f565b925050606085013567ffffffffffffffff81111561334f5761334e6142d8565b5b61335b878288016131b3565b91505092959194509250565b6000806040838503121561337e5761337d6142dd565b5b600061338c85828601613109565b925050602061339d85828601613174565b9150509250929050565b600080604083850312156133be576133bd6142dd565b5b60006133cc85828601613109565b92505060206133dd8582860161320f565b9150509250929050565b600080602083850312156133fe576133fd6142dd565b5b600083013567ffffffffffffffff81111561341c5761341b6142d8565b5b6134288582860161311e565b92509250509250929050565b60006020828403121561344a576134496142dd565b5b600061345884828501613174565b91505092915050565b600060208284031215613477576134766142dd565b5b600061348584828501613189565b91505092915050565b6000602082840312156134a4576134a36142dd565b5b60006134b28482850161319e565b91505092915050565b6000602082840312156134d1576134d06142dd565b5b600082013567ffffffffffffffff8111156134ef576134ee6142d8565b5b6134fb848285016131e1565b91505092915050565b60006020828403121561351a576135196142dd565b5b60006135288482850161320f565b91505092915050565b60008060408385031215613548576135476142dd565b5b60006135568582860161320f565b925050602061356785828601613109565b9150509250929050565b600061357d8383613a29565b60208301905092915050565b61359281614046565b82525050565b60006135a382613eba565b6135ad8185613ee8565b93506135b883613e95565b8060005b838110156135e95781516135d08882613571565b97506135db83613edb565b9250506001810190506135bc565b5085935050505092915050565b6135ff81614058565b82525050565b600061361082613ec5565b61361a8185613ef9565b935061362a8185602086016140c9565b613633816142e2565b840191505092915050565b600061364982613ed0565b6136538185613f15565b93506136638185602086016140c9565b61366c816142e2565b840191505092915050565b600061368282613ed0565b61368c8185613f26565b935061369c8185602086016140c9565b80840191505092915050565b600081546136b5816140fc565b6136bf8186613f26565b945060018216600081146136da57600181146136eb5761371e565b60ff1983168652818601935061371e565b6136f485613ea5565b60005b83811015613716578154818901526001820191506020810190506136f7565b838801955050505b50505092915050565b6000613734603283613f15565b915061373f826142f3565b604082019050919050565b6000613757602683613f15565b915061376282614342565b604082019050919050565b600061377a602583613f15565b915061378582614391565b604082019050919050565b600061379d601c83613f15565b91506137a8826143e0565b602082019050919050565b60006137c0601483613f15565b91506137cb82614409565b602082019050919050565b60006137e3602483613f15565b91506137ee82614432565b604082019050919050565b6000613806601983613f15565b915061381182614481565b602082019050919050565b6000613829601a83613f15565b9150613834826144aa565b602082019050919050565b600061384c602c83613f15565b9150613857826144d3565b604082019050919050565b600061386f603883613f15565b915061387a82614522565b604082019050919050565b6000613892602a83613f15565b915061389d82614571565b604082019050919050565b60006138b5602983613f15565b91506138c0826145c0565b604082019050919050565b60006138d8602083613f15565b91506138e38261460f565b602082019050919050565b60006138fb602c83613f15565b915061390682614638565b604082019050919050565b600061391e602083613f15565b915061392982614687565b602082019050919050565b6000613941601783613f15565b915061394c826146b0565b602082019050919050565b6000613964602f83613f15565b915061396f826146d9565b604082019050919050565b6000613987602183613f15565b915061399282614728565b604082019050919050565b60006139aa600083613f0a565b91506139b582614777565b600082019050919050565b60006139cd601483613f15565b91506139d88261477a565b602082019050919050565b60006139f0603183613f15565b91506139fb826147a3565b604082019050919050565b6000613a13601383613f15565b9150613a1e826147f2565b602082019050919050565b613a32816140b0565b82525050565b613a41816140b0565b82525050565b6000613a538286613677565b9150613a5f8285613677565b9150613a6b82846136a8565b9150819050949350505050565b6000613a838261399d565b9150819050919050565b6000602082019050613aa26000830184613589565b92915050565b6000608082019050613abd6000830187613589565b613aca6020830186613589565b613ad76040830185613a38565b8181036060830152613ae98184613605565b905095945050505050565b60006020820190508181036000830152613b0e8184613598565b905092915050565b6000602082019050613b2b60008301846135f6565b92915050565b60006020820190508181036000830152613b4b818461363e565b905092915050565b60006020820190508181036000830152613b6c81613727565b9050919050565b60006020820190508181036000830152613b8c8161374a565b9050919050565b60006020820190508181036000830152613bac8161376d565b9050919050565b60006020820190508181036000830152613bcc81613790565b9050919050565b60006020820190508181036000830152613bec816137b3565b9050919050565b60006020820190508181036000830152613c0c816137d6565b9050919050565b60006020820190508181036000830152613c2c816137f9565b9050919050565b60006020820190508181036000830152613c4c8161381c565b9050919050565b60006020820190508181036000830152613c6c8161383f565b9050919050565b60006020820190508181036000830152613c8c81613862565b9050919050565b60006020820190508181036000830152613cac81613885565b9050919050565b60006020820190508181036000830152613ccc816138a8565b9050919050565b60006020820190508181036000830152613cec816138cb565b9050919050565b60006020820190508181036000830152613d0c816138ee565b9050919050565b60006020820190508181036000830152613d2c81613911565b9050919050565b60006020820190508181036000830152613d4c81613934565b9050919050565b60006020820190508181036000830152613d6c81613957565b9050919050565b60006020820190508181036000830152613d8c8161397a565b9050919050565b60006020820190508181036000830152613dac816139c0565b9050919050565b60006020820190508181036000830152613dcc816139e3565b9050919050565b60006020820190508181036000830152613dec81613a06565b9050919050565b6000602082019050613e086000830184613a38565b92915050565b6000613e18613e29565b9050613e24828261412e565b919050565b6000604051905090565b600067ffffffffffffffff821115613e4e57613e4d614295565b5b613e57826142e2565b9050602081019050919050565b600067ffffffffffffffff821115613e7f57613e7e614295565b5b613e88826142e2565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f3c826140b0565b9150613f47836140b0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f7c57613f7b6141d9565b5b828201905092915050565b6000613f92826140b0565b9150613f9d836140b0565b925082613fad57613fac614208565b5b828204905092915050565b6000613fc3826140b0565b9150613fce836140b0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614007576140066141d9565b5b828202905092915050565b600061401d826140b0565b9150614028836140b0565b92508282101561403b5761403a6141d9565b5b828203905092915050565b600061405182614090565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140e75780820151818401526020810190506140cc565b838111156140f6576000848401525b50505050565b6000600282049050600182168061411457607f821691505b6020821081141561412857614127614237565b5b50919050565b614137826142e2565b810181811067ffffffffffffffff8211171561415657614155614295565b5b80604052505050565b600061416a826140b0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561419d5761419c6141d9565b5b600182019050919050565b60006141b3826140b0565b91506141be836140b0565b9250826141ce576141cd614208565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f41646472657373206973206e6f742077686974656c6973746564000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61482481614046565b811461482f57600080fd5b50565b61483b81614058565b811461484657600080fd5b50565b61485281614064565b811461485d57600080fd5b50565b614869816140b0565b811461487457600080fd5b5056fea2646970667358221220c3375cb83bde042e13ff76d1d4830590b9779136b007ef3d2b7a1f2f6b02696c64736f6c63430008070033697066733a2f2f516d64455737354b557446487937713368416f504570523164444d474261746f784651585367384d326b476e78622f68696464656e2e6a736f6e
Deployed Bytecode
0x60806040526004361061025c5760003560e01c80636352211e11610144578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd146108c3578063d5abeb0114610900578063e0a808531461092b578063e985e9c514610954578063efbd73f414610991578063f2fde38b146109ba5761025c565b8063a22cb465146107e0578063a45ba8e714610809578063b071401b14610834578063b88d4fde1461085d578063ba4e5c49146108865761025c565b80637ec4a659116101085780637ec4a659146106ef5780638da5cb5b1461071857806394354fd01461074357806395d89b411461076e5780639c70b51214610799578063a0712d68146107c45761025c565b80636352211e1461060a5780636a021a3e1461064757806370a0823114610672578063715018a6146106af5780637160f70f146106c65761025c565b80633c952764116101dd578063475fda0e116101a1578063475fda0e1461050c5780634fdd43cb14610535578063518302271461055e5780635503a0e8146105895780635c975abb146105b457806362b99ad4146105df5761025c565b80633c9527641461043d5780633ccfd60b1461046657806342842e0e1461047d578063438b6300146104a657806344a0d68a146104e35761025c565b806316ba10e01161022457806316ba10e01461035a57806316c38b3c1461038357806318160ddd146103ac57806323b872dd146103d75780633af32abf146104005761025c565b806301ffc9a71461026157806306fdde031461029e578063081812fc146102c9578063095ea7b31461030657806313faede61461032f575b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190613461565b6109e3565b6040516102959190613b16565b60405180910390f35b3480156102aa57600080fd5b506102b3610ac5565b6040516102c09190613b31565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb9190613504565b610b57565b6040516102fd9190613a8d565b60405180910390f35b34801561031257600080fd5b5061032d600480360381019061032891906133a7565b610bdc565b005b34801561033b57600080fd5b50610344610cf4565b6040516103519190613df3565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c91906134bb565b610cfa565b005b34801561038f57600080fd5b506103aa60048036038101906103a59190613434565b610d90565b005b3480156103b857600080fd5b506103c1610e29565b6040516103ce9190613df3565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190613291565b610e3a565b005b34801561040c57600080fd5b5061042760048036038101906104229190613224565b610e9a565b6040516104349190613b16565b60405180910390f35b34801561044957600080fd5b50610464600480360381019061045f9190613434565b610f49565b005b34801561047257600080fd5b5061047b610fe2565b005b34801561048957600080fd5b506104a4600480360381019061049f9190613291565b6110de565b005b3480156104b257600080fd5b506104cd60048036038101906104c89190613224565b6110fe565b6040516104da9190613af4565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190613504565b611209565b005b34801561051857600080fd5b50610533600480360381019061052e91906133e7565b61128f565b005b34801561054157600080fd5b5061055c600480360381019061055791906134bb565b61132f565b005b34801561056a57600080fd5b506105736113c5565b6040516105809190613b16565b60405180910390f35b34801561059557600080fd5b5061059e6113d8565b6040516105ab9190613b31565b60405180910390f35b3480156105c057600080fd5b506105c9611466565b6040516105d69190613b16565b60405180910390f35b3480156105eb57600080fd5b506105f4611479565b6040516106019190613b31565b60405180910390f35b34801561061657600080fd5b50610631600480360381019061062c9190613504565b611507565b60405161063e9190613a8d565b60405180910390f35b34801561065357600080fd5b5061065c6115b9565b6040516106699190613df3565b60405180910390f35b34801561067e57600080fd5b5061069960048036038101906106949190613224565b6115bf565b6040516106a69190613df3565b60405180910390f35b3480156106bb57600080fd5b506106c4611677565b005b3480156106d257600080fd5b506106ed60048036038101906106e89190613504565b6116ff565b005b3480156106fb57600080fd5b50610716600480360381019061071191906134bb565b611785565b005b34801561072457600080fd5b5061072d61181b565b60405161073a9190613a8d565b60405180910390f35b34801561074f57600080fd5b50610758611845565b6040516107659190613df3565b60405180910390f35b34801561077a57600080fd5b5061078361184b565b6040516107909190613b31565b60405180910390f35b3480156107a557600080fd5b506107ae6118dd565b6040516107bb9190613b16565b60405180910390f35b6107de60048036038101906107d99190613504565b6118f0565b005b3480156107ec57600080fd5b5061080760048036038101906108029190613367565b611ac3565b005b34801561081557600080fd5b5061081e611ad9565b60405161082b9190613b31565b60405180910390f35b34801561084057600080fd5b5061085b60048036038101906108569190613504565b611b67565b005b34801561086957600080fd5b50610884600480360381019061087f91906132e4565b611bed565b005b34801561089257600080fd5b506108ad60048036038101906108a89190613504565b611c4f565b6040516108ba9190613a8d565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190613504565b611c8e565b6040516108f79190613b31565b60405180910390f35b34801561090c57600080fd5b50610915611de7565b6040516109229190613df3565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d9190613434565b611ded565b005b34801561096057600080fd5b5061097b60048036038101906109769190613251565b611e86565b6040516109889190613b16565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b39190613531565b611f1a565b005b3480156109c657600080fd5b506109e160048036038101906109dc9190613224565b612050565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aae57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610abe5750610abd82612148565b5b9050919050565b606060008054610ad4906140fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610b00906140fc565b8015610b4d5780601f10610b2257610100808354040283529160200191610b4d565b820191906000526020600020905b815481529060010190602001808311610b3057829003601f168201915b5050505050905090565b6000610b62826121b2565b610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890613cf3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610be782611507565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f90613d73565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c7761221e565b73ffffffffffffffffffffffffffffffffffffffff161480610ca65750610ca581610ca061221e565b611e86565b5b610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc90613c73565b60405180910390fd5b610cef8383612226565b505050565b600b5481565b610d0261221e565b73ffffffffffffffffffffffffffffffffffffffff16610d2061181b565b73ffffffffffffffffffffffffffffffffffffffff1614610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d90613d13565b60405180910390fd5b8060099080519060200190610d8c929190612f21565b5050565b610d9861221e565b73ffffffffffffffffffffffffffffffffffffffff16610db661181b565b73ffffffffffffffffffffffffffffffffffffffff1614610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390613d13565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610e3560076122df565b905090565b610e4b610e4561221e565b826122ed565b610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190613db3565b60405180910390fd5b610e958383836123cb565b505050565b600080600090505b601080549050811015610f3e578273ffffffffffffffffffffffffffffffffffffffff1660108281548110610eda57610ed9614266565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610f2b576001915050610f44565b8080610f369061415f565b915050610ea2565b50600090505b919050565b610f5161221e565b73ffffffffffffffffffffffffffffffffffffffff16610f6f61181b565b73ffffffffffffffffffffffffffffffffffffffff1614610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc90613d13565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b610fea61221e565b73ffffffffffffffffffffffffffffffffffffffff1661100861181b565b73ffffffffffffffffffffffffffffffffffffffff161461105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590613d13565b60405180910390fd5b600061106861181b565b73ffffffffffffffffffffffffffffffffffffffff164760405161108b90613a78565b60006040518083038185875af1925050503d80600081146110c8576040519150601f19603f3d011682016040523d82523d6000602084013e6110cd565b606091505b50509050806110db57600080fd5b50565b6110f983838360405180602001604052806000815250611bed565b505050565b6060600061110b836115bf565b905060008167ffffffffffffffff81111561112957611128614295565b5b6040519080825280602002602001820160405280156111575781602001602082028036833780820191505090505b50905060006001905060005b83811080156111745750600c548211155b156111fd57600061118483611507565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111e957828483815181106111ce576111cd614266565b5b60200260200101818152505081806111e59061415f565b9250505b82806111f49061415f565b93505050611163565b82945050505050919050565b61121161221e565b73ffffffffffffffffffffffffffffffffffffffff1661122f61181b565b73ffffffffffffffffffffffffffffffffffffffff1614611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90613d13565b60405180910390fd5b80600b8190555050565b61129761221e565b73ffffffffffffffffffffffffffffffffffffffff166112b561181b565b73ffffffffffffffffffffffffffffffffffffffff161461130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613d13565b60405180910390fd5b601060006113199190612fa7565b81816010919061132a929190612fc8565b505050565b61133761221e565b73ffffffffffffffffffffffffffffffffffffffff1661135561181b565b73ffffffffffffffffffffffffffffffffffffffff16146113ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a290613d13565b60405180910390fd5b80600a90805190602001906113c1929190612f21565b5050565b600f60019054906101000a900460ff1681565b600980546113e5906140fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611411906140fc565b801561145e5780601f106114335761010080835404028352916020019161145e565b820191906000526020600020905b81548152906001019060200180831161144157829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b60088054611486906140fc565b80601f01602080910402602001604051908101604052809291908181526020018280546114b2906140fc565b80156114ff5780601f106114d4576101008083540402835291602001916114ff565b820191906000526020600020905b8154815290600101906020018083116114e257829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a790613cb3565b60405180910390fd5b80915050919050565b600e5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162790613c93565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61167f61221e565b73ffffffffffffffffffffffffffffffffffffffff1661169d61181b565b73ffffffffffffffffffffffffffffffffffffffff16146116f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ea90613d13565b60405180910390fd5b6116fd6000612632565b565b61170761221e565b73ffffffffffffffffffffffffffffffffffffffff1661172561181b565b73ffffffffffffffffffffffffffffffffffffffff161461177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290613d13565b60405180910390fd5b80600e8190555050565b61178d61221e565b73ffffffffffffffffffffffffffffffffffffffff166117ab61181b565b73ffffffffffffffffffffffffffffffffffffffff1614611801576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f890613d13565b60405180910390fd5b8060089080519060200190611817929190612f21565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606001805461185a906140fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611886906140fc565b80156118d35780601f106118a8576101008083540402835291602001916118d3565b820191906000526020600020905b8154815290600101906020018083116118b657829003601f168201915b5050505050905090565b600f60029054906101000a900460ff1681565b806000811180156119035750600d548111155b611942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193990613bd3565b60405180910390fd5b600c548161195060076122df565b61195a9190613f31565b111561199b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199290613d93565b60405180910390fd5b600f60009054906101000a900460ff16156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613d33565b60405180910390fd5b81600b546119f99190613fb8565b341015611a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3290613dd3565b60405180910390fd5b600f60029054906101000a900460ff1615611ab557611a5933610e9a565b611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f90613c33565b60405180910390fd5b6000611aa3336115bf565b9050600e548110611ab357600080fd5b505b611abf33836126f8565b5050565b611ad5611ace61221e565b8383612738565b5050565b600a8054611ae6906140fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611b12906140fc565b8015611b5f5780601f10611b3457610100808354040283529160200191611b5f565b820191906000526020600020905b815481529060010190602001808311611b4257829003601f168201915b505050505081565b611b6f61221e565b73ffffffffffffffffffffffffffffffffffffffff16611b8d61181b565b73ffffffffffffffffffffffffffffffffffffffff1614611be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bda90613d13565b60405180910390fd5b80600d8190555050565b611bfe611bf861221e565b836122ed565b611c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3490613db3565b60405180910390fd5b611c49848484846128a5565b50505050565b60108181548110611c5f57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060611c99826121b2565b611cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccf90613d53565b60405180910390fd5b60001515600f60019054906101000a900460ff1615151415611d8657600a8054611d01906140fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2d906140fc565b8015611d7a5780601f10611d4f57610100808354040283529160200191611d7a565b820191906000526020600020905b815481529060010190602001808311611d5d57829003601f168201915b50505050509050611de2565b6000611d90612901565b90506000815111611db05760405180602001604052806000815250611dde565b80611dba84612993565b6009604051602001611dce93929190613a47565b6040516020818303038152906040525b9150505b919050565b600c5481565b611df561221e565b73ffffffffffffffffffffffffffffffffffffffff16611e1361181b565b73ffffffffffffffffffffffffffffffffffffffff1614611e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6090613d13565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611f2d5750600d548111155b611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6390613bd3565b60405180910390fd5b600c5481611f7a60076122df565b611f849190613f31565b1115611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc90613d93565b60405180910390fd5b611fcd61221e565b73ffffffffffffffffffffffffffffffffffffffff16611feb61181b565b73ffffffffffffffffffffffffffffffffffffffff1614612041576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203890613d13565b60405180910390fd5b61204b82846126f8565b505050565b61205861221e565b73ffffffffffffffffffffffffffffffffffffffff1661207661181b565b73ffffffffffffffffffffffffffffffffffffffff16146120cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c390613d13565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561213c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213390613b73565b60405180910390fd5b61214581612632565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661229983611507565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006122f8826121b2565b612337576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232e90613c53565b60405180910390fd5b600061234283611507565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123b157508373ffffffffffffffffffffffffffffffffffffffff1661239984610b57565b73ffffffffffffffffffffffffffffffffffffffff16145b806123c257506123c18185611e86565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123eb82611507565b73ffffffffffffffffffffffffffffffffffffffff1614612441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243890613b93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a890613bf3565b60405180910390fd5b6124bc838383612af4565b6124c7600082612226565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125179190614012565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461256e9190613f31565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461262d838383612af9565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156127335761270d6007612afe565b6127208361271b60076122df565b612b14565b808061272b9061415f565b9150506126fb565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279e90613c13565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128989190613b16565b60405180910390a3505050565b6128b08484846123cb565b6128bc84848484612b32565b6128fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f290613b53565b60405180910390fd5b50505050565b606060088054612910906140fc565b80601f016020809104026020016040519081016040528092919081815260200182805461293c906140fc565b80156129895780601f1061295e57610100808354040283529160200191612989565b820191906000526020600020905b81548152906001019060200180831161296c57829003601f168201915b5050505050905090565b606060008214156129db576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612aef565b600082905060005b60008214612a0d5780806129f69061415f565b915050600a82612a069190613f87565b91506129e3565b60008167ffffffffffffffff811115612a2957612a28614295565b5b6040519080825280601f01601f191660200182016040528015612a5b5781602001600182028036833780820191505090505b5090505b60008514612ae857600182612a749190614012565b9150600a85612a8391906141a8565b6030612a8f9190613f31565b60f81b818381518110612aa557612aa4614266565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ae19190613f87565b9450612a5f565b8093505050505b919050565b505050565b505050565b6001816000016000828254019250508190555050565b612b2e828260405180602001604052806000815250612cc9565b5050565b6000612b538473ffffffffffffffffffffffffffffffffffffffff16612d24565b15612cbc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b7c61221e565b8786866040518563ffffffff1660e01b8152600401612b9e9493929190613aa8565b602060405180830381600087803b158015612bb857600080fd5b505af1925050508015612be957506040513d601f19601f82011682018060405250810190612be6919061348e565b60015b612c6c573d8060008114612c19576040519150601f19603f3d011682016040523d82523d6000602084013e612c1e565b606091505b50600081511415612c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5b90613b53565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612cc1565b600190505b949350505050565b612cd38383612d47565b612ce06000848484612b32565b612d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1690613b53565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dae90613cd3565b60405180910390fd5b612dc0816121b2565b15612e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df790613bb3565b60405180910390fd5b612e0c60008383612af4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e5c9190613f31565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f1d60008383612af9565b5050565b828054612f2d906140fc565b90600052602060002090601f016020900481019282612f4f5760008555612f96565b82601f10612f6857805160ff1916838001178555612f96565b82800160010185558215612f96579182015b82811115612f95578251825591602001919060010190612f7a565b5b509050612fa39190613068565b5090565b5080546000825590600052602060002090810190612fc59190613068565b50565b828054828255906000526020600020908101928215613057579160200282015b8281111561305657823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612fe8565b5b5090506130649190613068565b5090565b5b80821115613081576000816000905550600101613069565b5090565b600061309861309384613e33565b613e0e565b9050828152602081018484840111156130b4576130b36142d3565b5b6130bf8482856140ba565b509392505050565b60006130da6130d584613e64565b613e0e565b9050828152602081018484840111156130f6576130f56142d3565b5b6131018482856140ba565b509392505050565b6000813590506131188161481b565b92915050565b60008083601f840112613134576131336142c9565b5b8235905067ffffffffffffffff811115613151576131506142c4565b5b60208301915083602082028301111561316d5761316c6142ce565b5b9250929050565b60008135905061318381614832565b92915050565b60008135905061319881614849565b92915050565b6000815190506131ad81614849565b92915050565b600082601f8301126131c8576131c76142c9565b5b81356131d8848260208601613085565b91505092915050565b600082601f8301126131f6576131f56142c9565b5b81356132068482602086016130c7565b91505092915050565b60008135905061321e81614860565b92915050565b60006020828403121561323a576132396142dd565b5b600061324884828501613109565b91505092915050565b60008060408385031215613268576132676142dd565b5b600061327685828601613109565b925050602061328785828601613109565b9150509250929050565b6000806000606084860312156132aa576132a96142dd565b5b60006132b886828701613109565b93505060206132c986828701613109565b92505060406132da8682870161320f565b9150509250925092565b600080600080608085870312156132fe576132fd6142dd565b5b600061330c87828801613109565b945050602061331d87828801613109565b935050604061332e8782880161320f565b925050606085013567ffffffffffffffff81111561334f5761334e6142d8565b5b61335b878288016131b3565b91505092959194509250565b6000806040838503121561337e5761337d6142dd565b5b600061338c85828601613109565b925050602061339d85828601613174565b9150509250929050565b600080604083850312156133be576133bd6142dd565b5b60006133cc85828601613109565b92505060206133dd8582860161320f565b9150509250929050565b600080602083850312156133fe576133fd6142dd565b5b600083013567ffffffffffffffff81111561341c5761341b6142d8565b5b6134288582860161311e565b92509250509250929050565b60006020828403121561344a576134496142dd565b5b600061345884828501613174565b91505092915050565b600060208284031215613477576134766142dd565b5b600061348584828501613189565b91505092915050565b6000602082840312156134a4576134a36142dd565b5b60006134b28482850161319e565b91505092915050565b6000602082840312156134d1576134d06142dd565b5b600082013567ffffffffffffffff8111156134ef576134ee6142d8565b5b6134fb848285016131e1565b91505092915050565b60006020828403121561351a576135196142dd565b5b60006135288482850161320f565b91505092915050565b60008060408385031215613548576135476142dd565b5b60006135568582860161320f565b925050602061356785828601613109565b9150509250929050565b600061357d8383613a29565b60208301905092915050565b61359281614046565b82525050565b60006135a382613eba565b6135ad8185613ee8565b93506135b883613e95565b8060005b838110156135e95781516135d08882613571565b97506135db83613edb565b9250506001810190506135bc565b5085935050505092915050565b6135ff81614058565b82525050565b600061361082613ec5565b61361a8185613ef9565b935061362a8185602086016140c9565b613633816142e2565b840191505092915050565b600061364982613ed0565b6136538185613f15565b93506136638185602086016140c9565b61366c816142e2565b840191505092915050565b600061368282613ed0565b61368c8185613f26565b935061369c8185602086016140c9565b80840191505092915050565b600081546136b5816140fc565b6136bf8186613f26565b945060018216600081146136da57600181146136eb5761371e565b60ff1983168652818601935061371e565b6136f485613ea5565b60005b83811015613716578154818901526001820191506020810190506136f7565b838801955050505b50505092915050565b6000613734603283613f15565b915061373f826142f3565b604082019050919050565b6000613757602683613f15565b915061376282614342565b604082019050919050565b600061377a602583613f15565b915061378582614391565b604082019050919050565b600061379d601c83613f15565b91506137a8826143e0565b602082019050919050565b60006137c0601483613f15565b91506137cb82614409565b602082019050919050565b60006137e3602483613f15565b91506137ee82614432565b604082019050919050565b6000613806601983613f15565b915061381182614481565b602082019050919050565b6000613829601a83613f15565b9150613834826144aa565b602082019050919050565b600061384c602c83613f15565b9150613857826144d3565b604082019050919050565b600061386f603883613f15565b915061387a82614522565b604082019050919050565b6000613892602a83613f15565b915061389d82614571565b604082019050919050565b60006138b5602983613f15565b91506138c0826145c0565b604082019050919050565b60006138d8602083613f15565b91506138e38261460f565b602082019050919050565b60006138fb602c83613f15565b915061390682614638565b604082019050919050565b600061391e602083613f15565b915061392982614687565b602082019050919050565b6000613941601783613f15565b915061394c826146b0565b602082019050919050565b6000613964602f83613f15565b915061396f826146d9565b604082019050919050565b6000613987602183613f15565b915061399282614728565b604082019050919050565b60006139aa600083613f0a565b91506139b582614777565b600082019050919050565b60006139cd601483613f15565b91506139d88261477a565b602082019050919050565b60006139f0603183613f15565b91506139fb826147a3565b604082019050919050565b6000613a13601383613f15565b9150613a1e826147f2565b602082019050919050565b613a32816140b0565b82525050565b613a41816140b0565b82525050565b6000613a538286613677565b9150613a5f8285613677565b9150613a6b82846136a8565b9150819050949350505050565b6000613a838261399d565b9150819050919050565b6000602082019050613aa26000830184613589565b92915050565b6000608082019050613abd6000830187613589565b613aca6020830186613589565b613ad76040830185613a38565b8181036060830152613ae98184613605565b905095945050505050565b60006020820190508181036000830152613b0e8184613598565b905092915050565b6000602082019050613b2b60008301846135f6565b92915050565b60006020820190508181036000830152613b4b818461363e565b905092915050565b60006020820190508181036000830152613b6c81613727565b9050919050565b60006020820190508181036000830152613b8c8161374a565b9050919050565b60006020820190508181036000830152613bac8161376d565b9050919050565b60006020820190508181036000830152613bcc81613790565b9050919050565b60006020820190508181036000830152613bec816137b3565b9050919050565b60006020820190508181036000830152613c0c816137d6565b9050919050565b60006020820190508181036000830152613c2c816137f9565b9050919050565b60006020820190508181036000830152613c4c8161381c565b9050919050565b60006020820190508181036000830152613c6c8161383f565b9050919050565b60006020820190508181036000830152613c8c81613862565b9050919050565b60006020820190508181036000830152613cac81613885565b9050919050565b60006020820190508181036000830152613ccc816138a8565b9050919050565b60006020820190508181036000830152613cec816138cb565b9050919050565b60006020820190508181036000830152613d0c816138ee565b9050919050565b60006020820190508181036000830152613d2c81613911565b9050919050565b60006020820190508181036000830152613d4c81613934565b9050919050565b60006020820190508181036000830152613d6c81613957565b9050919050565b60006020820190508181036000830152613d8c8161397a565b9050919050565b60006020820190508181036000830152613dac816139c0565b9050919050565b60006020820190508181036000830152613dcc816139e3565b9050919050565b60006020820190508181036000830152613dec81613a06565b9050919050565b6000602082019050613e086000830184613a38565b92915050565b6000613e18613e29565b9050613e24828261412e565b919050565b6000604051905090565b600067ffffffffffffffff821115613e4e57613e4d614295565b5b613e57826142e2565b9050602081019050919050565b600067ffffffffffffffff821115613e7f57613e7e614295565b5b613e88826142e2565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f3c826140b0565b9150613f47836140b0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f7c57613f7b6141d9565b5b828201905092915050565b6000613f92826140b0565b9150613f9d836140b0565b925082613fad57613fac614208565b5b828204905092915050565b6000613fc3826140b0565b9150613fce836140b0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614007576140066141d9565b5b828202905092915050565b600061401d826140b0565b9150614028836140b0565b92508282101561403b5761403a6141d9565b5b828203905092915050565b600061405182614090565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140e75780820151818401526020810190506140cc565b838111156140f6576000848401525b50505050565b6000600282049050600182168061411457607f821691505b6020821081141561412857614127614237565b5b50919050565b614137826142e2565b810181811067ffffffffffffffff8211171561415657614155614295565b5b80604052505050565b600061416a826140b0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561419d5761419c6141d9565b5b600182019050919050565b60006141b3826140b0565b91506141be836140b0565b9250826141ce576141cd614208565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f41646472657373206973206e6f742077686974656c6973746564000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61482481614046565b811461482f57600080fd5b50565b61483b81614058565b811461484657600080fd5b50565b61485281614064565b811461485d57600080fd5b50565b614869816140b0565b811461487457600080fd5b5056fea2646970667358221220c3375cb83bde042e13ff76d1d4830590b9779136b007ef3d2b7a1f2f6b02696c64736f6c63430008070033
Deployed Bytecode Sourcemap
38803:4664:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25607:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26552:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28111:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27634:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39070:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42818:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42924:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39774:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28861:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40243:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39870:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43007:137;;;;;;;;;;;;;:::i;:::-;;29271:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41130:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42358:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40093:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42574:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39265:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38992:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39235:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38959:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26246:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39185:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25976:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6228:103;;;;;;;;;;;;;:::i;:::-;;39971:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42712:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5577:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39143:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26721:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39298:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40488:473;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28404:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39030:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42438:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29527:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39339:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41771:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39107:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42271:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28630:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40969:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6486:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25607:305;25709:4;25761:25;25746:40;;;:11;:40;;;;:105;;;;25818:33;25803:48;;;:11;:48;;;;25746:105;:158;;;;25868:36;25892:11;25868:23;:36::i;:::-;25746:158;25726:178;;25607:305;;;:::o;26552:100::-;26606:13;26639:5;26632:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26552:100;:::o;28111:221::-;28187:7;28215:16;28223:7;28215;:16::i;:::-;28207:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28300:15;:24;28316:7;28300:24;;;;;;;;;;;;;;;;;;;;;28293:31;;28111:221;;;:::o;27634:411::-;27715:13;27731:23;27746:7;27731:14;:23::i;:::-;27715:39;;27779:5;27773:11;;:2;:11;;;;27765:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27873:5;27857:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27882:37;27899:5;27906:12;:10;:12::i;:::-;27882:16;:37::i;:::-;27857:62;27835:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28016:21;28025:2;28029:7;28016:8;:21::i;:::-;27704:341;27634:411;;:::o;39070:32::-;;;;:::o;42818:100::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42902:10:::1;42890:9;:22;;;;;;;;;;;;:::i;:::-;;42818:100:::0;:::o;42924:77::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42989:6:::1;42980;;:15;;;;;;;;;;;;;;;;;;42924:77:::0;:::o;39774:89::-;39818:7;39841:16;:6;:14;:16::i;:::-;39834:23;;39774:89;:::o;28861:339::-;29056:41;29075:12;:10;:12::i;:::-;29089:7;29056:18;:41::i;:::-;29048:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29164:28;29174:4;29180:2;29184:7;29164:9;:28::i;:::-;28861:339;;;:::o;40243:239::-;40302:4;40319:9;40331:1;40319:13;;40315:143;40338:20;:27;;;;40334:1;:31;40315:143;;;40412:5;40385:32;;:20;40406:1;40385:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;40381:70;;;40437:4;40430:11;;;;;40381:70;40367:3;;;;;:::i;:::-;;;;40315:143;;;;40471:5;40464:12;;40243:239;;;;:::o;39870:95::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39953:6:::1;39935:15;;:24;;;;;;;;;;;;;;;;;;39870:95:::0;:::o;43007:137::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43052:7:::1;43073;:5;:7::i;:::-;43065:21;;43094;43065:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43051:69;;;43135:2;43127:11;;;::::0;::::1;;43044:100;43007:137::o:0;29271:185::-;29409:39;29426:4;29432:2;29436:7;29409:39;;;;;;;;;;;;:16;:39::i;:::-;29271:185;;;:::o;41130:635::-;41205:16;41233:23;41259:17;41269:6;41259:9;:17::i;:::-;41233:43;;41283:30;41330:15;41316:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41283:63;;41353:22;41378:1;41353:26;;41386:23;41422:309;41447:15;41429;:33;:64;;;;;41484:9;;41466:14;:27;;41429:64;41422:309;;;41504:25;41532:23;41540:14;41532:7;:23::i;:::-;41504:51;;41591:6;41570:27;;:17;:27;;;41566:131;;;41643:14;41610:13;41624:15;41610:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;41670:17;;;;;:::i;:::-;;;;41566:131;41707:16;;;;;:::i;:::-;;;;41495:236;41422:309;;;41746:13;41739:20;;;;;;41130:635;;;:::o;42358:74::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42421:5:::1;42414:4;:12;;;;42358:74:::0;:::o;40093:144::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40175:20:::1;;40168:27;;;;:::i;:::-;40225:6;;40202:20;:29;;;;;;;:::i;:::-;;40093:144:::0;;:::o;42574:132::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42682:18:::1;42662:17;:38;;;;;;;;;;;;:::i;:::-;;42574:132:::0;:::o;39265:28::-;;;;;;;;;;;;;:::o;38992:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39235:25::-;;;;;;;;;;;;;:::o;38959:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26246:239::-;26318:7;26338:13;26354:7;:16;26362:7;26354:16;;;;;;;;;;;;;;;;;;;;;26338:32;;26406:1;26389:19;;:5;:19;;;;26381:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26472:5;26465:12;;;26246:239;;;:::o;39185:43::-;;;;:::o;25976:208::-;26048:7;26093:1;26076:19;;:5;:19;;;;26068:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26160:9;:16;26170:5;26160:16;;;;;;;;;;;;;;;;26153:23;;25976:208;;;:::o;6228:103::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6293:30:::1;6320:1;6293:18;:30::i;:::-;6228:103::o:0;39971:116::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40075:6:::1;40048:24;:33;;;;39971:116:::0;:::o;42712:100::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42796:10:::1;42784:9;:22;;;;;;;;;;;;:::i;:::-;;42712:100:::0;:::o;5577:87::-;5623:7;5650:6;;;;;;;;;;;5643:13;;5577:87;:::o;39143:37::-;;;;:::o;26721:104::-;26777:13;26810:7;26803:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26721:104;:::o;39298:34::-;;;;;;;;;;;;;:::o;40488:473::-;40553:11;39608:1;39594:11;:15;:52;;;;;39628:18;;39613:11;:33;;39594:52;39586:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39720:9;;39705:11;39686:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39678:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;40582:6:::1;;;;;;;;;;;40581:7;40573:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;40651:11;40644:4;;:18;;;;:::i;:::-;40631:9;:31;;40623:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;40699:15;;;;;;;;;;;40695:218;;;40733:25;40747:10;40733:13;:25::i;:::-;40725:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40798:23;40824:21;40834:10;40824:9;:21::i;:::-;40798:47;;40880:24;;40862:15;:42;40854:51;;;::::0;::::1;;40716:197;40695:218;40921:34;40931:10;40943:11;40921:9;:34::i;:::-;40488:473:::0;;:::o;28404:155::-;28499:52;28518:12;:10;:12::i;:::-;28532:8;28542;28499:18;:52::i;:::-;28404:155;;:::o;39030:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42438:130::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42543:19:::1;42522:18;:40;;;;42438:130:::0;:::o;29527:328::-;29702:41;29721:12;:10;:12::i;:::-;29735:7;29702:18;:41::i;:::-;29694:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29808:39;29822:4;29828:2;29832:7;29841:5;29808:13;:39::i;:::-;29527:328;;;;:::o;39339:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41771:494::-;41870:13;41911:17;41919:8;41911:7;:17::i;:::-;41895:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;42018:5;42006:17;;:8;;;;;;;;;;;:17;;;42002:64;;;42041:17;42034:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42002:64;42074:28;42105:10;:8;:10::i;:::-;42074:41;;42160:1;42135:14;42129:28;:32;:130;;;;;;;;;;;;;;;;;42197:14;42213:19;:8;:17;:19::i;:::-;42234:9;42180:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42129:130;42122:137;;;41771:494;;;;:::o;39107:31::-;;;;:::o;42271:81::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42340:6:::1;42329:8;;:17;;;;;;;;;;;;;;;;;;42271:81:::0;:::o;28630:164::-;28727:4;28751:18;:25;28770:5;28751:25;;;;;;;;;;;;;;;:35;28777:8;28751:35;;;;;;;;;;;;;;;;;;;;;;;;;28744:42;;28630:164;;;;:::o;40969:155::-;41055:11;39608:1;39594:11;:15;:52;;;;;39628:18;;39613:11;:33;;39594:52;39586:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39720:9;;39705:11;39686:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39678:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;5808:12:::1;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41085:33:::2;41095:9;41106:11;41085:9;:33::i;:::-;40969:155:::0;;;:::o;6486:201::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6595:1:::1;6575:22;;:8;:22;;;;6567:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6651:28;6670:8;6651:18;:28::i;:::-;6486:201:::0;:::o;18361:157::-;18446:4;18485:25;18470:40;;;:11;:40;;;;18463:47;;18361:157;;;:::o;31365:127::-;31430:4;31482:1;31454:30;;:7;:16;31462:7;31454:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31447:37;;31365:127;;;:::o;4301:98::-;4354:7;4381:10;4374:17;;4301:98;:::o;35511:174::-;35613:2;35586:15;:24;35602:7;35586:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35669:7;35665:2;35631:46;;35640:23;35655:7;35640:14;:23::i;:::-;35631:46;;;;;;;;;;;;35511:174;;:::o;905:114::-;970:7;997;:14;;;990:21;;905:114;;;:::o;31659:348::-;31752:4;31777:16;31785:7;31777;:16::i;:::-;31769:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31853:13;31869:23;31884:7;31869:14;:23::i;:::-;31853:39;;31922:5;31911:16;;:7;:16;;;:51;;;;31955:7;31931:31;;:20;31943:7;31931:11;:20::i;:::-;:31;;;31911:51;:87;;;;31966:32;31983:5;31990:7;31966:16;:32::i;:::-;31911:87;31903:96;;;31659:348;;;;:::o;34768:625::-;34927:4;34900:31;;:23;34915:7;34900:14;:23::i;:::-;:31;;;34892:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35006:1;34992:16;;:2;:16;;;;34984:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35062:39;35083:4;35089:2;35093:7;35062:20;:39::i;:::-;35166:29;35183:1;35187:7;35166:8;:29::i;:::-;35227:1;35208:9;:15;35218:4;35208:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35256:1;35239:9;:13;35249:2;35239:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35287:2;35268:7;:16;35276:7;35268:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35326:7;35322:2;35307:27;;35316:4;35307:27;;;;;;;;;;;;35347:38;35367:4;35373:2;35377:7;35347:19;:38::i;:::-;34768:625;;;:::o;6847:191::-;6921:16;6940:6;;;;;;;;;;;6921:25;;6966:8;6957:6;;:17;;;;;;;;;;;;;;;;;;7021:8;6990:40;;7011:8;6990:40;;;;;;;;;;;;6910:128;6847:191;:::o;43150:204::-;43230:9;43225:124;43249:11;43245:1;:15;43225:124;;;43276:18;:6;:16;:18::i;:::-;43303:38;43313:9;43324:16;:6;:14;:16::i;:::-;43303:9;:38::i;:::-;43262:3;;;;;:::i;:::-;;;;43225:124;;;;43150:204;;:::o;35827:315::-;35982:8;35973:17;;:5;:17;;;;35965:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36069:8;36031:18;:25;36050:5;36031:25;;;;;;;;;;;;;;;:35;36057:8;36031:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36115:8;36093:41;;36108:5;36093:41;;;36125:8;36093:41;;;;;;:::i;:::-;;;;;;;;35827:315;;;:::o;30737:::-;30894:28;30904:4;30910:2;30914:7;30894:9;:28::i;:::-;30941:48;30964:4;30970:2;30974:7;30983:5;30941:22;:48::i;:::-;30933:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30737:315;;;;:::o;43360:104::-;43420:13;43449:9;43442:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43360:104;:::o;1863:723::-;1919:13;2149:1;2140:5;:10;2136:53;;;2167:10;;;;;;;;;;;;;;;;;;;;;2136:53;2199:12;2214:5;2199:20;;2230:14;2255:78;2270:1;2262:4;:9;2255:78;;2288:8;;;;;:::i;:::-;;;;2319:2;2311:10;;;;;:::i;:::-;;;2255:78;;;2343:19;2375:6;2365:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2343:39;;2393:154;2409:1;2400:5;:10;2393:154;;2437:1;2427:11;;;;;:::i;:::-;;;2504:2;2496:5;:10;;;;:::i;:::-;2483:2;:24;;;;:::i;:::-;2470:39;;2453:6;2460;2453:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2533:2;2524:11;;;;;:::i;:::-;;;2393:154;;;2571:6;2557:21;;;;;1863:723;;;;:::o;38078:126::-;;;;:::o;38589:125::-;;;;:::o;1027:127::-;1134:1;1116:7;:14;;;:19;;;;;;;;;;;1027:127;:::o;32349:110::-;32425:26;32435:2;32439:7;32425:26;;;;;;;;;;;;:9;:26::i;:::-;32349:110;;:::o;36707:799::-;36862:4;36883:15;:2;:13;;;:15::i;:::-;36879:620;;;36935:2;36919:36;;;36956:12;:10;:12::i;:::-;36970:4;36976:7;36985:5;36919:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36915:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37178:1;37161:6;:13;:18;37157:272;;;37204:60;;;;;;;;;;:::i;:::-;;;;;;;;37157:272;37379:6;37373:13;37364:6;37360:2;37356:15;37349:38;36915:529;37052:41;;;37042:51;;;:6;:51;;;;37035:58;;;;;36879:620;37483:4;37476:11;;36707:799;;;;;;;:::o;32686:321::-;32816:18;32822:2;32826:7;32816:5;:18::i;:::-;32867:54;32898:1;32902:2;32906:7;32915:5;32867:22;:54::i;:::-;32845:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32686:321;;;:::o;8278:326::-;8338:4;8595:1;8573:7;:19;;;:23;8566:30;;8278:326;;;:::o;33343:439::-;33437:1;33423:16;;:2;:16;;;;33415:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33496:16;33504:7;33496;:16::i;:::-;33495:17;33487:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33558:45;33587:1;33591:2;33595:7;33558:20;:45::i;:::-;33633:1;33616:9;:13;33626:2;33616:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33664:2;33645:7;:16;33653:7;33645:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33709:7;33705:2;33684:33;;33701:1;33684:33;;;;;;;;;;;;33730:44;33758:1;33762:2;33766:7;33730:19;:44::i;:::-;33343:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:474::-;8711:6;8719;8768:2;8756:9;8747:7;8743:23;8739:32;8736:119;;;8774:79;;:::i;:::-;8736:119;8894:1;8919:53;8964:7;8955:6;8944:9;8940:22;8919:53;:::i;:::-;8909:63;;8865:117;9021:2;9047:53;9092:7;9083:6;9072:9;9068:22;9047:53;:::i;:::-;9037:63;;8992:118;8643:474;;;;;:::o;9123:179::-;9192:10;9213:46;9255:3;9247:6;9213:46;:::i;:::-;9291:4;9286:3;9282:14;9268:28;;9123:179;;;;:::o;9308:118::-;9395:24;9413:5;9395:24;:::i;:::-;9390:3;9383:37;9308:118;;:::o;9462:732::-;9581:3;9610:54;9658:5;9610:54;:::i;:::-;9680:86;9759:6;9754:3;9680:86;:::i;:::-;9673:93;;9790:56;9840:5;9790:56;:::i;:::-;9869:7;9900:1;9885:284;9910:6;9907:1;9904:13;9885:284;;;9986:6;9980:13;10013:63;10072:3;10057:13;10013:63;:::i;:::-;10006:70;;10099:60;10152:6;10099:60;:::i;:::-;10089:70;;9945:224;9932:1;9929;9925:9;9920:14;;9885:284;;;9889:14;10185:3;10178:10;;9586:608;;;9462:732;;;;:::o;10200:109::-;10281:21;10296:5;10281:21;:::i;:::-;10276:3;10269:34;10200:109;;:::o;10315:360::-;10401:3;10429:38;10461:5;10429:38;:::i;:::-;10483:70;10546:6;10541:3;10483:70;:::i;:::-;10476:77;;10562:52;10607:6;10602:3;10595:4;10588:5;10584:16;10562:52;:::i;:::-;10639:29;10661:6;10639:29;:::i;:::-;10634:3;10630:39;10623:46;;10405:270;10315:360;;;;:::o;10681:364::-;10769:3;10797:39;10830:5;10797:39;:::i;:::-;10852:71;10916:6;10911:3;10852:71;:::i;:::-;10845:78;;10932:52;10977:6;10972:3;10965:4;10958:5;10954:16;10932:52;:::i;:::-;11009:29;11031:6;11009:29;:::i;:::-;11004:3;11000:39;10993:46;;10773:272;10681:364;;;;:::o;11051:377::-;11157:3;11185:39;11218:5;11185:39;:::i;:::-;11240:89;11322:6;11317:3;11240:89;:::i;:::-;11233:96;;11338:52;11383:6;11378:3;11371:4;11364:5;11360:16;11338:52;:::i;:::-;11415:6;11410:3;11406:16;11399:23;;11161:267;11051:377;;;;:::o;11458:845::-;11561:3;11598:5;11592:12;11627:36;11653:9;11627:36;:::i;:::-;11679:89;11761:6;11756:3;11679:89;:::i;:::-;11672:96;;11799:1;11788:9;11784:17;11815:1;11810:137;;;;11961:1;11956:341;;;;11777:520;;11810:137;11894:4;11890:9;11879;11875:25;11870:3;11863:38;11930:6;11925:3;11921:16;11914:23;;11810:137;;11956:341;12023:38;12055:5;12023:38;:::i;:::-;12083:1;12097:154;12111:6;12108:1;12105:13;12097:154;;;12185:7;12179:14;12175:1;12170:3;12166:11;12159:35;12235:1;12226:7;12222:15;12211:26;;12133:4;12130:1;12126:12;12121:17;;12097:154;;;12280:6;12275:3;12271:16;12264:23;;11963:334;;11777:520;;11565:738;;11458:845;;;;:::o;12309:366::-;12451:3;12472:67;12536:2;12531:3;12472:67;:::i;:::-;12465:74;;12548:93;12637:3;12548:93;:::i;:::-;12666:2;12661:3;12657:12;12650:19;;12309:366;;;:::o;12681:::-;12823:3;12844:67;12908:2;12903:3;12844:67;:::i;:::-;12837:74;;12920:93;13009:3;12920:93;:::i;:::-;13038:2;13033:3;13029:12;13022:19;;12681:366;;;:::o;13053:::-;13195:3;13216:67;13280:2;13275:3;13216:67;:::i;:::-;13209:74;;13292:93;13381:3;13292:93;:::i;:::-;13410:2;13405:3;13401:12;13394:19;;13053:366;;;:::o;13425:::-;13567:3;13588:67;13652:2;13647:3;13588:67;:::i;:::-;13581:74;;13664:93;13753:3;13664:93;:::i;:::-;13782:2;13777:3;13773:12;13766:19;;13425:366;;;:::o;13797:::-;13939:3;13960:67;14024:2;14019:3;13960:67;:::i;:::-;13953:74;;14036:93;14125:3;14036:93;:::i;:::-;14154:2;14149:3;14145:12;14138:19;;13797:366;;;:::o;14169:::-;14311:3;14332:67;14396:2;14391:3;14332:67;:::i;:::-;14325:74;;14408:93;14497:3;14408:93;:::i;:::-;14526:2;14521:3;14517:12;14510:19;;14169:366;;;:::o;14541:::-;14683:3;14704:67;14768:2;14763:3;14704:67;:::i;:::-;14697:74;;14780:93;14869:3;14780:93;:::i;:::-;14898:2;14893:3;14889:12;14882:19;;14541:366;;;:::o;14913:::-;15055:3;15076:67;15140:2;15135:3;15076:67;:::i;:::-;15069:74;;15152:93;15241:3;15152:93;:::i;:::-;15270:2;15265:3;15261:12;15254:19;;14913:366;;;:::o;15285:::-;15427:3;15448:67;15512:2;15507:3;15448:67;:::i;:::-;15441:74;;15524:93;15613:3;15524:93;:::i;:::-;15642:2;15637:3;15633:12;15626:19;;15285:366;;;:::o;15657:::-;15799:3;15820:67;15884:2;15879:3;15820:67;:::i;:::-;15813:74;;15896:93;15985:3;15896:93;:::i;:::-;16014:2;16009:3;16005:12;15998:19;;15657:366;;;:::o;16029:::-;16171:3;16192:67;16256:2;16251:3;16192:67;:::i;:::-;16185:74;;16268:93;16357:3;16268:93;:::i;:::-;16386:2;16381:3;16377:12;16370:19;;16029:366;;;:::o;16401:::-;16543:3;16564:67;16628:2;16623:3;16564:67;:::i;:::-;16557:74;;16640:93;16729:3;16640:93;:::i;:::-;16758:2;16753:3;16749:12;16742:19;;16401:366;;;:::o;16773:::-;16915:3;16936:67;17000:2;16995:3;16936:67;:::i;:::-;16929:74;;17012:93;17101:3;17012:93;:::i;:::-;17130:2;17125:3;17121:12;17114:19;;16773:366;;;:::o;17145:::-;17287:3;17308:67;17372:2;17367:3;17308:67;:::i;:::-;17301:74;;17384:93;17473:3;17384:93;:::i;:::-;17502:2;17497:3;17493:12;17486:19;;17145:366;;;:::o;17517:::-;17659:3;17680:67;17744:2;17739:3;17680:67;:::i;:::-;17673:74;;17756:93;17845:3;17756:93;:::i;:::-;17874:2;17869:3;17865:12;17858:19;;17517:366;;;:::o;17889:::-;18031:3;18052:67;18116:2;18111:3;18052:67;:::i;:::-;18045:74;;18128:93;18217:3;18128:93;:::i;:::-;18246:2;18241:3;18237:12;18230:19;;17889:366;;;:::o;18261:::-;18403:3;18424:67;18488:2;18483:3;18424:67;:::i;:::-;18417:74;;18500:93;18589:3;18500:93;:::i;:::-;18618:2;18613:3;18609:12;18602:19;;18261:366;;;:::o;18633:::-;18775:3;18796:67;18860:2;18855:3;18796:67;:::i;:::-;18789:74;;18872:93;18961:3;18872:93;:::i;:::-;18990:2;18985:3;18981:12;18974:19;;18633:366;;;:::o;19005:398::-;19164:3;19185:83;19266:1;19261:3;19185:83;:::i;:::-;19178:90;;19277:93;19366:3;19277:93;:::i;:::-;19395:1;19390:3;19386:11;19379:18;;19005:398;;;:::o;19409:366::-;19551:3;19572:67;19636:2;19631:3;19572:67;:::i;:::-;19565:74;;19648:93;19737:3;19648:93;:::i;:::-;19766:2;19761:3;19757:12;19750:19;;19409:366;;;:::o;19781:::-;19923:3;19944:67;20008:2;20003:3;19944:67;:::i;:::-;19937:74;;20020:93;20109:3;20020:93;:::i;:::-;20138:2;20133:3;20129:12;20122:19;;19781:366;;;:::o;20153:::-;20295:3;20316:67;20380:2;20375:3;20316:67;:::i;:::-;20309:74;;20392:93;20481:3;20392:93;:::i;:::-;20510:2;20505:3;20501:12;20494:19;;20153:366;;;:::o;20525:108::-;20602:24;20620:5;20602:24;:::i;:::-;20597:3;20590:37;20525:108;;:::o;20639:118::-;20726:24;20744:5;20726:24;:::i;:::-;20721:3;20714:37;20639:118;;:::o;20763:589::-;20988:3;21010:95;21101:3;21092:6;21010:95;:::i;:::-;21003:102;;21122:95;21213:3;21204:6;21122:95;:::i;:::-;21115:102;;21234:92;21322:3;21313:6;21234:92;:::i;:::-;21227:99;;21343:3;21336:10;;20763:589;;;;;;:::o;21358:379::-;21542:3;21564:147;21707:3;21564:147;:::i;:::-;21557:154;;21728:3;21721:10;;21358:379;;;:::o;21743:222::-;21836:4;21874:2;21863:9;21859:18;21851:26;;21887:71;21955:1;21944:9;21940:17;21931:6;21887:71;:::i;:::-;21743:222;;;;:::o;21971:640::-;22166:4;22204:3;22193:9;22189:19;22181:27;;22218:71;22286:1;22275:9;22271:17;22262:6;22218:71;:::i;:::-;22299:72;22367:2;22356:9;22352:18;22343:6;22299:72;:::i;:::-;22381;22449:2;22438:9;22434:18;22425:6;22381:72;:::i;:::-;22500:9;22494:4;22490:20;22485:2;22474:9;22470:18;22463:48;22528:76;22599:4;22590:6;22528:76;:::i;:::-;22520:84;;21971:640;;;;;;;:::o;22617:373::-;22760:4;22798:2;22787:9;22783:18;22775:26;;22847:9;22841:4;22837:20;22833:1;22822:9;22818:17;22811:47;22875:108;22978:4;22969:6;22875:108;:::i;:::-;22867:116;;22617:373;;;;:::o;22996:210::-;23083:4;23121:2;23110:9;23106:18;23098:26;;23134:65;23196:1;23185:9;23181:17;23172:6;23134:65;:::i;:::-;22996:210;;;;:::o;23212:313::-;23325:4;23363:2;23352:9;23348:18;23340:26;;23412:9;23406:4;23402:20;23398:1;23387:9;23383:17;23376:47;23440:78;23513:4;23504:6;23440:78;:::i;:::-;23432:86;;23212:313;;;;:::o;23531:419::-;23697:4;23735:2;23724:9;23720:18;23712:26;;23784:9;23778:4;23774:20;23770:1;23759:9;23755:17;23748:47;23812:131;23938:4;23812:131;:::i;:::-;23804:139;;23531:419;;;:::o;23956:::-;24122:4;24160:2;24149:9;24145:18;24137:26;;24209:9;24203:4;24199:20;24195:1;24184:9;24180:17;24173:47;24237:131;24363:4;24237:131;:::i;:::-;24229:139;;23956:419;;;:::o;24381:::-;24547:4;24585:2;24574:9;24570:18;24562:26;;24634:9;24628:4;24624:20;24620:1;24609:9;24605:17;24598:47;24662:131;24788:4;24662:131;:::i;:::-;24654:139;;24381:419;;;:::o;24806:::-;24972:4;25010:2;24999:9;24995:18;24987:26;;25059:9;25053:4;25049:20;25045:1;25034:9;25030:17;25023:47;25087:131;25213:4;25087:131;:::i;:::-;25079:139;;24806:419;;;:::o;25231:::-;25397:4;25435:2;25424:9;25420:18;25412:26;;25484:9;25478:4;25474:20;25470:1;25459:9;25455:17;25448:47;25512:131;25638:4;25512:131;:::i;:::-;25504:139;;25231:419;;;:::o;25656:::-;25822:4;25860:2;25849:9;25845:18;25837:26;;25909:9;25903:4;25899:20;25895:1;25884:9;25880:17;25873:47;25937:131;26063:4;25937:131;:::i;:::-;25929:139;;25656:419;;;:::o;26081:::-;26247:4;26285:2;26274:9;26270:18;26262:26;;26334:9;26328:4;26324:20;26320:1;26309:9;26305:17;26298:47;26362:131;26488:4;26362:131;:::i;:::-;26354:139;;26081:419;;;:::o;26506:::-;26672:4;26710:2;26699:9;26695:18;26687:26;;26759:9;26753:4;26749:20;26745:1;26734:9;26730:17;26723:47;26787:131;26913:4;26787:131;:::i;:::-;26779:139;;26506:419;;;:::o;26931:::-;27097:4;27135:2;27124:9;27120:18;27112:26;;27184:9;27178:4;27174:20;27170:1;27159:9;27155:17;27148:47;27212:131;27338:4;27212:131;:::i;:::-;27204:139;;26931:419;;;:::o;27356:::-;27522:4;27560:2;27549:9;27545:18;27537:26;;27609:9;27603:4;27599:20;27595:1;27584:9;27580:17;27573:47;27637:131;27763:4;27637:131;:::i;:::-;27629:139;;27356:419;;;:::o;27781:::-;27947:4;27985:2;27974:9;27970:18;27962:26;;28034:9;28028:4;28024:20;28020:1;28009:9;28005:17;27998:47;28062:131;28188:4;28062:131;:::i;:::-;28054:139;;27781:419;;;:::o;28206:::-;28372:4;28410:2;28399:9;28395:18;28387:26;;28459:9;28453:4;28449:20;28445:1;28434:9;28430:17;28423:47;28487:131;28613:4;28487:131;:::i;:::-;28479:139;;28206:419;;;:::o;28631:::-;28797:4;28835:2;28824:9;28820:18;28812:26;;28884:9;28878:4;28874:20;28870:1;28859:9;28855:17;28848:47;28912:131;29038:4;28912:131;:::i;:::-;28904:139;;28631:419;;;:::o;29056:::-;29222:4;29260:2;29249:9;29245:18;29237:26;;29309:9;29303:4;29299:20;29295:1;29284:9;29280:17;29273:47;29337:131;29463:4;29337:131;:::i;:::-;29329:139;;29056:419;;;:::o;29481:::-;29647:4;29685:2;29674:9;29670:18;29662:26;;29734:9;29728:4;29724:20;29720:1;29709:9;29705:17;29698:47;29762:131;29888:4;29762:131;:::i;:::-;29754:139;;29481:419;;;:::o;29906:::-;30072:4;30110:2;30099:9;30095:18;30087:26;;30159:9;30153:4;30149:20;30145:1;30134:9;30130:17;30123:47;30187:131;30313:4;30187:131;:::i;:::-;30179:139;;29906:419;;;:::o;30331:::-;30497:4;30535:2;30524:9;30520:18;30512:26;;30584:9;30578:4;30574:20;30570:1;30559:9;30555:17;30548:47;30612:131;30738:4;30612:131;:::i;:::-;30604:139;;30331:419;;;:::o;30756:::-;30922:4;30960:2;30949:9;30945:18;30937:26;;31009:9;31003:4;30999:20;30995:1;30984:9;30980:17;30973:47;31037:131;31163:4;31037:131;:::i;:::-;31029:139;;30756:419;;;:::o;31181:::-;31347:4;31385:2;31374:9;31370:18;31362:26;;31434:9;31428:4;31424:20;31420:1;31409:9;31405:17;31398:47;31462:131;31588:4;31462:131;:::i;:::-;31454:139;;31181:419;;;:::o;31606:::-;31772:4;31810:2;31799:9;31795:18;31787:26;;31859:9;31853:4;31849:20;31845:1;31834:9;31830:17;31823:47;31887:131;32013:4;31887:131;:::i;:::-;31879:139;;31606:419;;;:::o;32031:::-;32197:4;32235:2;32224:9;32220:18;32212:26;;32284:9;32278:4;32274:20;32270:1;32259:9;32255:17;32248:47;32312:131;32438:4;32312:131;:::i;:::-;32304:139;;32031:419;;;:::o;32456:222::-;32549:4;32587:2;32576:9;32572:18;32564:26;;32600:71;32668:1;32657:9;32653:17;32644:6;32600:71;:::i;:::-;32456:222;;;;:::o;32684:129::-;32718:6;32745:20;;:::i;:::-;32735:30;;32774:33;32802:4;32794:6;32774:33;:::i;:::-;32684:129;;;:::o;32819:75::-;32852:6;32885:2;32879:9;32869:19;;32819:75;:::o;32900:307::-;32961:4;33051:18;33043:6;33040:30;33037:56;;;33073:18;;:::i;:::-;33037:56;33111:29;33133:6;33111:29;:::i;:::-;33103:37;;33195:4;33189;33185:15;33177:23;;32900:307;;;:::o;33213:308::-;33275:4;33365:18;33357:6;33354:30;33351:56;;;33387:18;;:::i;:::-;33351:56;33425:29;33447:6;33425:29;:::i;:::-;33417:37;;33509:4;33503;33499:15;33491:23;;33213:308;;;:::o;33527:132::-;33594:4;33617:3;33609:11;;33647:4;33642:3;33638:14;33630:22;;33527:132;;;:::o;33665:141::-;33714:4;33737:3;33729:11;;33760:3;33757:1;33750:14;33794:4;33791:1;33781:18;33773:26;;33665:141;;;:::o;33812:114::-;33879:6;33913:5;33907:12;33897:22;;33812:114;;;:::o;33932:98::-;33983:6;34017:5;34011:12;34001:22;;33932:98;;;:::o;34036:99::-;34088:6;34122:5;34116:12;34106:22;;34036:99;;;:::o;34141:113::-;34211:4;34243;34238:3;34234:14;34226:22;;34141:113;;;:::o;34260:184::-;34359:11;34393:6;34388:3;34381:19;34433:4;34428:3;34424:14;34409:29;;34260:184;;;;:::o;34450:168::-;34533:11;34567:6;34562:3;34555:19;34607:4;34602:3;34598:14;34583:29;;34450:168;;;;:::o;34624:147::-;34725:11;34762:3;34747:18;;34624:147;;;;:::o;34777:169::-;34861:11;34895:6;34890:3;34883:19;34935:4;34930:3;34926:14;34911:29;;34777:169;;;;:::o;34952:148::-;35054:11;35091:3;35076:18;;34952:148;;;;:::o;35106:305::-;35146:3;35165:20;35183:1;35165:20;:::i;:::-;35160:25;;35199:20;35217:1;35199:20;:::i;:::-;35194:25;;35353:1;35285:66;35281:74;35278:1;35275:81;35272:107;;;35359:18;;:::i;:::-;35272:107;35403:1;35400;35396:9;35389:16;;35106:305;;;;:::o;35417:185::-;35457:1;35474:20;35492:1;35474:20;:::i;:::-;35469:25;;35508:20;35526:1;35508:20;:::i;:::-;35503:25;;35547:1;35537:35;;35552:18;;:::i;:::-;35537:35;35594:1;35591;35587:9;35582:14;;35417:185;;;;:::o;35608:348::-;35648:7;35671:20;35689:1;35671:20;:::i;:::-;35666:25;;35705:20;35723:1;35705:20;:::i;:::-;35700:25;;35893:1;35825:66;35821:74;35818:1;35815:81;35810:1;35803:9;35796:17;35792:105;35789:131;;;35900:18;;:::i;:::-;35789:131;35948:1;35945;35941:9;35930:20;;35608:348;;;;:::o;35962:191::-;36002:4;36022:20;36040:1;36022:20;:::i;:::-;36017:25;;36056:20;36074:1;36056:20;:::i;:::-;36051:25;;36095:1;36092;36089:8;36086:34;;;36100:18;;:::i;:::-;36086:34;36145:1;36142;36138:9;36130:17;;35962:191;;;;:::o;36159:96::-;36196:7;36225:24;36243:5;36225:24;:::i;:::-;36214:35;;36159:96;;;:::o;36261:90::-;36295:7;36338:5;36331:13;36324:21;36313:32;;36261:90;;;:::o;36357:149::-;36393:7;36433:66;36426:5;36422:78;36411:89;;36357:149;;;:::o;36512:126::-;36549:7;36589:42;36582:5;36578:54;36567:65;;36512:126;;;:::o;36644:77::-;36681:7;36710:5;36699:16;;36644:77;;;:::o;36727:154::-;36811:6;36806:3;36801;36788:30;36873:1;36864:6;36859:3;36855:16;36848:27;36727:154;;;:::o;36887:307::-;36955:1;36965:113;36979:6;36976:1;36973:13;36965:113;;;37064:1;37059:3;37055:11;37049:18;37045:1;37040:3;37036:11;37029:39;37001:2;36998:1;36994:10;36989:15;;36965:113;;;37096:6;37093:1;37090:13;37087:101;;;37176:1;37167:6;37162:3;37158:16;37151:27;37087:101;36936:258;36887:307;;;:::o;37200:320::-;37244:6;37281:1;37275:4;37271:12;37261:22;;37328:1;37322:4;37318:12;37349:18;37339:81;;37405:4;37397:6;37393:17;37383:27;;37339:81;37467:2;37459:6;37456:14;37436:18;37433:38;37430:84;;;37486:18;;:::i;:::-;37430:84;37251:269;37200:320;;;:::o;37526:281::-;37609:27;37631:4;37609:27;:::i;:::-;37601:6;37597:40;37739:6;37727:10;37724:22;37703:18;37691:10;37688:34;37685:62;37682:88;;;37750:18;;:::i;:::-;37682:88;37790:10;37786:2;37779:22;37569:238;37526:281;;:::o;37813:233::-;37852:3;37875:24;37893:5;37875:24;:::i;:::-;37866:33;;37921:66;37914:5;37911:77;37908:103;;;37991:18;;:::i;:::-;37908:103;38038:1;38031:5;38027:13;38020:20;;37813:233;;;:::o;38052:176::-;38084:1;38101:20;38119:1;38101:20;:::i;:::-;38096:25;;38135:20;38153:1;38135:20;:::i;:::-;38130:25;;38174:1;38164:35;;38179:18;;:::i;:::-;38164:35;38220:1;38217;38213:9;38208:14;;38052:176;;;;:::o;38234:180::-;38282:77;38279:1;38272:88;38379:4;38376:1;38369:15;38403:4;38400:1;38393:15;38420:180;38468:77;38465:1;38458:88;38565:4;38562:1;38555:15;38589:4;38586:1;38579:15;38606:180;38654:77;38651:1;38644:88;38751:4;38748:1;38741:15;38775:4;38772:1;38765:15;38792:180;38840:77;38837:1;38830:88;38937:4;38934:1;38927:15;38961:4;38958:1;38951:15;38978:180;39026:77;39023:1;39016:88;39123:4;39120:1;39113:15;39147:4;39144:1;39137:15;39164:117;39273:1;39270;39263:12;39287:117;39396:1;39393;39386:12;39410:117;39519:1;39516;39509:12;39533:117;39642:1;39639;39632:12;39656:117;39765:1;39762;39755:12;39779:117;39888:1;39885;39878:12;39902:102;39943:6;39994:2;39990:7;39985:2;39978:5;39974:14;39970:28;39960:38;;39902:102;;;:::o;40010:237::-;40150:34;40146:1;40138:6;40134:14;40127:58;40219:20;40214:2;40206:6;40202:15;40195:45;40010:237;:::o;40253:225::-;40393:34;40389:1;40381:6;40377:14;40370:58;40462:8;40457:2;40449:6;40445:15;40438:33;40253:225;:::o;40484:224::-;40624:34;40620:1;40612:6;40608:14;40601:58;40693:7;40688:2;40680:6;40676:15;40669:32;40484:224;:::o;40714:178::-;40854:30;40850:1;40842:6;40838:14;40831:54;40714:178;:::o;40898:170::-;41038:22;41034:1;41026:6;41022:14;41015:46;40898:170;:::o;41074:223::-;41214:34;41210:1;41202:6;41198:14;41191:58;41283:6;41278:2;41270:6;41266:15;41259:31;41074:223;:::o;41303:175::-;41443:27;41439:1;41431:6;41427:14;41420:51;41303:175;:::o;41484:176::-;41624:28;41620:1;41612:6;41608:14;41601:52;41484:176;:::o;41666:231::-;41806:34;41802:1;41794:6;41790:14;41783:58;41875:14;41870:2;41862:6;41858:15;41851:39;41666:231;:::o;41903:243::-;42043:34;42039:1;42031:6;42027:14;42020:58;42112:26;42107:2;42099:6;42095:15;42088:51;41903:243;:::o;42152:229::-;42292:34;42288:1;42280:6;42276:14;42269:58;42361:12;42356:2;42348:6;42344:15;42337:37;42152:229;:::o;42387:228::-;42527:34;42523:1;42515:6;42511:14;42504:58;42596:11;42591:2;42583:6;42579:15;42572:36;42387:228;:::o;42621:182::-;42761:34;42757:1;42749:6;42745:14;42738:58;42621:182;:::o;42809:231::-;42949:34;42945:1;42937:6;42933:14;42926:58;43018:14;43013:2;43005:6;43001:15;42994:39;42809:231;:::o;43046:182::-;43186:34;43182:1;43174:6;43170:14;43163:58;43046:182;:::o;43234:173::-;43374:25;43370:1;43362:6;43358:14;43351:49;43234:173;:::o;43413:234::-;43553:34;43549:1;43541:6;43537:14;43530:58;43622:17;43617:2;43609:6;43605:15;43598:42;43413:234;:::o;43653:220::-;43793:34;43789:1;43781:6;43777:14;43770:58;43862:3;43857:2;43849:6;43845:15;43838:28;43653:220;:::o;43879:114::-;;:::o;43999:170::-;44139:22;44135:1;44127:6;44123:14;44116:46;43999:170;:::o;44175:236::-;44315:34;44311:1;44303:6;44299:14;44292:58;44384:19;44379:2;44371:6;44367:15;44360:44;44175:236;:::o;44417:169::-;44557:21;44553:1;44545:6;44541:14;44534:45;44417:169;:::o;44592:122::-;44665:24;44683:5;44665:24;:::i;:::-;44658:5;44655:35;44645:63;;44704:1;44701;44694:12;44645:63;44592:122;:::o;44720:116::-;44790:21;44805:5;44790:21;:::i;:::-;44783:5;44780:32;44770:60;;44826:1;44823;44816:12;44770:60;44720:116;:::o;44842:120::-;44914:23;44931:5;44914:23;:::i;:::-;44907:5;44904:34;44894:62;;44952:1;44949;44942:12;44894:62;44842:120;:::o;44968:122::-;45041:24;45059:5;45041:24;:::i;:::-;45034:5;45031:35;45021:63;;45080:1;45077;45070:12;45021:63;44968:122;:::o
Swarm Source
ipfs://c3375cb83bde042e13ff76d1d4830590b9779136b007ef3d2b7a1f2f6b02696c
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.