ERC-721
Overview
Max Total Supply
3,126 PTF
Holders
1,154
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 PTFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Piratetownwtf
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-08 */ // 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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // 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: ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: Piratetownwtf.sol pragma solidity 0.8.14; contract Piratetownwtf is ERC721A, Ownable { using Strings for uint256; bool public paused; bool public revealed; string private _unrevealedUriPrefix; string private _uriPrefix; string private _uriSuffix; uint256 public cost; uint256 public maxSupply; uint256 public freeToMintSupply; uint256 public maxMintAmountPerAddress; constructor(string memory initUnrevealedUriPrefix) ERC721A("PirateTown.WTF", "PTF") { paused = true; cost = 0.0069 ether; maxSupply = 6_000; freeToMintSupply = 3_000; maxMintAmountPerAddress = 3; _uriSuffix = ".json"; _unrevealedUriPrefix = initUnrevealedUriPrefix; } function mint(uint256 amount) external payable { require(tx.origin == _msgSender(), "Piratetownwtf: contract denied"); require(!paused, "Piratetownwtf: minting is paused"); require(_totalMinted() + amount <= maxSupply, "Piratetownwtf: max token supply exceeded"); require(amount > 0 && _numberMinted(_msgSender()) + amount <= maxMintAmountPerAddress, "Piratetownwtf: invalid mint amount"); if (_totalMinted() + amount > freeToMintSupply || _claimedFreeMint(_msgSender())) { require(msg.value >= cost * amount, "Piratetownwtf: insufficient ether"); } else { _setAux(_msgSender(), 1); } _safeMint(_msgSender(), amount); } function airDrop(address[] calldata addresses, uint8[] calldata amounts) external onlyOwner { require(addresses.length == amounts.length && addresses.length > 0, "Piratetownwtf: invalid function arguments"); uint256 newSupply = _totalMinted(); for (uint256 i = 0; i < amounts.length; i++) newSupply += amounts[i]; require(newSupply <= maxSupply, "Piratetownwtf: max token supply exceeded"); for (uint256 i = 0; i < addresses.length; i++) { _safeMint(addresses[i], amounts[i]); } } function flipPausedState() external onlyOwner { paused = !paused; } function reveal(string memory initUriPrefix) external onlyOwner { revealed = true; _uriPrefix = initUriPrefix; } function withdraw() external onlyOwner { (bool success, ) = payable(owner()).call{ value: address(this).balance }(""); require(success, "Piratetownwtf: failed to transfer"); } function tokenURI(uint256 tokenID) public view override returns(string memory) { require(_exists(tokenID), "ERC721Metadata: URI query for nonexistent token"); if (!revealed) return _unrevealedUriPrefix; string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked(currentBaseURI, tokenID.toString(), _uriSuffix) ) : ""; } function walletOfOwner(address account) external view returns(uint256[] memory) { uint256 ownerTokenCount = balanceOf(account); uint256[] memory ownedTokenIDs = new uint256[](ownerTokenCount); uint256 tokenIndex = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && tokenIndex <= maxSupply) { address owner = ownerOf(tokenIndex); if (owner == account) { ownedTokenIDs[ownedTokenIndex] = tokenIndex; ownedTokenIndex++; } tokenIndex++; } return ownedTokenIDs; } function setURIprefix(string memory newPrefix) external onlyOwner { _uriPrefix = newPrefix; } function setUnrevealedURIprefix(string memory newUnrevealedURI) external onlyOwner { _unrevealedUriPrefix = newUnrevealedURI; } function setURIsuffix(string memory newSuffix) external onlyOwner { _uriSuffix = newSuffix; } function setFreeToMintSupply(uint256 newFreeToMintSupply) external onlyOwner { freeToMintSupply = newFreeToMintSupply; } function setMaxMintAmountPerAddress(uint256 newMaxMintAmountPerAddress) external onlyOwner { maxMintAmountPerAddress = newMaxMintAmountPerAddress; } function setCost(uint256 newCost) external onlyOwner { cost = newCost; } function _baseURI() internal view override returns(string memory) { return _uriPrefix; } function _startTokenId() internal pure override returns(uint256) { return 1; } function _claimedFreeMint(address account) internal view returns(bool) { return _getAux(account) == 0 ? false : true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"initUnrevealedUriPrefix","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"addresses","type":"address[]"},{"internalType":"uint8[]","name":"amounts","type":"uint8[]"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPausedState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeToMintSupply","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerAddress","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":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"initUriPrefix","type":"string"}],"name":"reveal","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":"newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFreeToMintSupply","type":"uint256"}],"name":"setFreeToMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxMintAmountPerAddress","type":"uint256"}],"name":"setMaxMintAmountPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newPrefix","type":"string"}],"name":"setURIprefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newSuffix","type":"string"}],"name":"setURIsuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUnrevealedURI","type":"string"}],"name":"setUnrevealedURIprefix","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":[{"internalType":"address","name":"account","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620049d2380380620049d28339818101604052810190620000379190620004e2565b6040518060400160405280600e81526020017f506972617465546f776e2e5754460000000000000000000000000000000000008152506040518060400160405280600381526020017f50544600000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000bb92919062000295565b508060039080519060200190620000d492919062000295565b50620000e5620001be60201b60201c565b60008190555050506200010d62000101620001c760201b60201c565b620001cf60201b60201c565b6001600860146101000a81548160ff0219169083151502179055506618838370f34000600c81905550611770600d81905550610bb8600e819055506003600f819055506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200019d92919062000295565b508060099080519060200190620001b692919062000295565b505062000597565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a39062000562565b90600052602060002090601f016020900481019282620002c7576000855562000313565b82601f10620002e257805160ff191683800117855562000313565b8280016001018555821562000313579182015b8281111562000312578251825591602001919060010190620002f5565b5b50905062000322919062000326565b5090565b5b808211156200034157600081600090555060010162000327565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003ae8262000363565b810181811067ffffffffffffffff82111715620003d057620003cf62000374565b5b80604052505050565b6000620003e562000345565b9050620003f38282620003a3565b919050565b600067ffffffffffffffff82111562000416576200041562000374565b5b620004218262000363565b9050602081019050919050565b60005b838110156200044e57808201518184015260208101905062000431565b838111156200045e576000848401525b50505050565b60006200047b6200047584620003f8565b620003d9565b9050828152602081018484840111156200049a57620004996200035e565b5b620004a78482856200042e565b509392505050565b600082601f830112620004c757620004c662000359565b5b8151620004d984826020860162000464565b91505092915050565b600060208284031215620004fb57620004fa6200034f565b5b600082015167ffffffffffffffff8111156200051c576200051b62000354565b5b6200052a84828501620004af565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200057b57607f821691505b60208210810362000591576200059062000533565b5b50919050565b61442b80620005a76000396000f3fe6080604052600436106102045760003560e01c80635c975abb11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d5abeb0114610747578063e985e9c514610772578063f2fde38b146107af578063f9daade4146107d857610204565b8063a22cb46514610666578063a50152291461068f578063aff72141146106b8578063b88d4fde146106e157610204565b8063715018a6116100e7578063715018a6146105c65780638da5cb5b146105dd57806393eff8511461060857806395d89b411461061f578063a0712d681461064a57610204565b80635c975abb146104f8578063617dd82a146105235780636352211e1461054c57806370a082311461058957610204565b80633ccfd60b1161019b5780634c1d3f8b1161016a5780634c1d3f8b146104255780634c2612471461045057806351830227146104795780635697f53e146104a45780635c41d75e146104cd57610204565b80633ccfd60b1461037f57806342842e0e14610396578063438b6300146103bf57806344a0d68a146103fc57610204565b806313faede6116101d757806313faede6146102d757806318160ddd146103025780631db2f61d1461032d57806323b872dd1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613150565b610801565b60405161023d9190613198565b60405180910390f35b34801561025257600080fd5b5061025b6108e3565b604051610268919061324c565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906132a4565b610975565b6040516102a59190613312565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613359565b6109f1565b005b3480156102e357600080fd5b506102ec610afb565b6040516102f991906133a8565b60405180910390f35b34801561030e57600080fd5b50610317610b01565b60405161032491906133a8565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f91906132a4565b610b18565b005b34801561036257600080fd5b5061037d600480360381019061037891906133c3565b610b9e565b005b34801561038b57600080fd5b50610394610bae565b005b3480156103a257600080fd5b506103bd60048036038101906103b891906133c3565b610ce0565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190613416565b610d00565b6040516103f39190613501565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e91906132a4565b610e0a565b005b34801561043157600080fd5b5061043a610e90565b60405161044791906133a8565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190613658565b610e96565b005b34801561048557600080fd5b5061048e610f47565b60405161049b9190613198565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c691906132a4565b610f5a565b005b3480156104d957600080fd5b506104e2610fe0565b6040516104ef91906133a8565b60405180910390f35b34801561050457600080fd5b5061050d610fe6565b60405161051a9190613198565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190613658565b610ff9565b005b34801561055857600080fd5b50610573600480360381019061056e91906132a4565b61108f565b6040516105809190613312565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190613416565b6110a5565b6040516105bd91906133a8565b60405180910390f35b3480156105d257600080fd5b506105db611174565b005b3480156105e957600080fd5b506105f26111fc565b6040516105ff9190613312565b60405180910390f35b34801561061457600080fd5b5061061d611226565b005b34801561062b57600080fd5b506106346112ce565b604051610641919061324c565b60405180910390f35b610664600480360381019061065f91906132a4565b611360565b005b34801561067257600080fd5b5061068d600480360381019061068891906136cd565b611596565b005b34801561069b57600080fd5b506106b660048036038101906106b19190613658565b61170d565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613658565b6117a3565b005b3480156106ed57600080fd5b50610708600480360381019061070391906137ae565b611839565b005b34801561071657600080fd5b50610731600480360381019061072c91906132a4565b6118b5565b60405161073e919061324c565b60405180910390f35b34801561075357600080fd5b5061075c611a06565b60405161076991906133a8565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190613831565b611a0c565b6040516107a69190613198565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190613416565b611aa0565b005b3480156107e457600080fd5b506107ff60048036038101906107fa9190613927565b611b97565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108cc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108dc57506108db82611d99565b5b9050919050565b6060600280546108f2906139d7565b80601f016020809104026020016040519081016040528092919081815260200182805461091e906139d7565b801561096b5780601f106109405761010080835404028352916020019161096b565b820191906000526020600020905b81548152906001019060200180831161094e57829003601f168201915b5050505050905090565b600061098082611e03565b6109b6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fc8261108f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a63576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a82611e51565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ab45750610ab281610aad611e51565b611a0c565b155b15610aeb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610af6838383611e59565b505050565b600c5481565b6000610b0b611f0b565b6001546000540303905090565b610b20611e51565b73ffffffffffffffffffffffffffffffffffffffff16610b3e6111fc565b73ffffffffffffffffffffffffffffffffffffffff1614610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90613a54565b60405180910390fd5b80600e8190555050565b610ba9838383611f14565b505050565b610bb6611e51565b73ffffffffffffffffffffffffffffffffffffffff16610bd46111fc565b73ffffffffffffffffffffffffffffffffffffffff1614610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2190613a54565b60405180910390fd5b6000610c346111fc565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c5790613aa5565b60006040518083038185875af1925050503d8060008114610c94576040519150601f19603f3d011682016040523d82523d6000602084013e610c99565b606091505b5050905080610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd490613b2c565b60405180910390fd5b50565b610cfb83838360405180602001604052806000815250611839565b505050565b60606000610d0d836110a5565b905060008167ffffffffffffffff811115610d2b57610d2a61352d565b5b604051908082528060200260200182016040528015610d595781602001602082028036833780820191505090505b50905060006001905060005b8381108015610d765750600d548211155b15610dfe576000610d868361108f565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dea5782848381518110610dcf57610dce613b4c565b5b6020026020010181815250508180610de690613baa565b9250505b8280610df590613baa565b93505050610d65565b82945050505050919050565b610e12611e51565b73ffffffffffffffffffffffffffffffffffffffff16610e306111fc565b73ffffffffffffffffffffffffffffffffffffffff1614610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90613a54565b60405180910390fd5b80600c8190555050565b600e5481565b610e9e611e51565b73ffffffffffffffffffffffffffffffffffffffff16610ebc6111fc565b73ffffffffffffffffffffffffffffffffffffffff1614610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0990613a54565b60405180910390fd5b6001600860156101000a81548160ff02191690831515021790555080600a9080519060200190610f43929190612ffe565b5050565b600860159054906101000a900460ff1681565b610f62611e51565b73ffffffffffffffffffffffffffffffffffffffff16610f806111fc565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90613a54565b60405180910390fd5b80600f8190555050565b600f5481565b600860149054906101000a900460ff1681565b611001611e51565b73ffffffffffffffffffffffffffffffffffffffff1661101f6111fc565b73ffffffffffffffffffffffffffffffffffffffff1614611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c90613a54565b60405180910390fd5b80600a908051906020019061108b929190612ffe565b5050565b600061109a826123c8565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61117c611e51565b73ffffffffffffffffffffffffffffffffffffffff1661119a6111fc565b73ffffffffffffffffffffffffffffffffffffffff16146111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e790613a54565b60405180910390fd5b6111fa6000612657565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61122e611e51565b73ffffffffffffffffffffffffffffffffffffffff1661124c6111fc565b73ffffffffffffffffffffffffffffffffffffffff16146112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990613a54565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6060600380546112dd906139d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611309906139d7565b80156113565780601f1061132b57610100808354040283529160200191611356565b820191906000526020600020905b81548152906001019060200180831161133957829003601f168201915b5050505050905090565b611368611e51565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90613c3e565b60405180910390fd5b600860149054906101000a900460ff1615611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c90613caa565b60405180910390fd5b600d548161143161271d565b61143b9190613cca565b111561147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390613d92565b60405180910390fd5b6000811180156114a85750600f548161149b611496611e51565b612730565b6114a59190613cca565b11155b6114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de90613e24565b60405180910390fd5b600e54816114f361271d565b6114fd9190613cca565b1180611515575061151461150f611e51565b61279a565b5b1561156f5780600c546115289190613e44565b34101561156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190613f10565b60405180910390fd5b611582565b61158161157a611e51565b60016127c6565b5b61159361158d611e51565b82612833565b50565b61159e611e51565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611602576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061160f611e51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116bc611e51565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117019190613198565b60405180910390a35050565b611715611e51565b73ffffffffffffffffffffffffffffffffffffffff166117336111fc565b73ffffffffffffffffffffffffffffffffffffffff1614611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090613a54565b60405180910390fd5b806009908051906020019061179f929190612ffe565b5050565b6117ab611e51565b73ffffffffffffffffffffffffffffffffffffffff166117c96111fc565b73ffffffffffffffffffffffffffffffffffffffff161461181f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181690613a54565b60405180910390fd5b80600b9080519060200190611835929190612ffe565b5050565b611844848484611f14565b6118638373ffffffffffffffffffffffffffffffffffffffff16612851565b8015611878575061187684848484612874565b155b156118af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606118c082611e03565b6118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f690613fa2565b60405180910390fd5b600860159054906101000a900460ff166119a55760098054611920906139d7565b80601f016020809104026020016040519081016040528092919081815260200182805461194c906139d7565b80156119995780601f1061196e57610100808354040283529160200191611999565b820191906000526020600020905b81548152906001019060200180831161197c57829003601f168201915b50505050509050611a01565b60006119af6129c4565b905060008151116119cf57604051806020016040528060008152506119fd565b806119d984612a56565b600b6040516020016119ed93929190614092565b6040516020818303038152906040525b9150505b919050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aa8611e51565b73ffffffffffffffffffffffffffffffffffffffff16611ac66111fc565b73ffffffffffffffffffffffffffffffffffffffff1614611b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1390613a54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8290614135565b60405180910390fd5b611b9481612657565b50565b611b9f611e51565b73ffffffffffffffffffffffffffffffffffffffff16611bbd6111fc565b73ffffffffffffffffffffffffffffffffffffffff1614611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a90613a54565b60405180910390fd5b8181905084849050148015611c2b5750600084849050115b611c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c61906141c7565b60405180910390fd5b6000611c7461271d565b905060005b83839050811015611ccf57838382818110611c9757611c96613b4c565b5b9050602002016020810190611cac9190614220565b60ff1682611cba9190613cca565b91508080611cc790613baa565b915050611c79565b50600d54811115611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c90613d92565b60405180910390fd5b60005b85859050811015611d9157611d7e868683818110611d3957611d38613b4c565b5b9050602002016020810190611d4e9190613416565b858584818110611d6157611d60613b4c565b5b9050602002016020810190611d769190614220565b60ff16612833565b8080611d8990613baa565b915050611d18565b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611e0e611f0b565b11158015611e1d575060005482105b8015611e4a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611f1f826123c8565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f8a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611fab611e51565b73ffffffffffffffffffffffffffffffffffffffff161480611fda5750611fd985611fd4611e51565b611a0c565b5b8061201f5750611fe8611e51565b73ffffffffffffffffffffffffffffffffffffffff1661200784610975565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612058576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036120be576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120cb8585856001612bb6565b6120d760008487611e59565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361235657600054821461235557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123c18585856001612bbc565b5050505050565b6123d0613084565b6000829050806123de611f0b565b111580156123ed575060005481105b15612620576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161261e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612502578092505050612652565b5b60011561261d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612618578092505050612652565b612503565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612727611f0b565b60005403905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000806127a683612bc2565b67ffffffffffffffff16146127bc5760016127bf565b60005b9050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b61284d828260405180602001604052806000815250612c22565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261289a611e51565b8786866040518563ffffffff1660e01b81526004016128bc94939291906142a2565b6020604051808303816000875af19250505080156128f857506040513d601f19601f820116820180604052508101906128f59190614303565b60015b612971573d8060008114612928576040519150601f19603f3d011682016040523d82523d6000602084013e61292d565b606091505b506000815103612969576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546129d3906139d7565b80601f01602080910402602001604051908101604052809291908181526020018280546129ff906139d7565b8015612a4c5780601f10612a2157610100808354040283529160200191612a4c565b820191906000526020600020905b815481529060010190602001808311612a2f57829003601f168201915b5050505050905090565b606060008203612a9d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bb1565b600082905060005b60008214612acf578080612ab890613baa565b915050600a82612ac8919061435f565b9150612aa5565b60008167ffffffffffffffff811115612aeb57612aea61352d565b5b6040519080825280601f01601f191660200182016040528015612b1d5781602001600182028036833780820191505090505b5090505b60008514612baa57600182612b369190614390565b9150600a85612b4591906143c4565b6030612b519190613cca565b60f81b818381518110612b6757612b66613b4c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ba3919061435f565b9450612b21565b8093505050505b919050565b50505050565b50505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b612c2f8383836001612c34565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612ca0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612cda576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ce76000868387612bb6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612eb15750612eb08773ffffffffffffffffffffffffffffffffffffffff16612851565b5b15612f76575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f266000888480600101955088612874565b612f5c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612eb7578260005414612f7157600080fd5b612fe1565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612f77575b816000819055505050612ff76000868387612bbc565b5050505050565b82805461300a906139d7565b90600052602060002090601f01602090048101928261302c5760008555613073565b82601f1061304557805160ff1916838001178555613073565b82800160010185558215613073579182015b82811115613072578251825591602001919060010190613057565b5b50905061308091906130c7565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156130e05760008160009055506001016130c8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61312d816130f8565b811461313857600080fd5b50565b60008135905061314a81613124565b92915050565b600060208284031215613166576131656130ee565b5b60006131748482850161313b565b91505092915050565b60008115159050919050565b6131928161317d565b82525050565b60006020820190506131ad6000830184613189565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131ed5780820151818401526020810190506131d2565b838111156131fc576000848401525b50505050565b6000601f19601f8301169050919050565b600061321e826131b3565b61322881856131be565b93506132388185602086016131cf565b61324181613202565b840191505092915050565b600060208201905081810360008301526132668184613213565b905092915050565b6000819050919050565b6132818161326e565b811461328c57600080fd5b50565b60008135905061329e81613278565b92915050565b6000602082840312156132ba576132b96130ee565b5b60006132c88482850161328f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132fc826132d1565b9050919050565b61330c816132f1565b82525050565b60006020820190506133276000830184613303565b92915050565b613336816132f1565b811461334157600080fd5b50565b6000813590506133538161332d565b92915050565b600080604083850312156133705761336f6130ee565b5b600061337e85828601613344565b925050602061338f8582860161328f565b9150509250929050565b6133a28161326e565b82525050565b60006020820190506133bd6000830184613399565b92915050565b6000806000606084860312156133dc576133db6130ee565b5b60006133ea86828701613344565b93505060206133fb86828701613344565b925050604061340c8682870161328f565b9150509250925092565b60006020828403121561342c5761342b6130ee565b5b600061343a84828501613344565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134788161326e565b82525050565b600061348a838361346f565b60208301905092915050565b6000602082019050919050565b60006134ae82613443565b6134b8818561344e565b93506134c38361345f565b8060005b838110156134f45781516134db888261347e565b97506134e683613496565b9250506001810190506134c7565b5085935050505092915050565b6000602082019050818103600083015261351b81846134a3565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61356582613202565b810181811067ffffffffffffffff821117156135845761358361352d565b5b80604052505050565b60006135976130e4565b90506135a3828261355c565b919050565b600067ffffffffffffffff8211156135c3576135c261352d565b5b6135cc82613202565b9050602081019050919050565b82818337600083830152505050565b60006135fb6135f6846135a8565b61358d565b90508281526020810184848401111561361757613616613528565b5b6136228482856135d9565b509392505050565b600082601f83011261363f5761363e613523565b5b813561364f8482602086016135e8565b91505092915050565b60006020828403121561366e5761366d6130ee565b5b600082013567ffffffffffffffff81111561368c5761368b6130f3565b5b6136988482850161362a565b91505092915050565b6136aa8161317d565b81146136b557600080fd5b50565b6000813590506136c7816136a1565b92915050565b600080604083850312156136e4576136e36130ee565b5b60006136f285828601613344565b9250506020613703858286016136b8565b9150509250929050565b600067ffffffffffffffff8211156137285761372761352d565b5b61373182613202565b9050602081019050919050565b600061375161374c8461370d565b61358d565b90508281526020810184848401111561376d5761376c613528565b5b6137788482856135d9565b509392505050565b600082601f83011261379557613794613523565b5b81356137a584826020860161373e565b91505092915050565b600080600080608085870312156137c8576137c76130ee565b5b60006137d687828801613344565b94505060206137e787828801613344565b93505060406137f88782880161328f565b925050606085013567ffffffffffffffff811115613819576138186130f3565b5b61382587828801613780565b91505092959194509250565b60008060408385031215613848576138476130ee565b5b600061385685828601613344565b925050602061386785828601613344565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261389157613890613523565b5b8235905067ffffffffffffffff8111156138ae576138ad613871565b5b6020830191508360208202830111156138ca576138c9613876565b5b9250929050565b60008083601f8401126138e7576138e6613523565b5b8235905067ffffffffffffffff81111561390457613903613871565b5b6020830191508360208202830111156139205761391f613876565b5b9250929050565b60008060008060408587031215613941576139406130ee565b5b600085013567ffffffffffffffff81111561395f5761395e6130f3565b5b61396b8782880161387b565b9450945050602085013567ffffffffffffffff81111561398e5761398d6130f3565b5b61399a878288016138d1565b925092505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139ef57607f821691505b602082108103613a0257613a016139a8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a3e6020836131be565b9150613a4982613a08565b602082019050919050565b60006020820190508181036000830152613a6d81613a31565b9050919050565b600081905092915050565b50565b6000613a8f600083613a74565b9150613a9a82613a7f565b600082019050919050565b6000613ab082613a82565b9150819050919050565b7f506972617465746f776e7774663a206661696c656420746f207472616e73666560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b166021836131be565b9150613b2182613aba565b604082019050919050565b60006020820190508181036000830152613b4581613b09565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bb58261326e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613be757613be6613b7b565b5b600182019050919050565b7f506972617465746f776e7774663a20636f6e74726163742064656e6965640000600082015250565b6000613c28601e836131be565b9150613c3382613bf2565b602082019050919050565b60006020820190508181036000830152613c5781613c1b565b9050919050565b7f506972617465746f776e7774663a206d696e74696e6720697320706175736564600082015250565b6000613c946020836131be565b9150613c9f82613c5e565b602082019050919050565b60006020820190508181036000830152613cc381613c87565b9050919050565b6000613cd58261326e565b9150613ce08361326e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1557613d14613b7b565b5b828201905092915050565b7f506972617465746f776e7774663a206d617820746f6b656e20737570706c792060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b6000613d7c6028836131be565b9150613d8782613d20565b604082019050919050565b60006020820190508181036000830152613dab81613d6f565b9050919050565b7f506972617465746f776e7774663a20696e76616c6964206d696e7420616d6f7560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e0e6022836131be565b9150613e1982613db2565b604082019050919050565b60006020820190508181036000830152613e3d81613e01565b9050919050565b6000613e4f8261326e565b9150613e5a8361326e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e9357613e92613b7b565b5b828202905092915050565b7f506972617465746f776e7774663a20696e73756666696369656e74206574686560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613efa6021836131be565b9150613f0582613e9e565b604082019050919050565b60006020820190508181036000830152613f2981613eed565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613f8c602f836131be565b9150613f9782613f30565b604082019050919050565b60006020820190508181036000830152613fbb81613f7f565b9050919050565b600081905092915050565b6000613fd8826131b3565b613fe28185613fc2565b9350613ff28185602086016131cf565b80840191505092915050565b60008190508160005260206000209050919050565b60008154614020816139d7565b61402a8186613fc2565b94506001821660008114614045576001811461405657614089565b60ff19831686528186019350614089565b61405f85613ffe565b60005b8381101561408157815481890152600182019150602081019050614062565b838801955050505b50505092915050565b600061409e8286613fcd565b91506140aa8285613fcd565b91506140b68284614013565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061411f6026836131be565b915061412a826140c3565b604082019050919050565b6000602082019050818103600083015261414e81614112565b9050919050565b7f506972617465746f776e7774663a20696e76616c69642066756e6374696f6e2060008201527f617267756d656e74730000000000000000000000000000000000000000000000602082015250565b60006141b16029836131be565b91506141bc82614155565b604082019050919050565b600060208201905081810360008301526141e0816141a4565b9050919050565b600060ff82169050919050565b6141fd816141e7565b811461420857600080fd5b50565b60008135905061421a816141f4565b92915050565b600060208284031215614236576142356130ee565b5b60006142448482850161420b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60006142748261424d565b61427e8185614258565b935061428e8185602086016131cf565b61429781613202565b840191505092915050565b60006080820190506142b76000830187613303565b6142c46020830186613303565b6142d16040830185613399565b81810360608301526142e38184614269565b905095945050505050565b6000815190506142fd81613124565b92915050565b600060208284031215614319576143186130ee565b5b6000614327848285016142ee565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061436a8261326e565b91506143758361326e565b92508261438557614384614330565b5b828204905092915050565b600061439b8261326e565b91506143a68361326e565b9250828210156143b9576143b8613b7b565b5b828203905092915050565b60006143cf8261326e565b91506143da8361326e565b9250826143ea576143e9614330565b5b82820690509291505056fea264697066735822122087c3fb8a7b394dcc2122f73f380d608be06dd49dadf6678b2e42195926e361ef64736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102045760003560e01c80635c975abb11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461070a578063d5abeb0114610747578063e985e9c514610772578063f2fde38b146107af578063f9daade4146107d857610204565b8063a22cb46514610666578063a50152291461068f578063aff72141146106b8578063b88d4fde146106e157610204565b8063715018a6116100e7578063715018a6146105c65780638da5cb5b146105dd57806393eff8511461060857806395d89b411461061f578063a0712d681461064a57610204565b80635c975abb146104f8578063617dd82a146105235780636352211e1461054c57806370a082311461058957610204565b80633ccfd60b1161019b5780634c1d3f8b1161016a5780634c1d3f8b146104255780634c2612471461045057806351830227146104795780635697f53e146104a45780635c41d75e146104cd57610204565b80633ccfd60b1461037f57806342842e0e14610396578063438b6300146103bf57806344a0d68a146103fc57610204565b806313faede6116101d757806313faede6146102d757806318160ddd146103025780631db2f61d1461032d57806323b872dd1461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613150565b610801565b60405161023d9190613198565b60405180910390f35b34801561025257600080fd5b5061025b6108e3565b604051610268919061324c565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906132a4565b610975565b6040516102a59190613312565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613359565b6109f1565b005b3480156102e357600080fd5b506102ec610afb565b6040516102f991906133a8565b60405180910390f35b34801561030e57600080fd5b50610317610b01565b60405161032491906133a8565b60405180910390f35b34801561033957600080fd5b50610354600480360381019061034f91906132a4565b610b18565b005b34801561036257600080fd5b5061037d600480360381019061037891906133c3565b610b9e565b005b34801561038b57600080fd5b50610394610bae565b005b3480156103a257600080fd5b506103bd60048036038101906103b891906133c3565b610ce0565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190613416565b610d00565b6040516103f39190613501565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e91906132a4565b610e0a565b005b34801561043157600080fd5b5061043a610e90565b60405161044791906133a8565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190613658565b610e96565b005b34801561048557600080fd5b5061048e610f47565b60405161049b9190613198565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c691906132a4565b610f5a565b005b3480156104d957600080fd5b506104e2610fe0565b6040516104ef91906133a8565b60405180910390f35b34801561050457600080fd5b5061050d610fe6565b60405161051a9190613198565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190613658565b610ff9565b005b34801561055857600080fd5b50610573600480360381019061056e91906132a4565b61108f565b6040516105809190613312565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190613416565b6110a5565b6040516105bd91906133a8565b60405180910390f35b3480156105d257600080fd5b506105db611174565b005b3480156105e957600080fd5b506105f26111fc565b6040516105ff9190613312565b60405180910390f35b34801561061457600080fd5b5061061d611226565b005b34801561062b57600080fd5b506106346112ce565b604051610641919061324c565b60405180910390f35b610664600480360381019061065f91906132a4565b611360565b005b34801561067257600080fd5b5061068d600480360381019061068891906136cd565b611596565b005b34801561069b57600080fd5b506106b660048036038101906106b19190613658565b61170d565b005b3480156106c457600080fd5b506106df60048036038101906106da9190613658565b6117a3565b005b3480156106ed57600080fd5b50610708600480360381019061070391906137ae565b611839565b005b34801561071657600080fd5b50610731600480360381019061072c91906132a4565b6118b5565b60405161073e919061324c565b60405180910390f35b34801561075357600080fd5b5061075c611a06565b60405161076991906133a8565b60405180910390f35b34801561077e57600080fd5b5061079960048036038101906107949190613831565b611a0c565b6040516107a69190613198565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190613416565b611aa0565b005b3480156107e457600080fd5b506107ff60048036038101906107fa9190613927565b611b97565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108cc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108dc57506108db82611d99565b5b9050919050565b6060600280546108f2906139d7565b80601f016020809104026020016040519081016040528092919081815260200182805461091e906139d7565b801561096b5780601f106109405761010080835404028352916020019161096b565b820191906000526020600020905b81548152906001019060200180831161094e57829003601f168201915b5050505050905090565b600061098082611e03565b6109b6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109fc8261108f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a63576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a82611e51565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ab45750610ab281610aad611e51565b611a0c565b155b15610aeb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610af6838383611e59565b505050565b600c5481565b6000610b0b611f0b565b6001546000540303905090565b610b20611e51565b73ffffffffffffffffffffffffffffffffffffffff16610b3e6111fc565b73ffffffffffffffffffffffffffffffffffffffff1614610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90613a54565b60405180910390fd5b80600e8190555050565b610ba9838383611f14565b505050565b610bb6611e51565b73ffffffffffffffffffffffffffffffffffffffff16610bd46111fc565b73ffffffffffffffffffffffffffffffffffffffff1614610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2190613a54565b60405180910390fd5b6000610c346111fc565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c5790613aa5565b60006040518083038185875af1925050503d8060008114610c94576040519150601f19603f3d011682016040523d82523d6000602084013e610c99565b606091505b5050905080610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd490613b2c565b60405180910390fd5b50565b610cfb83838360405180602001604052806000815250611839565b505050565b60606000610d0d836110a5565b905060008167ffffffffffffffff811115610d2b57610d2a61352d565b5b604051908082528060200260200182016040528015610d595781602001602082028036833780820191505090505b50905060006001905060005b8381108015610d765750600d548211155b15610dfe576000610d868361108f565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dea5782848381518110610dcf57610dce613b4c565b5b6020026020010181815250508180610de690613baa565b9250505b8280610df590613baa565b93505050610d65565b82945050505050919050565b610e12611e51565b73ffffffffffffffffffffffffffffffffffffffff16610e306111fc565b73ffffffffffffffffffffffffffffffffffffffff1614610e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7d90613a54565b60405180910390fd5b80600c8190555050565b600e5481565b610e9e611e51565b73ffffffffffffffffffffffffffffffffffffffff16610ebc6111fc565b73ffffffffffffffffffffffffffffffffffffffff1614610f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0990613a54565b60405180910390fd5b6001600860156101000a81548160ff02191690831515021790555080600a9080519060200190610f43929190612ffe565b5050565b600860159054906101000a900460ff1681565b610f62611e51565b73ffffffffffffffffffffffffffffffffffffffff16610f806111fc565b73ffffffffffffffffffffffffffffffffffffffff1614610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90613a54565b60405180910390fd5b80600f8190555050565b600f5481565b600860149054906101000a900460ff1681565b611001611e51565b73ffffffffffffffffffffffffffffffffffffffff1661101f6111fc565b73ffffffffffffffffffffffffffffffffffffffff1614611075576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106c90613a54565b60405180910390fd5b80600a908051906020019061108b929190612ffe565b5050565b600061109a826123c8565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61117c611e51565b73ffffffffffffffffffffffffffffffffffffffff1661119a6111fc565b73ffffffffffffffffffffffffffffffffffffffff16146111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e790613a54565b60405180910390fd5b6111fa6000612657565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61122e611e51565b73ffffffffffffffffffffffffffffffffffffffff1661124c6111fc565b73ffffffffffffffffffffffffffffffffffffffff16146112a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129990613a54565b60405180910390fd5b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b6060600380546112dd906139d7565b80601f0160208091040260200160405190810160405280929190818152602001828054611309906139d7565b80156113565780601f1061132b57610100808354040283529160200191611356565b820191906000526020600020905b81548152906001019060200180831161133957829003601f168201915b5050505050905090565b611368611e51565b73ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90613c3e565b60405180910390fd5b600860149054906101000a900460ff1615611425576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141c90613caa565b60405180910390fd5b600d548161143161271d565b61143b9190613cca565b111561147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390613d92565b60405180910390fd5b6000811180156114a85750600f548161149b611496611e51565b612730565b6114a59190613cca565b11155b6114e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114de90613e24565b60405180910390fd5b600e54816114f361271d565b6114fd9190613cca565b1180611515575061151461150f611e51565b61279a565b5b1561156f5780600c546115289190613e44565b34101561156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190613f10565b60405180910390fd5b611582565b61158161157a611e51565b60016127c6565b5b61159361158d611e51565b82612833565b50565b61159e611e51565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611602576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061160f611e51565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116bc611e51565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117019190613198565b60405180910390a35050565b611715611e51565b73ffffffffffffffffffffffffffffffffffffffff166117336111fc565b73ffffffffffffffffffffffffffffffffffffffff1614611789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178090613a54565b60405180910390fd5b806009908051906020019061179f929190612ffe565b5050565b6117ab611e51565b73ffffffffffffffffffffffffffffffffffffffff166117c96111fc565b73ffffffffffffffffffffffffffffffffffffffff161461181f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181690613a54565b60405180910390fd5b80600b9080519060200190611835929190612ffe565b5050565b611844848484611f14565b6118638373ffffffffffffffffffffffffffffffffffffffff16612851565b8015611878575061187684848484612874565b155b156118af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606118c082611e03565b6118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f690613fa2565b60405180910390fd5b600860159054906101000a900460ff166119a55760098054611920906139d7565b80601f016020809104026020016040519081016040528092919081815260200182805461194c906139d7565b80156119995780601f1061196e57610100808354040283529160200191611999565b820191906000526020600020905b81548152906001019060200180831161197c57829003601f168201915b50505050509050611a01565b60006119af6129c4565b905060008151116119cf57604051806020016040528060008152506119fd565b806119d984612a56565b600b6040516020016119ed93929190614092565b6040516020818303038152906040525b9150505b919050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611aa8611e51565b73ffffffffffffffffffffffffffffffffffffffff16611ac66111fc565b73ffffffffffffffffffffffffffffffffffffffff1614611b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1390613a54565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8290614135565b60405180910390fd5b611b9481612657565b50565b611b9f611e51565b73ffffffffffffffffffffffffffffffffffffffff16611bbd6111fc565b73ffffffffffffffffffffffffffffffffffffffff1614611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a90613a54565b60405180910390fd5b8181905084849050148015611c2b5750600084849050115b611c6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c61906141c7565b60405180910390fd5b6000611c7461271d565b905060005b83839050811015611ccf57838382818110611c9757611c96613b4c565b5b9050602002016020810190611cac9190614220565b60ff1682611cba9190613cca565b91508080611cc790613baa565b915050611c79565b50600d54811115611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c90613d92565b60405180910390fd5b60005b85859050811015611d9157611d7e868683818110611d3957611d38613b4c565b5b9050602002016020810190611d4e9190613416565b858584818110611d6157611d60613b4c565b5b9050602002016020810190611d769190614220565b60ff16612833565b8080611d8990613baa565b915050611d18565b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611e0e611f0b565b11158015611e1d575060005482105b8015611e4a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611f1f826123c8565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611f8a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611fab611e51565b73ffffffffffffffffffffffffffffffffffffffff161480611fda5750611fd985611fd4611e51565b611a0c565b5b8061201f5750611fe8611e51565b73ffffffffffffffffffffffffffffffffffffffff1661200784610975565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612058576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036120be576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120cb8585856001612bb6565b6120d760008487611e59565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361235657600054821461235557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123c18585856001612bbc565b5050505050565b6123d0613084565b6000829050806123de611f0b565b111580156123ed575060005481105b15612620576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161261e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612502578092505050612652565b5b60011561261d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612618578092505050612652565b612503565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612727611f0b565b60005403905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000806127a683612bc2565b67ffffffffffffffff16146127bc5760016127bf565b60005b9050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b61284d828260405180602001604052806000815250612c22565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261289a611e51565b8786866040518563ffffffff1660e01b81526004016128bc94939291906142a2565b6020604051808303816000875af19250505080156128f857506040513d601f19601f820116820180604052508101906128f59190614303565b60015b612971573d8060008114612928576040519150601f19603f3d011682016040523d82523d6000602084013e61292d565b606091505b506000815103612969576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a80546129d3906139d7565b80601f01602080910402602001604051908101604052809291908181526020018280546129ff906139d7565b8015612a4c5780601f10612a2157610100808354040283529160200191612a4c565b820191906000526020600020905b815481529060010190602001808311612a2f57829003601f168201915b5050505050905090565b606060008203612a9d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612bb1565b600082905060005b60008214612acf578080612ab890613baa565b915050600a82612ac8919061435f565b9150612aa5565b60008167ffffffffffffffff811115612aeb57612aea61352d565b5b6040519080825280601f01601f191660200182016040528015612b1d5781602001600182028036833780820191505090505b5090505b60008514612baa57600182612b369190614390565b9150600a85612b4591906143c4565b6030612b519190613cca565b60f81b818381518110612b6757612b66613b4c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ba3919061435f565b9450612b21565b8093505050505b919050565b50505050565b50505050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b612c2f8383836001612c34565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612ca0576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612cda576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ce76000868387612bb6565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612eb15750612eb08773ffffffffffffffffffffffffffffffffffffffff16612851565b5b15612f76575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f266000888480600101955088612874565b612f5c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612eb7578260005414612f7157600080fd5b612fe1565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612f77575b816000819055505050612ff76000868387612bbc565b5050505050565b82805461300a906139d7565b90600052602060002090601f01602090048101928261302c5760008555613073565b82601f1061304557805160ff1916838001178555613073565b82800160010185558215613073579182015b82811115613072578251825591602001919060010190613057565b5b50905061308091906130c7565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156130e05760008160009055506001016130c8565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61312d816130f8565b811461313857600080fd5b50565b60008135905061314a81613124565b92915050565b600060208284031215613166576131656130ee565b5b60006131748482850161313b565b91505092915050565b60008115159050919050565b6131928161317d565b82525050565b60006020820190506131ad6000830184613189565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131ed5780820151818401526020810190506131d2565b838111156131fc576000848401525b50505050565b6000601f19601f8301169050919050565b600061321e826131b3565b61322881856131be565b93506132388185602086016131cf565b61324181613202565b840191505092915050565b600060208201905081810360008301526132668184613213565b905092915050565b6000819050919050565b6132818161326e565b811461328c57600080fd5b50565b60008135905061329e81613278565b92915050565b6000602082840312156132ba576132b96130ee565b5b60006132c88482850161328f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132fc826132d1565b9050919050565b61330c816132f1565b82525050565b60006020820190506133276000830184613303565b92915050565b613336816132f1565b811461334157600080fd5b50565b6000813590506133538161332d565b92915050565b600080604083850312156133705761336f6130ee565b5b600061337e85828601613344565b925050602061338f8582860161328f565b9150509250929050565b6133a28161326e565b82525050565b60006020820190506133bd6000830184613399565b92915050565b6000806000606084860312156133dc576133db6130ee565b5b60006133ea86828701613344565b93505060206133fb86828701613344565b925050604061340c8682870161328f565b9150509250925092565b60006020828403121561342c5761342b6130ee565b5b600061343a84828501613344565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6134788161326e565b82525050565b600061348a838361346f565b60208301905092915050565b6000602082019050919050565b60006134ae82613443565b6134b8818561344e565b93506134c38361345f565b8060005b838110156134f45781516134db888261347e565b97506134e683613496565b9250506001810190506134c7565b5085935050505092915050565b6000602082019050818103600083015261351b81846134a3565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61356582613202565b810181811067ffffffffffffffff821117156135845761358361352d565b5b80604052505050565b60006135976130e4565b90506135a3828261355c565b919050565b600067ffffffffffffffff8211156135c3576135c261352d565b5b6135cc82613202565b9050602081019050919050565b82818337600083830152505050565b60006135fb6135f6846135a8565b61358d565b90508281526020810184848401111561361757613616613528565b5b6136228482856135d9565b509392505050565b600082601f83011261363f5761363e613523565b5b813561364f8482602086016135e8565b91505092915050565b60006020828403121561366e5761366d6130ee565b5b600082013567ffffffffffffffff81111561368c5761368b6130f3565b5b6136988482850161362a565b91505092915050565b6136aa8161317d565b81146136b557600080fd5b50565b6000813590506136c7816136a1565b92915050565b600080604083850312156136e4576136e36130ee565b5b60006136f285828601613344565b9250506020613703858286016136b8565b9150509250929050565b600067ffffffffffffffff8211156137285761372761352d565b5b61373182613202565b9050602081019050919050565b600061375161374c8461370d565b61358d565b90508281526020810184848401111561376d5761376c613528565b5b6137788482856135d9565b509392505050565b600082601f83011261379557613794613523565b5b81356137a584826020860161373e565b91505092915050565b600080600080608085870312156137c8576137c76130ee565b5b60006137d687828801613344565b94505060206137e787828801613344565b93505060406137f88782880161328f565b925050606085013567ffffffffffffffff811115613819576138186130f3565b5b61382587828801613780565b91505092959194509250565b60008060408385031215613848576138476130ee565b5b600061385685828601613344565b925050602061386785828601613344565b9150509250929050565b600080fd5b600080fd5b60008083601f84011261389157613890613523565b5b8235905067ffffffffffffffff8111156138ae576138ad613871565b5b6020830191508360208202830111156138ca576138c9613876565b5b9250929050565b60008083601f8401126138e7576138e6613523565b5b8235905067ffffffffffffffff81111561390457613903613871565b5b6020830191508360208202830111156139205761391f613876565b5b9250929050565b60008060008060408587031215613941576139406130ee565b5b600085013567ffffffffffffffff81111561395f5761395e6130f3565b5b61396b8782880161387b565b9450945050602085013567ffffffffffffffff81111561398e5761398d6130f3565b5b61399a878288016138d1565b925092505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139ef57607f821691505b602082108103613a0257613a016139a8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613a3e6020836131be565b9150613a4982613a08565b602082019050919050565b60006020820190508181036000830152613a6d81613a31565b9050919050565b600081905092915050565b50565b6000613a8f600083613a74565b9150613a9a82613a7f565b600082019050919050565b6000613ab082613a82565b9150819050919050565b7f506972617465746f776e7774663a206661696c656420746f207472616e73666560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b166021836131be565b9150613b2182613aba565b604082019050919050565b60006020820190508181036000830152613b4581613b09565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613bb58261326e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613be757613be6613b7b565b5b600182019050919050565b7f506972617465746f776e7774663a20636f6e74726163742064656e6965640000600082015250565b6000613c28601e836131be565b9150613c3382613bf2565b602082019050919050565b60006020820190508181036000830152613c5781613c1b565b9050919050565b7f506972617465746f776e7774663a206d696e74696e6720697320706175736564600082015250565b6000613c946020836131be565b9150613c9f82613c5e565b602082019050919050565b60006020820190508181036000830152613cc381613c87565b9050919050565b6000613cd58261326e565b9150613ce08361326e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1557613d14613b7b565b5b828201905092915050565b7f506972617465746f776e7774663a206d617820746f6b656e20737570706c792060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b6000613d7c6028836131be565b9150613d8782613d20565b604082019050919050565b60006020820190508181036000830152613dab81613d6f565b9050919050565b7f506972617465746f776e7774663a20696e76616c6964206d696e7420616d6f7560008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e0e6022836131be565b9150613e1982613db2565b604082019050919050565b60006020820190508181036000830152613e3d81613e01565b9050919050565b6000613e4f8261326e565b9150613e5a8361326e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e9357613e92613b7b565b5b828202905092915050565b7f506972617465746f776e7774663a20696e73756666696369656e74206574686560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613efa6021836131be565b9150613f0582613e9e565b604082019050919050565b60006020820190508181036000830152613f2981613eed565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613f8c602f836131be565b9150613f9782613f30565b604082019050919050565b60006020820190508181036000830152613fbb81613f7f565b9050919050565b600081905092915050565b6000613fd8826131b3565b613fe28185613fc2565b9350613ff28185602086016131cf565b80840191505092915050565b60008190508160005260206000209050919050565b60008154614020816139d7565b61402a8186613fc2565b94506001821660008114614045576001811461405657614089565b60ff19831686528186019350614089565b61405f85613ffe565b60005b8381101561408157815481890152600182019150602081019050614062565b838801955050505b50505092915050565b600061409e8286613fcd565b91506140aa8285613fcd565b91506140b68284614013565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061411f6026836131be565b915061412a826140c3565b604082019050919050565b6000602082019050818103600083015261414e81614112565b9050919050565b7f506972617465746f776e7774663a20696e76616c69642066756e6374696f6e2060008201527f617267756d656e74730000000000000000000000000000000000000000000000602082015250565b60006141b16029836131be565b91506141bc82614155565b604082019050919050565b600060208201905081810360008301526141e0816141a4565b9050919050565b600060ff82169050919050565b6141fd816141e7565b811461420857600080fd5b50565b60008135905061421a816141f4565b92915050565b600060208284031215614236576142356130ee565b5b60006142448482850161420b565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60006142748261424d565b61427e8185614258565b935061428e8185602086016131cf565b61429781613202565b840191505092915050565b60006080820190506142b76000830187613303565b6142c46020830186613303565b6142d16040830185613399565b81810360608301526142e38184614269565b905095945050505050565b6000815190506142fd81613124565b92915050565b600060208284031215614319576143186130ee565b5b6000614327848285016142ee565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061436a8261326e565b91506143758361326e565b92508261438557614384614330565b5b828204905092915050565b600061439b8261326e565b91506143a68361326e565b9250828210156143b9576143b8613b7b565b5b828203905092915050565b60006143cf8261326e565b91506143da8361326e565b9250826143ea576143e9614330565b5b82820690509291505056fea264697066735822122087c3fb8a7b394dcc2122f73f380d608be06dd49dadf6678b2e42195926e361ef64736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initUnrevealedUriPrefix (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
41993:4205:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26668:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29271:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30618:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30235:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42218:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26013:267;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45513:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31402:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44030:185;;;;;;;;;;;;;:::i;:::-;;31601:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44617:546;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45801:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42269:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43903:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42093:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45643:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42304:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42071:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45170:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29100:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26989:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43826:72;;;;;;;;;;;;;:::i;:::-;;29419:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42649:657;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30867:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45273:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45410:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31815:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44222:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42241:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31192:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43311:510;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26668:269;26770:4;26807:25;26792:40;;;:11;:40;;;;:96;;;;26855:33;26840:48;;;:11;:48;;;;26792:96;:140;;;;26896:36;26920:11;26896:23;:36::i;:::-;26792:140;26781:151;;26668:269;;;:::o;29271:91::-;29325:13;29352:5;29345:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29271:91;:::o;30618:189::-;30686:7;30705:16;30713:7;30705;:16::i;:::-;30700:64;;30730:34;;;;;;;;;;;;;;30700:64;30778:15;:24;30794:7;30778:24;;;;;;;;;;;;;;;;;;;;;30771:31;;30618:189;;;:::o;30235:329::-;30302:13;30318:24;30334:7;30318:15;:24::i;:::-;30302:40;;30357:5;30351:11;;:2;:11;;;30347:48;;30371:24;;;;;;;;;;;;;;30347:48;30422:5;30406:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;30432:37;30449:5;30456:12;:10;:12::i;:::-;30432:16;:37::i;:::-;30431:38;30406:63;30402:123;;;30484:35;;;;;;;;;;;;;;30402:123;30531:28;30540:2;30544:7;30553:5;30531:8;:28::i;:::-;30297:267;30235:329;;:::o;42218:19::-;;;;:::o;26013:267::-;26057:7;26255:15;:13;:15::i;:::-;26240:12;;26224:13;;:28;:46;26217:53;;26013:267;:::o;45513:125::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45614:19:::1;45595:16;:38;;;;45513:125:::0;:::o;31402:140::-;31509:28;31519:4;31525:2;31529:7;31509:9;:28::i;:::-;31402:140;;;:::o;44030:185::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44075:12:::1;44101:7;:5;:7::i;:::-;44093:21;;44123;44093:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44074:76;;;44165:7;44157:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;44069:146;44030:185::o:0;31601:155::-;31712:39;31729:4;31735:2;31739:7;31712:39;;;;;;;;;;;;:16;:39::i;:::-;31601:155;;;:::o;44617:546::-;44679:16;44702:23;44728:18;44738:7;44728:9;:18::i;:::-;44702:44;;44753:30;44800:15;44786:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44753:63;;44823:18;44844:1;44823:22;;44850:23;44884:248;44909:15;44891;:33;:60;;;;;44942:9;;44928:10;:23;;44891:60;44884:248;;;44959:13;44975:19;44983:10;44975:7;:19::i;:::-;44959:35;;45015:7;45006:16;;:5;:16;;;45002:105;;45064:10;45031:13;45045:15;45031:30;;;;;;;;:::i;:::-;;;;;;;:43;;;;;45083:17;;;;;:::i;:::-;;;;45002:105;45114:12;;;;;:::i;:::-;;;;44953:179;44884:248;;;45145:13;45138:20;;;;;;44617:546;;;:::o;45801:77::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45866:7:::1;45859:4;:14;;;;45801:77:::0;:::o;42269:31::-;;;;:::o;43903:122::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43983:4:::1;43972:8;;:15;;;;;;;;;;;;;;;;;;44007:13;43994:10;:26;;;;;;;;;;;;:::i;:::-;;43903:122:::0;:::o;42093:20::-;;;;;;;;;;;;;:::o;45643:153::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45765:26:::1;45739:23;:52;;;;45643:153:::0;:::o;42304:38::-;;;;:::o;42071:18::-;;;;;;;;;;;;;:::o;45170:98::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45254:9:::1;45241:10;:22;;;;;;;;;;;;:::i;:::-;;45170:98:::0;:::o;29100:116::-;29164:7;29185:21;29198:7;29185:12;:21::i;:::-;:26;;;29178:33;;29100:116;;;:::o;26989:191::-;27053:7;27088:1;27071:19;;:5;:19;;;27067:60;;27099:28;;;;;;;;;;;;;;27067:60;27147:12;:19;27160:5;27147:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27139:36;;27132:43;;26989:191;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;43826:72::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43887:6:::1;;;;;;;;;;;43886:7;43877:6;;:16;;;;;;;;;;;;;;;;;;43826:72::o:0;29419:95::-;29475:13;29502:7;29495:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29419:95;:::o;42649:657::-;42722:12;:10;:12::i;:::-;42709:25;;:9;:25;;;42701:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42783:6;;;;;;;;;;;42782:7;42774:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;42866:9;;42856:6;42839:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:36;;42831:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;42942:1;42933:6;:10;:77;;;;;42987:23;;42977:6;42947:27;42961:12;:10;:12::i;:::-;42947:13;:27::i;:::-;:36;;;;:::i;:::-;:63;;42933:77;42925:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;43086:16;;43077:6;43060:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:42;:76;;;;43106:30;43123:12;:10;:12::i;:::-;43106:16;:30::i;:::-;43060:76;43056:208;;;43172:6;43165:4;;:13;;;;:::i;:::-;43152:9;:26;;43144:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;43056:208;;;43234:24;43242:12;:10;:12::i;:::-;43256:1;43234:7;:24::i;:::-;43056:208;43270:31;43280:12;:10;:12::i;:::-;43294:6;43270:9;:31::i;:::-;42649:657;:::o;30867:266::-;30972:12;:10;:12::i;:::-;30960:24;;:8;:24;;;30956:54;;30993:17;;;;;;;;;;;;;;30956:54;31062:8;31017:18;:32;31036:12;:10;:12::i;:::-;31017:32;;;;;;;;;;;;;;;:42;31050:8;31017:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31109:8;31080:48;;31095:12;:10;:12::i;:::-;31080:48;;;31119:8;31080:48;;;;;;:::i;:::-;;;;;;;;30867:266;;:::o;45273:132::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45384:16:::1;45361:20;:39;;;;;;;;;;;;:::i;:::-;;45273:132:::0;:::o;45410:98::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45494:9:::1;45481:10;:22;;;;;;;;;;;;:::i;:::-;;45410:98:::0;:::o;31815:312::-;31949:28;31959:4;31965:2;31969:7;31949:9;:28::i;:::-;31986:15;:2;:13;;;:15::i;:::-;:76;;;;;32006:56;32037:4;32043:2;32047:7;32056:5;32006:30;:56::i;:::-;32005:57;31986:76;31982:141;;;32077:40;;;;;;;;;;;;;;31982:141;31815:312;;;;:::o;44222:390::-;44286:13;44314:16;44322:7;44314;:16::i;:::-;44306:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;44394:8;;;;;;;;;;;44389:42;;44411:20;44404:27;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44389:42;44438:28;44469:10;:8;:10::i;:::-;44438:41;;44524:1;44499:14;44493:28;:32;:114;;;;;;;;;;;;;;;;;44553:14;44569:18;:7;:16;:18::i;:::-;44589:10;44536:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44493:114;44486:121;;;44222:390;;;;:::o;42241:24::-;;;;:::o;31192:155::-;31289:4;31307:18;:25;31326:5;31307:25;;;;;;;;;;;;;;;:35;31333:8;31307:35;;;;;;;;;;;;;;;;;;;;;;;;;31300:42;;31192:155;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;::::0;5069:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;43311:510::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43436:7:::1;;:14;;43416:9;;:16;;:34;:58;;;;;43473:1;43454:9;;:16;;:20;43416:58;43408:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;43527:17;43547:14;:12;:14::i;:::-;43527:34;;43571:9;43566:68;43590:7;;:14;;43586:1;:18;43566:68;;;43624:7;;43632:1;43624:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;43611:23;;;;;;;:::i;:::-;;;43606:3;;;;;:::i;:::-;;;;43566:68;;;;43662:9;;43649;:22;;43641:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43728:9;43723:94;43747:9;;:16;;43743:1;:20;43723:94;;;43776:35;43786:9;;43796:1;43786:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;43800:7;;43808:1;43800:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;43776:35;;:9;:35::i;:::-;43765:3;;;;;:::i;:::-;;;;43723:94;;;;43403:418;43311:510:::0;;;;:::o;16886:157::-;16971:4;17010:25;16995:40;;;:11;:40;;;;16988:47;;16886:157;;;:::o;32358:165::-;32415:4;32452:7;32433:15;:13;:15::i;:::-;:26;;:53;;;;;32473:13;;32463:7;:23;32433:53;:85;;;;;32491:11;:20;32503:7;32491:20;;;;;;;;;;;:27;;;;;;;;;;;;32490:28;32433:85;32426:92;;32358:165;;;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;39294:160::-;39409:2;39382:15;:24;39398:7;39382:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39441:7;39437:2;39421:28;;39430:5;39421:28;;;;;;;;;;;;39294:160;;;:::o;45983:83::-;46039:7;46060:1;46053:8;;45983:83;:::o;34978:1821::-;35066:35;35104:21;35117:7;35104:12;:21::i;:::-;35066:59;;35158:4;35136:26;;:13;:18;;;:26;;;35132:67;;35171:28;;;;;;;;;;;;;;35132:67;35206:22;35248:4;35232:20;;:12;:10;:12::i;:::-;:20;;;:64;;;;35260:36;35277:4;35283:12;:10;:12::i;:::-;35260:16;:36::i;:::-;35232:64;:108;;;;35328:12;:10;:12::i;:::-;35304:36;;:20;35316:7;35304:11;:20::i;:::-;:36;;;35232:108;35206:135;;35353:17;35348:66;;35379:35;;;;;;;;;;;;;;35348:66;35437:1;35423:16;;:2;:16;;;35419:52;;35448:23;;;;;;;;;;;;;;35419:52;35478:43;35500:4;35506:2;35510:7;35519:1;35478:21;:43::i;:::-;35574:35;35591:1;35595:7;35604:4;35574:8;:35::i;:::-;35902:1;35872:12;:18;35885:4;35872:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35937:1;35909:12;:16;35922:2;35909:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35946:31;35980:11;:20;35992:7;35980:20;;;;;;;;;;;35946:54;;36022:2;36006:8;:13;;;:18;;;;;;;;;;;;;;;;;;36063:15;36030:8;:23;;;:49;;;;;;;;;;;;;;;;;;36304:19;36336:1;36326:7;:11;36304:33;;36343:31;36377:11;:24;36389:11;36377:24;;;;;;;;;;;36343:58;;36436:1;36411:27;;:8;:13;;;;;;;;;;;;:27;;;36407:297;;36585:13;;36570:11;:28;36566:132;;36624:4;36608:8;:13;;;:20;;;;;;;;;;;;;;;;;;36662:13;:28;;;36636:8;:23;;;:54;;;;;;;;;;;;;;;;;;36566:132;36407:297;35856:853;;;36739:7;36735:2;36720:27;;36729:4;36720:27;;;;;;;;;;;;36752:42;36773:4;36779:2;36783:7;36792:1;36752:20;:42::i;:::-;35061:1738;;34978:1821;;;:::o;28253:797::-;28315:21;;:::i;:::-;28343:12;28358:7;28343:22;;28411:4;28392:15;:13;:15::i;:::-;:23;;:47;;;;;28426:13;;28419:4;:20;28392:47;28388:610;;;28448:31;28482:11;:17;28494:4;28482:17;;;;;;;;;;;28448:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28511:9;:16;;;28506:486;;28567:1;28541:28;;:9;:14;;;:28;;;28537:68;;28587:9;28580:16;;;;;;28537:68;28832:153;28839:4;28832:153;;;28854:6;;;;;;;;28881:11;:17;28893:4;28881:17;;;;;;;;;;;28869:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28937:1;28911:28;;:9;:14;;;:28;;;28907:70;;28958:9;28951:16;;;;;;28907:70;28832:153;;;28506:486;28441:557;28388:610;29014:31;;;;;;;;;;;;;;28253:797;;;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;26361:247::-;26408:7;26583:15;:13;:15::i;:::-;26567:13;;:31;26560:38;;26361:247;:::o;27250:128::-;27311:7;27340:12;:19;27353:5;27340:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;27332:41;;27325:48;;27250:128;;;:::o;46071:124::-;46136:4;46174:1;46154:16;46162:7;46154;:16::i;:::-;:21;;;:36;;46186:4;46154:36;;;46178:5;46154:36;46147:43;;46071:124;;;:::o;27974:92::-;28058:3;28032:12;:19;28045:5;28032:19;;;;;;;;;;;;;;;:23;;;:29;;;;;;;;;;;;;;;;;;27974:92;;:::o;32528:95::-;32591:27;32601:2;32605:8;32591:27;;;;;;;;;;;;:9;:27::i;:::-;32528:95;;:::o;6780:326::-;6840:4;7097:1;7075:7;:19;;;:23;7068:30;;6780:326;;;:::o;39916:532::-;40052:4;40083:2;40067:36;;;40104:12;:10;:12::i;:::-;40118:4;40124:7;40133:5;40067:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40063:381;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40294:1;40277:6;:13;:18;40273:166;;40311:40;;;;;;;;;;;;;;40273:166;40418:6;40412:13;40403:6;40399:2;40395:15;40388:38;40063:381;40187:45;;;40177:55;;;:6;:55;;;;40170:62;;;39916:532;;;;;;:::o;45885:93::-;45936:13;45963:10;45956:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45885:93;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;41048:132::-;;;;;:::o;41788:131::-;;;;;:::o;27698:103::-;27753:6;27773:12;:19;27786:5;27773:19;;;;;;;;;;;;;;;:23;;;;;;;;;;;;27766:30;;27698:103;;;:::o;32953:133::-;33049:32;33055:2;33059:8;33069:5;33076:4;33049:5;:32::i;:::-;32953:133;;;:::o;33312:1445::-;33418:20;33441:13;;33418:36;;33477:1;33463:16;;:2;:16;;;33459:48;;33488:19;;;;;;;;;;;;;;33459:48;33528:1;33516:8;:13;33512:44;;33538:18;;;;;;;;;;;;;;33512:44;33563:61;33593:1;33597:2;33601:12;33615:8;33563:21;:61::i;:::-;33903:8;33868:12;:16;33881:2;33868:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33958:8;33918:12;:16;33931:2;33918:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34008:2;33975:11;:25;33987:12;33975:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34066:15;34016:11;:25;34028:12;34016:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;34090:20;34113:12;34090:35;;34131:11;34160:8;34145:12;:23;34131:37;;34180:4;:23;;;;;34188:15;:2;:13;;;:15::i;:::-;34180:23;34176:473;;;34212:239;34253:12;34249:2;34228:38;;34245:1;34228:38;;;;;;;;;;;;34279:69;34318:1;34322:2;34326:14;;;;;;34342:5;34279:30;:69::i;:::-;34274:141;;34366:40;;;;;;;;;;;;;;34274:141;34446:3;34430:12;:19;34212:239;;34508:12;34491:13;;:29;34487:43;;34522:8;;;34487:43;34176:473;;;34550:93;34591:14;;;;;;34587:2;34566:40;;34583:1;34566:40;;;;;;;;;;;;34638:3;34622:12;:19;34550:93;;34176:473;34670:12;34654:13;:28;;;;33852:836;;34692:60;34721:1;34725:2;34729:12;34743:8;34692:20;:60::i;:::-;33413:1344;33312:1445;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:329::-;5974:6;6023:2;6011:9;6002:7;5998:23;5994:32;5991:119;;;6029:79;;:::i;:::-;5991:119;6149:1;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6120:117;5915:329;;;;:::o;6250:114::-;6317:6;6351:5;6345:12;6335:22;;6250:114;;;:::o;6370:184::-;6469:11;6503:6;6498:3;6491:19;6543:4;6538:3;6534:14;6519:29;;6370:184;;;;:::o;6560:132::-;6627:4;6650:3;6642:11;;6680:4;6675:3;6671:14;6663:22;;6560:132;;;:::o;6698:108::-;6775:24;6793:5;6775:24;:::i;:::-;6770:3;6763:37;6698:108;;:::o;6812:179::-;6881:10;6902:46;6944:3;6936:6;6902:46;:::i;:::-;6980:4;6975:3;6971:14;6957:28;;6812:179;;;;:::o;6997:113::-;7067:4;7099;7094:3;7090:14;7082:22;;6997:113;;;:::o;7146:732::-;7265:3;7294:54;7342:5;7294:54;:::i;:::-;7364:86;7443:6;7438:3;7364:86;:::i;:::-;7357:93;;7474:56;7524:5;7474:56;:::i;:::-;7553:7;7584:1;7569:284;7594:6;7591:1;7588:13;7569:284;;;7670:6;7664:13;7697:63;7756:3;7741:13;7697:63;:::i;:::-;7690:70;;7783:60;7836:6;7783:60;:::i;:::-;7773:70;;7629:224;7616:1;7613;7609:9;7604:14;;7569:284;;;7573:14;7869:3;7862:10;;7270:608;;;7146:732;;;;:::o;7884:373::-;8027:4;8065:2;8054:9;8050:18;8042:26;;8114:9;8108:4;8104:20;8100:1;8089:9;8085:17;8078:47;8142:108;8245:4;8236:6;8142:108;:::i;:::-;8134:116;;7884:373;;;;:::o;8263:117::-;8372:1;8369;8362:12;8386:117;8495:1;8492;8485:12;8509:180;8557:77;8554:1;8547:88;8654:4;8651:1;8644:15;8678:4;8675:1;8668:15;8695:281;8778:27;8800:4;8778:27;:::i;:::-;8770:6;8766:40;8908:6;8896:10;8893:22;8872:18;8860:10;8857:34;8854:62;8851:88;;;8919:18;;:::i;:::-;8851:88;8959:10;8955:2;8948:22;8738:238;8695:281;;:::o;8982:129::-;9016:6;9043:20;;:::i;:::-;9033:30;;9072:33;9100:4;9092:6;9072:33;:::i;:::-;8982:129;;;:::o;9117:308::-;9179:4;9269:18;9261:6;9258:30;9255:56;;;9291:18;;:::i;:::-;9255:56;9329:29;9351:6;9329:29;:::i;:::-;9321:37;;9413:4;9407;9403:15;9395:23;;9117:308;;;:::o;9431:154::-;9515:6;9510:3;9505;9492:30;9577:1;9568:6;9563:3;9559:16;9552:27;9431:154;;;:::o;9591:412::-;9669:5;9694:66;9710:49;9752:6;9710:49;:::i;:::-;9694:66;:::i;:::-;9685:75;;9783:6;9776:5;9769:21;9821:4;9814:5;9810:16;9859:3;9850:6;9845:3;9841:16;9838:25;9835:112;;;9866:79;;:::i;:::-;9835:112;9956:41;9990:6;9985:3;9980;9956:41;:::i;:::-;9675:328;9591:412;;;;;:::o;10023:340::-;10079:5;10128:3;10121:4;10113:6;10109:17;10105:27;10095:122;;10136:79;;:::i;:::-;10095:122;10253:6;10240:20;10278:79;10353:3;10345:6;10338:4;10330:6;10326:17;10278:79;:::i;:::-;10269:88;;10085:278;10023:340;;;;:::o;10369:509::-;10438:6;10487:2;10475:9;10466:7;10462:23;10458:32;10455:119;;;10493:79;;:::i;:::-;10455:119;10641:1;10630:9;10626:17;10613:31;10671:18;10663:6;10660:30;10657:117;;;10693:79;;:::i;:::-;10657:117;10798:63;10853:7;10844:6;10833:9;10829:22;10798:63;:::i;:::-;10788:73;;10584:287;10369:509;;;;:::o;10884:116::-;10954:21;10969:5;10954:21;:::i;:::-;10947:5;10944:32;10934:60;;10990:1;10987;10980:12;10934:60;10884:116;:::o;11006:133::-;11049:5;11087:6;11074:20;11065:29;;11103:30;11127:5;11103:30;:::i;:::-;11006:133;;;;:::o;11145:468::-;11210:6;11218;11267:2;11255:9;11246:7;11242:23;11238:32;11235:119;;;11273:79;;:::i;:::-;11235:119;11393:1;11418:53;11463:7;11454:6;11443:9;11439:22;11418:53;:::i;:::-;11408:63;;11364:117;11520:2;11546:50;11588:7;11579:6;11568:9;11564:22;11546:50;:::i;:::-;11536:60;;11491:115;11145:468;;;;;:::o;11619:307::-;11680:4;11770:18;11762:6;11759:30;11756:56;;;11792:18;;:::i;:::-;11756:56;11830:29;11852:6;11830:29;:::i;:::-;11822:37;;11914:4;11908;11904:15;11896:23;;11619:307;;;:::o;11932:410::-;12009:5;12034:65;12050:48;12091:6;12050:48;:::i;:::-;12034:65;:::i;:::-;12025:74;;12122:6;12115:5;12108:21;12160:4;12153:5;12149:16;12198:3;12189:6;12184:3;12180:16;12177:25;12174:112;;;12205:79;;:::i;:::-;12174:112;12295:41;12329:6;12324:3;12319;12295:41;:::i;:::-;12015:327;11932:410;;;;;:::o;12361:338::-;12416:5;12465:3;12458:4;12450:6;12446:17;12442:27;12432:122;;12473:79;;:::i;:::-;12432:122;12590:6;12577:20;12615:78;12689:3;12681:6;12674:4;12666:6;12662:17;12615:78;:::i;:::-;12606:87;;12422:277;12361:338;;;;:::o;12705:943::-;12800:6;12808;12816;12824;12873:3;12861:9;12852:7;12848:23;12844:33;12841:120;;;12880:79;;:::i;:::-;12841:120;13000:1;13025:53;13070:7;13061:6;13050:9;13046:22;13025:53;:::i;:::-;13015:63;;12971:117;13127:2;13153:53;13198:7;13189:6;13178:9;13174:22;13153:53;:::i;:::-;13143:63;;13098:118;13255:2;13281:53;13326:7;13317:6;13306:9;13302:22;13281:53;:::i;:::-;13271:63;;13226:118;13411:2;13400:9;13396:18;13383:32;13442:18;13434:6;13431:30;13428:117;;;13464:79;;:::i;:::-;13428:117;13569:62;13623:7;13614:6;13603:9;13599:22;13569:62;:::i;:::-;13559:72;;13354:287;12705:943;;;;;;;:::o;13654:474::-;13722:6;13730;13779:2;13767:9;13758:7;13754:23;13750:32;13747:119;;;13785:79;;:::i;:::-;13747:119;13905:1;13930:53;13975:7;13966:6;13955:9;13951:22;13930:53;:::i;:::-;13920:63;;13876:117;14032:2;14058:53;14103:7;14094:6;14083:9;14079:22;14058:53;:::i;:::-;14048:63;;14003:118;13654:474;;;;;:::o;14134:117::-;14243:1;14240;14233:12;14257:117;14366:1;14363;14356:12;14397:568;14470:8;14480:6;14530:3;14523:4;14515:6;14511:17;14507:27;14497:122;;14538:79;;:::i;:::-;14497:122;14651:6;14638:20;14628:30;;14681:18;14673:6;14670:30;14667:117;;;14703:79;;:::i;:::-;14667:117;14817:4;14809:6;14805:17;14793:29;;14871:3;14863:4;14855:6;14851:17;14841:8;14837:32;14834:41;14831:128;;;14878:79;;:::i;:::-;14831:128;14397:568;;;;;:::o;14986:566::-;15057:8;15067:6;15117:3;15110:4;15102:6;15098:17;15094:27;15084:122;;15125:79;;:::i;:::-;15084:122;15238:6;15225:20;15215:30;;15268:18;15260:6;15257:30;15254:117;;;15290:79;;:::i;:::-;15254:117;15404:4;15396:6;15392:17;15380:29;;15458:3;15450:4;15442:6;15438:17;15428:8;15424:32;15421:41;15418:128;;;15465:79;;:::i;:::-;15418:128;14986:566;;;;;:::o;15558:930::-;15678:6;15686;15694;15702;15751:2;15739:9;15730:7;15726:23;15722:32;15719:119;;;15757:79;;:::i;:::-;15719:119;15905:1;15894:9;15890:17;15877:31;15935:18;15927:6;15924:30;15921:117;;;15957:79;;:::i;:::-;15921:117;16070:80;16142:7;16133:6;16122:9;16118:22;16070:80;:::i;:::-;16052:98;;;;15848:312;16227:2;16216:9;16212:18;16199:32;16258:18;16250:6;16247:30;16244:117;;;16280:79;;:::i;:::-;16244:117;16393:78;16463:7;16454:6;16443:9;16439:22;16393:78;:::i;:::-;16375:96;;;;16170:311;15558:930;;;;;;;:::o;16494:180::-;16542:77;16539:1;16532:88;16639:4;16636:1;16629:15;16663:4;16660:1;16653:15;16680:320;16724:6;16761:1;16755:4;16751:12;16741:22;;16808:1;16802:4;16798:12;16829:18;16819:81;;16885:4;16877:6;16873:17;16863:27;;16819:81;16947:2;16939:6;16936:14;16916:18;16913:38;16910:84;;16966:18;;:::i;:::-;16910:84;16731:269;16680:320;;;:::o;17006:182::-;17146:34;17142:1;17134:6;17130:14;17123:58;17006:182;:::o;17194:366::-;17336:3;17357:67;17421:2;17416:3;17357:67;:::i;:::-;17350:74;;17433:93;17522:3;17433:93;:::i;:::-;17551:2;17546:3;17542:12;17535:19;;17194:366;;;:::o;17566:419::-;17732:4;17770:2;17759:9;17755:18;17747:26;;17819:9;17813:4;17809:20;17805:1;17794:9;17790:17;17783:47;17847:131;17973:4;17847:131;:::i;:::-;17839:139;;17566:419;;;:::o;17991:147::-;18092:11;18129:3;18114:18;;17991:147;;;;:::o;18144:114::-;;:::o;18264:398::-;18423:3;18444:83;18525:1;18520:3;18444:83;:::i;:::-;18437:90;;18536:93;18625:3;18536:93;:::i;:::-;18654:1;18649:3;18645:11;18638:18;;18264:398;;;:::o;18668:379::-;18852:3;18874:147;19017:3;18874:147;:::i;:::-;18867:154;;19038:3;19031:10;;18668:379;;;:::o;19053:220::-;19193:34;19189:1;19181:6;19177:14;19170:58;19262:3;19257:2;19249:6;19245:15;19238:28;19053:220;:::o;19279:366::-;19421:3;19442:67;19506:2;19501:3;19442:67;:::i;:::-;19435:74;;19518:93;19607:3;19518:93;:::i;:::-;19636:2;19631:3;19627:12;19620:19;;19279:366;;;:::o;19651:419::-;19817:4;19855:2;19844:9;19840:18;19832:26;;19904:9;19898:4;19894:20;19890:1;19879:9;19875:17;19868:47;19932:131;20058:4;19932:131;:::i;:::-;19924:139;;19651:419;;;:::o;20076:180::-;20124:77;20121:1;20114:88;20221:4;20218:1;20211:15;20245:4;20242:1;20235:15;20262:180;20310:77;20307:1;20300:88;20407:4;20404:1;20397:15;20431:4;20428:1;20421:15;20448:233;20487:3;20510:24;20528:5;20510:24;:::i;:::-;20501:33;;20556:66;20549:5;20546:77;20543:103;;20626:18;;:::i;:::-;20543:103;20673:1;20666:5;20662:13;20655:20;;20448:233;;;:::o;20687:180::-;20827:32;20823:1;20815:6;20811:14;20804:56;20687:180;:::o;20873:366::-;21015:3;21036:67;21100:2;21095:3;21036:67;:::i;:::-;21029:74;;21112:93;21201:3;21112:93;:::i;:::-;21230:2;21225:3;21221:12;21214:19;;20873:366;;;:::o;21245:419::-;21411:4;21449:2;21438:9;21434:18;21426:26;;21498:9;21492:4;21488:20;21484:1;21473:9;21469:17;21462:47;21526:131;21652:4;21526:131;:::i;:::-;21518:139;;21245:419;;;:::o;21670:182::-;21810:34;21806:1;21798:6;21794:14;21787:58;21670:182;:::o;21858:366::-;22000:3;22021:67;22085:2;22080:3;22021:67;:::i;:::-;22014:74;;22097:93;22186:3;22097:93;:::i;:::-;22215:2;22210:3;22206:12;22199:19;;21858:366;;;:::o;22230:419::-;22396:4;22434:2;22423:9;22419:18;22411:26;;22483:9;22477:4;22473:20;22469:1;22458:9;22454:17;22447:47;22511:131;22637:4;22511:131;:::i;:::-;22503:139;;22230:419;;;:::o;22655:305::-;22695:3;22714:20;22732:1;22714:20;:::i;:::-;22709:25;;22748:20;22766:1;22748:20;:::i;:::-;22743:25;;22902:1;22834:66;22830:74;22827:1;22824:81;22821:107;;;22908:18;;:::i;:::-;22821:107;22952:1;22949;22945:9;22938:16;;22655:305;;;;:::o;22966:227::-;23106:34;23102:1;23094:6;23090:14;23083:58;23175:10;23170:2;23162:6;23158:15;23151:35;22966:227;:::o;23199:366::-;23341:3;23362:67;23426:2;23421:3;23362:67;:::i;:::-;23355:74;;23438:93;23527:3;23438:93;:::i;:::-;23556:2;23551:3;23547:12;23540:19;;23199:366;;;:::o;23571:419::-;23737:4;23775:2;23764:9;23760:18;23752:26;;23824:9;23818:4;23814:20;23810:1;23799:9;23795:17;23788:47;23852:131;23978:4;23852:131;:::i;:::-;23844:139;;23571:419;;;:::o;23996:221::-;24136:34;24132:1;24124:6;24120:14;24113:58;24205:4;24200:2;24192:6;24188:15;24181:29;23996:221;:::o;24223:366::-;24365:3;24386:67;24450:2;24445:3;24386:67;:::i;:::-;24379:74;;24462:93;24551:3;24462:93;:::i;:::-;24580:2;24575:3;24571:12;24564:19;;24223:366;;;:::o;24595:419::-;24761:4;24799:2;24788:9;24784:18;24776:26;;24848:9;24842:4;24838:20;24834:1;24823:9;24819:17;24812:47;24876:131;25002:4;24876:131;:::i;:::-;24868:139;;24595:419;;;:::o;25020:348::-;25060:7;25083:20;25101:1;25083:20;:::i;:::-;25078:25;;25117:20;25135:1;25117:20;:::i;:::-;25112:25;;25305:1;25237:66;25233:74;25230:1;25227:81;25222:1;25215:9;25208:17;25204:105;25201:131;;;25312:18;;:::i;:::-;25201:131;25360:1;25357;25353:9;25342:20;;25020:348;;;;:::o;25374:220::-;25514:34;25510:1;25502:6;25498:14;25491:58;25583:3;25578:2;25570:6;25566:15;25559:28;25374:220;:::o;25600:366::-;25742:3;25763:67;25827:2;25822:3;25763:67;:::i;:::-;25756:74;;25839:93;25928:3;25839:93;:::i;:::-;25957:2;25952:3;25948:12;25941:19;;25600:366;;;:::o;25972:419::-;26138:4;26176:2;26165:9;26161:18;26153:26;;26225:9;26219:4;26215:20;26211:1;26200:9;26196:17;26189:47;26253:131;26379:4;26253:131;:::i;:::-;26245:139;;25972:419;;;:::o;26397:234::-;26537:34;26533:1;26525:6;26521:14;26514:58;26606:17;26601:2;26593:6;26589:15;26582:42;26397:234;:::o;26637:366::-;26779:3;26800:67;26864:2;26859:3;26800:67;:::i;:::-;26793:74;;26876:93;26965:3;26876:93;:::i;:::-;26994:2;26989:3;26985:12;26978:19;;26637:366;;;:::o;27009:419::-;27175:4;27213:2;27202:9;27198:18;27190:26;;27262:9;27256:4;27252:20;27248:1;27237:9;27233:17;27226:47;27290:131;27416:4;27290:131;:::i;:::-;27282:139;;27009:419;;;:::o;27434:148::-;27536:11;27573:3;27558:18;;27434:148;;;;:::o;27588:377::-;27694:3;27722:39;27755:5;27722:39;:::i;:::-;27777:89;27859:6;27854:3;27777:89;:::i;:::-;27770:96;;27875:52;27920:6;27915:3;27908:4;27901:5;27897:16;27875:52;:::i;:::-;27952:6;27947:3;27943:16;27936:23;;27698:267;27588:377;;;;:::o;27971:141::-;28020:4;28043:3;28035:11;;28066:3;28063:1;28056:14;28100:4;28097:1;28087:18;28079:26;;27971:141;;;:::o;28142:845::-;28245:3;28282:5;28276:12;28311:36;28337:9;28311:36;:::i;:::-;28363:89;28445:6;28440:3;28363:89;:::i;:::-;28356:96;;28483:1;28472:9;28468:17;28499:1;28494:137;;;;28645:1;28640:341;;;;28461:520;;28494:137;28578:4;28574:9;28563;28559:25;28554:3;28547:38;28614:6;28609:3;28605:16;28598:23;;28494:137;;28640:341;28707:38;28739:5;28707:38;:::i;:::-;28767:1;28781:154;28795:6;28792:1;28789:13;28781:154;;;28869:7;28863:14;28859:1;28854:3;28850:11;28843:35;28919:1;28910:7;28906:15;28895:26;;28817:4;28814:1;28810:12;28805:17;;28781:154;;;28964:6;28959:3;28955:16;28948:23;;28647:334;;28461:520;;28249:738;;28142:845;;;;:::o;28993:589::-;29218:3;29240:95;29331:3;29322:6;29240:95;:::i;:::-;29233:102;;29352:95;29443:3;29434:6;29352:95;:::i;:::-;29345:102;;29464:92;29552:3;29543:6;29464:92;:::i;:::-;29457:99;;29573:3;29566:10;;28993:589;;;;;;:::o;29588:225::-;29728:34;29724:1;29716:6;29712:14;29705:58;29797:8;29792:2;29784:6;29780:15;29773:33;29588:225;:::o;29819:366::-;29961:3;29982:67;30046:2;30041:3;29982:67;:::i;:::-;29975:74;;30058:93;30147:3;30058:93;:::i;:::-;30176:2;30171:3;30167:12;30160:19;;29819:366;;;:::o;30191:419::-;30357:4;30395:2;30384:9;30380:18;30372:26;;30444:9;30438:4;30434:20;30430:1;30419:9;30415:17;30408:47;30472:131;30598:4;30472:131;:::i;:::-;30464:139;;30191:419;;;:::o;30616:228::-;30756:34;30752:1;30744:6;30740:14;30733:58;30825:11;30820:2;30812:6;30808:15;30801:36;30616:228;:::o;30850:366::-;30992:3;31013:67;31077:2;31072:3;31013:67;:::i;:::-;31006:74;;31089:93;31178:3;31089:93;:::i;:::-;31207:2;31202:3;31198:12;31191:19;;30850:366;;;:::o;31222:419::-;31388:4;31426:2;31415:9;31411:18;31403:26;;31475:9;31469:4;31465:20;31461:1;31450:9;31446:17;31439:47;31503:131;31629:4;31503:131;:::i;:::-;31495:139;;31222:419;;;:::o;31647:86::-;31682:7;31722:4;31715:5;31711:16;31700:27;;31647:86;;;:::o;31739:118::-;31810:22;31826:5;31810:22;:::i;:::-;31803:5;31800:33;31790:61;;31847:1;31844;31837:12;31790:61;31739:118;:::o;31863:135::-;31907:5;31945:6;31932:20;31923:29;;31961:31;31986:5;31961:31;:::i;:::-;31863:135;;;;:::o;32004:325::-;32061:6;32110:2;32098:9;32089:7;32085:23;32081:32;32078:119;;;32116:79;;:::i;:::-;32078:119;32236:1;32261:51;32304:7;32295:6;32284:9;32280:22;32261:51;:::i;:::-;32251:61;;32207:115;32004:325;;;;:::o;32335:98::-;32386:6;32420:5;32414:12;32404:22;;32335:98;;;:::o;32439:168::-;32522:11;32556:6;32551:3;32544:19;32596:4;32591:3;32587:14;32572:29;;32439:168;;;;:::o;32613:360::-;32699:3;32727:38;32759:5;32727:38;:::i;:::-;32781:70;32844:6;32839:3;32781:70;:::i;:::-;32774:77;;32860:52;32905:6;32900:3;32893:4;32886:5;32882:16;32860:52;:::i;:::-;32937:29;32959:6;32937:29;:::i;:::-;32932:3;32928:39;32921:46;;32703:270;32613:360;;;;:::o;32979:640::-;33174:4;33212:3;33201:9;33197:19;33189:27;;33226:71;33294:1;33283:9;33279:17;33270:6;33226:71;:::i;:::-;33307:72;33375:2;33364:9;33360:18;33351:6;33307:72;:::i;:::-;33389;33457:2;33446:9;33442:18;33433:6;33389:72;:::i;:::-;33508:9;33502:4;33498:20;33493:2;33482:9;33478:18;33471:48;33536:76;33607:4;33598:6;33536:76;:::i;:::-;33528:84;;32979:640;;;;;;;:::o;33625:141::-;33681:5;33712:6;33706:13;33697:22;;33728:32;33754:5;33728:32;:::i;:::-;33625:141;;;;:::o;33772:349::-;33841:6;33890:2;33878:9;33869:7;33865:23;33861:32;33858:119;;;33896:79;;:::i;:::-;33858:119;34016:1;34041:63;34096:7;34087:6;34076:9;34072:22;34041:63;:::i;:::-;34031:73;;33987:127;33772:349;;;;:::o;34127:180::-;34175:77;34172:1;34165:88;34272:4;34269:1;34262:15;34296:4;34293:1;34286:15;34313:185;34353:1;34370:20;34388:1;34370:20;:::i;:::-;34365:25;;34404:20;34422:1;34404:20;:::i;:::-;34399:25;;34443:1;34433:35;;34448:18;;:::i;:::-;34433:35;34490:1;34487;34483:9;34478:14;;34313:185;;;;:::o;34504:191::-;34544:4;34564:20;34582:1;34564:20;:::i;:::-;34559:25;;34598:20;34616:1;34598:20;:::i;:::-;34593:25;;34637:1;34634;34631:8;34628:34;;;34642:18;;:::i;:::-;34628:34;34687:1;34684;34680:9;34672:17;;34504:191;;;;:::o;34701:176::-;34733:1;34750:20;34768:1;34750:20;:::i;:::-;34745:25;;34784:20;34802:1;34784:20;:::i;:::-;34779:25;;34823:1;34813:35;;34828:18;;:::i;:::-;34813:35;34869:1;34866;34862:9;34857:14;;34701:176;;;;:::o
Swarm Source
ipfs://87c3fb8a7b394dcc2122f73f380d608be06dd49dadf6678b2e42195926e361ef
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.