Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
232 ALPHADRACONIS
Holders
33
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 ALPHADRACONISLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AlphaDraconis
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-25 */ // SPDX-License-Identifier: MIT // 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/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/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: contracts/ERC721A.sol // Creators: locationtba.eth, 2pmflow.eth // https://raw.githubusercontent.com/chiru-labs/ERC721A/main/ERC721A.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, 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; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > currentIndex - 1) { endIndex = currentIndex - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // 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: contracts/AlphaDraconis.sol pragma solidity ^0.8.0; contract AlphaDraconis is Ownable, ERC721A, ReentrancyGuard { uint32 preSaleStartTime = 1643378400; uint32 publicSaleStartTime = 1643464800; uint256 public maxPerAddressDuringMint; uint256 public whitelistPrice = 35000000000000000; uint256 public publicPrice = 50000000000000000; uint256 MAX_MINT = 5; uint32 collectionSize = 8888; mapping(address => uint256) public freelist; mapping(address => uint256) public whitelist; string public notRevealedURI = "https://alphadraconis.mypinata.cloud/ipfs/QmURm5Bex2ZzkBADrmdKSZvRapA6zjxdodQJNnx3RvoPGp"; constructor(uint256 maxBatchSize_) ERC721A("Alpha Draconis", "ALPHADRACONIS", maxBatchSize_) { maxPerAddressDuringMint = maxBatchSize_; } // Utilities modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function refundIfOver(uint256 price) private { require(msg.value >= price, "Need to send more ETH."); if (msg.value > price) { payable(msg.sender).transfer(msg.value - price); } } function checkPrice(uint256 _price, uint _count) public pure returns (uint256) { return _price * _count; } // Main functions function mint(uint256 quantity) external payable callerIsUser { require( totalSupply() + quantity <= collectionSize, "reached max supply" ); if (freelist[msg.sender] > 0) { require(freelist[msg.sender] > 0, "You are not in freelist"); require( block.timestamp >= preSaleStartTime, "Whitelist sale not started. " ); require(quantity <= MAX_MINT, "Exceed max quantity per mint"); require(quantity <= freelist[msg.sender], "Exceed max quantity you can mint"); // free mint uint256 price = 0; require(msg.value >= checkPrice(price, quantity), "Value below price, need to pay more"); _safeMint(msg.sender, quantity); refundIfOver(price); freelist[msg.sender] -= quantity; } else if (whitelist[msg.sender] > 0) { require(whitelist[msg.sender] > 0, "You are not in whitelist"); require( block.timestamp >= preSaleStartTime, "Whitelist sale not started. " ); require(quantity <= MAX_MINT, "Exceed max quantity per mint"); require(quantity <= whitelist[msg.sender], "Exceed max quantity you can mint"); // white list mint uint256 price = uint256(whitelistPrice); require(msg.value >= checkPrice(price, quantity), "Value below price, need to pay more"); refundIfOver(price*quantity); _safeMint(msg.sender, quantity); whitelist[msg.sender] -= quantity; } else { // public mint uint256 price = uint256(publicPrice); require( block.timestamp >= publicSaleStartTime, "Public Sale not started. " ); require(msg.value >= checkPrice(price, quantity), "Value below price, need to pay more"); refundIfOver(price*quantity); _safeMint(msg.sender, quantity); } } // URI // Reveal Logic bool private _isRevealed = false; // // metadata URI string private _baseTokenURI = "https://alphadraconis.mypinata.cloud/ipfs/QmaSKR8VefQfKjdGs3fGAvbAdp4X63WJvNDrmiK2tqPMv9/"; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function revealCollection() public onlyOwner{ _isRevealed = true; } function hideCollection() public onlyOwner{ _isRevealed = false; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory){ if (_isRevealed == true){ return super.tokenURI(tokenId); } else { return notRevealedURI; } } // Address Functions function setWhitelist(address[] memory addresses, uint256[] memory numSlots) external onlyOwner { require( addresses.length == numSlots.length, "addresses does not match numSlots length" ); for (uint256 i = 0; i < addresses.length; i++) { whitelist[addresses[i]] = numSlots[i]; } } function setFreelist(address[] memory addresses, uint256[] memory numSlots) external onlyOwner { require( addresses.length == numSlots.length, "addresses does not match numSlots length" ); for (uint256 i = 0; i < addresses.length; i++) { freelist[addresses[i]] = numSlots[i]; } } // Withdraw function withdrawMoney() external onlyOwner nonReentrant { require(address(this).balance > 0, "No ether left to withdraw"); (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } // Update timestamp function changePresaleTime(uint32 _newDate) public onlyOwner { preSaleStartTime = _newDate; } function changePublicSaleTime(uint32 _newDate) public onlyOwner { publicSaleStartTime = _newDate; } function changeMaxMint(uint32 _newMax) public onlyOwner { MAX_MINT = _newMax; } function changePresalePrice(uint256 _newPrice) public onlyOwner { whitelistPrice = _newPrice; } function changePublicPrice(uint256 _newPrice) public onlyOwner { publicPrice = _newPrice; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"_newMax","type":"uint32"}],"name":"changeMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_newDate","type":"uint32"}],"name":"changePresaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_newDate","type":"uint32"}],"name":"changePublicSaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"checkPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hideCollection","outputs":[],"stateMutability":"nonpayable","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":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","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":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"setFreelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a0604052600060015560006008556361f3f6e0600a60006101000a81548163ffffffff021916908363ffffffff1602179055506361f54860600a60046101000a81548163ffffffff021916908363ffffffff160217905550667c585087238000600c5566b1a2bc2ec50000600d556005600e556122b8600f60006101000a81548163ffffffff021916908363ffffffff160217905550604051806080016040528060588152602001620060476058913960129080519060200190620000c79291906200033a565b506000601360006101000a81548160ff02191690831515021790555060405180608001604052806059815260200162005fee6059913960149080519060200190620001149291906200033a565b503480156200012257600080fd5b506040516200609f3803806200609f833981810160405281019062000148919062000401565b6040518060400160405280600e81526020017f416c70686120447261636f6e69730000000000000000000000000000000000008152506040518060400160405280600d81526020017f414c504841445241434f4e49530000000000000000000000000000000000000081525082620001d5620001c96200026e60201b60201c565b6200027660201b60201c565b600081116200021b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000212906200045a565b60405180910390fd5b8260029080519060200190620002339291906200033a565b5081600390805190602001906200024c9291906200033a565b508060808181525050505050600160098190555080600b81905550506200056a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003489062000497565b90600052602060002090601f0160209004810192826200036c5760008555620003b8565b82601f106200038757805160ff1916838001178555620003b8565b82800160010185558215620003b8579182015b82811115620003b75782518255916020019190600101906200039a565b5b509050620003c79190620003cb565b5090565b5b80821115620003e6576000816000905550600101620003cc565b5090565b600081519050620003fb8162000550565b92915050565b6000602082840312156200041a5762000419620004fc565b5b60006200042a84828501620003ea565b91505092915050565b6000620004426027836200047c565b91506200044f8262000501565b604082019050919050565b60006020820190508181036000830152620004758162000433565b9050919050565b600082825260208201905092915050565b6000819050919050565b60006002820490506001821680620004b057607f821691505b60208210811415620004c757620004c6620004cd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6200055b816200048d565b81146200056757600080fd5b50565b608051615a5a6200059460003960008181612dd001528181612df9015261340e0152615a5a6000f3fe6080604052600436106102305760003560e01c80637a4706c91161012e578063a945bf80116100ab578063d7224ba01161006f578063d7224ba014610828578063e985e9c514610853578063f013e0e114610890578063f2fde38b146108b9578063fc1a1c36146108e257610230565b8063a945bf8014610769578063ac44600214610794578063b88d4fde146107ab578063bfe1d2c4146107d4578063c87b56dd146107eb57610230565b8063961613f0116100f2578063961613f0146106955780639b19251a146106be5780639d7e8d5f146106fb578063a0712d6814610724578063a22cb4651461074057610230565b80637a4706c9146105c25780638606d938146105eb5780638bc35c2f146106145780638da5cb5b1461063f57806395d89b411461066a57610230565b806340d0b4a9116101bc5780636bb1d186116101805780636bb1d186146104dd57806370a0823114610506578063715018a614610543578063722503801461055a5780637227548b1461058557610230565b806340d0b4a9146103fa57806342842e0e146104115780634f6ccce71461043a57806355f804b3146104775780636352211e146104a057610230565b806318160ddd1161020357806318160ddd1461030357806323b872dd1461032e5780632f745c591461035757806332536eb41461039457806334e5dfb8146103d157610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613fca565b61090d565b6040516102699190614744565b60405180910390f35b34801561027e57600080fd5b50610287610a57565b604051610294919061475f565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190614071565b610ae9565b6040516102d191906146dd565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613f12565b610b6e565b005b34801561030f57600080fd5b50610318610c87565b6040516103259190614bc1565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190613dfc565b610c91565b005b34801561036357600080fd5b5061037e60048036038101906103799190613f12565b610ca1565b60405161038b9190614bc1565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b6919061409e565b610e9f565b6040516103c89190614bc1565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f391906140de565b610eb5565b005b34801561040657600080fd5b5061040f610f55565b005b34801561041d57600080fd5b5061043860048036038101906104339190613dfc565b610fee565b005b34801561044657600080fd5b50610461600480360381019061045c9190614071565b61100e565b60405161046e9190614bc1565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190614024565b611061565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190614071565b6110f3565b6040516104d491906146dd565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff91906140de565b611109565b005b34801561051257600080fd5b5061052d60048036038101906105289190613d8f565b6111a9565b60405161053a9190614bc1565b60405180910390f35b34801561054f57600080fd5b50610558611292565b005b34801561056657600080fd5b5061056f61131a565b60405161057c919061475f565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190613d8f565b6113a8565b6040516105b99190614bc1565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e491906140de565b6113c0565b005b3480156105f757600080fd5b50610612600480360381019061060d9190614071565b61144c565b005b34801561062057600080fd5b506106296114d2565b6040516106369190614bc1565b60405180910390f35b34801561064b57600080fd5b506106546114d8565b60405161066191906146dd565b60405180910390f35b34801561067657600080fd5b5061067f611501565b60405161068c919061475f565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190613f52565b611593565b005b3480156106ca57600080fd5b506106e560048036038101906106e09190613d8f565b6116ef565b6040516106f29190614bc1565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d9190614071565b611707565b005b61073e60048036038101906107399190614071565b61178d565b005b34801561074c57600080fd5b5061076760048036038101906107629190613ed2565b611e9c565b005b34801561077557600080fd5b5061077e61201d565b60405161078b9190614bc1565b60405180910390f35b3480156107a057600080fd5b506107a9612023565b005b3480156107b757600080fd5b506107d260048036038101906107cd9190613e4f565b6121e7565b005b3480156107e057600080fd5b506107e9612243565b005b3480156107f757600080fd5b50610812600480360381019061080d9190614071565b6122dc565b60405161081f919061475f565b60405180910390f35b34801561083457600080fd5b5061083d61239d565b60405161084a9190614bc1565b60405180910390f35b34801561085f57600080fd5b5061087a60048036038101906108759190613dbc565b6123a3565b6040516108879190614744565b60405180910390f35b34801561089c57600080fd5b506108b760048036038101906108b29190613f52565b612437565b005b3480156108c557600080fd5b506108e060048036038101906108db9190613d8f565b612593565b005b3480156108ee57600080fd5b506108f761268b565b6040516109049190614bc1565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a505750610a4f82612691565b5b9050919050565b606060028054610a6690614f73565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9290614f73565b8015610adf5780601f10610ab457610100808354040283529160200191610adf565b820191906000526020600020905b815481529060010190602001808311610ac257829003601f168201915b5050505050905090565b6000610af4826126fb565b610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a90614b61565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b79826110f3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be190614a41565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c09612709565b73ffffffffffffffffffffffffffffffffffffffff161480610c385750610c3781610c32612709565b6123a3565b5b610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e906148e1565b60405180910390fd5b610c82838383612711565b505050565b6000600154905090565b610c9c8383836127c3565b505050565b6000610cac836111a9565b8210610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce490614781565b60405180910390fd5b6000610cf7610c87565b905060008060005b83811015610e5d576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610df157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e495786841415610e3a578195505050505050610e99565b8380610e4590614fd6565b9450505b508080610e5590614fd6565b915050610cff565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090614b01565b60405180910390fd5b92915050565b60008183610ead9190614da5565b905092915050565b610ebd612709565b73ffffffffffffffffffffffffffffffffffffffff16610edb6114d8565b73ffffffffffffffffffffffffffffffffffffffff1614610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f28906149a1565b60405180910390fd5b80600a60006101000a81548163ffffffff021916908363ffffffff16021790555050565b610f5d612709565b73ffffffffffffffffffffffffffffffffffffffff16610f7b6114d8565b73ffffffffffffffffffffffffffffffffffffffff1614610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc8906149a1565b60405180910390fd5b6001601360006101000a81548160ff021916908315150217905550565b611009838383604051806020016040528060008152506121e7565b505050565b6000611018610c87565b8210611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105090614821565b60405180910390fd5b819050919050565b611069612709565b73ffffffffffffffffffffffffffffffffffffffff166110876114d8565b73ffffffffffffffffffffffffffffffffffffffff16146110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d4906149a1565b60405180910390fd5b8181601491906110ee929190613a32565b505050565b60006110fe82612d7c565b600001519050919050565b611111612709565b73ffffffffffffffffffffffffffffffffffffffff1661112f6114d8565b73ffffffffffffffffffffffffffffffffffffffff1614611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c906149a1565b60405180910390fd5b80600a60046101000a81548163ffffffff021916908363ffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190614921565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61129a612709565b73ffffffffffffffffffffffffffffffffffffffff166112b86114d8565b73ffffffffffffffffffffffffffffffffffffffff161461130e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611305906149a1565b60405180910390fd5b6113186000612f7f565b565b6012805461132790614f73565b80601f016020809104026020016040519081016040528092919081815260200182805461135390614f73565b80156113a05780601f10611375576101008083540402835291602001916113a0565b820191906000526020600020905b81548152906001019060200180831161138357829003601f168201915b505050505081565b60106020528060005260406000206000915090505481565b6113c8612709565b73ffffffffffffffffffffffffffffffffffffffff166113e66114d8565b73ffffffffffffffffffffffffffffffffffffffff161461143c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611433906149a1565b60405180910390fd5b8063ffffffff16600e8190555050565b611454612709565b73ffffffffffffffffffffffffffffffffffffffff166114726114d8565b73ffffffffffffffffffffffffffffffffffffffff16146114c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bf906149a1565b60405180910390fd5b80600c8190555050565b600b5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461151090614f73565b80601f016020809104026020016040519081016040528092919081815260200182805461153c90614f73565b80156115895780601f1061155e57610100808354040283529160200191611589565b820191906000526020600020905b81548152906001019060200180831161156c57829003601f168201915b5050505050905090565b61159b612709565b73ffffffffffffffffffffffffffffffffffffffff166115b96114d8565b73ffffffffffffffffffffffffffffffffffffffff161461160f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611606906149a1565b60405180910390fd5b8051825114611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a90614ba1565b60405180910390fd5b60005b82518110156116ea57818181518110611672576116716150dd565b5b602002602001015160106000858481518110611691576116906150dd565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806116e290614fd6565b915050611656565b505050565b60116020528060005260406000206000915090505481565b61170f612709565b73ffffffffffffffffffffffffffffffffffffffff1661172d6114d8565b73ffffffffffffffffffffffffffffffffffffffff1614611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a906149a1565b60405180910390fd5b80600d8190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f2906148a1565b60405180910390fd5b600f60009054906101000a900463ffffffff1663ffffffff168161181d610c87565b6118279190614d1e565b1115611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f90614941565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611b11576000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611932576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611929906148c1565b60405180910390fd5b600a60009054906101000a900463ffffffff1663ffffffff1642101561198d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611984906147a1565b60405180910390fd5b600e548111156119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c9906149c1565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90614861565b60405180910390fd5b6000611a608183610e9f565b341015611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a99906147e1565b60405180910390fd5b611aac3383613043565b611ab581613061565b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b049190614e33565b9250508190555050611e99565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611dca576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd290614881565b60405180910390fd5b600a60009054906101000a900463ffffffff1663ffffffff16421015611c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2d906147a1565b60405180910390fd5b600e54811115611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c72906149c1565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf490614861565b60405180910390fd5b6000600c549050611d0e8183610e9f565b341015611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d47906147e1565b60405180910390fd5b611d648282611d5f9190614da5565b613061565b611d6e3383613043565b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dbd9190614e33565b9250508190555050611e98565b6000600d549050600a60049054906101000a900463ffffffff1663ffffffff16421015611e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2390614901565b60405180910390fd5b611e368183610e9f565b341015611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f906147e1565b60405180910390fd5b611e8c8282611e879190614da5565b613061565b611e963383613043565b505b5b50565b611ea4612709565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0990614a01565b60405180910390fd5b8060076000611f1f612709565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fcc612709565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120119190614744565b60405180910390a35050565b600d5481565b61202b612709565b73ffffffffffffffffffffffffffffffffffffffff166120496114d8565b73ffffffffffffffffffffffffffffffffffffffff161461209f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612096906149a1565b60405180910390fd5b600260095414156120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc90614b21565b60405180910390fd5b600260098190555060004711612130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212790614961565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051612156906146c8565b60006040518083038185875af1925050503d8060008114612193576040519150601f19603f3d011682016040523d82523d6000602084013e612198565b606091505b50509050806121dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d390614a61565b60405180910390fd5b506001600981905550565b6121f28484846127c3565b6121fe84848484613102565b61223d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223490614a81565b60405180910390fd5b50505050565b61224b612709565b73ffffffffffffffffffffffffffffffffffffffff166122696114d8565b73ffffffffffffffffffffffffffffffffffffffff16146122bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b6906149a1565b60405180910390fd5b6000601360006101000a81548160ff021916908315150217905550565b606060011515601360009054906101000a900460ff161515141561230a5761230382613299565b9050612398565b6012805461231790614f73565b80601f016020809104026020016040519081016040528092919081815260200182805461234390614f73565b80156123905780601f1061236557610100808354040283529160200191612390565b820191906000526020600020905b81548152906001019060200180831161237357829003601f168201915b505050505090505b919050565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61243f612709565b73ffffffffffffffffffffffffffffffffffffffff1661245d6114d8565b73ffffffffffffffffffffffffffffffffffffffff16146124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa906149a1565b60405180910390fd5b80518251146124f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ee90614ba1565b60405180910390fd5b60005b825181101561258e57818181518110612516576125156150dd565b5b602002602001015160116000858481518110612535576125346150dd565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061258690614fd6565b9150506124fa565b505050565b61259b612709565b73ffffffffffffffffffffffffffffffffffffffff166125b96114d8565b73ffffffffffffffffffffffffffffffffffffffff161461260f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612606906149a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561267f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612676906147c1565b60405180910390fd5b61268881612f7f565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006127ce82612d7c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166127f5612709565b73ffffffffffffffffffffffffffffffffffffffff161480612851575061281a612709565b73ffffffffffffffffffffffffffffffffffffffff1661283984610ae9565b73ffffffffffffffffffffffffffffffffffffffff16145b8061286d575061286c8260000151612867612709565b6123a3565b5b9050806128af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a690614a21565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291890614981565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298890614841565b60405180910390fd5b61299e8585856001613340565b6129ae6000848460000151612711565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612a1c9190614dff565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612ac09190614cd8565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612bc69190614d1e565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d0c57612c3c816126fb565b15612d0b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d748686866001613346565b505050505050565b612d84613ab8565b612d8d826126fb565b612dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc390614801565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612e305760017f000000000000000000000000000000000000000000000000000000000000000084612e239190614e33565b612e2d9190614d1e565b90505b60008390505b818110612f3e576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f2a57809350505050612f7a565b508080612f3690614f49565b915050612e36565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7190614b41565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61305d82826040518060200160405280600081525061334c565b5050565b803410156130a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309b90614aa1565b60405180910390fd5b803411156130ff573373ffffffffffffffffffffffffffffffffffffffff166108fc82346130d29190614e33565b9081150290604051600060405180830381858888f193505050501580156130fd573d6000803e3d6000fd5b505b50565b60006131238473ffffffffffffffffffffffffffffffffffffffff1661382c565b1561328c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261314c612709565b8786866040518563ffffffff1660e01b815260040161316e94939291906146f8565b602060405180830381600087803b15801561318857600080fd5b505af19250505080156131b957506040513d601f19601f820116820180604052508101906131b69190613ff7565b60015b61323c573d80600081146131e9576040519150601f19603f3d011682016040523d82523d6000602084013e6131ee565b606091505b50600081511415613234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322b90614a81565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613291565b600190505b949350505050565b60606132a4826126fb565b6132e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132da906149e1565b60405180910390fd5b60006132ed61383f565b9050600081511161330d5760405180602001604052806000815250613338565b80613317846138d1565b6040516020016133289291906146a4565b6040516020818303038152906040525b915050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156133c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ba90614ae1565b60405180910390fd5b6133cc816126fb565b1561340c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340390614ac1565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561346f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346690614b81565b60405180910390fd5b61347c6000858386613340565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516135799190614cd8565b6fffffffffffffffffffffffffffffffff1681526020018583602001516135a09190614cd8565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561380f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137af6000888488613102565b6137ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137e590614a81565b60405180910390fd5b81806137f990614fd6565b925050808061380790614fd6565b91505061373e565b50806001819055506138246000878588613346565b505050505050565b600080823b905060008111915050919050565b60606014805461384e90614f73565b80601f016020809104026020016040519081016040528092919081815260200182805461387a90614f73565b80156138c75780601f1061389c576101008083540402835291602001916138c7565b820191906000526020600020905b8154815290600101906020018083116138aa57829003601f168201915b5050505050905090565b60606000821415613919576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613a2d565b600082905060005b6000821461394b57808061393490614fd6565b915050600a826139449190614d74565b9150613921565b60008167ffffffffffffffff8111156139675761396661510c565b5b6040519080825280601f01601f1916602001820160405280156139995781602001600182028036833780820191505090505b5090505b60008514613a26576001826139b29190614e33565b9150600a856139c1919061501f565b60306139cd9190614d1e565b60f81b8183815181106139e3576139e26150dd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613a1f9190614d74565b945061399d565b8093505050505b919050565b828054613a3e90614f73565b90600052602060002090601f016020900481019282613a605760008555613aa7565b82601f10613a7957803560ff1916838001178555613aa7565b82800160010185558215613aa7579182015b82811115613aa6578235825591602001919060010190613a8b565b5b509050613ab49190613af2565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613b0b576000816000905550600101613af3565b5090565b6000613b22613b1d84614c01565b614bdc565b90508083825260208201905082856020860282011115613b4557613b44615145565b5b60005b85811015613b755781613b5b8882613c31565b845260208401935060208301925050600181019050613b48565b5050509392505050565b6000613b92613b8d84614c2d565b614bdc565b90508083825260208201905082856020860282011115613bb557613bb4615145565b5b60005b85811015613be55781613bcb8882613d65565b845260208401935060208301925050600181019050613bb8565b5050509392505050565b6000613c02613bfd84614c59565b614bdc565b905082815260208101848484011115613c1e57613c1d61514a565b5b613c29848285614f07565b509392505050565b600081359050613c40816159b1565b92915050565b600082601f830112613c5b57613c5a615140565b5b8135613c6b848260208601613b0f565b91505092915050565b600082601f830112613c8957613c88615140565b5b8135613c99848260208601613b7f565b91505092915050565b600081359050613cb1816159c8565b92915050565b600081359050613cc6816159df565b92915050565b600081519050613cdb816159df565b92915050565b600082601f830112613cf657613cf5615140565b5b8135613d06848260208601613bef565b91505092915050565b60008083601f840112613d2557613d24615140565b5b8235905067ffffffffffffffff811115613d4257613d4161513b565b5b602083019150836001820283011115613d5e57613d5d615145565b5b9250929050565b600081359050613d74816159f6565b92915050565b600081359050613d8981615a0d565b92915050565b600060208284031215613da557613da4615154565b5b6000613db384828501613c31565b91505092915050565b60008060408385031215613dd357613dd2615154565b5b6000613de185828601613c31565b9250506020613df285828601613c31565b9150509250929050565b600080600060608486031215613e1557613e14615154565b5b6000613e2386828701613c31565b9350506020613e3486828701613c31565b9250506040613e4586828701613d65565b9150509250925092565b60008060008060808587031215613e6957613e68615154565b5b6000613e7787828801613c31565b9450506020613e8887828801613c31565b9350506040613e9987828801613d65565b925050606085013567ffffffffffffffff811115613eba57613eb961514f565b5b613ec687828801613ce1565b91505092959194509250565b60008060408385031215613ee957613ee8615154565b5b6000613ef785828601613c31565b9250506020613f0885828601613ca2565b9150509250929050565b60008060408385031215613f2957613f28615154565b5b6000613f3785828601613c31565b9250506020613f4885828601613d65565b9150509250929050565b60008060408385031215613f6957613f68615154565b5b600083013567ffffffffffffffff811115613f8757613f8661514f565b5b613f9385828601613c46565b925050602083013567ffffffffffffffff811115613fb457613fb361514f565b5b613fc085828601613c74565b9150509250929050565b600060208284031215613fe057613fdf615154565b5b6000613fee84828501613cb7565b91505092915050565b60006020828403121561400d5761400c615154565b5b600061401b84828501613ccc565b91505092915050565b6000806020838503121561403b5761403a615154565b5b600083013567ffffffffffffffff8111156140595761405861514f565b5b61406585828601613d0f565b92509250509250929050565b60006020828403121561408757614086615154565b5b600061409584828501613d65565b91505092915050565b600080604083850312156140b5576140b4615154565b5b60006140c385828601613d65565b92505060206140d485828601613d65565b9150509250929050565b6000602082840312156140f4576140f3615154565b5b600061410284828501613d7a565b91505092915050565b61411481614e67565b82525050565b61412381614e79565b82525050565b600061413482614c8a565b61413e8185614ca0565b935061414e818560208601614f16565b61415781615159565b840191505092915050565b600061416d82614c95565b6141778185614cbc565b9350614187818560208601614f16565b61419081615159565b840191505092915050565b60006141a682614c95565b6141b08185614ccd565b93506141c0818560208601614f16565b80840191505092915050565b60006141d9602283614cbc565b91506141e48261516a565b604082019050919050565b60006141fc601c83614cbc565b9150614207826151b9565b602082019050919050565b600061421f602683614cbc565b915061422a826151e2565b604082019050919050565b6000614242602383614cbc565b915061424d82615231565b604082019050919050565b6000614265602a83614cbc565b915061427082615280565b604082019050919050565b6000614288602383614cbc565b9150614293826152cf565b604082019050919050565b60006142ab602583614cbc565b91506142b68261531e565b604082019050919050565b60006142ce602083614cbc565b91506142d98261536d565b602082019050919050565b60006142f1601883614cbc565b91506142fc82615396565b602082019050919050565b6000614314601e83614cbc565b915061431f826153bf565b602082019050919050565b6000614337601783614cbc565b9150614342826153e8565b602082019050919050565b600061435a603983614cbc565b915061436582615411565b604082019050919050565b600061437d601983614cbc565b915061438882615460565b602082019050919050565b60006143a0602b83614cbc565b91506143ab82615489565b604082019050919050565b60006143c3601283614cbc565b91506143ce826154d8565b602082019050919050565b60006143e6601983614cbc565b91506143f182615501565b602082019050919050565b6000614409602683614cbc565b91506144148261552a565b604082019050919050565b600061442c602083614cbc565b915061443782615579565b602082019050919050565b600061444f601c83614cbc565b915061445a826155a2565b602082019050919050565b6000614472602f83614cbc565b915061447d826155cb565b604082019050919050565b6000614495601a83614cbc565b91506144a08261561a565b602082019050919050565b60006144b8603283614cbc565b91506144c382615643565b604082019050919050565b60006144db602283614cbc565b91506144e682615692565b604082019050919050565b60006144fe600083614cb1565b9150614509826156e1565b600082019050919050565b6000614521601083614cbc565b915061452c826156e4565b602082019050919050565b6000614544603383614cbc565b915061454f8261570d565b604082019050919050565b6000614567601683614cbc565b91506145728261575c565b602082019050919050565b600061458a601d83614cbc565b915061459582615785565b602082019050919050565b60006145ad602183614cbc565b91506145b8826157ae565b604082019050919050565b60006145d0602e83614cbc565b91506145db826157fd565b604082019050919050565b60006145f3601f83614cbc565b91506145fe8261584c565b602082019050919050565b6000614616602f83614cbc565b915061462182615875565b604082019050919050565b6000614639602d83614cbc565b9150614644826158c4565b604082019050919050565b600061465c602283614cbc565b915061466782615913565b604082019050919050565b600061467f602883614cbc565b915061468a82615962565b604082019050919050565b61469e81614eed565b82525050565b60006146b0828561419b565b91506146bc828461419b565b91508190509392505050565b60006146d3826144f1565b9150819050919050565b60006020820190506146f2600083018461410b565b92915050565b600060808201905061470d600083018761410b565b61471a602083018661410b565b6147276040830185614695565b81810360608301526147398184614129565b905095945050505050565b6000602082019050614759600083018461411a565b92915050565b600060208201905081810360008301526147798184614162565b905092915050565b6000602082019050818103600083015261479a816141cc565b9050919050565b600060208201905081810360008301526147ba816141ef565b9050919050565b600060208201905081810360008301526147da81614212565b9050919050565b600060208201905081810360008301526147fa81614235565b9050919050565b6000602082019050818103600083015261481a81614258565b9050919050565b6000602082019050818103600083015261483a8161427b565b9050919050565b6000602082019050818103600083015261485a8161429e565b9050919050565b6000602082019050818103600083015261487a816142c1565b9050919050565b6000602082019050818103600083015261489a816142e4565b9050919050565b600060208201905081810360008301526148ba81614307565b9050919050565b600060208201905081810360008301526148da8161432a565b9050919050565b600060208201905081810360008301526148fa8161434d565b9050919050565b6000602082019050818103600083015261491a81614370565b9050919050565b6000602082019050818103600083015261493a81614393565b9050919050565b6000602082019050818103600083015261495a816143b6565b9050919050565b6000602082019050818103600083015261497a816143d9565b9050919050565b6000602082019050818103600083015261499a816143fc565b9050919050565b600060208201905081810360008301526149ba8161441f565b9050919050565b600060208201905081810360008301526149da81614442565b9050919050565b600060208201905081810360008301526149fa81614465565b9050919050565b60006020820190508181036000830152614a1a81614488565b9050919050565b60006020820190508181036000830152614a3a816144ab565b9050919050565b60006020820190508181036000830152614a5a816144ce565b9050919050565b60006020820190508181036000830152614a7a81614514565b9050919050565b60006020820190508181036000830152614a9a81614537565b9050919050565b60006020820190508181036000830152614aba8161455a565b9050919050565b60006020820190508181036000830152614ada8161457d565b9050919050565b60006020820190508181036000830152614afa816145a0565b9050919050565b60006020820190508181036000830152614b1a816145c3565b9050919050565b60006020820190508181036000830152614b3a816145e6565b9050919050565b60006020820190508181036000830152614b5a81614609565b9050919050565b60006020820190508181036000830152614b7a8161462c565b9050919050565b60006020820190508181036000830152614b9a8161464f565b9050919050565b60006020820190508181036000830152614bba81614672565b9050919050565b6000602082019050614bd66000830184614695565b92915050565b6000614be6614bf7565b9050614bf28282614fa5565b919050565b6000604051905090565b600067ffffffffffffffff821115614c1c57614c1b61510c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c4857614c4761510c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c7457614c7361510c565b5b614c7d82615159565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ce382614eb1565b9150614cee83614eb1565b9250826fffffffffffffffffffffffffffffffff03821115614d1357614d12615050565b5b828201905092915050565b6000614d2982614eed565b9150614d3483614eed565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d6957614d68615050565b5b828201905092915050565b6000614d7f82614eed565b9150614d8a83614eed565b925082614d9a57614d9961507f565b5b828204905092915050565b6000614db082614eed565b9150614dbb83614eed565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614df457614df3615050565b5b828202905092915050565b6000614e0a82614eb1565b9150614e1583614eb1565b925082821015614e2857614e27615050565b5b828203905092915050565b6000614e3e82614eed565b9150614e4983614eed565b925082821015614e5c57614e5b615050565b5b828203905092915050565b6000614e7282614ecd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b83811015614f34578082015181840152602081019050614f19565b83811115614f43576000848401525b50505050565b6000614f5482614eed565b91506000821415614f6857614f67615050565b5b600182039050919050565b60006002820490506001821680614f8b57607f821691505b60208210811415614f9f57614f9e6150ae565b5b50919050565b614fae82615159565b810181811067ffffffffffffffff82111715614fcd57614fcc61510c565b5b80604052505050565b6000614fe182614eed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561501457615013615050565b5b600182019050919050565b600061502a82614eed565b915061503583614eed565b9250826150455761504461507f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c6973742073616c65206e6f7420737461727465642e2000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f56616c75652062656c6f772070726963652c206e65656420746f20706179206d60008201527f6f72650000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f457863656564206d6178207175616e7469747920796f752063616e206d696e74600082015250565b7f596f7520617265206e6f7420696e2077686974656c6973740000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f596f7520617265206e6f7420696e20667265656c697374000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f5075626c69632053616c65206e6f7420737461727465642e2000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f457863656564206d6178207175616e7469747920706572206d696e7400000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008201527f73206c656e677468000000000000000000000000000000000000000000000000602082015250565b6159ba81614e67565b81146159c557600080fd5b50565b6159d181614e79565b81146159dc57600080fd5b50565b6159e881614e85565b81146159f357600080fd5b50565b6159ff81614eed565b8114615a0a57600080fd5b50565b615a1681614ef7565b8114615a2157600080fd5b5056fea2646970667358221220b0129ac96174f95a991d497101ac24ab5f5670aaeac412cfa655370e3bcd815f64736f6c6343000807003368747470733a2f2f616c706861647261636f6e69732e6d7970696e6174612e636c6f75642f697066732f516d61534b523856656651664b6a64477333664741766241647034583633574a764e44726d694b327471504d76392f68747470733a2f2f616c706861647261636f6e69732e6d7970696e6174612e636c6f75642f697066732f516d55526d35426578325a7a6b424144726d644b535a7652617041367a6a78646f64514a4e6e783352766f5047700000000000000000000000000000000000000000000000000000000000000064
Deployed Bytecode
0x6080604052600436106102305760003560e01c80637a4706c91161012e578063a945bf80116100ab578063d7224ba01161006f578063d7224ba014610828578063e985e9c514610853578063f013e0e114610890578063f2fde38b146108b9578063fc1a1c36146108e257610230565b8063a945bf8014610769578063ac44600214610794578063b88d4fde146107ab578063bfe1d2c4146107d4578063c87b56dd146107eb57610230565b8063961613f0116100f2578063961613f0146106955780639b19251a146106be5780639d7e8d5f146106fb578063a0712d6814610724578063a22cb4651461074057610230565b80637a4706c9146105c25780638606d938146105eb5780638bc35c2f146106145780638da5cb5b1461063f57806395d89b411461066a57610230565b806340d0b4a9116101bc5780636bb1d186116101805780636bb1d186146104dd57806370a0823114610506578063715018a614610543578063722503801461055a5780637227548b1461058557610230565b806340d0b4a9146103fa57806342842e0e146104115780634f6ccce71461043a57806355f804b3146104775780636352211e146104a057610230565b806318160ddd1161020357806318160ddd1461030357806323b872dd1461032e5780632f745c591461035757806332536eb41461039457806334e5dfb8146103d157610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613fca565b61090d565b6040516102699190614744565b60405180910390f35b34801561027e57600080fd5b50610287610a57565b604051610294919061475f565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190614071565b610ae9565b6040516102d191906146dd565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613f12565b610b6e565b005b34801561030f57600080fd5b50610318610c87565b6040516103259190614bc1565b60405180910390f35b34801561033a57600080fd5b5061035560048036038101906103509190613dfc565b610c91565b005b34801561036357600080fd5b5061037e60048036038101906103799190613f12565b610ca1565b60405161038b9190614bc1565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b6919061409e565b610e9f565b6040516103c89190614bc1565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f391906140de565b610eb5565b005b34801561040657600080fd5b5061040f610f55565b005b34801561041d57600080fd5b5061043860048036038101906104339190613dfc565b610fee565b005b34801561044657600080fd5b50610461600480360381019061045c9190614071565b61100e565b60405161046e9190614bc1565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190614024565b611061565b005b3480156104ac57600080fd5b506104c760048036038101906104c29190614071565b6110f3565b6040516104d491906146dd565b60405180910390f35b3480156104e957600080fd5b5061050460048036038101906104ff91906140de565b611109565b005b34801561051257600080fd5b5061052d60048036038101906105289190613d8f565b6111a9565b60405161053a9190614bc1565b60405180910390f35b34801561054f57600080fd5b50610558611292565b005b34801561056657600080fd5b5061056f61131a565b60405161057c919061475f565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190613d8f565b6113a8565b6040516105b99190614bc1565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e491906140de565b6113c0565b005b3480156105f757600080fd5b50610612600480360381019061060d9190614071565b61144c565b005b34801561062057600080fd5b506106296114d2565b6040516106369190614bc1565b60405180910390f35b34801561064b57600080fd5b506106546114d8565b60405161066191906146dd565b60405180910390f35b34801561067657600080fd5b5061067f611501565b60405161068c919061475f565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190613f52565b611593565b005b3480156106ca57600080fd5b506106e560048036038101906106e09190613d8f565b6116ef565b6040516106f29190614bc1565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d9190614071565b611707565b005b61073e60048036038101906107399190614071565b61178d565b005b34801561074c57600080fd5b5061076760048036038101906107629190613ed2565b611e9c565b005b34801561077557600080fd5b5061077e61201d565b60405161078b9190614bc1565b60405180910390f35b3480156107a057600080fd5b506107a9612023565b005b3480156107b757600080fd5b506107d260048036038101906107cd9190613e4f565b6121e7565b005b3480156107e057600080fd5b506107e9612243565b005b3480156107f757600080fd5b50610812600480360381019061080d9190614071565b6122dc565b60405161081f919061475f565b60405180910390f35b34801561083457600080fd5b5061083d61239d565b60405161084a9190614bc1565b60405180910390f35b34801561085f57600080fd5b5061087a60048036038101906108759190613dbc565b6123a3565b6040516108879190614744565b60405180910390f35b34801561089c57600080fd5b506108b760048036038101906108b29190613f52565b612437565b005b3480156108c557600080fd5b506108e060048036038101906108db9190613d8f565b612593565b005b3480156108ee57600080fd5b506108f761268b565b6040516109049190614bc1565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a4057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a505750610a4f82612691565b5b9050919050565b606060028054610a6690614f73565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9290614f73565b8015610adf5780601f10610ab457610100808354040283529160200191610adf565b820191906000526020600020905b815481529060010190602001808311610ac257829003601f168201915b5050505050905090565b6000610af4826126fb565b610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a90614b61565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b79826110f3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be190614a41565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c09612709565b73ffffffffffffffffffffffffffffffffffffffff161480610c385750610c3781610c32612709565b6123a3565b5b610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e906148e1565b60405180910390fd5b610c82838383612711565b505050565b6000600154905090565b610c9c8383836127c3565b505050565b6000610cac836111a9565b8210610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce490614781565b60405180910390fd5b6000610cf7610c87565b905060008060005b83811015610e5d576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610df157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e495786841415610e3a578195505050505050610e99565b8380610e4590614fd6565b9450505b508080610e5590614fd6565b915050610cff565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090614b01565b60405180910390fd5b92915050565b60008183610ead9190614da5565b905092915050565b610ebd612709565b73ffffffffffffffffffffffffffffffffffffffff16610edb6114d8565b73ffffffffffffffffffffffffffffffffffffffff1614610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f28906149a1565b60405180910390fd5b80600a60006101000a81548163ffffffff021916908363ffffffff16021790555050565b610f5d612709565b73ffffffffffffffffffffffffffffffffffffffff16610f7b6114d8565b73ffffffffffffffffffffffffffffffffffffffff1614610fd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc8906149a1565b60405180910390fd5b6001601360006101000a81548160ff021916908315150217905550565b611009838383604051806020016040528060008152506121e7565b505050565b6000611018610c87565b8210611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105090614821565b60405180910390fd5b819050919050565b611069612709565b73ffffffffffffffffffffffffffffffffffffffff166110876114d8565b73ffffffffffffffffffffffffffffffffffffffff16146110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d4906149a1565b60405180910390fd5b8181601491906110ee929190613a32565b505050565b60006110fe82612d7c565b600001519050919050565b611111612709565b73ffffffffffffffffffffffffffffffffffffffff1661112f6114d8565b73ffffffffffffffffffffffffffffffffffffffff1614611185576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117c906149a1565b60405180910390fd5b80600a60046101000a81548163ffffffff021916908363ffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190614921565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61129a612709565b73ffffffffffffffffffffffffffffffffffffffff166112b86114d8565b73ffffffffffffffffffffffffffffffffffffffff161461130e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611305906149a1565b60405180910390fd5b6113186000612f7f565b565b6012805461132790614f73565b80601f016020809104026020016040519081016040528092919081815260200182805461135390614f73565b80156113a05780601f10611375576101008083540402835291602001916113a0565b820191906000526020600020905b81548152906001019060200180831161138357829003601f168201915b505050505081565b60106020528060005260406000206000915090505481565b6113c8612709565b73ffffffffffffffffffffffffffffffffffffffff166113e66114d8565b73ffffffffffffffffffffffffffffffffffffffff161461143c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611433906149a1565b60405180910390fd5b8063ffffffff16600e8190555050565b611454612709565b73ffffffffffffffffffffffffffffffffffffffff166114726114d8565b73ffffffffffffffffffffffffffffffffffffffff16146114c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bf906149a1565b60405180910390fd5b80600c8190555050565b600b5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461151090614f73565b80601f016020809104026020016040519081016040528092919081815260200182805461153c90614f73565b80156115895780601f1061155e57610100808354040283529160200191611589565b820191906000526020600020905b81548152906001019060200180831161156c57829003601f168201915b5050505050905090565b61159b612709565b73ffffffffffffffffffffffffffffffffffffffff166115b96114d8565b73ffffffffffffffffffffffffffffffffffffffff161461160f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611606906149a1565b60405180910390fd5b8051825114611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a90614ba1565b60405180910390fd5b60005b82518110156116ea57818181518110611672576116716150dd565b5b602002602001015160106000858481518110611691576116906150dd565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806116e290614fd6565b915050611656565b505050565b60116020528060005260406000206000915090505481565b61170f612709565b73ffffffffffffffffffffffffffffffffffffffff1661172d6114d8565b73ffffffffffffffffffffffffffffffffffffffff1614611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a906149a1565b60405180910390fd5b80600d8190555050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f2906148a1565b60405180910390fd5b600f60009054906101000a900463ffffffff1663ffffffff168161181d610c87565b6118279190614d1e565b1115611868576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185f90614941565b60405180910390fd5b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611b11576000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611932576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611929906148c1565b60405180910390fd5b600a60009054906101000a900463ffffffff1663ffffffff1642101561198d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611984906147a1565b60405180910390fd5b600e548111156119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c9906149c1565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90614861565b60405180910390fd5b6000611a608183610e9f565b341015611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a99906147e1565b60405180910390fd5b611aac3383613043565b611ab581613061565b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b049190614e33565b9250508190555050611e99565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611dca576000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611bdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd290614881565b60405180910390fd5b600a60009054906101000a900463ffffffff1663ffffffff16421015611c36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2d906147a1565b60405180910390fd5b600e54811115611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c72906149c1565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf490614861565b60405180910390fd5b6000600c549050611d0e8183610e9f565b341015611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d47906147e1565b60405180910390fd5b611d648282611d5f9190614da5565b613061565b611d6e3383613043565b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dbd9190614e33565b9250508190555050611e98565b6000600d549050600a60049054906101000a900463ffffffff1663ffffffff16421015611e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2390614901565b60405180910390fd5b611e368183610e9f565b341015611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f906147e1565b60405180910390fd5b611e8c8282611e879190614da5565b613061565b611e963383613043565b505b5b50565b611ea4612709565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0990614a01565b60405180910390fd5b8060076000611f1f612709565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fcc612709565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120119190614744565b60405180910390a35050565b600d5481565b61202b612709565b73ffffffffffffffffffffffffffffffffffffffff166120496114d8565b73ffffffffffffffffffffffffffffffffffffffff161461209f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612096906149a1565b60405180910390fd5b600260095414156120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc90614b21565b60405180910390fd5b600260098190555060004711612130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212790614961565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051612156906146c8565b60006040518083038185875af1925050503d8060008114612193576040519150601f19603f3d011682016040523d82523d6000602084013e612198565b606091505b50509050806121dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d390614a61565b60405180910390fd5b506001600981905550565b6121f28484846127c3565b6121fe84848484613102565b61223d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223490614a81565b60405180910390fd5b50505050565b61224b612709565b73ffffffffffffffffffffffffffffffffffffffff166122696114d8565b73ffffffffffffffffffffffffffffffffffffffff16146122bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b6906149a1565b60405180910390fd5b6000601360006101000a81548160ff021916908315150217905550565b606060011515601360009054906101000a900460ff161515141561230a5761230382613299565b9050612398565b6012805461231790614f73565b80601f016020809104026020016040519081016040528092919081815260200182805461234390614f73565b80156123905780601f1061236557610100808354040283529160200191612390565b820191906000526020600020905b81548152906001019060200180831161237357829003601f168201915b505050505090505b919050565b60085481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61243f612709565b73ffffffffffffffffffffffffffffffffffffffff1661245d6114d8565b73ffffffffffffffffffffffffffffffffffffffff16146124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa906149a1565b60405180910390fd5b80518251146124f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ee90614ba1565b60405180910390fd5b60005b825181101561258e57818181518110612516576125156150dd565b5b602002602001015160116000858481518110612535576125346150dd565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061258690614fd6565b9150506124fa565b505050565b61259b612709565b73ffffffffffffffffffffffffffffffffffffffff166125b96114d8565b73ffffffffffffffffffffffffffffffffffffffff161461260f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612606906149a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561267f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612676906147c1565b60405180910390fd5b61268881612f7f565b50565b600c5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006127ce82612d7c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166127f5612709565b73ffffffffffffffffffffffffffffffffffffffff161480612851575061281a612709565b73ffffffffffffffffffffffffffffffffffffffff1661283984610ae9565b73ffffffffffffffffffffffffffffffffffffffff16145b8061286d575061286c8260000151612867612709565b6123a3565b5b9050806128af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a690614a21565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612921576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291890614981565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612991576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298890614841565b60405180910390fd5b61299e8585856001613340565b6129ae6000848460000151612711565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612a1c9190614dff565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612ac09190614cd8565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612bc69190614d1e565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d0c57612c3c816126fb565b15612d0b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d748686866001613346565b505050505050565b612d84613ab8565b612d8d826126fb565b612dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc390614801565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000648310612e305760017f000000000000000000000000000000000000000000000000000000000000006484612e239190614e33565b612e2d9190614d1e565b90505b60008390505b818110612f3e576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612f2a57809350505050612f7a565b508080612f3690614f49565b915050612e36565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7190614b41565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61305d82826040518060200160405280600081525061334c565b5050565b803410156130a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309b90614aa1565b60405180910390fd5b803411156130ff573373ffffffffffffffffffffffffffffffffffffffff166108fc82346130d29190614e33565b9081150290604051600060405180830381858888f193505050501580156130fd573d6000803e3d6000fd5b505b50565b60006131238473ffffffffffffffffffffffffffffffffffffffff1661382c565b1561328c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261314c612709565b8786866040518563ffffffff1660e01b815260040161316e94939291906146f8565b602060405180830381600087803b15801561318857600080fd5b505af19250505080156131b957506040513d601f19601f820116820180604052508101906131b69190613ff7565b60015b61323c573d80600081146131e9576040519150601f19603f3d011682016040523d82523d6000602084013e6131ee565b606091505b50600081511415613234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161322b90614a81565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613291565b600190505b949350505050565b60606132a4826126fb565b6132e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132da906149e1565b60405180910390fd5b60006132ed61383f565b9050600081511161330d5760405180602001604052806000815250613338565b80613317846138d1565b6040516020016133289291906146a4565b6040516020818303038152906040525b915050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156133c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ba90614ae1565b60405180910390fd5b6133cc816126fb565b1561340c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161340390614ac1565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000006483111561346f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346690614b81565b60405180910390fd5b61347c6000858386613340565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516135799190614cd8565b6fffffffffffffffffffffffffffffffff1681526020018583602001516135a09190614cd8565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561380f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46137af6000888488613102565b6137ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137e590614a81565b60405180910390fd5b81806137f990614fd6565b925050808061380790614fd6565b91505061373e565b50806001819055506138246000878588613346565b505050505050565b600080823b905060008111915050919050565b60606014805461384e90614f73565b80601f016020809104026020016040519081016040528092919081815260200182805461387a90614f73565b80156138c75780601f1061389c576101008083540402835291602001916138c7565b820191906000526020600020905b8154815290600101906020018083116138aa57829003601f168201915b5050505050905090565b60606000821415613919576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613a2d565b600082905060005b6000821461394b57808061393490614fd6565b915050600a826139449190614d74565b9150613921565b60008167ffffffffffffffff8111156139675761396661510c565b5b6040519080825280601f01601f1916602001820160405280156139995781602001600182028036833780820191505090505b5090505b60008514613a26576001826139b29190614e33565b9150600a856139c1919061501f565b60306139cd9190614d1e565b60f81b8183815181106139e3576139e26150dd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613a1f9190614d74565b945061399d565b8093505050505b919050565b828054613a3e90614f73565b90600052602060002090601f016020900481019282613a605760008555613aa7565b82601f10613a7957803560ff1916838001178555613aa7565b82800160010185558215613aa7579182015b82811115613aa6578235825591602001919060010190613a8b565b5b509050613ab49190613af2565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613b0b576000816000905550600101613af3565b5090565b6000613b22613b1d84614c01565b614bdc565b90508083825260208201905082856020860282011115613b4557613b44615145565b5b60005b85811015613b755781613b5b8882613c31565b845260208401935060208301925050600181019050613b48565b5050509392505050565b6000613b92613b8d84614c2d565b614bdc565b90508083825260208201905082856020860282011115613bb557613bb4615145565b5b60005b85811015613be55781613bcb8882613d65565b845260208401935060208301925050600181019050613bb8565b5050509392505050565b6000613c02613bfd84614c59565b614bdc565b905082815260208101848484011115613c1e57613c1d61514a565b5b613c29848285614f07565b509392505050565b600081359050613c40816159b1565b92915050565b600082601f830112613c5b57613c5a615140565b5b8135613c6b848260208601613b0f565b91505092915050565b600082601f830112613c8957613c88615140565b5b8135613c99848260208601613b7f565b91505092915050565b600081359050613cb1816159c8565b92915050565b600081359050613cc6816159df565b92915050565b600081519050613cdb816159df565b92915050565b600082601f830112613cf657613cf5615140565b5b8135613d06848260208601613bef565b91505092915050565b60008083601f840112613d2557613d24615140565b5b8235905067ffffffffffffffff811115613d4257613d4161513b565b5b602083019150836001820283011115613d5e57613d5d615145565b5b9250929050565b600081359050613d74816159f6565b92915050565b600081359050613d8981615a0d565b92915050565b600060208284031215613da557613da4615154565b5b6000613db384828501613c31565b91505092915050565b60008060408385031215613dd357613dd2615154565b5b6000613de185828601613c31565b9250506020613df285828601613c31565b9150509250929050565b600080600060608486031215613e1557613e14615154565b5b6000613e2386828701613c31565b9350506020613e3486828701613c31565b9250506040613e4586828701613d65565b9150509250925092565b60008060008060808587031215613e6957613e68615154565b5b6000613e7787828801613c31565b9450506020613e8887828801613c31565b9350506040613e9987828801613d65565b925050606085013567ffffffffffffffff811115613eba57613eb961514f565b5b613ec687828801613ce1565b91505092959194509250565b60008060408385031215613ee957613ee8615154565b5b6000613ef785828601613c31565b9250506020613f0885828601613ca2565b9150509250929050565b60008060408385031215613f2957613f28615154565b5b6000613f3785828601613c31565b9250506020613f4885828601613d65565b9150509250929050565b60008060408385031215613f6957613f68615154565b5b600083013567ffffffffffffffff811115613f8757613f8661514f565b5b613f9385828601613c46565b925050602083013567ffffffffffffffff811115613fb457613fb361514f565b5b613fc085828601613c74565b9150509250929050565b600060208284031215613fe057613fdf615154565b5b6000613fee84828501613cb7565b91505092915050565b60006020828403121561400d5761400c615154565b5b600061401b84828501613ccc565b91505092915050565b6000806020838503121561403b5761403a615154565b5b600083013567ffffffffffffffff8111156140595761405861514f565b5b61406585828601613d0f565b92509250509250929050565b60006020828403121561408757614086615154565b5b600061409584828501613d65565b91505092915050565b600080604083850312156140b5576140b4615154565b5b60006140c385828601613d65565b92505060206140d485828601613d65565b9150509250929050565b6000602082840312156140f4576140f3615154565b5b600061410284828501613d7a565b91505092915050565b61411481614e67565b82525050565b61412381614e79565b82525050565b600061413482614c8a565b61413e8185614ca0565b935061414e818560208601614f16565b61415781615159565b840191505092915050565b600061416d82614c95565b6141778185614cbc565b9350614187818560208601614f16565b61419081615159565b840191505092915050565b60006141a682614c95565b6141b08185614ccd565b93506141c0818560208601614f16565b80840191505092915050565b60006141d9602283614cbc565b91506141e48261516a565b604082019050919050565b60006141fc601c83614cbc565b9150614207826151b9565b602082019050919050565b600061421f602683614cbc565b915061422a826151e2565b604082019050919050565b6000614242602383614cbc565b915061424d82615231565b604082019050919050565b6000614265602a83614cbc565b915061427082615280565b604082019050919050565b6000614288602383614cbc565b9150614293826152cf565b604082019050919050565b60006142ab602583614cbc565b91506142b68261531e565b604082019050919050565b60006142ce602083614cbc565b91506142d98261536d565b602082019050919050565b60006142f1601883614cbc565b91506142fc82615396565b602082019050919050565b6000614314601e83614cbc565b915061431f826153bf565b602082019050919050565b6000614337601783614cbc565b9150614342826153e8565b602082019050919050565b600061435a603983614cbc565b915061436582615411565b604082019050919050565b600061437d601983614cbc565b915061438882615460565b602082019050919050565b60006143a0602b83614cbc565b91506143ab82615489565b604082019050919050565b60006143c3601283614cbc565b91506143ce826154d8565b602082019050919050565b60006143e6601983614cbc565b91506143f182615501565b602082019050919050565b6000614409602683614cbc565b91506144148261552a565b604082019050919050565b600061442c602083614cbc565b915061443782615579565b602082019050919050565b600061444f601c83614cbc565b915061445a826155a2565b602082019050919050565b6000614472602f83614cbc565b915061447d826155cb565b604082019050919050565b6000614495601a83614cbc565b91506144a08261561a565b602082019050919050565b60006144b8603283614cbc565b91506144c382615643565b604082019050919050565b60006144db602283614cbc565b91506144e682615692565b604082019050919050565b60006144fe600083614cb1565b9150614509826156e1565b600082019050919050565b6000614521601083614cbc565b915061452c826156e4565b602082019050919050565b6000614544603383614cbc565b915061454f8261570d565b604082019050919050565b6000614567601683614cbc565b91506145728261575c565b602082019050919050565b600061458a601d83614cbc565b915061459582615785565b602082019050919050565b60006145ad602183614cbc565b91506145b8826157ae565b604082019050919050565b60006145d0602e83614cbc565b91506145db826157fd565b604082019050919050565b60006145f3601f83614cbc565b91506145fe8261584c565b602082019050919050565b6000614616602f83614cbc565b915061462182615875565b604082019050919050565b6000614639602d83614cbc565b9150614644826158c4565b604082019050919050565b600061465c602283614cbc565b915061466782615913565b604082019050919050565b600061467f602883614cbc565b915061468a82615962565b604082019050919050565b61469e81614eed565b82525050565b60006146b0828561419b565b91506146bc828461419b565b91508190509392505050565b60006146d3826144f1565b9150819050919050565b60006020820190506146f2600083018461410b565b92915050565b600060808201905061470d600083018761410b565b61471a602083018661410b565b6147276040830185614695565b81810360608301526147398184614129565b905095945050505050565b6000602082019050614759600083018461411a565b92915050565b600060208201905081810360008301526147798184614162565b905092915050565b6000602082019050818103600083015261479a816141cc565b9050919050565b600060208201905081810360008301526147ba816141ef565b9050919050565b600060208201905081810360008301526147da81614212565b9050919050565b600060208201905081810360008301526147fa81614235565b9050919050565b6000602082019050818103600083015261481a81614258565b9050919050565b6000602082019050818103600083015261483a8161427b565b9050919050565b6000602082019050818103600083015261485a8161429e565b9050919050565b6000602082019050818103600083015261487a816142c1565b9050919050565b6000602082019050818103600083015261489a816142e4565b9050919050565b600060208201905081810360008301526148ba81614307565b9050919050565b600060208201905081810360008301526148da8161432a565b9050919050565b600060208201905081810360008301526148fa8161434d565b9050919050565b6000602082019050818103600083015261491a81614370565b9050919050565b6000602082019050818103600083015261493a81614393565b9050919050565b6000602082019050818103600083015261495a816143b6565b9050919050565b6000602082019050818103600083015261497a816143d9565b9050919050565b6000602082019050818103600083015261499a816143fc565b9050919050565b600060208201905081810360008301526149ba8161441f565b9050919050565b600060208201905081810360008301526149da81614442565b9050919050565b600060208201905081810360008301526149fa81614465565b9050919050565b60006020820190508181036000830152614a1a81614488565b9050919050565b60006020820190508181036000830152614a3a816144ab565b9050919050565b60006020820190508181036000830152614a5a816144ce565b9050919050565b60006020820190508181036000830152614a7a81614514565b9050919050565b60006020820190508181036000830152614a9a81614537565b9050919050565b60006020820190508181036000830152614aba8161455a565b9050919050565b60006020820190508181036000830152614ada8161457d565b9050919050565b60006020820190508181036000830152614afa816145a0565b9050919050565b60006020820190508181036000830152614b1a816145c3565b9050919050565b60006020820190508181036000830152614b3a816145e6565b9050919050565b60006020820190508181036000830152614b5a81614609565b9050919050565b60006020820190508181036000830152614b7a8161462c565b9050919050565b60006020820190508181036000830152614b9a8161464f565b9050919050565b60006020820190508181036000830152614bba81614672565b9050919050565b6000602082019050614bd66000830184614695565b92915050565b6000614be6614bf7565b9050614bf28282614fa5565b919050565b6000604051905090565b600067ffffffffffffffff821115614c1c57614c1b61510c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c4857614c4761510c565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c7457614c7361510c565b5b614c7d82615159565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ce382614eb1565b9150614cee83614eb1565b9250826fffffffffffffffffffffffffffffffff03821115614d1357614d12615050565b5b828201905092915050565b6000614d2982614eed565b9150614d3483614eed565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d6957614d68615050565b5b828201905092915050565b6000614d7f82614eed565b9150614d8a83614eed565b925082614d9a57614d9961507f565b5b828204905092915050565b6000614db082614eed565b9150614dbb83614eed565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614df457614df3615050565b5b828202905092915050565b6000614e0a82614eb1565b9150614e1583614eb1565b925082821015614e2857614e27615050565b5b828203905092915050565b6000614e3e82614eed565b9150614e4983614eed565b925082821015614e5c57614e5b615050565b5b828203905092915050565b6000614e7282614ecd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b83811015614f34578082015181840152602081019050614f19565b83811115614f43576000848401525b50505050565b6000614f5482614eed565b91506000821415614f6857614f67615050565b5b600182039050919050565b60006002820490506001821680614f8b57607f821691505b60208210811415614f9f57614f9e6150ae565b5b50919050565b614fae82615159565b810181811067ffffffffffffffff82111715614fcd57614fcc61510c565b5b80604052505050565b6000614fe182614eed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561501457615013615050565b5b600182019050919050565b600061502a82614eed565b915061503583614eed565b9250826150455761504461507f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f57686974656c6973742073616c65206e6f7420737461727465642e2000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f56616c75652062656c6f772070726963652c206e65656420746f20706179206d60008201527f6f72650000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f457863656564206d6178207175616e7469747920796f752063616e206d696e74600082015250565b7f596f7520617265206e6f7420696e2077686974656c6973740000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f596f7520617265206e6f7420696e20667265656c697374000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f5075626c69632053616c65206e6f7420737461727465642e2000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f4e6f206574686572206c65667420746f20776974686472617700000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f457863656564206d6178207175616e7469747920706572206d696e7400000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f61646472657373657320646f6573206e6f74206d61746368206e756d536c6f7460008201527f73206c656e677468000000000000000000000000000000000000000000000000602082015250565b6159ba81614e67565b81146159c557600080fd5b50565b6159d181614e79565b81146159dc57600080fd5b50565b6159e881614e85565b81146159f357600080fd5b50565b6159ff81614eed565b8114615a0a57600080fd5b50565b615a1681614ef7565b8114615a2157600080fd5b5056fea2646970667358221220b0129ac96174f95a991d497101ac24ab5f5670aaeac412cfa655370e3bcd815f64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000064
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 100
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000064
Deployed Bytecode Sourcemap
41986:5956:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27161:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28887:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30412:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29975:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25725:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31262:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26353:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43145:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47362:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45927:79;;;;;;;;;;;;;:::i;:::-;;31467:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25888:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45821:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28710:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47479:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27587:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41090:103;;;;;;;;;;;;;:::i;:::-;;42459:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42358:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47602:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47705:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42142:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40439:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29042:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46721:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42408:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47825:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43298:2185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30680:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42243:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47078:251;;;;;;;;;;;;;:::i;:::-;;31687:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46014:78;;;;;;;;;;;;;:::i;:::-;;46100:240;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36018:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31017:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46375:338;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41348:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42187:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27161:370;27288:4;27333:25;27318:40;;;:11;:40;;;;:99;;;;27384:33;27369:48;;;:11;:48;;;;27318:99;:160;;;;27443:35;27428:50;;;:11;:50;;;;27318:160;:207;;;;27489:36;27513:11;27489:23;:36::i;:::-;27318:207;27304:221;;27161:370;;;:::o;28887:94::-;28941:13;28970:5;28963:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28887:94;:::o;30412:204::-;30480:7;30504:16;30512:7;30504;:16::i;:::-;30496:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30586:15;:24;30602:7;30586:24;;;;;;;;;;;;;;;;;;;;;30579:31;;30412:204;;;:::o;29975:379::-;30044:13;30060:24;30076:7;30060:15;:24::i;:::-;30044:40;;30105:5;30099:11;;:2;:11;;;;30091:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30190:5;30174:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30199:37;30216:5;30223:12;:10;:12::i;:::-;30199:16;:37::i;:::-;30174:62;30158:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;30320:28;30329:2;30333:7;30342:5;30320:8;:28::i;:::-;30037:317;29975:379;;:::o;25725:94::-;25778:7;25801:12;;25794:19;;25725:94;:::o;31262:142::-;31370:28;31380:4;31386:2;31390:7;31370:9;:28::i;:::-;31262:142;;;:::o;26353:744::-;26462:7;26497:16;26507:5;26497:9;:16::i;:::-;26489:5;:24;26481:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26559:22;26584:13;:11;:13::i;:::-;26559:38;;26604:19;26634:25;26684:9;26679:350;26703:14;26699:1;:18;26679:350;;;26733:31;26767:11;:14;26779:1;26767:14;;;;;;;;;;;26733:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26820:1;26794:28;;:9;:14;;;:28;;;26790:89;;26855:9;:14;;;26835:34;;26790:89;26912:5;26891:26;;:17;:26;;;26887:135;;;26949:5;26934:11;:20;26930:59;;;26976:1;26969:8;;;;;;;;;26930:59;26999:13;;;;;:::i;:::-;;;;26887:135;26724:305;26719:3;;;;;:::i;:::-;;;;26679:350;;;;27035:56;;;;;;;;;;:::i;:::-;;;;;;;;26353:744;;;;;:::o;43145:120::-;43215:7;43251:6;43242;:15;;;;:::i;:::-;43235:22;;43145:120;;;;:::o;47362:107::-;40670:12;:10;:12::i;:::-;40659:23;;:7;:5;:7::i;:::-;:23;;;40651:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47453:8:::1;47434:16;;:27;;;;;;;;;;;;;;;;;;47362:107:::0;:::o;45927:79::-;40670:12;:10;:12::i;:::-;40659:23;;:7;:5;:7::i;:::-;:23;;;40651:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45994:4:::1;45980:11;;:18;;;;;;;;;;;;;;;;;;45927:79::o:0;31467:157::-;31579:39;31596:4;31602:2;31606:7;31579:39;;;;;;;;;;;;:16;:39::i;:::-;31467:157;;;:::o;25888:177::-;25955:7;25987:13;:11;:13::i;:::-;25979:5;:21;25971:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26054:5;26047:12;;25888:177;;;:::o;45821:100::-;40670:12;:10;:12::i;:::-;40659:23;;:7;:5;:7::i;:::-;:23;;;40651:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45908:7:::1;;45892:13;:23;;;;;;;:::i;:::-;;45821:100:::0;;:::o;28710:118::-;28774:7;28797:20;28809:7;28797:11;:20::i;:::-;:25;;;28790:32;;28710:118;;;:::o;47479:113::-;40670:12;:10;:12::i;:::-;40659:23;;:7;:5;:7::i;:::-;:23;;;40651:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47576:8:::1;47554:19;;:30;;;;;;;;;;;;;;;;;;47479:113:::0;:::o;27587:211::-;27651:7;27692:1;27675:19;;:5;:19;;;;27667:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;27764:12;:19;27777:5;27764:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27756:36;;27749:43;;27587:211;;;:::o;41090:103::-;40670:12;:10;:12::i;:::-;40659:23;;:7;:5;:7::i;:::-;:23;;;40651:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41155:30:::1;41182:1;41155:18;:30::i;:::-;41090:103::o:0;42459:121::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42358:43::-;;;;;;;;;;;;;;;;;:::o;47602:93::-;40670:12;:10;:12::i;:::-;40659:23;;:7;:5;:7::i;:::-;:23;;;40651:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47680:7:::1;47669:18;;:8;:18;;;;47602:93:::0;:::o;47705:110::-;40670:12;:10;:12::i;:::-;40659:23;;:7;:5;:7::i;:::-;:23;;;40651:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47798:9:::1;47781:14;:26;;;;47705:110:::0;:::o;42142:38::-;;;;:::o;40439:87::-;40485:7;40512:6;;;;;;;;;;;40505:13;;40439:87;:::o;29042:98::-;29098:13;29127:7;29120:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29042:98;:::o;46721:336::-;40670:12;:10;:12::i;:::-;40659:23;;:7;:5;:7::i;:::-;:23;;;40651:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46872:8:::1;:15;46852:9;:16;:35;46836:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;46957:9;46952:100;46976:9;:16;46972:1;:20;46952:100;;;47033:8;47042:1;47033:11;;;;;;;;:::i;:::-;;;;;;;;47008:8;:22;47017:9;47027:1;47017:12;;;;;;;;:::i;:::-;;;;;;;;47008:22;;;;;;;;;;;;;;;:36;;;;46994:3;;;;;:::i;:::-;;;;46952:100;;;;46721:336:::0;;:::o;42408:44::-;;;;;;;;;;;;;;;;;:::o;47825:106::-;40670:12;:10;:12::i;:::-;40659:23;;:7;:5;:7::i;:::-;:23;;;40651:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47914:9:::1;47900:11;:23;;;;47825:106:::0;:::o;43298:2185::-;42840:10;42827:23;;:9;:23;;;42819:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43421:14:::1;;;;;;;;;;;43393:42;;43409:8;43393:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;43371:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;43521:1;43498:8;:20;43507:10;43498:20;;;;;;;;;;;;;;;;:24;43494:1982;;;43570:1;43547:8;:20;43556:10;43547:20;;;;;;;;;;;;;;;;:24;43539:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;43659:16;;;;;;;;;;;43640:35;;:15;:35;;43614:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;43774:8;;43762;:20;;43754:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;43850:8;:20;43859:10;43850:20;;;;;;;;;;;;;;;;43838:8;:32;;43830:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;43965:13;44018:27;44029:5;44036:8;44018:10;:27::i;:::-;44005:9;:40;;43997:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;44102:31;44112:10;44124:8;44102:9;:31::i;:::-;44148:19;44161:5;44148:12;:19::i;:::-;44206:8;44182;:20;44191:10;44182:20;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;43524:716;43494:1982;;;44274:1;44250:9;:21;44260:10;44250:21;;;;;;;;;;;;;;;;:25;44246:1230;;;44324:1;44300:9;:21;44310:10;44300:21;;;;;;;;;;;;;;;;:25;44292:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;44414:16;;;;;;;;;;;44395:35;;:15;:35;;44369:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;44529:8;;44517;:20;;44509:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;44605:9;:21;44615:10;44605:21;;;;;;;;;;;;;;;;44593:8;:33;;44585:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;44710:13;44734:14;;44710:39;;44785:27;44796:5;44803:8;44785:10;:27::i;:::-;44772:9;:40;;44764:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;44867:28;44886:8;44880:5;:14;;;;:::i;:::-;44867:12;:28::i;:::-;44910:31;44920:10;44932:8;44910:9;:31::i;:::-;44995:8;44970:9;:21;44980:10;44970:21;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;44277:738;44246:1230;;;45064:13;45088:11;;45064:36;;45174:19;;;;;;;;;;;45155:38;;:15;:38;;45129:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;45292:27;45303:5;45310:8;45292:10;:27::i;:::-;45279:9;:40;;45271:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;45376:28;45395:8;45389:5;:14;;;;:::i;:::-;45376:12;:28::i;:::-;45419:31;45429:10;45441:8;45419:9;:31::i;:::-;45021:455;44246:1230;43494:1982;43298:2185:::0;:::o;30680:274::-;30783:12;:10;:12::i;:::-;30771:24;;:8;:24;;;;30763:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;30880:8;30835:18;:32;30854:12;:10;:12::i;:::-;30835:32;;;;;;;;;;;;;;;:42;30868:8;30835:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30929:8;30900:48;;30915:12;:10;:12::i;:::-;30900:48;;;30939:8;30900:48;;;;;;:::i;:::-;;;;;;;;30680:274;;:::o;42243:46::-;;;;:::o;47078:251::-;40670:12;:10;:12::i;:::-;40659:23;;:7;:5;:7::i;:::-;:23;;;40651:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21845:1:::1;22443:7;;:19;;22435:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;21845:1;22576:7;:18;;;;47174:1:::2;47150:21;:25;47142:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47213:12;47231:10;:15;;47254:21;47231:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47212:68;;;47295:7;47287:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;47135:194;21801:1:::1;22755:7;:22;;;;47078:251::o:0;31687:311::-;31824:28;31834:4;31840:2;31844:7;31824:9;:28::i;:::-;31875:48;31898:4;31904:2;31908:7;31917:5;31875:22;:48::i;:::-;31859:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;31687:311;;;;:::o;46014:78::-;40670:12;:10;:12::i;:::-;40659:23;;:7;:5;:7::i;:::-;:23;;;40651:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46079:5:::1;46065:11;;:19;;;;;;;;;;;;;;;;;;46014:78::o:0;46100:240::-;46173:13;46217:4;46202:19;;:11;;;;;;;;;;;:19;;;46198:135;;;46244:23;46259:7;46244:14;:23::i;:::-;46237:30;;;;46198:135;46307:14;46300:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46100:240;;;;:::o;36018:43::-;;;;:::o;31017:186::-;31139:4;31162:18;:25;31181:5;31162:25;;;;;;;;;;;;;;;:35;31188:8;31162:35;;;;;;;;;;;;;;;;;;;;;;;;;31155:42;;31017:186;;;;:::o;46375:338::-;40670:12;:10;:12::i;:::-;40659:23;;:7;:5;:7::i;:::-;:23;;;40651:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46527:8:::1;:15;46507:9;:16;:35;46491:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;46612:9;46607:101;46631:9;:16;46627:1;:20;46607:101;;;46689:8;46698:1;46689:11;;;;;;;;:::i;:::-;;;;;;;;46663:9;:23;46673:9;46683:1;46673:12;;;;;;;;:::i;:::-;;;;;;;;46663:23;;;;;;;;;;;;;;;:37;;;;46649:3;;;;;:::i;:::-;;;;46607:101;;;;46375:338:::0;;:::o;41348:201::-;40670:12;:10;:12::i;:::-;40659:23;;:7;:5;:7::i;:::-;:23;;;40651:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41457:1:::1;41437:22;;:8;:22;;;;41429:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41513:28;41532:8;41513:18;:28::i;:::-;41348:201:::0;:::o;42187:49::-;;;;:::o;13121:157::-;13206:4;13245:25;13230:40;;;:11;:40;;;;13223:47;;13121:157;;;:::o;32237:105::-;32294:4;32324:12;;32314:7;:22;32307:29;;32237:105;;;:::o;23471:98::-;23524:7;23551:10;23544:17;;23471:98;:::o;35840:172::-;35964:2;35937:15;:24;35953:7;35937:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35998:7;35994:2;35978:28;;35987:5;35978:28;;;;;;;;;;;;35840:172;;;:::o;34205:1529::-;34302:35;34340:20;34352:7;34340:11;:20::i;:::-;34302:58;;34369:22;34411:13;:18;;;34395:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;34464:12;:10;:12::i;:::-;34440:36;;:20;34452:7;34440:11;:20::i;:::-;:36;;;34395:81;:142;;;;34487:50;34504:13;:18;;;34524:12;:10;:12::i;:::-;34487:16;:50::i;:::-;34395:142;34369:169;;34563:17;34547:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;34695:4;34673:26;;:13;:18;;;:26;;;34657:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;34784:1;34770:16;;:2;:16;;;;34762:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;34837:43;34859:4;34865:2;34869:7;34878:1;34837:21;:43::i;:::-;34937:49;34954:1;34958:7;34967:13;:18;;;34937:8;:49::i;:::-;35025:1;34995:12;:18;35008:4;34995:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35061:1;35033:12;:16;35046:2;35033:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35092:43;;;;;;;;35107:2;35092:43;;;;;;35118:15;35092:43;;;;;35069:11;:20;35081:7;35069:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35363:19;35395:1;35385:7;:11;;;;:::i;:::-;35363:33;;35448:1;35407:43;;:11;:24;35419:11;35407:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35403:236;;;35465:20;35473:11;35465:7;:20::i;:::-;35461:171;;;35525:97;;;;;;;;35552:13;:18;;;35525:97;;;;;;35583:13;:28;;;35525:97;;;;;35498:11;:24;35510:11;35498:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35461:171;35403:236;35671:7;35667:2;35652:27;;35661:4;35652:27;;;;;;;;;;;;35686:42;35707:4;35713:2;35717:7;35726:1;35686:20;:42::i;:::-;34295:1439;;;34205:1529;;;:::o;28050:606::-;28126:21;;:::i;:::-;28167:16;28175:7;28167;:16::i;:::-;28159:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28239:26;28287:12;28276:7;:23;28272:93;;28356:1;28341:12;28331:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;28310:47;;28272:93;28378:12;28393:7;28378:22;;28373:212;28410:18;28402:4;:26;28373:212;;28447:31;28481:11;:17;28493:4;28481:17;;;;;;;;;;;28447:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28537:1;28511:28;;:9;:14;;;:28;;;28507:71;;28559:9;28552:16;;;;;;;28507:71;28438:147;28430:6;;;;;:::i;:::-;;;;28373:212;;;;28593:57;;;;;;;;;;:::i;:::-;;;;;;;;28050:606;;;;:::o;41709:191::-;41783:16;41802:6;;;;;;;;;;;41783:25;;41828:8;41819:6;;:17;;;;;;;;;;;;;;;;;;41883:8;41852:40;;41873:8;41852:40;;;;;;;;;;;;41772:128;41709:191;:::o;32348:98::-;32413:27;32423:2;32427:8;32413:27;;;;;;;;;;;;:9;:27::i;:::-;32348:98;;:::o;42913:224::-;42990:5;42977:9;:18;;42969:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;43049:5;43037:9;:17;43033:97;;;43079:10;43071:28;;:47;43112:5;43100:9;:17;;;;:::i;:::-;43071:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43033:97;42913:224;:::o;37551:690::-;37688:4;37705:15;:2;:13;;;:15::i;:::-;37701:535;;;37760:2;37744:36;;;37781:12;:10;:12::i;:::-;37795:4;37801:7;37810:5;37744:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37731:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37992:1;37975:6;:13;:18;37971:215;;;38008:61;;;;;;;;;;:::i;:::-;;;;;;;;37971:215;38154:6;38148:13;38139:6;38135:2;38131:15;38124:38;37731:464;37876:45;;;37866:55;;;:6;:55;;;;37859:62;;;;;37701:535;38224:4;38217:11;;37551:690;;;;;;;:::o;29203:394::-;29301:13;29342:16;29350:7;29342;:16::i;:::-;29326:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;29432:21;29456:10;:8;:10::i;:::-;29432:34;;29511:1;29493:7;29487:21;:25;:104;;;;;;;;;;;;;;;;;29548:7;29557:18;:7;:16;:18::i;:::-;29531:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29487:104;29473:118;;;29203:394;;;:::o;38703:141::-;;;;;:::o;39230:140::-;;;;;:::o;32701:1272::-;32806:20;32829:12;;32806:35;;32870:1;32856:16;;:2;:16;;;;32848:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33047:21;33055:12;33047:7;:21::i;:::-;33046:22;33038:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33129:12;33117:8;:24;;33109:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33189:61;33219:1;33223:2;33227:12;33241:8;33189:21;:61::i;:::-;33259:30;33292:12;:16;33305:2;33292:16;;;;;;;;;;;;;;;33259:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33334:119;;;;;;;;33384:8;33354:11;:19;;;:39;;;;:::i;:::-;33334:119;;;;;;33437:8;33402:11;:24;;;:44;;;;:::i;:::-;33334:119;;;;;33315:12;:16;33328:2;33315:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33488:43;;;;;;;;33503:2;33488:43;;;;;;33514:15;33488:43;;;;;33460:11;:25;33472:12;33460:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33540:20;33563:12;33540:35;;33589:9;33584:281;33608:8;33604:1;:12;33584:281;;;33662:12;33658:2;33637:38;;33654:1;33637:38;;;;;;;;;;;;33702:59;33733:1;33737:2;33741:12;33755:5;33702:22;:59::i;:::-;33684:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;33843:14;;;;;:::i;:::-;;;;33618:3;;;;;:::i;:::-;;;;33584:281;;;;33888:12;33873;:27;;;;33907:60;33936:1;33940:2;33944:12;33958:8;33907:20;:60::i;:::-;32799:1174;;;32701:1272;;;:::o;2977:387::-;3037:4;3245:12;3312:7;3300:20;3292:28;;3355:1;3348:4;:8;3341:15;;;2977:387;;;:::o;45707:108::-;45767:13;45796;45789:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45707:108;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:139::-;1959:5;1997:6;1984:20;1975:29;;2013:33;2040:5;2013:33;:::i;:::-;1913:139;;;;:::o;2075:370::-;2146:5;2195:3;2188:4;2180:6;2176:17;2172:27;2162:122;;2203:79;;:::i;:::-;2162:122;2320:6;2307:20;2345:94;2435:3;2427:6;2420:4;2412:6;2408:17;2345:94;:::i;:::-;2336:103;;2152:293;2075:370;;;;:::o;2468:::-;2539:5;2588:3;2581:4;2573:6;2569:17;2565:27;2555:122;;2596:79;;:::i;:::-;2555:122;2713:6;2700:20;2738:94;2828:3;2820:6;2813:4;2805:6;2801:17;2738:94;:::i;:::-;2729:103;;2545:293;2468:370;;;;:::o;2844:133::-;2887:5;2925:6;2912:20;2903:29;;2941:30;2965:5;2941:30;:::i;:::-;2844:133;;;;:::o;2983:137::-;3028:5;3066:6;3053:20;3044:29;;3082:32;3108:5;3082:32;:::i;:::-;2983:137;;;;:::o;3126:141::-;3182:5;3213:6;3207:13;3198:22;;3229:32;3255:5;3229:32;:::i;:::-;3126:141;;;;:::o;3286:338::-;3341:5;3390:3;3383:4;3375:6;3371:17;3367:27;3357:122;;3398:79;;:::i;:::-;3357:122;3515:6;3502:20;3540:78;3614:3;3606:6;3599:4;3591:6;3587:17;3540:78;:::i;:::-;3531:87;;3347:277;3286:338;;;;:::o;3644:553::-;3702:8;3712:6;3762:3;3755:4;3747:6;3743:17;3739:27;3729:122;;3770:79;;:::i;:::-;3729:122;3883:6;3870:20;3860:30;;3913:18;3905:6;3902:30;3899:117;;;3935:79;;:::i;:::-;3899:117;4049:4;4041:6;4037:17;4025:29;;4103:3;4095:4;4087:6;4083:17;4073:8;4069:32;4066:41;4063:128;;;4110:79;;:::i;:::-;4063:128;3644:553;;;;;:::o;4203:139::-;4249:5;4287:6;4274:20;4265:29;;4303:33;4330:5;4303:33;:::i;:::-;4203:139;;;;:::o;4348:137::-;4393:5;4431:6;4418:20;4409:29;;4447:32;4473:5;4447:32;:::i;:::-;4348:137;;;;:::o;4491:329::-;4550:6;4599:2;4587:9;4578:7;4574:23;4570:32;4567:119;;;4605:79;;:::i;:::-;4567:119;4725:1;4750:53;4795:7;4786:6;4775:9;4771:22;4750:53;:::i;:::-;4740:63;;4696:117;4491:329;;;;:::o;4826:474::-;4894:6;4902;4951:2;4939:9;4930:7;4926:23;4922:32;4919:119;;;4957:79;;:::i;:::-;4919:119;5077:1;5102:53;5147:7;5138:6;5127:9;5123:22;5102:53;:::i;:::-;5092:63;;5048:117;5204:2;5230:53;5275:7;5266:6;5255:9;5251:22;5230:53;:::i;:::-;5220:63;;5175:118;4826:474;;;;;:::o;5306:619::-;5383:6;5391;5399;5448:2;5436:9;5427:7;5423:23;5419:32;5416:119;;;5454:79;;:::i;:::-;5416:119;5574:1;5599:53;5644:7;5635:6;5624:9;5620:22;5599:53;:::i;:::-;5589:63;;5545:117;5701:2;5727:53;5772:7;5763:6;5752:9;5748:22;5727:53;:::i;:::-;5717:63;;5672:118;5829:2;5855:53;5900:7;5891:6;5880:9;5876:22;5855:53;:::i;:::-;5845:63;;5800:118;5306:619;;;;;:::o;5931:943::-;6026:6;6034;6042;6050;6099:3;6087:9;6078:7;6074:23;6070:33;6067:120;;;6106:79;;:::i;:::-;6067:120;6226:1;6251:53;6296:7;6287:6;6276:9;6272:22;6251:53;:::i;:::-;6241:63;;6197:117;6353:2;6379:53;6424:7;6415:6;6404:9;6400:22;6379:53;:::i;:::-;6369:63;;6324:118;6481:2;6507:53;6552:7;6543:6;6532:9;6528:22;6507:53;:::i;:::-;6497:63;;6452:118;6637:2;6626:9;6622:18;6609:32;6668:18;6660:6;6657:30;6654:117;;;6690:79;;:::i;:::-;6654:117;6795:62;6849:7;6840:6;6829:9;6825:22;6795:62;:::i;:::-;6785:72;;6580:287;5931:943;;;;;;;:::o;6880:468::-;6945:6;6953;7002:2;6990:9;6981:7;6977:23;6973:32;6970:119;;;7008:79;;:::i;:::-;6970:119;7128:1;7153:53;7198:7;7189:6;7178:9;7174:22;7153:53;:::i;:::-;7143:63;;7099:117;7255:2;7281:50;7323:7;7314:6;7303:9;7299:22;7281:50;:::i;:::-;7271:60;;7226:115;6880:468;;;;;:::o;7354:474::-;7422:6;7430;7479:2;7467:9;7458:7;7454:23;7450:32;7447:119;;;7485:79;;:::i;:::-;7447:119;7605:1;7630:53;7675:7;7666:6;7655:9;7651:22;7630:53;:::i;:::-;7620:63;;7576:117;7732:2;7758:53;7803:7;7794:6;7783:9;7779:22;7758:53;:::i;:::-;7748:63;;7703:118;7354:474;;;;;:::o;7834:894::-;7952:6;7960;8009:2;7997:9;7988:7;7984:23;7980:32;7977:119;;;8015:79;;:::i;:::-;7977:119;8163:1;8152:9;8148:17;8135:31;8193:18;8185:6;8182:30;8179:117;;;8215:79;;:::i;:::-;8179:117;8320:78;8390:7;8381:6;8370:9;8366:22;8320:78;:::i;:::-;8310:88;;8106:302;8475:2;8464:9;8460:18;8447:32;8506:18;8498:6;8495:30;8492:117;;;8528:79;;:::i;:::-;8492:117;8633:78;8703:7;8694:6;8683:9;8679:22;8633:78;:::i;:::-;8623:88;;8418:303;7834:894;;;;;:::o;8734:327::-;8792:6;8841:2;8829:9;8820:7;8816:23;8812:32;8809:119;;;8847:79;;:::i;:::-;8809:119;8967:1;8992:52;9036:7;9027:6;9016:9;9012:22;8992:52;:::i;:::-;8982:62;;8938:116;8734:327;;;;:::o;9067:349::-;9136:6;9185:2;9173:9;9164:7;9160:23;9156:32;9153:119;;;9191:79;;:::i;:::-;9153:119;9311:1;9336:63;9391:7;9382:6;9371:9;9367:22;9336:63;:::i;:::-;9326:73;;9282:127;9067:349;;;;:::o;9422:529::-;9493:6;9501;9550:2;9538:9;9529:7;9525:23;9521:32;9518:119;;;9556:79;;:::i;:::-;9518:119;9704:1;9693:9;9689:17;9676:31;9734:18;9726:6;9723:30;9720:117;;;9756:79;;:::i;:::-;9720:117;9869:65;9926:7;9917:6;9906:9;9902:22;9869:65;:::i;:::-;9851:83;;;;9647:297;9422:529;;;;;:::o;9957:329::-;10016:6;10065:2;10053:9;10044:7;10040:23;10036:32;10033:119;;;10071:79;;:::i;:::-;10033:119;10191:1;10216:53;10261:7;10252:6;10241:9;10237:22;10216:53;:::i;:::-;10206:63;;10162:117;9957:329;;;;:::o;10292:474::-;10360:6;10368;10417:2;10405:9;10396:7;10392:23;10388:32;10385:119;;;10423:79;;:::i;:::-;10385:119;10543:1;10568:53;10613:7;10604:6;10593:9;10589:22;10568:53;:::i;:::-;10558:63;;10514:117;10670:2;10696:53;10741:7;10732:6;10721:9;10717:22;10696:53;:::i;:::-;10686:63;;10641:118;10292:474;;;;;:::o;10772:327::-;10830:6;10879:2;10867:9;10858:7;10854:23;10850:32;10847:119;;;10885:79;;:::i;:::-;10847:119;11005:1;11030:52;11074:7;11065:6;11054:9;11050:22;11030:52;:::i;:::-;11020:62;;10976:116;10772:327;;;;:::o;11105:118::-;11192:24;11210:5;11192:24;:::i;:::-;11187:3;11180:37;11105:118;;:::o;11229:109::-;11310:21;11325:5;11310:21;:::i;:::-;11305:3;11298:34;11229:109;;:::o;11344:360::-;11430:3;11458:38;11490:5;11458:38;:::i;:::-;11512:70;11575:6;11570:3;11512:70;:::i;:::-;11505:77;;11591:52;11636:6;11631:3;11624:4;11617:5;11613:16;11591:52;:::i;:::-;11668:29;11690:6;11668:29;:::i;:::-;11663:3;11659:39;11652:46;;11434:270;11344:360;;;;:::o;11710:364::-;11798:3;11826:39;11859:5;11826:39;:::i;:::-;11881:71;11945:6;11940:3;11881:71;:::i;:::-;11874:78;;11961:52;12006:6;12001:3;11994:4;11987:5;11983:16;11961:52;:::i;:::-;12038:29;12060:6;12038:29;:::i;:::-;12033:3;12029:39;12022:46;;11802:272;11710:364;;;;:::o;12080:377::-;12186:3;12214:39;12247:5;12214:39;:::i;:::-;12269:89;12351:6;12346:3;12269:89;:::i;:::-;12262:96;;12367:52;12412:6;12407:3;12400:4;12393:5;12389:16;12367:52;:::i;:::-;12444:6;12439:3;12435:16;12428:23;;12190:267;12080:377;;;;:::o;12463:366::-;12605:3;12626:67;12690:2;12685:3;12626:67;:::i;:::-;12619:74;;12702:93;12791:3;12702:93;:::i;:::-;12820:2;12815:3;12811:12;12804:19;;12463:366;;;:::o;12835:::-;12977:3;12998:67;13062:2;13057:3;12998:67;:::i;:::-;12991:74;;13074:93;13163:3;13074:93;:::i;:::-;13192:2;13187:3;13183:12;13176:19;;12835:366;;;:::o;13207:::-;13349:3;13370:67;13434:2;13429:3;13370:67;:::i;:::-;13363:74;;13446:93;13535:3;13446:93;:::i;:::-;13564:2;13559:3;13555:12;13548:19;;13207:366;;;:::o;13579:::-;13721:3;13742:67;13806:2;13801:3;13742:67;:::i;:::-;13735:74;;13818:93;13907:3;13818:93;:::i;:::-;13936:2;13931:3;13927:12;13920:19;;13579:366;;;:::o;13951:::-;14093:3;14114:67;14178:2;14173:3;14114:67;:::i;:::-;14107:74;;14190:93;14279:3;14190:93;:::i;:::-;14308:2;14303:3;14299:12;14292:19;;13951:366;;;:::o;14323:::-;14465:3;14486:67;14550:2;14545:3;14486:67;:::i;:::-;14479:74;;14562:93;14651:3;14562:93;:::i;:::-;14680:2;14675:3;14671:12;14664:19;;14323:366;;;:::o;14695:::-;14837:3;14858:67;14922:2;14917:3;14858:67;:::i;:::-;14851:74;;14934:93;15023:3;14934:93;:::i;:::-;15052:2;15047:3;15043:12;15036:19;;14695:366;;;:::o;15067:::-;15209:3;15230:67;15294:2;15289:3;15230:67;:::i;:::-;15223:74;;15306:93;15395:3;15306:93;:::i;:::-;15424:2;15419:3;15415:12;15408:19;;15067:366;;;:::o;15439:::-;15581:3;15602:67;15666:2;15661:3;15602:67;:::i;:::-;15595:74;;15678:93;15767:3;15678:93;:::i;:::-;15796:2;15791:3;15787:12;15780:19;;15439:366;;;:::o;15811:::-;15953:3;15974:67;16038:2;16033:3;15974:67;:::i;:::-;15967:74;;16050:93;16139:3;16050:93;:::i;:::-;16168:2;16163:3;16159:12;16152:19;;15811:366;;;:::o;16183:::-;16325:3;16346:67;16410:2;16405:3;16346:67;:::i;:::-;16339:74;;16422:93;16511:3;16422:93;:::i;:::-;16540:2;16535:3;16531:12;16524:19;;16183:366;;;:::o;16555:::-;16697:3;16718:67;16782:2;16777:3;16718:67;:::i;:::-;16711:74;;16794:93;16883:3;16794:93;:::i;:::-;16912:2;16907:3;16903:12;16896:19;;16555:366;;;:::o;16927:::-;17069:3;17090:67;17154:2;17149:3;17090:67;:::i;:::-;17083:74;;17166:93;17255:3;17166:93;:::i;:::-;17284:2;17279:3;17275:12;17268:19;;16927:366;;;:::o;17299:::-;17441:3;17462:67;17526:2;17521:3;17462:67;:::i;:::-;17455:74;;17538:93;17627:3;17538:93;:::i;:::-;17656:2;17651:3;17647:12;17640:19;;17299:366;;;:::o;17671:::-;17813:3;17834:67;17898:2;17893:3;17834:67;:::i;:::-;17827:74;;17910:93;17999:3;17910:93;:::i;:::-;18028:2;18023:3;18019:12;18012:19;;17671:366;;;:::o;18043:::-;18185:3;18206:67;18270:2;18265:3;18206:67;:::i;:::-;18199:74;;18282:93;18371:3;18282:93;:::i;:::-;18400:2;18395:3;18391:12;18384:19;;18043:366;;;:::o;18415:::-;18557:3;18578:67;18642:2;18637:3;18578:67;:::i;:::-;18571:74;;18654:93;18743:3;18654:93;:::i;:::-;18772:2;18767:3;18763:12;18756:19;;18415:366;;;:::o;18787:::-;18929:3;18950:67;19014:2;19009:3;18950:67;:::i;:::-;18943:74;;19026:93;19115:3;19026:93;:::i;:::-;19144:2;19139:3;19135:12;19128:19;;18787:366;;;:::o;19159:::-;19301:3;19322:67;19386:2;19381:3;19322:67;:::i;:::-;19315:74;;19398:93;19487:3;19398:93;:::i;:::-;19516:2;19511:3;19507:12;19500:19;;19159:366;;;:::o;19531:::-;19673:3;19694:67;19758:2;19753:3;19694:67;:::i;:::-;19687:74;;19770:93;19859:3;19770:93;:::i;:::-;19888:2;19883:3;19879:12;19872:19;;19531:366;;;:::o;19903:::-;20045:3;20066:67;20130:2;20125:3;20066:67;:::i;:::-;20059:74;;20142:93;20231:3;20142:93;:::i;:::-;20260:2;20255:3;20251:12;20244:19;;19903:366;;;:::o;20275:::-;20417:3;20438:67;20502:2;20497:3;20438:67;:::i;:::-;20431:74;;20514:93;20603:3;20514:93;:::i;:::-;20632:2;20627:3;20623:12;20616:19;;20275:366;;;:::o;20647:::-;20789:3;20810:67;20874:2;20869:3;20810:67;:::i;:::-;20803:74;;20886:93;20975:3;20886:93;:::i;:::-;21004:2;20999:3;20995:12;20988:19;;20647:366;;;:::o;21019:398::-;21178:3;21199:83;21280:1;21275:3;21199:83;:::i;:::-;21192:90;;21291:93;21380:3;21291:93;:::i;:::-;21409:1;21404:3;21400:11;21393:18;;21019:398;;;:::o;21423:366::-;21565:3;21586:67;21650:2;21645:3;21586:67;:::i;:::-;21579:74;;21662:93;21751:3;21662:93;:::i;:::-;21780:2;21775:3;21771:12;21764:19;;21423:366;;;:::o;21795:::-;21937:3;21958:67;22022:2;22017:3;21958:67;:::i;:::-;21951:74;;22034:93;22123:3;22034:93;:::i;:::-;22152:2;22147:3;22143:12;22136:19;;21795:366;;;:::o;22167:::-;22309:3;22330:67;22394:2;22389:3;22330:67;:::i;:::-;22323:74;;22406:93;22495:3;22406:93;:::i;:::-;22524:2;22519:3;22515:12;22508:19;;22167:366;;;:::o;22539:::-;22681:3;22702:67;22766:2;22761:3;22702:67;:::i;:::-;22695:74;;22778:93;22867:3;22778:93;:::i;:::-;22896:2;22891:3;22887:12;22880:19;;22539:366;;;:::o;22911:::-;23053:3;23074:67;23138:2;23133:3;23074:67;:::i;:::-;23067:74;;23150:93;23239:3;23150:93;:::i;:::-;23268:2;23263:3;23259:12;23252:19;;22911:366;;;:::o;23283:::-;23425:3;23446:67;23510:2;23505:3;23446:67;:::i;:::-;23439:74;;23522:93;23611:3;23522:93;:::i;:::-;23640:2;23635:3;23631:12;23624:19;;23283:366;;;:::o;23655:::-;23797:3;23818:67;23882:2;23877:3;23818:67;:::i;:::-;23811:74;;23894:93;23983:3;23894:93;:::i;:::-;24012:2;24007:3;24003:12;23996:19;;23655:366;;;:::o;24027:::-;24169:3;24190:67;24254:2;24249:3;24190:67;:::i;:::-;24183:74;;24266:93;24355:3;24266:93;:::i;:::-;24384:2;24379:3;24375:12;24368:19;;24027:366;;;:::o;24399:::-;24541:3;24562:67;24626:2;24621:3;24562:67;:::i;:::-;24555:74;;24638:93;24727:3;24638:93;:::i;:::-;24756:2;24751:3;24747:12;24740:19;;24399:366;;;:::o;24771:::-;24913:3;24934:67;24998:2;24993:3;24934:67;:::i;:::-;24927:74;;25010:93;25099:3;25010:93;:::i;:::-;25128:2;25123:3;25119:12;25112:19;;24771:366;;;:::o;25143:::-;25285:3;25306:67;25370:2;25365:3;25306:67;:::i;:::-;25299:74;;25382:93;25471:3;25382:93;:::i;:::-;25500:2;25495:3;25491:12;25484:19;;25143:366;;;:::o;25515:118::-;25602:24;25620:5;25602:24;:::i;:::-;25597:3;25590:37;25515:118;;:::o;25639:435::-;25819:3;25841:95;25932:3;25923:6;25841:95;:::i;:::-;25834:102;;25953:95;26044:3;26035:6;25953:95;:::i;:::-;25946:102;;26065:3;26058:10;;25639:435;;;;;:::o;26080:379::-;26264:3;26286:147;26429:3;26286:147;:::i;:::-;26279:154;;26450:3;26443:10;;26080:379;;;:::o;26465:222::-;26558:4;26596:2;26585:9;26581:18;26573:26;;26609:71;26677:1;26666:9;26662:17;26653:6;26609:71;:::i;:::-;26465:222;;;;:::o;26693:640::-;26888:4;26926:3;26915:9;26911:19;26903:27;;26940:71;27008:1;26997:9;26993:17;26984:6;26940:71;:::i;:::-;27021:72;27089:2;27078:9;27074:18;27065:6;27021:72;:::i;:::-;27103;27171:2;27160:9;27156:18;27147:6;27103:72;:::i;:::-;27222:9;27216:4;27212:20;27207:2;27196:9;27192:18;27185:48;27250:76;27321:4;27312:6;27250:76;:::i;:::-;27242:84;;26693:640;;;;;;;:::o;27339:210::-;27426:4;27464:2;27453:9;27449:18;27441:26;;27477:65;27539:1;27528:9;27524:17;27515:6;27477:65;:::i;:::-;27339:210;;;;:::o;27555:313::-;27668:4;27706:2;27695:9;27691:18;27683:26;;27755:9;27749:4;27745:20;27741:1;27730:9;27726:17;27719:47;27783:78;27856:4;27847:6;27783:78;:::i;:::-;27775:86;;27555:313;;;;:::o;27874:419::-;28040:4;28078:2;28067:9;28063:18;28055:26;;28127:9;28121:4;28117:20;28113:1;28102:9;28098:17;28091:47;28155:131;28281:4;28155:131;:::i;:::-;28147:139;;27874:419;;;:::o;28299:::-;28465:4;28503:2;28492:9;28488:18;28480:26;;28552:9;28546:4;28542:20;28538:1;28527:9;28523:17;28516:47;28580:131;28706:4;28580:131;:::i;:::-;28572:139;;28299:419;;;:::o;28724:::-;28890:4;28928:2;28917:9;28913:18;28905:26;;28977:9;28971:4;28967:20;28963:1;28952:9;28948:17;28941:47;29005:131;29131:4;29005:131;:::i;:::-;28997:139;;28724:419;;;:::o;29149:::-;29315:4;29353:2;29342:9;29338:18;29330:26;;29402:9;29396:4;29392:20;29388:1;29377:9;29373:17;29366:47;29430:131;29556:4;29430:131;:::i;:::-;29422:139;;29149:419;;;:::o;29574:::-;29740:4;29778:2;29767:9;29763:18;29755:26;;29827:9;29821:4;29817:20;29813:1;29802:9;29798:17;29791:47;29855:131;29981:4;29855:131;:::i;:::-;29847:139;;29574:419;;;:::o;29999:::-;30165:4;30203:2;30192:9;30188:18;30180:26;;30252:9;30246:4;30242:20;30238:1;30227:9;30223:17;30216:47;30280:131;30406:4;30280:131;:::i;:::-;30272:139;;29999:419;;;:::o;30424:::-;30590:4;30628:2;30617:9;30613:18;30605:26;;30677:9;30671:4;30667:20;30663:1;30652:9;30648:17;30641:47;30705:131;30831:4;30705:131;:::i;:::-;30697:139;;30424:419;;;:::o;30849:::-;31015:4;31053:2;31042:9;31038:18;31030:26;;31102:9;31096:4;31092:20;31088:1;31077:9;31073:17;31066:47;31130:131;31256:4;31130:131;:::i;:::-;31122:139;;30849:419;;;:::o;31274:::-;31440:4;31478:2;31467:9;31463:18;31455:26;;31527:9;31521:4;31517:20;31513:1;31502:9;31498:17;31491:47;31555:131;31681:4;31555:131;:::i;:::-;31547:139;;31274:419;;;:::o;31699:::-;31865:4;31903:2;31892:9;31888:18;31880:26;;31952:9;31946:4;31942:20;31938:1;31927:9;31923:17;31916:47;31980:131;32106:4;31980:131;:::i;:::-;31972:139;;31699:419;;;:::o;32124:::-;32290:4;32328:2;32317:9;32313:18;32305:26;;32377:9;32371:4;32367:20;32363:1;32352:9;32348:17;32341:47;32405:131;32531:4;32405:131;:::i;:::-;32397:139;;32124:419;;;:::o;32549:::-;32715:4;32753:2;32742:9;32738:18;32730:26;;32802:9;32796:4;32792:20;32788:1;32777:9;32773:17;32766:47;32830:131;32956:4;32830:131;:::i;:::-;32822:139;;32549:419;;;:::o;32974:::-;33140:4;33178:2;33167:9;33163:18;33155:26;;33227:9;33221:4;33217:20;33213:1;33202:9;33198:17;33191:47;33255:131;33381:4;33255:131;:::i;:::-;33247:139;;32974:419;;;:::o;33399:::-;33565:4;33603:2;33592:9;33588:18;33580:26;;33652:9;33646:4;33642:20;33638:1;33627:9;33623:17;33616:47;33680:131;33806:4;33680:131;:::i;:::-;33672:139;;33399:419;;;:::o;33824:::-;33990:4;34028:2;34017:9;34013:18;34005:26;;34077:9;34071:4;34067:20;34063:1;34052:9;34048:17;34041:47;34105:131;34231:4;34105:131;:::i;:::-;34097:139;;33824:419;;;:::o;34249:::-;34415:4;34453:2;34442:9;34438:18;34430:26;;34502:9;34496:4;34492:20;34488:1;34477:9;34473:17;34466:47;34530:131;34656:4;34530:131;:::i;:::-;34522:139;;34249:419;;;:::o;34674:::-;34840:4;34878:2;34867:9;34863:18;34855:26;;34927:9;34921:4;34917:20;34913:1;34902:9;34898:17;34891:47;34955:131;35081:4;34955:131;:::i;:::-;34947:139;;34674:419;;;:::o;35099:::-;35265:4;35303:2;35292:9;35288:18;35280:26;;35352:9;35346:4;35342:20;35338:1;35327:9;35323:17;35316:47;35380:131;35506:4;35380:131;:::i;:::-;35372:139;;35099:419;;;:::o;35524:::-;35690:4;35728:2;35717:9;35713:18;35705:26;;35777:9;35771:4;35767:20;35763:1;35752:9;35748:17;35741:47;35805:131;35931:4;35805:131;:::i;:::-;35797:139;;35524:419;;;:::o;35949:::-;36115:4;36153:2;36142:9;36138:18;36130:26;;36202:9;36196:4;36192:20;36188:1;36177:9;36173:17;36166:47;36230:131;36356:4;36230:131;:::i;:::-;36222:139;;35949:419;;;:::o;36374:::-;36540:4;36578:2;36567:9;36563:18;36555:26;;36627:9;36621:4;36617:20;36613:1;36602:9;36598:17;36591:47;36655:131;36781:4;36655:131;:::i;:::-;36647:139;;36374:419;;;:::o;36799:::-;36965:4;37003:2;36992:9;36988:18;36980:26;;37052:9;37046:4;37042:20;37038:1;37027:9;37023:17;37016:47;37080:131;37206:4;37080:131;:::i;:::-;37072:139;;36799:419;;;:::o;37224:::-;37390:4;37428:2;37417:9;37413:18;37405:26;;37477:9;37471:4;37467:20;37463:1;37452:9;37448:17;37441:47;37505:131;37631:4;37505:131;:::i;:::-;37497:139;;37224:419;;;:::o;37649:::-;37815:4;37853:2;37842:9;37838:18;37830:26;;37902:9;37896:4;37892:20;37888:1;37877:9;37873:17;37866:47;37930:131;38056:4;37930:131;:::i;:::-;37922:139;;37649:419;;;:::o;38074:::-;38240:4;38278:2;38267:9;38263:18;38255:26;;38327:9;38321:4;38317:20;38313:1;38302:9;38298:17;38291:47;38355:131;38481:4;38355:131;:::i;:::-;38347:139;;38074:419;;;:::o;38499:::-;38665:4;38703:2;38692:9;38688:18;38680:26;;38752:9;38746:4;38742:20;38738:1;38727:9;38723:17;38716:47;38780:131;38906:4;38780:131;:::i;:::-;38772:139;;38499:419;;;:::o;38924:::-;39090:4;39128:2;39117:9;39113:18;39105:26;;39177:9;39171:4;39167:20;39163:1;39152:9;39148:17;39141:47;39205:131;39331:4;39205:131;:::i;:::-;39197:139;;38924:419;;;:::o;39349:::-;39515:4;39553:2;39542:9;39538:18;39530:26;;39602:9;39596:4;39592:20;39588:1;39577:9;39573:17;39566:47;39630:131;39756:4;39630:131;:::i;:::-;39622:139;;39349:419;;;:::o;39774:::-;39940:4;39978:2;39967:9;39963:18;39955:26;;40027:9;40021:4;40017:20;40013:1;40002:9;39998:17;39991:47;40055:131;40181:4;40055:131;:::i;:::-;40047:139;;39774:419;;;:::o;40199:::-;40365:4;40403:2;40392:9;40388:18;40380:26;;40452:9;40446:4;40442:20;40438:1;40427:9;40423:17;40416:47;40480:131;40606:4;40480:131;:::i;:::-;40472:139;;40199:419;;;:::o;40624:::-;40790:4;40828:2;40817:9;40813:18;40805:26;;40877:9;40871:4;40867:20;40863:1;40852:9;40848:17;40841:47;40905:131;41031:4;40905:131;:::i;:::-;40897:139;;40624:419;;;:::o;41049:::-;41215:4;41253:2;41242:9;41238:18;41230:26;;41302:9;41296:4;41292:20;41288:1;41277:9;41273:17;41266:47;41330:131;41456:4;41330:131;:::i;:::-;41322:139;;41049:419;;;:::o;41474:::-;41640:4;41678:2;41667:9;41663:18;41655:26;;41727:9;41721:4;41717:20;41713:1;41702:9;41698:17;41691:47;41755:131;41881:4;41755:131;:::i;:::-;41747:139;;41474:419;;;:::o;41899:::-;42065:4;42103:2;42092:9;42088:18;42080:26;;42152:9;42146:4;42142:20;42138:1;42127:9;42123:17;42116:47;42180:131;42306:4;42180:131;:::i;:::-;42172:139;;41899:419;;;:::o;42324:222::-;42417:4;42455:2;42444:9;42440:18;42432:26;;42468:71;42536:1;42525:9;42521:17;42512:6;42468:71;:::i;:::-;42324:222;;;;:::o;42552:129::-;42586:6;42613:20;;:::i;:::-;42603:30;;42642:33;42670:4;42662:6;42642:33;:::i;:::-;42552:129;;;:::o;42687:75::-;42720:6;42753:2;42747:9;42737:19;;42687:75;:::o;42768:311::-;42845:4;42935:18;42927:6;42924:30;42921:56;;;42957:18;;:::i;:::-;42921:56;43007:4;42999:6;42995:17;42987:25;;43067:4;43061;43057:15;43049:23;;42768:311;;;:::o;43085:::-;43162:4;43252:18;43244:6;43241:30;43238:56;;;43274:18;;:::i;:::-;43238:56;43324:4;43316:6;43312:17;43304:25;;43384:4;43378;43374:15;43366:23;;43085:311;;;:::o;43402:307::-;43463:4;43553:18;43545:6;43542:30;43539:56;;;43575:18;;:::i;:::-;43539:56;43613:29;43635:6;43613:29;:::i;:::-;43605:37;;43697:4;43691;43687:15;43679:23;;43402:307;;;:::o;43715:98::-;43766:6;43800:5;43794:12;43784:22;;43715:98;;;:::o;43819:99::-;43871:6;43905:5;43899:12;43889:22;;43819:99;;;:::o;43924:168::-;44007:11;44041:6;44036:3;44029:19;44081:4;44076:3;44072:14;44057:29;;43924:168;;;;:::o;44098:147::-;44199:11;44236:3;44221:18;;44098:147;;;;:::o;44251:169::-;44335:11;44369:6;44364:3;44357:19;44409:4;44404:3;44400:14;44385:29;;44251:169;;;;:::o;44426:148::-;44528:11;44565:3;44550:18;;44426:148;;;;:::o;44580:273::-;44620:3;44639:20;44657:1;44639:20;:::i;:::-;44634:25;;44673:20;44691:1;44673:20;:::i;:::-;44668:25;;44795:1;44759:34;44755:42;44752:1;44749:49;44746:75;;;44801:18;;:::i;:::-;44746:75;44845:1;44842;44838:9;44831:16;;44580:273;;;;:::o;44859:305::-;44899:3;44918:20;44936:1;44918:20;:::i;:::-;44913:25;;44952:20;44970:1;44952:20;:::i;:::-;44947:25;;45106:1;45038:66;45034:74;45031:1;45028:81;45025:107;;;45112:18;;:::i;:::-;45025:107;45156:1;45153;45149:9;45142:16;;44859:305;;;;:::o;45170:185::-;45210:1;45227:20;45245:1;45227:20;:::i;:::-;45222:25;;45261:20;45279:1;45261:20;:::i;:::-;45256:25;;45300:1;45290:35;;45305:18;;:::i;:::-;45290:35;45347:1;45344;45340:9;45335:14;;45170:185;;;;:::o;45361:348::-;45401:7;45424:20;45442:1;45424:20;:::i;:::-;45419:25;;45458:20;45476:1;45458:20;:::i;:::-;45453:25;;45646:1;45578:66;45574:74;45571:1;45568:81;45563:1;45556:9;45549:17;45545:105;45542:131;;;45653:18;;:::i;:::-;45542:131;45701:1;45698;45694:9;45683:20;;45361:348;;;;:::o;45715:191::-;45755:4;45775:20;45793:1;45775:20;:::i;:::-;45770:25;;45809:20;45827:1;45809:20;:::i;:::-;45804:25;;45848:1;45845;45842:8;45839:34;;;45853:18;;:::i;:::-;45839:34;45898:1;45895;45891:9;45883:17;;45715:191;;;;:::o;45912:::-;45952:4;45972:20;45990:1;45972:20;:::i;:::-;45967:25;;46006:20;46024:1;46006:20;:::i;:::-;46001:25;;46045:1;46042;46039:8;46036:34;;;46050:18;;:::i;:::-;46036:34;46095:1;46092;46088:9;46080:17;;45912:191;;;;:::o;46109:96::-;46146:7;46175:24;46193:5;46175:24;:::i;:::-;46164:35;;46109:96;;;:::o;46211:90::-;46245:7;46288:5;46281:13;46274:21;46263:32;;46211:90;;;:::o;46307:149::-;46343:7;46383:66;46376:5;46372:78;46361:89;;46307:149;;;:::o;46462:118::-;46499:7;46539:34;46532:5;46528:46;46517:57;;46462:118;;;:::o;46586:126::-;46623:7;46663:42;46656:5;46652:54;46641:65;;46586:126;;;:::o;46718:77::-;46755:7;46784:5;46773:16;;46718:77;;;:::o;46801:93::-;46837:7;46877:10;46870:5;46866:22;46855:33;;46801:93;;;:::o;46900:154::-;46984:6;46979:3;46974;46961:30;47046:1;47037:6;47032:3;47028:16;47021:27;46900:154;;;:::o;47060:307::-;47128:1;47138:113;47152:6;47149:1;47146:13;47138:113;;;47237:1;47232:3;47228:11;47222:18;47218:1;47213:3;47209:11;47202:39;47174:2;47171:1;47167:10;47162:15;;47138:113;;;47269:6;47266:1;47263:13;47260:101;;;47349:1;47340:6;47335:3;47331:16;47324:27;47260:101;47109:258;47060:307;;;:::o;47373:171::-;47412:3;47435:24;47453:5;47435:24;:::i;:::-;47426:33;;47481:4;47474:5;47471:15;47468:41;;;47489:18;;:::i;:::-;47468:41;47536:1;47529:5;47525:13;47518:20;;47373:171;;;:::o;47550:320::-;47594:6;47631:1;47625:4;47621:12;47611:22;;47678:1;47672:4;47668:12;47699:18;47689:81;;47755:4;47747:6;47743:17;47733:27;;47689:81;47817:2;47809:6;47806:14;47786:18;47783:38;47780:84;;;47836:18;;:::i;:::-;47780:84;47601:269;47550:320;;;:::o;47876:281::-;47959:27;47981:4;47959:27;:::i;:::-;47951:6;47947:40;48089:6;48077:10;48074:22;48053:18;48041:10;48038:34;48035:62;48032:88;;;48100:18;;:::i;:::-;48032:88;48140:10;48136:2;48129:22;47919:238;47876:281;;:::o;48163:233::-;48202:3;48225:24;48243:5;48225:24;:::i;:::-;48216:33;;48271:66;48264:5;48261:77;48258:103;;;48341:18;;:::i;:::-;48258:103;48388:1;48381:5;48377:13;48370:20;;48163:233;;;:::o;48402:176::-;48434:1;48451:20;48469:1;48451:20;:::i;:::-;48446:25;;48485:20;48503:1;48485:20;:::i;:::-;48480:25;;48524:1;48514:35;;48529:18;;:::i;:::-;48514:35;48570:1;48567;48563:9;48558:14;;48402:176;;;;:::o;48584:180::-;48632:77;48629:1;48622:88;48729:4;48726:1;48719:15;48753:4;48750:1;48743:15;48770:180;48818:77;48815:1;48808:88;48915:4;48912:1;48905:15;48939:4;48936:1;48929:15;48956:180;49004:77;49001:1;48994:88;49101:4;49098:1;49091:15;49125:4;49122:1;49115:15;49142:180;49190:77;49187:1;49180:88;49287:4;49284:1;49277:15;49311:4;49308:1;49301:15;49328:180;49376:77;49373:1;49366:88;49473:4;49470:1;49463:15;49497:4;49494:1;49487:15;49514:117;49623:1;49620;49613:12;49637:117;49746:1;49743;49736:12;49760:117;49869:1;49866;49859:12;49883:117;49992:1;49989;49982:12;50006:117;50115:1;50112;50105:12;50129:117;50238:1;50235;50228:12;50252:102;50293:6;50344:2;50340:7;50335:2;50328:5;50324:14;50320:28;50310:38;;50252:102;;;:::o;50360:221::-;50500:34;50496:1;50488:6;50484:14;50477:58;50569:4;50564:2;50556:6;50552:15;50545:29;50360:221;:::o;50587:178::-;50727:30;50723:1;50715:6;50711:14;50704:54;50587:178;:::o;50771:225::-;50911:34;50907:1;50899:6;50895:14;50888:58;50980:8;50975:2;50967:6;50963:15;50956:33;50771:225;:::o;51002:222::-;51142:34;51138:1;51130:6;51126:14;51119:58;51211:5;51206:2;51198:6;51194:15;51187:30;51002:222;:::o;51230:229::-;51370:34;51366:1;51358:6;51354:14;51347:58;51439:12;51434:2;51426:6;51422:15;51415:37;51230:229;:::o;51465:222::-;51605:34;51601:1;51593:6;51589:14;51582:58;51674:5;51669:2;51661:6;51657:15;51650:30;51465:222;:::o;51693:224::-;51833:34;51829:1;51821:6;51817:14;51810:58;51902:7;51897:2;51889:6;51885:15;51878:32;51693:224;:::o;51923:182::-;52063:34;52059:1;52051:6;52047:14;52040:58;51923:182;:::o;52111:174::-;52251:26;52247:1;52239:6;52235:14;52228:50;52111:174;:::o;52291:180::-;52431:32;52427:1;52419:6;52415:14;52408:56;52291:180;:::o;52477:173::-;52617:25;52613:1;52605:6;52601:14;52594:49;52477:173;:::o;52656:244::-;52796:34;52792:1;52784:6;52780:14;52773:58;52865:27;52860:2;52852:6;52848:15;52841:52;52656:244;:::o;52906:175::-;53046:27;53042:1;53034:6;53030:14;53023:51;52906:175;:::o;53087:230::-;53227:34;53223:1;53215:6;53211:14;53204:58;53296:13;53291:2;53283:6;53279:15;53272:38;53087:230;:::o;53323:168::-;53463:20;53459:1;53451:6;53447:14;53440:44;53323:168;:::o;53497:175::-;53637:27;53633:1;53625:6;53621:14;53614:51;53497:175;:::o;53678:225::-;53818:34;53814:1;53806:6;53802:14;53795:58;53887:8;53882:2;53874:6;53870:15;53863:33;53678:225;:::o;53909:182::-;54049:34;54045:1;54037:6;54033:14;54026:58;53909:182;:::o;54097:178::-;54237:30;54233:1;54225:6;54221:14;54214:54;54097:178;:::o;54281:234::-;54421:34;54417:1;54409:6;54405:14;54398:58;54490:17;54485:2;54477:6;54473:15;54466:42;54281:234;:::o;54521:176::-;54661:28;54657:1;54649:6;54645:14;54638:52;54521:176;:::o;54703:237::-;54843:34;54839:1;54831:6;54827:14;54820:58;54912:20;54907:2;54899:6;54895:15;54888:45;54703:237;:::o;54946:221::-;55086:34;55082:1;55074:6;55070:14;55063:58;55155:4;55150:2;55142:6;55138:15;55131:29;54946:221;:::o;55173:114::-;;:::o;55293:166::-;55433:18;55429:1;55421:6;55417:14;55410:42;55293:166;:::o;55465:238::-;55605:34;55601:1;55593:6;55589:14;55582:58;55674:21;55669:2;55661:6;55657:15;55650:46;55465:238;:::o;55709:172::-;55849:24;55845:1;55837:6;55833:14;55826:48;55709:172;:::o;55887:179::-;56027:31;56023:1;56015:6;56011:14;56004:55;55887:179;:::o;56072:220::-;56212:34;56208:1;56200:6;56196:14;56189:58;56281:3;56276:2;56268:6;56264:15;56257:28;56072:220;:::o;56298:233::-;56438:34;56434:1;56426:6;56422:14;56415:58;56507:16;56502:2;56494:6;56490:15;56483:41;56298:233;:::o;56537:181::-;56677:33;56673:1;56665:6;56661:14;56654:57;56537:181;:::o;56724:234::-;56864:34;56860:1;56852:6;56848:14;56841:58;56933:17;56928:2;56920:6;56916:15;56909:42;56724:234;:::o;56964:232::-;57104:34;57100:1;57092:6;57088:14;57081:58;57173:15;57168:2;57160:6;57156:15;57149:40;56964:232;:::o;57202:221::-;57342:34;57338:1;57330:6;57326:14;57319:58;57411:4;57406:2;57398:6;57394:15;57387:29;57202:221;:::o;57429:227::-;57569:34;57565:1;57557:6;57553:14;57546:58;57638:10;57633:2;57625:6;57621:15;57614:35;57429:227;:::o;57662:122::-;57735:24;57753:5;57735:24;:::i;:::-;57728:5;57725:35;57715:63;;57774:1;57771;57764:12;57715:63;57662:122;:::o;57790:116::-;57860:21;57875:5;57860:21;:::i;:::-;57853:5;57850:32;57840:60;;57896:1;57893;57886:12;57840:60;57790:116;:::o;57912:120::-;57984:23;58001:5;57984:23;:::i;:::-;57977:5;57974:34;57964:62;;58022:1;58019;58012:12;57964:62;57912:120;:::o;58038:122::-;58111:24;58129:5;58111:24;:::i;:::-;58104:5;58101:35;58091:63;;58150:1;58147;58140:12;58091:63;58038:122;:::o;58166:120::-;58238:23;58255:5;58238:23;:::i;:::-;58231:5;58228:34;58218:62;;58276:1;58273;58266:12;58218:62;58166:120;:::o
Swarm Source
ipfs://b0129ac96174f95a991d497101ac24ab5f5670aaeac412cfa655370e3bcd815f
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.