ERC-721
NFT
Overview
Max Total Supply
5,555 Haruka
Holders
1,899
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
6 HarukaLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HarukaRonin
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-14 */ //SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/CyberRonin Haruka.sol /* HarukaRonin.sol Updated Contract by @NftDoyler Original Security Audit by @CryptoSec_Group */ contract HarukaRonin is Ownable, ERC721A { bytes32 public merkleRoot; // Note: This should be marked constant if you NEVER plan on changing them to save gas. // That said, leaving the option open in case you wanted to increase mints/decrease collection size. // Note AGAIN: That said, setting this to a constant saves the SLOADs and about 1.8% gas per mint. uint256 public MAX_SUPPLY = 5555; // Updated: This was never modified, so is now a constant uint256 constant public MAX_SUPPLY_PRIVATE_WHITELISTED = 55; // Same with this, these should be constant if you never plan on changing them. uint256 public mintRatePublicWhitelist = 0.055 ether; uint256 public mintRatePublicSale = 0.069 ether; // Updated: "Private" WL logic has been removed as it was unnecessary // There is now a method for the dev team to mint their 55 //bool public privateWhitelisted = true; //uint256 public mintRatePrivateWhitelist = 0 ether; // Also lets the public see exactly how many they've minted. uint256 public DEV_MINTS; // Note: For even MORE gas efficiency you can actually pack bools into one bit instead of 8. // That said, it's unnecessary complexity at a time like this, but a fun experiment for the reader! // Updated: I've set paused to be true to start, so that the team has time to make annoucements etc. // (See publicSale/publicWhitelisted logic for more information) bool public paused = true; bool public revealed = false; // Updated: With the new on/off switch logic, these need to be set to different values by default. // This means that, once the contract is deployed, WL will be available immediately (if not paused). // Updated AGAIN: Yould think that with the new on/off logic that this isn't necessary. // That said, due to the usage and comparisons, it SAVES a miniscule amount of gas. bool public publicWhitelisted = true; bool public publicSale = false; uint256 public mintedPublicWhitelistAddressLimit = 2; uint256 public mintedPublicAddressLimit = 3; string public baseURI = "ipfs://QmfEjT2YeRcE3pzL8HovHPX1kCsNPFgWSiRytHfj38kpUt/"; // Updated: Setting the default value here instead of the constructor. // I'd personally make this a constant since it shouldn't have to change, but leaving for v1 compatability. string public hiddenMetadataUri = "ipfs://QmfEjT2YeRcE3pzL8HovHPX1kCsNPFgWSiRytHfj38kpUt/Hidden.json"; string constant public uriSuffix = ".json"; // Updated: This is a new string that the owners can use for CONTRACT_URI // This is how you can easily set Collection name/description/image, // as well as royalty fees and wallet address. string public CONTRACT_URI = "ipfs://QmXLBLk2CqPEFP2KRS1VoTtnoxkM3BbT8yoBwfK7twW4ne"; // Note: If this was never going to be changed it could have also been a constant. // That said, not sure if the v2 updates mess with this or not. address public privateWLAddress = 0x016100D875E932c7B6f9416f151e562e04Faf779; // Updated AGAIN: By disabling this and ONLY tracking one mapping we save about 11.8% gas per WL mint. //mapping(address => uint256) public publicWhitelistAddressMintedBalance; // That said, it's the quickest and easiest way to handle the previous v1 logic // Note: If you wanted to save even MORE gas, you could disable this mapping entirely and only use balanceOf(msg.sender) // This saves you about 19.5% per publicMint at the cost of not letting users buy on secondary and THEN mint // Basically you save out on one SLOAD and SSTORE PER MINT! mapping(address => uint256) public numUserMints; // Updated: Hard-coded developer address for use in the withdraw functionality //Note: This wallet does not get any of the secondary fees/deposits, just mints address constant public doylerAddress = 0xeD19c8970c7BE64f5AC3f4beBFDDFd571861c3b7; // Community Wallet - this gets 55% of the withdrawals address public communityWallet = 0xE2836891C9B57821b9Fba1B7Ccc110E9DDaBCf85; // Team Wallet - this gets 15% (technically a little less counting gas fees) of the withdrawals address public teamWallet = 0x016100D875E932c7B6f9416f151e562e04Faf779; uint256 private doylerPayable; // Updated: This was the primary cause of most of the original gas issues. // Left it in for the bit of history. //address[] public mintedPublicWhitelistAddresses; // Updated: I removed the initial hidden metadata URI from here as it was not necessary // Also, the constructor no longer sets the Merkle Root to separate out those functions // This does require a second call to the contract, but prevents a failure in that call from preventing deployment. constructor() ERC721A("CyberRonin Haruka", "Haruka") { } /* * $$$$$$$\ $$\ $$\ $$$$$$$$\ $$\ $$\ $$ __$$\ \__| $$ | $$ _____| $$ | \__| $$ | $$ | $$$$$$\ $$\ $$\ $$\ $$$$$$\ $$$$$$\ $$$$$$\ $$ | $$\ $$\ $$$$$$$\ $$$$$$$\ $$$$$$\ $$\ $$$$$$\ $$$$$$$\ $$$$$$$\ $$$$$$$ |$$ __$$\ $$ |\$$\ $$ |\____$$\\_$$ _| $$ __$$\ $$$$$\ $$ | $$ |$$ __$$\ $$ _____|\_$$ _| $$ |$$ __$$\ $$ __$$\ $$ _____| $$ ____/ $$ | \__|$$ | \$$\$$ / $$$$$$$ | $$ | $$$$$$$$ | $$ __|$$ | $$ |$$ | $$ |$$ / $$ | $$ |$$ / $$ |$$ | $$ |\$$$$$$\ $$ | $$ | $$ | \$$$ / $$ __$$ | $$ |$$\ $$ ____| $$ | $$ | $$ |$$ | $$ |$$ | $$ |$$\ $$ |$$ | $$ |$$ | $$ | \____$$\ $$ | $$ | $$ | \$ / \$$$$$$$ | \$$$$ |\$$$$$$$\ $$ | \$$$$$$ |$$ | $$ |\$$$$$$$\ \$$$$ |$$ |\$$$$$$ |$$ | $$ |$$$$$$$ | \__| \__| \__| \_/ \_______| \____/ \_______| \__| \______/ \__| \__| \_______| \____/ \__| \______/ \__| \__|\_______/ * */ // This function is if you want to override the first Token ID# for ERC721A // In this case, HR is starting at #1 instead of #0 // Note: Fun fact - by overloading this method you save a small amount of gas for minting (technically just the first mint) function _startTokenId() internal view virtual override returns (uint256) { return 1; } // Updated: Internal verifyPublicWL method. // This is the one that is actually losed for contract logic and uses msg.sender function _verifyPublicWL(bytes32[] memory _proof) internal view returns (bool) { return MerkleProof.verify(_proof, merkleRoot, keccak256(abi.encodePacked(msg.sender))); } // Updated: This didn't exist in v1 of the contract, but is a best practice to protect users function refundOverpay(uint256 price) private { if (msg.value > price) { (bool succ, ) = payable(msg.sender).call{ value: (msg.value - price) }(""); require(succ, "Transfer failed"); } } /* * $$$$$$$\ $$\ $$\ $$\ $$$$$$$$\ $$\ $$\ $$ __$$\ $$ | $$ |\__| $$ _____| $$ | \__| $$ | $$ |$$\ $$\ $$$$$$$\ $$ |$$\ $$$$$$$\ $$ | $$\ $$\ $$$$$$$\ $$$$$$$\ $$$$$$\ $$\ $$$$$$\ $$$$$$$\ $$$$$$$\ $$$$$$$ |$$ | $$ |$$ __$$\ $$ |$$ |$$ _____| $$$$$\ $$ | $$ |$$ __$$\ $$ _____|\_$$ _| $$ |$$ __$$\ $$ __$$\ $$ _____| $$ ____/ $$ | $$ |$$ | $$ |$$ |$$ |$$ / $$ __|$$ | $$ |$$ | $$ |$$ / $$ | $$ |$$ / $$ |$$ | $$ |\$$$$$$\ $$ | $$ | $$ |$$ | $$ |$$ |$$ |$$ | $$ | $$ | $$ |$$ | $$ |$$ | $$ |$$\ $$ |$$ | $$ |$$ | $$ | \____$$\ $$ | \$$$$$$ |$$$$$$$ |$$ |$$ |\$$$$$$$\ $$ | \$$$$$$ |$$ | $$ |\$$$$$$$\ \$$$$ |$$ |\$$$$$$ |$$ | $$ |$$$$$$$ | \__| \______/ \_______/ \__|\__| \_______| \__| \______/ \__| \__| \_______| \____/ \__| \______/ \__| \__|\_______/ * */ // Note: Generally speaking you COULD save some gas making functions 'external' instead of 'public' // That said, you can no longer call them from other contracts OR internally. // Also, these gas savings are usually just when dealing with large arrays, which we've removed. // Updated: No reason devs shouldn't be allowed to mint during public or WL windows // Updated: Removed other unnecessary require statements function privateMint(uint256 quantity) public payable mintCompliance(quantity) { // Updated: Just shorter reason strings, it's a small savings, but why not? require(msg.sender == privateWLAddress, "Dev minting only"); // Note: You could technically save like 0.004% in gas by replacing every <= with < etc. // That said, it isn't worth the confusion when looking at the code require(DEV_MINTS + quantity <= MAX_SUPPLY_PRIVATE_WHITELISTED, "No dev mints left"); // Note: This is SLIGHTLY more efficient than including the dev mints into the universal mapping DEV_MINTS += quantity; _safeMint(msg.sender, quantity); } // Updated AGAIN: Using a local require() instead of a modifier saved a touch of gas function publicWhitelistMint(uint256 quantity, bytes32[] memory proof) external payable mintCompliance(quantity) { // Updated AGAIN: Setting this variable locally saves 2 SLOAD calls and about 0.2% gas uint256 price = mintRatePublicWhitelist; // Updated AGAIN: By using this as a local variable we save 1 SLOAD call and about 0.1% gas uint256 currMints = numUserMints[msg.sender]; require(publicWhitelisted, "WL sale inactive"); // Updated AGAIN: See notes in variable section above as to the reasoning behind this removal. //require(publicWhitelistAddressMintedBalance[msg.sender] + quantity <= mintedPublicWhitelistAddressLimit, "User max WL mint limit"); // Updated AGAIN: By using this as a local variable we save 1 SLOAD call and about 0.1% gas //require(numUserMints[msg.sender] + quantity <= mintedPublicWhitelistAddressLimit, "User max WL mint limit"); require(currMints + quantity <= mintedPublicWhitelistAddressLimit, "User max WL mint limit"); // Note: Here is the example if you wanted to just use balanceOf //require(balanceOf(msg.sender) + quantity <= mintedPublicWhitelistAddressLimit, "User max WL mint limit"); require(msg.value >= (price * quantity), "Not enough ETH sent"); require(_verifyPublicWL(proof), "User not on WL"); //publicWhitelistAddressMintedBalance[msg.sender] += quantity; //numUserMints[msg.sender] += quantity; numUserMints[msg.sender] = (currMints + quantity); _safeMint(msg.sender, quantity); doylerPayable += ((price * quantity) * 30) / 100; // That said, it only adds about 0.13% gas to each transaction to protect users who messed up. refundOverpay(price * quantity); } // Updated: Removed a lot of unnecessary require statements // Updated: Implemented more efficient tracking of user mints function publicMint(uint256 quantity) external payable mintCompliance(quantity) { // Updated AGAIN: Setting this variable locally saves 2 SLOAD calls and about 0.2% gas uint256 price = mintRatePublicSale; // Updated AGAIN: By using this as a local variable we save 1 SLOAD call and about 0.1% gas uint256 currMints = numUserMints[msg.sender]; require(publicSale, "Public sale inactive"); require(currMints + quantity <= mintedPublicAddressLimit, "User max mint limit"); // Note: Here is the example if you wanted to just use balanceOf //require(balanceOf(msg.sender) + quantity <= mintedPublicAddressLimit, "User max mint limit"); require(msg.value >= (price * quantity), "Not enough ETH sent"); // Note: This line + the require add an additional 22% gas to this method // That said, was the most convenient way to track 2 limits at the same time. //numUserMints[msg.sender] += quantity; numUserMints[msg.sender] = (currMints + quantity); // Updated AGAIN: By using this as a local variable we save 1 SLOAD call and about 0.1% gas //require(numUserMints[msg.sender] + quantity <= mintedPublicAddressLimit, "User max mint limit"); _safeMint(msg.sender, quantity); // Note: Having both of these in the mint methods is not the most efficient // That said, it worked for the time constraints doylerPayable += ((price * quantity) * 30) / 100; // Note: This method didn't exist in the last version of the contract. // That said, it only adds about 0.13% gas to each transaction to protect users who messed up. refundOverpay(price * quantity); } /* * $$\ $$\ $$\ $$$$$$$$\ $$\ $$\ $$ | $$ |\__| $$ _____| $$ | \__| $$ | $$ |$$\ $$$$$$\ $$\ $$\ $$\ $$ | $$\ $$\ $$$$$$$\ $$$$$$$\ $$$$$$\ $$\ $$$$$$\ $$$$$$$\ $$$$$$$\ \$$\ $$ |$$ |$$ __$$\ $$ | $$ | $$ | $$$$$\ $$ | $$ |$$ __$$\ $$ _____|\_$$ _| $$ |$$ __$$\ $$ __$$\ $$ _____| \$$\$$ / $$ |$$$$$$$$ |$$ | $$ | $$ | $$ __|$$ | $$ |$$ | $$ |$$ / $$ | $$ |$$ / $$ |$$ | $$ |\$$$$$$\ \$$$ / $$ |$$ ____|$$ | $$ | $$ | $$ | $$ | $$ |$$ | $$ |$$ | $$ |$$\ $$ |$$ | $$ |$$ | $$ | \____$$\ \$ / $$ |\$$$$$$$\ \$$$$$\$$$$ | $$ | \$$$$$$ |$$ | $$ |\$$$$$$$\ \$$$$ |$$ |\$$$$$$ |$$ | $$ |$$$$$$$ | \_/ \__| \_______| \_____\____/ \__| \______/ \__| \__| \_______| \____/ \__| \______/ \__| \__|\_______/ * */ // Note: walletOfOwner is only really necessary for enumerability when staking/using on websites etc. // That said, it's again a public view so we can keep it in. // This could also be optimized if someone REALLY wanted, but it's just a public view. // Check the pinned tweets of 0xInuarashi for more ideas on this method! // For now, this is just the version that existed in v1. function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } // Updated: There was no reason this needed to be virtual unless something plans on inheriting HR. function tokenURI(uint256 _tokenId) public view override returns (string memory) { // Note: You don't REALLY need this require statement since nothing should be querying for non-existing tokens after reveal. // That said, it's a public view method so gas efficiency shouldn't come into play. require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); // Updated: The old contract had unnecessary logic and conditionals about a _baseURI that was set by default. if (revealed) { return string(abi.encodePacked(baseURI, Strings.toString(_tokenId), uriSuffix)); } else { return hiddenMetadataUri; } } // https://docs.opensea.io/docs/contract-level-metadata function contractURI() public view returns (string memory) { return CONTRACT_URI; } // Updated: Public verification functionality // This may not be necessary, but can be a nice to have. function verifyPublicWL(address _address, bytes32[] memory _proof) public view returns (bool) { return MerkleProof.verify(_proof, keccak256(abi.encodePacked(_address)), merkleRoot); } /* * $$$$$$\ $$$$$$$$\ $$\ $$\ $$ __$$\ $$ _____| $$ | \__| $$ / $$ |$$\ $$\ $$\ $$$$$$$\ $$$$$$\ $$$$$$\ $$ | $$\ $$\ $$$$$$$\ $$$$$$$\ $$$$$$\ $$\ $$$$$$\ $$$$$$$\ $$$$$$$\ $$ | $$ |$$ | $$ | $$ |$$ __$$\ $$ __$$\ $$ __$$\ $$$$$\ $$ | $$ |$$ __$$\ $$ _____|\_$$ _| $$ |$$ __$$\ $$ __$$\ $$ _____| $$ | $$ |$$ | $$ | $$ |$$ | $$ |$$$$$$$$ |$$ | \__| $$ __|$$ | $$ |$$ | $$ |$$ / $$ | $$ |$$ / $$ |$$ | $$ |\$$$$$$\ $$ | $$ |$$ | $$ | $$ |$$ | $$ |$$ ____|$$ | $$ | $$ | $$ |$$ | $$ |$$ | $$ |$$\ $$ |$$ | $$ |$$ | $$ | \____$$\ $$$$$$ |\$$$$$\$$$$ |$$ | $$ |\$$$$$$$\ $$ | $$ | \$$$$$$ |$$ | $$ |\$$$$$$$\ \$$$$ |$$ |\$$$$$$ |$$ | $$ |$$$$$$$ | \______/ \_____\____/ \__| \__| \_______|\__| \__| \______/ \__| \__| \_______| \____/ \__| \______/ \__| \__|\_______/ * */ // Note: Again, these aren't REALLY necessary if the mint numbers aren't going to change. // That said, leaving for posterity/compatability. function setPublicWhitelistedAddressLimit(uint256 _limit) public onlyOwner { mintedPublicWhitelistAddressLimit = _limit; } function setPublicAddressLimit(uint256 _limit) public onlyOwner { mintedPublicAddressLimit = _limit; } function setBaseURI(string memory _baseUri) public onlyOwner { baseURI = _baseUri; } // Note: I don't see this needing to change, especially at this point. // But, again, leaving for posterity/compatability. function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } // Updated: This is a new method that the developers can call if they don't want to make separate calls // Should save a touch of gas plus handles reveal/URI in one swoop. function revealCollection(bool _revealed, string memory _baseUri) public onlyOwner { revealed = _revealed; baseURI = _baseUri; } // https://docs.opensea.io/docs/contract-level-metadata function setContractURI(string memory _contractURI) public onlyOwner { CONTRACT_URI = _contractURI; } // Note: Another option is to inherit Pausable without implementing the logic yourself. // This is fine for now and I'm keeping it for compatability with v1 // https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/Pausable.sol function setPaused(bool _state) public onlyOwner { paused = _state; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } // Updated: The publicSale/publicWhitelisted variables now function as an on/off switch. // If publicSale is enabled, then WL cannot mint and vice-versa // Dev minting can now happen function setPublicSale(bool _state) public onlyOwner { publicSale = _state; publicWhitelisted = !_state; } function setPublicWhitelisted(bool _state) public onlyOwner { publicWhitelisted = _state; publicSale = !_state; } // Updated: Added a setter for the privateWLAddress variable in case the devs wanted to change it. // This was hard-coded in the previous version. function setPrivateWLAddress(address _privateWLAddress) public onlyOwner { privateWLAddress = _privateWLAddress; } // Updated: This functionality was ONLY handled by the constructor in the previous version. // This did not allow for WL additions/removals function setPublicMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } // Updated: Added a setter for the communityWallet variable in case the devs wanted to change it. function setCommunityWalletAddress(address _communityWalletAddress) public onlyOwner { communityWallet = _communityWalletAddress; } // Updated: Added a setter for the teamWallet variable in case the devs wanted to change it. function setTeamWalletAddress(address _teamWalletAddress) public onlyOwner { teamWallet = _teamWalletAddress; } // Updated: Added functionality for withdrawal payments as well // Note: The inspiration for this withdrawal method came from MD's work on Kiwami. // Be sure to check out their contract for the OG - https://etherscan.io/address/0x701a038af4bd0fc9b69a829ddcb2f61185a49568#code // Thanks to @_MouseDev for the big brain ideas. function withdraw() external payable onlyOwner { // Get the current funds to calculate community percentage uint256 currBalance = address(this).balance; // Note: This is the withdrawal to the doylerAddress - MINT FEES ONLY (bool succ, ) = payable(doylerAddress).call{ value: doylerPayable }(""); require(succ, "Doyler transfer failed"); // Note: There is TECHNICALLY a re-entrancy issue if doylerAddress was a contract by doing this after the transfer // That said, it's clearly NOT a contract and that account cannot call withdraw() // Just making sure I get paid before it's 0ed out! doylerPayable = 0; // Withdraw 55% of the ENTIRE balance to the community wallet. // Note: If developers add any extra funds or people over pay, this will also get withdrawn here. (succ, ) = payable(communityWallet).call{ value: (currBalance * 55) / 100 }(""); require(succ, "Community transfer failed"); // Withdraw the ENTIRE remaining balance to the team wallet. (succ, ) = payable(teamWallet).call{ value: address(this).balance }(""); require(succ, "Team transfer failed"); } // Updated: Added owner-only mint functionality to "Airdrop" the old NFTs to the original owners // There are cooler and more efficient ways function mintToOwner(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) { _safeMint(receiver, quantity); } /* * $$\ $$\ $$\ $$\ $$$$$$\ $$\ $$$\ $$$ | $$ |\__|$$ __$$\ \__| $$$$\ $$$$ | $$$$$$\ $$$$$$$ |$$\ $$ / \__|$$\ $$$$$$\ $$$$$$\ $$$$$$$\ $$\$$\$$ $$ |$$ __$$\ $$ __$$ |$$ |$$$$\ $$ |$$ __$$\ $$ __$$\ $$ _____| $$ \$$$ $$ |$$ / $$ |$$ / $$ |$$ |$$ _| $$ |$$$$$$$$ |$$ | \__|\$$$$$$\ $$ |\$ /$$ |$$ | $$ |$$ | $$ |$$ |$$ | $$ |$$ ____|$$ | \____$$\ $$ | \_/ $$ |\$$$$$$ |\$$$$$$$ |$$ |$$ | $$ |\$$$$$$$\ $$ | $$$$$$$ | \__| \__| \______/ \_______|\__|\__| \__| \_______|\__| \_______/ * */ // Note: Something this simple doesn't HAVE to be a modifier, but it saves a little duplication // Updated: Removed the unnecessary isValidateEvent logic // Updated: Removed other unnecessary require statements modifier mintCompliance(uint256 quantity) { require(!paused, "Contract is paused"); require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough mints left"); // Note: This wasn't in the original contract, and adding it only costs like 21 gas/mint require(tx.origin == msg.sender, "No contract minting"); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEV_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY_PRIVATE_WHITELISTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"communityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"doylerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintRatePublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintRatePublicWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintedPublicAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedPublicWhitelistAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numUserMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"privateMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"privateWLAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"publicWhitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"},{"internalType":"string","name":"_baseUri","type":"string"}],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_communityWalletAddress","type":"address"}],"name":"setCommunityWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_privateWLAddress","type":"address"}],"name":"setPrivateWLAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setPublicAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setPublicMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setPublicWhitelistedAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamWalletAddress","type":"address"}],"name":"setTeamWalletAddress","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":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"verifyPublicWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526115b3600a5566c3663566a58000600b5566f5232269808000600c556001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506001600e60026101000a81548160ff0219169083151502179055506000600e60036101000a81548160ff0219169083151502179055506002600f556003601055604051806060016040528060368152602001620062d96036913960119080519060200190620000c7929190620003ea565b50604051806080016040528060418152602001620062636041913960129080519060200190620000f9929190620003ea565b50604051806060016040528060358152602001620062a460359139601390805190602001906200012b929190620003ea565b5073016100d875e932c7b6f9416f151e562e04faf779601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e2836891c9b57821b9fba1b7ccc110e9ddabcf85601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073016100d875e932c7b6f9416f151e562e04faf779601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200023857600080fd5b506040518060400160405280601181526020017f4379626572526f6e696e20486172756b610000000000000000000000000000008152506040518060400160405280600681526020017f486172756b610000000000000000000000000000000000000000000000000000815250620002c5620002b96200031560201b60201c565b6200031d60201b60201c565b8160039080519060200190620002dd929190620003ea565b508060049080519060200190620002f6929190620003ea565b5062000307620003e160201b60201c565b6001819055505050620004ff565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b828054620003f8906200049a565b90600052602060002090601f0160209004810192826200041c576000855562000468565b82601f106200043757805160ff191683800117855562000468565b8280016001018555821562000468579182015b82811115620004675782518255916020019190600101906200044a565b5b5090506200047791906200047b565b5090565b5b80821115620004965760008160009055506001016200047c565b5090565b60006002820490506001821680620004b357607f821691505b60208210811415620004ca57620004c9620004d0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615d54806200050f6000396000f3fe6080604052600436106103975760003560e01c806370a08231116101dc578063b88d4fde11610102578063e0a80853116100a0578063e985e9c51161006f578063e985e9c514610d0c578063ed8efe6814610d49578063f2fde38b14610d74578063f5320e6414610d9d57610397565b8063e0a8085314610c64578063e4fb363514610c8d578063e54aca2a14610cb8578063e8a3d48514610ce157610397565b8063bff7094f116100dc578063bff7094f14610baa578063c55f125714610bd3578063c757483914610bfc578063c87b56dd14610c2757610397565b8063b88d4fde14610b2f578063bd6d726114610b58578063becf259614610b8157610397565b806395d89b411161017a578063a22cb46511610149578063a22cb46514610a94578063a45ba8e714610abd578063a9c9aa2b14610ae8578063abfe40a814610b1357610397565b806395d89b41146109e857806399184b6614610a13578063a1307d7914610a3e578063a1a9ab9f14610a6957610397565b806374bd8afb116101b657806374bd8afb1461092e5780637aeb7242146109575780638da5cb5b14610994578063938e3d7b146109bf57610397565b806370a08231146108af57806370ed5ce7146108ec578063715018a61461091757610397565b806342842e0e116102c157806355f804b31161025f5780635c975abb1161022e5780635c975abb146107f35780635ed3e25e1461081e5780636352211e146108475780636c0360eb1461088457610397565b806355f804b31461074b57806356b4f67314610774578063599270441461079f5780635aca1bb6146107ca57610397565b8063499a3ca21161029b578063499a3ca2146106b05780634fdd43cb146106cc57806351830227146106f55780635503a0e81461072057610397565b806342842e0e1461060d57806342eb9cbd14610636578063438b63001461067357610397565b806323b872dd1161033957806332cb6b0c1161030857806332cb6b0c1461058257806333bc1c5c146105ad57806337534b5c146105d85780633ccfd60b1461060357610397565b806323b872dd146104e95780632c4b2334146105125780632db115441461053b5780632eb4a7ab1461055757610397565b8063095ea7b311610375578063095ea7b3146104415780630ca01ad91461046a57806316c38b3c1461049557806318160ddd146104be57610397565b806301ffc9a71461039c57806306fdde03146103d9578063081812fc14610404575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190614a97565b610dc6565b6040516103d09190615180565b60405180910390f35b3480156103e557600080fd5b506103ee610ea8565b6040516103fb91906151b6565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190614b3a565b610f3a565b60405161043891906150f7565b60405180910390f35b34801561044d57600080fd5b50610468600480360381019061046391906149a1565b610fb6565b005b34801561047657600080fd5b5061047f6110c1565b60405161048c9190615418565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b791906149e1565b6110c7565b005b3480156104ca57600080fd5b506104d3611160565b6040516104e09190615418565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b919061482f565b611177565b005b34801561051e57600080fd5b50610539600480360381019061053491906147c2565b611187565b005b61055560048036038101906105509190614b3a565b611247565b005b34801561056357600080fd5b5061056c611544565b604051610579919061519b565b60405180910390f35b34801561058e57600080fd5b5061059761154a565b6040516105a49190615418565b60405180910390f35b3480156105b957600080fd5b506105c2611550565b6040516105cf9190615180565b60405180910390f35b3480156105e457600080fd5b506105ed611563565b6040516105fa9190615180565b60405180910390f35b61060b611576565b005b34801561061957600080fd5b50610634600480360381019061062f919061482f565b611879565b005b34801561064257600080fd5b5061065d60048036038101906106589190614905565b611899565b60405161066a9190615180565b60405180910390f35b34801561067f57600080fd5b5061069a600480360381019061069591906147c2565b6118d6565b6040516106a7919061515e565b60405180910390f35b6106ca60048036038101906106c59190614ba7565b6119e1565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190614af1565b611d27565b005b34801561070157600080fd5b5061070a611dbd565b6040516107179190615180565b60405180910390f35b34801561072c57600080fd5b50610735611dd0565b60405161074291906151b6565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190614af1565b611e09565b005b34801561078057600080fd5b50610789611e9f565b60405161079691906151b6565b60405180910390f35b3480156107ab57600080fd5b506107b4611f2d565b6040516107c191906150f7565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec91906149e1565b611f53565b005b3480156107ff57600080fd5b50610808612007565b6040516108159190615180565b60405180910390f35b34801561082a57600080fd5b5061084560048036038101906108409190614a0e565b61201a565b005b34801561085357600080fd5b5061086e60048036038101906108699190614b3a565b6120cb565b60405161087b91906150f7565b60405180910390f35b34801561089057600080fd5b506108996120e1565b6040516108a691906151b6565b60405180910390f35b3480156108bb57600080fd5b506108d660048036038101906108d191906147c2565b61216f565b6040516108e39190615418565b60405180910390f35b3480156108f857600080fd5b5061090161223f565b60405161090e91906150f7565b60405180910390f35b34801561092357600080fd5b5061092c612257565b005b34801561093a57600080fd5b5061095560048036038101906109509190614b3a565b6122df565b005b34801561096357600080fd5b5061097e600480360381019061097991906147c2565b612365565b60405161098b9190615418565b60405180910390f35b3480156109a057600080fd5b506109a961237d565b6040516109b691906150f7565b60405180910390f35b3480156109cb57600080fd5b506109e660048036038101906109e19190614af1565b6123a6565b005b3480156109f457600080fd5b506109fd61243c565b604051610a0a91906151b6565b60405180910390f35b348015610a1f57600080fd5b50610a286124ce565b604051610a359190615418565b60405180910390f35b348015610a4a57600080fd5b50610a536124d3565b604051610a609190615418565b60405180910390f35b348015610a7557600080fd5b50610a7e6124d9565b604051610a8b9190615418565b60405180910390f35b348015610aa057600080fd5b50610abb6004803603810190610ab69190614961565b6124df565b005b348015610ac957600080fd5b50610ad2612657565b604051610adf91906151b6565b60405180910390f35b348015610af457600080fd5b50610afd6126e5565b604051610b0a91906150f7565b60405180910390f35b610b2d6004803603810190610b289190614b3a565b61270b565b005b348015610b3b57600080fd5b50610b566004803603810190610b519190614882565b612929565b005b348015610b6457600080fd5b50610b7f6004803603810190610b7a91906149e1565b6129a5565b005b348015610b8d57600080fd5b50610ba86004803603810190610ba39190614b3a565b612a59565b005b348015610bb657600080fd5b50610bd16004803603810190610bcc9190614a6a565b612adf565b005b348015610bdf57600080fd5b50610bfa6004803603810190610bf591906147c2565b612b65565b005b348015610c0857600080fd5b50610c11612c25565b604051610c1e91906150f7565b60405180910390f35b348015610c3357600080fd5b50610c4e6004803603810190610c499190614b3a565b612c4b565b604051610c5b91906151b6565b60405180910390f35b348015610c7057600080fd5b50610c8b6004803603810190610c8691906149e1565b612da6565b005b348015610c9957600080fd5b50610ca2612e3f565b604051610caf9190615418565b60405180910390f35b348015610cc457600080fd5b50610cdf6004803603810190610cda91906147c2565b612e45565b005b348015610ced57600080fd5b50610cf6612f05565b604051610d0391906151b6565b60405180910390f35b348015610d1857600080fd5b50610d336004803603810190610d2e91906147ef565b612f97565b604051610d409190615180565b60405180910390f35b348015610d5557600080fd5b50610d5e61302b565b604051610d6b9190615418565b60405180910390f35b348015610d8057600080fd5b50610d9b6004803603810190610d9691906147c2565b613031565b005b348015610da957600080fd5b50610dc46004803603810190610dbf9190614b67565b613129565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e9157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ea15750610ea0826132ca565b5b9050919050565b606060038054610eb790615757565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee390615757565b8015610f305780601f10610f0557610100808354040283529160200191610f30565b820191906000526020600020905b815481529060010190602001808311610f1357829003601f168201915b5050505050905090565b6000610f4582613334565b610f7b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610fc1826120cb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611029576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611048613382565b73ffffffffffffffffffffffffffffffffffffffff161415801561107a575061107881611073613382565b612f97565b155b156110b1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110bc83838361338a565b505050565b600b5481565b6110cf613382565b73ffffffffffffffffffffffffffffffffffffffff166110ed61237d565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90615318565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b600061116a61343c565b6002546001540303905090565b611182838383613445565b505050565b61118f613382565b73ffffffffffffffffffffffffffffffffffffffff166111ad61237d565b73ffffffffffffffffffffffffffffffffffffffff1614611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa90615318565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b80600e60009054906101000a900460ff1615611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f906153b8565b60405180910390fd5b600a54816112a4611160565b6112ae9190615582565b11156112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e6906153d8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461135d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135490615278565b60405180910390fd5b6000600c5490506000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e60039054906101000a900460ff166113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90615398565b60405180910390fd5b60105484826114069190615582565b1115611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e906152d8565b60405180910390fd5b83826114539190615609565b341015611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c90615378565b60405180910390fd5b83816114a19190615582565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114ee33856138fb565b6064601e85846114fe9190615609565b6115089190615609565b61151291906155d8565b601860008282546115239190615582565b9250508190555061153e84836115399190615609565b613919565b50505050565b60095481565b600a5481565b600e60039054906101000a900460ff1681565b600e60029054906101000a900460ff1681565b61157e613382565b73ffffffffffffffffffffffffffffffffffffffff1661159c61237d565b73ffffffffffffffffffffffffffffffffffffffff16146115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e990615318565b60405180910390fd5b6000479050600073ed19c8970c7be64f5ac3f4bebfddfd571861c3b773ffffffffffffffffffffffffffffffffffffffff16601854604051611633906150e2565b60006040518083038185875af1925050503d8060008114611670576040519150601f19603f3d011682016040523d82523d6000602084013e611675565b606091505b50509050806116b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b090615298565b60405180910390fd5b6000601881905550601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660646037846117099190615609565b61171391906155d8565b60405161171f906150e2565b60006040518083038185875af1925050503d806000811461175c576040519150601f19603f3d011682016040523d82523d6000602084013e611761565b606091505b505080915050806117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e906152f8565b60405180910390fd5b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516117ed906150e2565b60006040518083038185875af1925050503d806000811461182a576040519150601f19603f3d011682016040523d82523d6000602084013e61182f565b606091505b50508091505080611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c90615218565b60405180910390fd5b5050565b61189483838360405180602001604052806000815250612929565b505050565b60006118ce82846040516020016118b09190615096565b604051602081830303815290604052805190602001206009546139dd565b905092915050565b606060006118e38361216f565b905060008167ffffffffffffffff81111561190157611900615914565b5b60405190808252806020026020018201604052801561192f5781602001602082028036833780820191505090505b50905060006001905060005b838110801561194c5750600a548211155b156119d557600061195c836120cb565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119c157828483815181106119a6576119a56158e5565b5b60200260200101818152505081806119bd906157ba565b9250505b82806119cc906157ba565b9350505061193b565b82945050505050919050565b81600e60009054906101000a900460ff1615611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a29906153b8565b60405180910390fd5b600a5481611a3e611160565b611a489190615582565b1115611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a80906153d8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aee90615278565b60405180910390fd5b6000600b5490506000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e60029054906101000a900460ff16611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b88906151d8565b60405180910390fd5b600f548582611ba09190615582565b1115611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd8906152b8565b60405180910390fd5b8482611bed9190615609565b341015611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2690615378565b60405180910390fd5b611c38846139f4565b611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e906151f8565b60405180910390fd5b8481611c839190615582565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611cd033866138fb565b6064601e8684611ce09190615609565b611cea9190615609565b611cf491906155d8565b60186000828254611d059190615582565b92505081905550611d208583611d1b9190615609565b613919565b5050505050565b611d2f613382565b73ffffffffffffffffffffffffffffffffffffffff16611d4d61237d565b73ffffffffffffffffffffffffffffffffffffffff1614611da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9a90615318565b60405180910390fd5b8060129080519060200190611db99291906144e0565b5050565b600e60019054906101000a900460ff1681565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b611e11613382565b73ffffffffffffffffffffffffffffffffffffffff16611e2f61237d565b73ffffffffffffffffffffffffffffffffffffffff1614611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90615318565b60405180910390fd5b8060119080519060200190611e9b9291906144e0565b5050565b60138054611eac90615757565b80601f0160208091040260200160405190810160405280929190818152602001828054611ed890615757565b8015611f255780601f10611efa57610100808354040283529160200191611f25565b820191906000526020600020905b815481529060010190602001808311611f0857829003601f168201915b505050505081565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611f5b613382565b73ffffffffffffffffffffffffffffffffffffffff16611f7961237d565b73ffffffffffffffffffffffffffffffffffffffff1614611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc690615318565b60405180910390fd5b80600e60036101000a81548160ff0219169083151502179055508015600e60026101000a81548160ff02191690831515021790555050565b600e60009054906101000a900460ff1681565b612022613382565b73ffffffffffffffffffffffffffffffffffffffff1661204061237d565b73ffffffffffffffffffffffffffffffffffffffff1614612096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208d90615318565b60405180910390fd5b81600e60016101000a81548160ff02191690831515021790555080601190805190602001906120c69291906144e0565b505050565b60006120d682613a30565b600001519050919050565b601180546120ee90615757565b80601f016020809104026020016040519081016040528092919081815260200182805461211a90615757565b80156121675780601f1061213c57610100808354040283529160200191612167565b820191906000526020600020905b81548152906001019060200180831161214a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b73ed19c8970c7be64f5ac3f4bebfddfd571861c3b781565b61225f613382565b73ffffffffffffffffffffffffffffffffffffffff1661227d61237d565b73ffffffffffffffffffffffffffffffffffffffff16146122d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ca90615318565b60405180910390fd5b6122dd6000613cbf565b565b6122e7613382565b73ffffffffffffffffffffffffffffffffffffffff1661230561237d565b73ffffffffffffffffffffffffffffffffffffffff161461235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290615318565b60405180910390fd5b8060108190555050565b60156020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6123ae613382565b73ffffffffffffffffffffffffffffffffffffffff166123cc61237d565b73ffffffffffffffffffffffffffffffffffffffff1614612422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241990615318565b60405180910390fd5b80601390805190602001906124389291906144e0565b5050565b60606004805461244b90615757565b80601f016020809104026020016040519081016040528092919081815260200182805461247790615757565b80156124c45780601f10612499576101008083540402835291602001916124c4565b820191906000526020600020905b8154815290600101906020018083116124a757829003601f168201915b5050505050905090565b603781565b600f5481565b60105481565b6124e7613382565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561254c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000612559613382565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612606613382565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161264b9190615180565b60405180910390a35050565b6012805461266490615757565b80601f016020809104026020016040519081016040528092919081815260200182805461269090615757565b80156126dd5780601f106126b2576101008083540402835291602001916126dd565b820191906000526020600020905b8154815290600101906020018083116126c057829003601f168201915b505050505081565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b80600e60009054906101000a900460ff161561275c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612753906153b8565b60405180910390fd5b600a5481612768611160565b6127729190615582565b11156127b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127aa906153d8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281890615278565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146128b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a8906153f8565b60405180910390fd5b603782600d546128c19190615582565b1115612902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f990615358565b60405180910390fd5b81600d60008282546129149190615582565b9250508190555061292533836138fb565b5050565b612934848484613445565b6129538373ffffffffffffffffffffffffffffffffffffffff16613d83565b8015612968575061296684848484613da6565b155b1561299f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6129ad613382565b73ffffffffffffffffffffffffffffffffffffffff166129cb61237d565b73ffffffffffffffffffffffffffffffffffffffff1614612a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1890615318565b60405180910390fd5b80600e60026101000a81548160ff0219169083151502179055508015600e60036101000a81548160ff02191690831515021790555050565b612a61613382565b73ffffffffffffffffffffffffffffffffffffffff16612a7f61237d565b73ffffffffffffffffffffffffffffffffffffffff1614612ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acc90615318565b60405180910390fd5b80600f8190555050565b612ae7613382565b73ffffffffffffffffffffffffffffffffffffffff16612b0561237d565b73ffffffffffffffffffffffffffffffffffffffff1614612b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5290615318565b60405180910390fd5b8060098190555050565b612b6d613382565b73ffffffffffffffffffffffffffffffffffffffff16612b8b61237d565b73ffffffffffffffffffffffffffffffffffffffff1614612be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd890615318565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060612c5682613334565b612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90615338565b60405180910390fd5b600e60019054906101000a900460ff1615612d13576011612cb583613f06565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001612cfd939291906150b1565b6040516020818303038152906040529050612da1565b60128054612d2090615757565b80601f0160208091040260200160405190810160405280929190818152602001828054612d4c90615757565b8015612d995780601f10612d6e57610100808354040283529160200191612d99565b820191906000526020600020905b815481529060010190602001808311612d7c57829003601f168201915b505050505090505b919050565b612dae613382565b73ffffffffffffffffffffffffffffffffffffffff16612dcc61237d565b73ffffffffffffffffffffffffffffffffffffffff1614612e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1990615318565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b600d5481565b612e4d613382565b73ffffffffffffffffffffffffffffffffffffffff16612e6b61237d565b73ffffffffffffffffffffffffffffffffffffffff1614612ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb890615318565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060138054612f1490615757565b80601f0160208091040260200160405190810160405280929190818152602001828054612f4090615757565b8015612f8d5780601f10612f6257610100808354040283529160200191612f8d565b820191906000526020600020905b815481529060010190602001808311612f7057829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b613039613382565b73ffffffffffffffffffffffffffffffffffffffff1661305761237d565b73ffffffffffffffffffffffffffffffffffffffff16146130ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a490615318565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561311d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311490615238565b60405180910390fd5b61312681613cbf565b50565b613131613382565b73ffffffffffffffffffffffffffffffffffffffff1661314f61237d565b73ffffffffffffffffffffffffffffffffffffffff16146131a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319c90615318565b60405180910390fd5b81600e60009054906101000a900460ff16156131f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ed906153b8565b60405180910390fd5b600a5481613202611160565b61320c9190615582565b111561324d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613244906153d8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146132bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b290615278565b60405180910390fd5b6132c582846138fb565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161333f61343c565b1115801561334e575060015482105b801561337b575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061345082613a30565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146134bb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166134dc613382565b73ffffffffffffffffffffffffffffffffffffffff16148061350b575061350a85613505613382565b612f97565b5b806135505750613519613382565b73ffffffffffffffffffffffffffffffffffffffff1661353884610f3a565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613589576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156135f0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135fd8585856001614067565b6136096000848761338a565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561388957600154821461388857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138f4858585600161406d565b5050505050565b613915828260405180602001604052806000815250614073565b5050565b803411156139da5760003373ffffffffffffffffffffffffffffffffffffffff1682346139469190615663565b604051613952906150e2565b60006040518083038185875af1925050503d806000811461398f576040519150601f19603f3d011682016040523d82523d6000602084013e613994565b606091505b50509050806139d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139cf90615258565b60405180910390fd5b505b50565b6000826139ea8584614085565b1490509392505050565b6000613a298260095433604051602001613a0e9190615096565b604051602081830303815290604052805190602001206139dd565b9050919050565b613a38614566565b600082905080613a4661343c565b11158015613a55575060015481105b15613c88576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151613c8657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613b6a578092505050613cba565b5b600115613c8557818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613c80578092505050613cba565b613b6b565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613dcc613382565b8786866040518563ffffffff1660e01b8152600401613dee9493929190615112565b602060405180830381600087803b158015613e0857600080fd5b505af1925050508015613e3957506040513d601f19601f82011682018060405250810190613e369190614ac4565b60015b613eb3573d8060008114613e69576040519150601f19603f3d011682016040523d82523d6000602084013e613e6e565b606091505b50600081511415613eab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613f4e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614062565b600082905060005b60008214613f80578080613f69906157ba565b915050600a82613f7991906155d8565b9150613f56565b60008167ffffffffffffffff811115613f9c57613f9b615914565b5b6040519080825280601f01601f191660200182016040528015613fce5781602001600182028036833780820191505090505b5090505b6000851461405b57600182613fe79190615663565b9150600a85613ff69190615827565b60306140029190615582565b60f81b818381518110614018576140176158e5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561405491906155d8565b9450613fd2565b8093505050505b919050565b50505050565b50505050565b61408083838360016140fa565b505050565b60008082905060005b84518110156140ef5760008582815181106140ac576140ab6158e5565b5b602002602001015190508083116140ce576140c783826144c9565b92506140db565b6140d881846144c9565b92505b5080806140e7906157ba565b91505061408e565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415614168576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156141a3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6141b06000868387614067565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561437a57506143798773ffffffffffffffffffffffffffffffffffffffff16613d83565b5b15614440575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46143ef6000888480600101955088613da6565b614425576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561438057826001541461443b57600080fd5b6144ac565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415614441575b8160018190555050506144c2600086838761406d565b5050505050565b600082600052816020526040600020905092915050565b8280546144ec90615757565b90600052602060002090601f01602090048101928261450e5760008555614555565b82601f1061452757805160ff1916838001178555614555565b82800160010185558215614555579182015b82811115614554578251825591602001919060010190614539565b5b50905061456291906145a9565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156145c25760008160009055506001016145aa565b5090565b60006145d96145d484615458565b615433565b905080838252602082019050828560208602820111156145fc576145fb615948565b5b60005b8581101561462c57816146128882614712565b8452602084019350602083019250506001810190506145ff565b5050509392505050565b600061464961464484615484565b615433565b9050828152602081018484840111156146655761466461594d565b5b614670848285615715565b509392505050565b600061468b614686846154b5565b615433565b9050828152602081018484840111156146a7576146a661594d565b5b6146b2848285615715565b509392505050565b6000813590506146c981615cab565b92915050565b600082601f8301126146e4576146e3615943565b5b81356146f48482602086016145c6565b91505092915050565b60008135905061470c81615cc2565b92915050565b60008135905061472181615cd9565b92915050565b60008135905061473681615cf0565b92915050565b60008151905061474b81615cf0565b92915050565b600082601f83011261476657614765615943565b5b8135614776848260208601614636565b91505092915050565b600082601f83011261479457614793615943565b5b81356147a4848260208601614678565b91505092915050565b6000813590506147bc81615d07565b92915050565b6000602082840312156147d8576147d7615957565b5b60006147e6848285016146ba565b91505092915050565b6000806040838503121561480657614805615957565b5b6000614814858286016146ba565b9250506020614825858286016146ba565b9150509250929050565b60008060006060848603121561484857614847615957565b5b6000614856868287016146ba565b9350506020614867868287016146ba565b9250506040614878868287016147ad565b9150509250925092565b6000806000806080858703121561489c5761489b615957565b5b60006148aa878288016146ba565b94505060206148bb878288016146ba565b93505060406148cc878288016147ad565b925050606085013567ffffffffffffffff8111156148ed576148ec615952565b5b6148f987828801614751565b91505092959194509250565b6000806040838503121561491c5761491b615957565b5b600061492a858286016146ba565b925050602083013567ffffffffffffffff81111561494b5761494a615952565b5b614957858286016146cf565b9150509250929050565b6000806040838503121561497857614977615957565b5b6000614986858286016146ba565b9250506020614997858286016146fd565b9150509250929050565b600080604083850312156149b8576149b7615957565b5b60006149c6858286016146ba565b92505060206149d7858286016147ad565b9150509250929050565b6000602082840312156149f7576149f6615957565b5b6000614a05848285016146fd565b91505092915050565b60008060408385031215614a2557614a24615957565b5b6000614a33858286016146fd565b925050602083013567ffffffffffffffff811115614a5457614a53615952565b5b614a608582860161477f565b9150509250929050565b600060208284031215614a8057614a7f615957565b5b6000614a8e84828501614712565b91505092915050565b600060208284031215614aad57614aac615957565b5b6000614abb84828501614727565b91505092915050565b600060208284031215614ada57614ad9615957565b5b6000614ae88482850161473c565b91505092915050565b600060208284031215614b0757614b06615957565b5b600082013567ffffffffffffffff811115614b2557614b24615952565b5b614b318482850161477f565b91505092915050565b600060208284031215614b5057614b4f615957565b5b6000614b5e848285016147ad565b91505092915050565b60008060408385031215614b7e57614b7d615957565b5b6000614b8c858286016147ad565b9250506020614b9d858286016146ba565b9150509250929050565b60008060408385031215614bbe57614bbd615957565b5b6000614bcc858286016147ad565b925050602083013567ffffffffffffffff811115614bed57614bec615952565b5b614bf9858286016146cf565b9150509250929050565b6000614c0f8383615078565b60208301905092915050565b614c2481615697565b82525050565b614c3b614c3682615697565b615803565b82525050565b6000614c4c8261550b565b614c568185615539565b9350614c61836154e6565b8060005b83811015614c92578151614c798882614c03565b9750614c848361552c565b925050600181019050614c65565b5085935050505092915050565b614ca8816156a9565b82525050565b614cb7816156b5565b82525050565b6000614cc882615516565b614cd2818561554a565b9350614ce2818560208601615724565b614ceb8161595c565b840191505092915050565b6000614d0182615521565b614d0b8185615566565b9350614d1b818560208601615724565b614d248161595c565b840191505092915050565b6000614d3a82615521565b614d448185615577565b9350614d54818560208601615724565b80840191505092915050565b60008154614d6d81615757565b614d778186615577565b94506001821660008114614d925760018114614da357614dd6565b60ff19831686528186019350614dd6565b614dac856154f6565b60005b83811015614dce57815481890152600182019150602081019050614daf565b838801955050505b50505092915050565b6000614dec601083615566565b9150614df78261597a565b602082019050919050565b6000614e0f600e83615566565b9150614e1a826159a3565b602082019050919050565b6000614e32601483615566565b9150614e3d826159cc565b602082019050919050565b6000614e55602683615566565b9150614e60826159f5565b604082019050919050565b6000614e78600f83615566565b9150614e8382615a44565b602082019050919050565b6000614e9b601383615566565b9150614ea682615a6d565b602082019050919050565b6000614ebe601683615566565b9150614ec982615a96565b602082019050919050565b6000614ee1601683615566565b9150614eec82615abf565b602082019050919050565b6000614f04601383615566565b9150614f0f82615ae8565b602082019050919050565b6000614f27601983615566565b9150614f3282615b11565b602082019050919050565b6000614f4a602083615566565b9150614f5582615b3a565b602082019050919050565b6000614f6d602f83615566565b9150614f7882615b63565b604082019050919050565b6000614f90601183615566565b9150614f9b82615bb2565b602082019050919050565b6000614fb3601383615566565b9150614fbe82615bdb565b602082019050919050565b6000614fd6601483615566565b9150614fe182615c04565b602082019050919050565b6000614ff960008361555b565b915061500482615c2d565b600082019050919050565b600061501c601283615566565b915061502782615c30565b602082019050919050565b600061503f601583615566565b915061504a82615c59565b602082019050919050565b6000615062601083615566565b915061506d82615c82565b602082019050919050565b6150818161570b565b82525050565b6150908161570b565b82525050565b60006150a28284614c2a565b60148201915081905092915050565b60006150bd8286614d60565b91506150c98285614d2f565b91506150d58284614d2f565b9150819050949350505050565b60006150ed82614fec565b9150819050919050565b600060208201905061510c6000830184614c1b565b92915050565b60006080820190506151276000830187614c1b565b6151346020830186614c1b565b6151416040830185615087565b81810360608301526151538184614cbd565b905095945050505050565b600060208201905081810360008301526151788184614c41565b905092915050565b60006020820190506151956000830184614c9f565b92915050565b60006020820190506151b06000830184614cae565b92915050565b600060208201905081810360008301526151d08184614cf6565b905092915050565b600060208201905081810360008301526151f181614ddf565b9050919050565b6000602082019050818103600083015261521181614e02565b9050919050565b6000602082019050818103600083015261523181614e25565b9050919050565b6000602082019050818103600083015261525181614e48565b9050919050565b6000602082019050818103600083015261527181614e6b565b9050919050565b6000602082019050818103600083015261529181614e8e565b9050919050565b600060208201905081810360008301526152b181614eb1565b9050919050565b600060208201905081810360008301526152d181614ed4565b9050919050565b600060208201905081810360008301526152f181614ef7565b9050919050565b6000602082019050818103600083015261531181614f1a565b9050919050565b6000602082019050818103600083015261533181614f3d565b9050919050565b6000602082019050818103600083015261535181614f60565b9050919050565b6000602082019050818103600083015261537181614f83565b9050919050565b6000602082019050818103600083015261539181614fa6565b9050919050565b600060208201905081810360008301526153b181614fc9565b9050919050565b600060208201905081810360008301526153d18161500f565b9050919050565b600060208201905081810360008301526153f181615032565b9050919050565b6000602082019050818103600083015261541181615055565b9050919050565b600060208201905061542d6000830184615087565b92915050565b600061543d61544e565b90506154498282615789565b919050565b6000604051905090565b600067ffffffffffffffff82111561547357615472615914565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561549f5761549e615914565b5b6154a88261595c565b9050602081019050919050565b600067ffffffffffffffff8211156154d0576154cf615914565b5b6154d98261595c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061558d8261570b565b91506155988361570b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156155cd576155cc615858565b5b828201905092915050565b60006155e38261570b565b91506155ee8361570b565b9250826155fe576155fd615887565b5b828204905092915050565b60006156148261570b565b915061561f8361570b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561565857615657615858565b5b828202905092915050565b600061566e8261570b565b91506156798361570b565b92508282101561568c5761568b615858565b5b828203905092915050565b60006156a2826156eb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615742578082015181840152602081019050615727565b83811115615751576000848401525b50505050565b6000600282049050600182168061576f57607f821691505b60208210811415615783576157826158b6565b5b50919050565b6157928261595c565b810181811067ffffffffffffffff821117156157b1576157b0615914565b5b80604052505050565b60006157c58261570b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156157f8576157f7615858565b5b600182019050919050565b600061580e82615815565b9050919050565b60006158208261596d565b9050919050565b60006158328261570b565b915061583d8361570b565b92508261584d5761584c615887565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f574c2073616c6520696e61637469766500000000000000000000000000000000600082015250565b7f55736572206e6f74206f6e20574c000000000000000000000000000000000000600082015250565b7f5465616d207472616e73666572206661696c6564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f446f796c6572207472616e73666572206661696c656400000000000000000000600082015250565b7f55736572206d617820574c206d696e74206c696d697400000000000000000000600082015250565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b7f436f6d6d756e697479207472616e73666572206661696c656400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f20646576206d696e7473206c656674000000000000000000000000000000600082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f5075626c69632073616c6520696e616374697665000000000000000000000000600082015250565b50565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b7f446576206d696e74696e67206f6e6c7900000000000000000000000000000000600082015250565b615cb481615697565b8114615cbf57600080fd5b50565b615ccb816156a9565b8114615cd657600080fd5b50565b615ce2816156b5565b8114615ced57600080fd5b50565b615cf9816156bf565b8114615d0457600080fd5b50565b615d108161570b565b8114615d1b57600080fd5b5056fea2646970667358221220916862c8e9b5bd29d5f735c0af862ac16b6a84b21f6e293b3c324f4b6ea450f864736f6c63430008070033697066733a2f2f516d66456a5432596552634533707a4c38486f76485058316b43734e50466757536952797448666a33386b7055742f48696464656e2e6a736f6e697066733a2f2f516d584c424c6b32437150454650324b525331566f54746e6f786b4d3342625438796f4277664b37747757346e65697066733a2f2f516d66456a5432596552634533707a4c38486f76485058316b43734e50466757536952797448666a33386b7055742f
Deployed Bytecode
0x6080604052600436106103975760003560e01c806370a08231116101dc578063b88d4fde11610102578063e0a80853116100a0578063e985e9c51161006f578063e985e9c514610d0c578063ed8efe6814610d49578063f2fde38b14610d74578063f5320e6414610d9d57610397565b8063e0a8085314610c64578063e4fb363514610c8d578063e54aca2a14610cb8578063e8a3d48514610ce157610397565b8063bff7094f116100dc578063bff7094f14610baa578063c55f125714610bd3578063c757483914610bfc578063c87b56dd14610c2757610397565b8063b88d4fde14610b2f578063bd6d726114610b58578063becf259614610b8157610397565b806395d89b411161017a578063a22cb46511610149578063a22cb46514610a94578063a45ba8e714610abd578063a9c9aa2b14610ae8578063abfe40a814610b1357610397565b806395d89b41146109e857806399184b6614610a13578063a1307d7914610a3e578063a1a9ab9f14610a6957610397565b806374bd8afb116101b657806374bd8afb1461092e5780637aeb7242146109575780638da5cb5b14610994578063938e3d7b146109bf57610397565b806370a08231146108af57806370ed5ce7146108ec578063715018a61461091757610397565b806342842e0e116102c157806355f804b31161025f5780635c975abb1161022e5780635c975abb146107f35780635ed3e25e1461081e5780636352211e146108475780636c0360eb1461088457610397565b806355f804b31461074b57806356b4f67314610774578063599270441461079f5780635aca1bb6146107ca57610397565b8063499a3ca21161029b578063499a3ca2146106b05780634fdd43cb146106cc57806351830227146106f55780635503a0e81461072057610397565b806342842e0e1461060d57806342eb9cbd14610636578063438b63001461067357610397565b806323b872dd1161033957806332cb6b0c1161030857806332cb6b0c1461058257806333bc1c5c146105ad57806337534b5c146105d85780633ccfd60b1461060357610397565b806323b872dd146104e95780632c4b2334146105125780632db115441461053b5780632eb4a7ab1461055757610397565b8063095ea7b311610375578063095ea7b3146104415780630ca01ad91461046a57806316c38b3c1461049557806318160ddd146104be57610397565b806301ffc9a71461039c57806306fdde03146103d9578063081812fc14610404575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be9190614a97565b610dc6565b6040516103d09190615180565b60405180910390f35b3480156103e557600080fd5b506103ee610ea8565b6040516103fb91906151b6565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190614b3a565b610f3a565b60405161043891906150f7565b60405180910390f35b34801561044d57600080fd5b50610468600480360381019061046391906149a1565b610fb6565b005b34801561047657600080fd5b5061047f6110c1565b60405161048c9190615418565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b791906149e1565b6110c7565b005b3480156104ca57600080fd5b506104d3611160565b6040516104e09190615418565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b919061482f565b611177565b005b34801561051e57600080fd5b50610539600480360381019061053491906147c2565b611187565b005b61055560048036038101906105509190614b3a565b611247565b005b34801561056357600080fd5b5061056c611544565b604051610579919061519b565b60405180910390f35b34801561058e57600080fd5b5061059761154a565b6040516105a49190615418565b60405180910390f35b3480156105b957600080fd5b506105c2611550565b6040516105cf9190615180565b60405180910390f35b3480156105e457600080fd5b506105ed611563565b6040516105fa9190615180565b60405180910390f35b61060b611576565b005b34801561061957600080fd5b50610634600480360381019061062f919061482f565b611879565b005b34801561064257600080fd5b5061065d60048036038101906106589190614905565b611899565b60405161066a9190615180565b60405180910390f35b34801561067f57600080fd5b5061069a600480360381019061069591906147c2565b6118d6565b6040516106a7919061515e565b60405180910390f35b6106ca60048036038101906106c59190614ba7565b6119e1565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190614af1565b611d27565b005b34801561070157600080fd5b5061070a611dbd565b6040516107179190615180565b60405180910390f35b34801561072c57600080fd5b50610735611dd0565b60405161074291906151b6565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190614af1565b611e09565b005b34801561078057600080fd5b50610789611e9f565b60405161079691906151b6565b60405180910390f35b3480156107ab57600080fd5b506107b4611f2d565b6040516107c191906150f7565b60405180910390f35b3480156107d657600080fd5b506107f160048036038101906107ec91906149e1565b611f53565b005b3480156107ff57600080fd5b50610808612007565b6040516108159190615180565b60405180910390f35b34801561082a57600080fd5b5061084560048036038101906108409190614a0e565b61201a565b005b34801561085357600080fd5b5061086e60048036038101906108699190614b3a565b6120cb565b60405161087b91906150f7565b60405180910390f35b34801561089057600080fd5b506108996120e1565b6040516108a691906151b6565b60405180910390f35b3480156108bb57600080fd5b506108d660048036038101906108d191906147c2565b61216f565b6040516108e39190615418565b60405180910390f35b3480156108f857600080fd5b5061090161223f565b60405161090e91906150f7565b60405180910390f35b34801561092357600080fd5b5061092c612257565b005b34801561093a57600080fd5b5061095560048036038101906109509190614b3a565b6122df565b005b34801561096357600080fd5b5061097e600480360381019061097991906147c2565b612365565b60405161098b9190615418565b60405180910390f35b3480156109a057600080fd5b506109a961237d565b6040516109b691906150f7565b60405180910390f35b3480156109cb57600080fd5b506109e660048036038101906109e19190614af1565b6123a6565b005b3480156109f457600080fd5b506109fd61243c565b604051610a0a91906151b6565b60405180910390f35b348015610a1f57600080fd5b50610a286124ce565b604051610a359190615418565b60405180910390f35b348015610a4a57600080fd5b50610a536124d3565b604051610a609190615418565b60405180910390f35b348015610a7557600080fd5b50610a7e6124d9565b604051610a8b9190615418565b60405180910390f35b348015610aa057600080fd5b50610abb6004803603810190610ab69190614961565b6124df565b005b348015610ac957600080fd5b50610ad2612657565b604051610adf91906151b6565b60405180910390f35b348015610af457600080fd5b50610afd6126e5565b604051610b0a91906150f7565b60405180910390f35b610b2d6004803603810190610b289190614b3a565b61270b565b005b348015610b3b57600080fd5b50610b566004803603810190610b519190614882565b612929565b005b348015610b6457600080fd5b50610b7f6004803603810190610b7a91906149e1565b6129a5565b005b348015610b8d57600080fd5b50610ba86004803603810190610ba39190614b3a565b612a59565b005b348015610bb657600080fd5b50610bd16004803603810190610bcc9190614a6a565b612adf565b005b348015610bdf57600080fd5b50610bfa6004803603810190610bf591906147c2565b612b65565b005b348015610c0857600080fd5b50610c11612c25565b604051610c1e91906150f7565b60405180910390f35b348015610c3357600080fd5b50610c4e6004803603810190610c499190614b3a565b612c4b565b604051610c5b91906151b6565b60405180910390f35b348015610c7057600080fd5b50610c8b6004803603810190610c8691906149e1565b612da6565b005b348015610c9957600080fd5b50610ca2612e3f565b604051610caf9190615418565b60405180910390f35b348015610cc457600080fd5b50610cdf6004803603810190610cda91906147c2565b612e45565b005b348015610ced57600080fd5b50610cf6612f05565b604051610d0391906151b6565b60405180910390f35b348015610d1857600080fd5b50610d336004803603810190610d2e91906147ef565b612f97565b604051610d409190615180565b60405180910390f35b348015610d5557600080fd5b50610d5e61302b565b604051610d6b9190615418565b60405180910390f35b348015610d8057600080fd5b50610d9b6004803603810190610d9691906147c2565b613031565b005b348015610da957600080fd5b50610dc46004803603810190610dbf9190614b67565b613129565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e9157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ea15750610ea0826132ca565b5b9050919050565b606060038054610eb790615757565b80601f0160208091040260200160405190810160405280929190818152602001828054610ee390615757565b8015610f305780601f10610f0557610100808354040283529160200191610f30565b820191906000526020600020905b815481529060010190602001808311610f1357829003601f168201915b5050505050905090565b6000610f4582613334565b610f7b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610fc1826120cb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611029576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611048613382565b73ffffffffffffffffffffffffffffffffffffffff161415801561107a575061107881611073613382565b612f97565b155b156110b1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110bc83838361338a565b505050565b600b5481565b6110cf613382565b73ffffffffffffffffffffffffffffffffffffffff166110ed61237d565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90615318565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b600061116a61343c565b6002546001540303905090565b611182838383613445565b505050565b61118f613382565b73ffffffffffffffffffffffffffffffffffffffff166111ad61237d565b73ffffffffffffffffffffffffffffffffffffffff1614611203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fa90615318565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b80600e60009054906101000a900460ff1615611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f906153b8565b60405180910390fd5b600a54816112a4611160565b6112ae9190615582565b11156112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e6906153d8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461135d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135490615278565b60405180910390fd5b6000600c5490506000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e60039054906101000a900460ff166113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90615398565b60405180910390fd5b60105484826114069190615582565b1115611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e906152d8565b60405180910390fd5b83826114539190615609565b341015611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c90615378565b60405180910390fd5b83816114a19190615582565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114ee33856138fb565b6064601e85846114fe9190615609565b6115089190615609565b61151291906155d8565b601860008282546115239190615582565b9250508190555061153e84836115399190615609565b613919565b50505050565b60095481565b600a5481565b600e60039054906101000a900460ff1681565b600e60029054906101000a900460ff1681565b61157e613382565b73ffffffffffffffffffffffffffffffffffffffff1661159c61237d565b73ffffffffffffffffffffffffffffffffffffffff16146115f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e990615318565b60405180910390fd5b6000479050600073ed19c8970c7be64f5ac3f4bebfddfd571861c3b773ffffffffffffffffffffffffffffffffffffffff16601854604051611633906150e2565b60006040518083038185875af1925050503d8060008114611670576040519150601f19603f3d011682016040523d82523d6000602084013e611675565b606091505b50509050806116b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b090615298565b60405180910390fd5b6000601881905550601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660646037846117099190615609565b61171391906155d8565b60405161171f906150e2565b60006040518083038185875af1925050503d806000811461175c576040519150601f19603f3d011682016040523d82523d6000602084013e611761565b606091505b505080915050806117a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179e906152f8565b60405180910390fd5b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516117ed906150e2565b60006040518083038185875af1925050503d806000811461182a576040519150601f19603f3d011682016040523d82523d6000602084013e61182f565b606091505b50508091505080611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c90615218565b60405180910390fd5b5050565b61189483838360405180602001604052806000815250612929565b505050565b60006118ce82846040516020016118b09190615096565b604051602081830303815290604052805190602001206009546139dd565b905092915050565b606060006118e38361216f565b905060008167ffffffffffffffff81111561190157611900615914565b5b60405190808252806020026020018201604052801561192f5781602001602082028036833780820191505090505b50905060006001905060005b838110801561194c5750600a548211155b156119d557600061195c836120cb565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119c157828483815181106119a6576119a56158e5565b5b60200260200101818152505081806119bd906157ba565b9250505b82806119cc906157ba565b9350505061193b565b82945050505050919050565b81600e60009054906101000a900460ff1615611a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a29906153b8565b60405180910390fd5b600a5481611a3e611160565b611a489190615582565b1115611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a80906153d8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aee90615278565b60405180910390fd5b6000600b5490506000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600e60029054906101000a900460ff16611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b88906151d8565b60405180910390fd5b600f548582611ba09190615582565b1115611be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd8906152b8565b60405180910390fd5b8482611bed9190615609565b341015611c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2690615378565b60405180910390fd5b611c38846139f4565b611c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6e906151f8565b60405180910390fd5b8481611c839190615582565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611cd033866138fb565b6064601e8684611ce09190615609565b611cea9190615609565b611cf491906155d8565b60186000828254611d059190615582565b92505081905550611d208583611d1b9190615609565b613919565b5050505050565b611d2f613382565b73ffffffffffffffffffffffffffffffffffffffff16611d4d61237d565b73ffffffffffffffffffffffffffffffffffffffff1614611da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9a90615318565b60405180910390fd5b8060129080519060200190611db99291906144e0565b5050565b600e60019054906101000a900460ff1681565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b611e11613382565b73ffffffffffffffffffffffffffffffffffffffff16611e2f61237d565b73ffffffffffffffffffffffffffffffffffffffff1614611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90615318565b60405180910390fd5b8060119080519060200190611e9b9291906144e0565b5050565b60138054611eac90615757565b80601f0160208091040260200160405190810160405280929190818152602001828054611ed890615757565b8015611f255780601f10611efa57610100808354040283529160200191611f25565b820191906000526020600020905b815481529060010190602001808311611f0857829003601f168201915b505050505081565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611f5b613382565b73ffffffffffffffffffffffffffffffffffffffff16611f7961237d565b73ffffffffffffffffffffffffffffffffffffffff1614611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc690615318565b60405180910390fd5b80600e60036101000a81548160ff0219169083151502179055508015600e60026101000a81548160ff02191690831515021790555050565b600e60009054906101000a900460ff1681565b612022613382565b73ffffffffffffffffffffffffffffffffffffffff1661204061237d565b73ffffffffffffffffffffffffffffffffffffffff1614612096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208d90615318565b60405180910390fd5b81600e60016101000a81548160ff02191690831515021790555080601190805190602001906120c69291906144e0565b505050565b60006120d682613a30565b600001519050919050565b601180546120ee90615757565b80601f016020809104026020016040519081016040528092919081815260200182805461211a90615757565b80156121675780601f1061213c57610100808354040283529160200191612167565b820191906000526020600020905b81548152906001019060200180831161214a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b73ed19c8970c7be64f5ac3f4bebfddfd571861c3b781565b61225f613382565b73ffffffffffffffffffffffffffffffffffffffff1661227d61237d565b73ffffffffffffffffffffffffffffffffffffffff16146122d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ca90615318565b60405180910390fd5b6122dd6000613cbf565b565b6122e7613382565b73ffffffffffffffffffffffffffffffffffffffff1661230561237d565b73ffffffffffffffffffffffffffffffffffffffff161461235b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235290615318565b60405180910390fd5b8060108190555050565b60156020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6123ae613382565b73ffffffffffffffffffffffffffffffffffffffff166123cc61237d565b73ffffffffffffffffffffffffffffffffffffffff1614612422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241990615318565b60405180910390fd5b80601390805190602001906124389291906144e0565b5050565b60606004805461244b90615757565b80601f016020809104026020016040519081016040528092919081815260200182805461247790615757565b80156124c45780601f10612499576101008083540402835291602001916124c4565b820191906000526020600020905b8154815290600101906020018083116124a757829003601f168201915b5050505050905090565b603781565b600f5481565b60105481565b6124e7613382565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561254c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000612559613382565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612606613382565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161264b9190615180565b60405180910390a35050565b6012805461266490615757565b80601f016020809104026020016040519081016040528092919081815260200182805461269090615757565b80156126dd5780601f106126b2576101008083540402835291602001916126dd565b820191906000526020600020905b8154815290600101906020018083116126c057829003601f168201915b505050505081565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b80600e60009054906101000a900460ff161561275c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612753906153b8565b60405180910390fd5b600a5481612768611160565b6127729190615582565b11156127b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127aa906153d8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281890615278565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146128b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a8906153f8565b60405180910390fd5b603782600d546128c19190615582565b1115612902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f990615358565b60405180910390fd5b81600d60008282546129149190615582565b9250508190555061292533836138fb565b5050565b612934848484613445565b6129538373ffffffffffffffffffffffffffffffffffffffff16613d83565b8015612968575061296684848484613da6565b155b1561299f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6129ad613382565b73ffffffffffffffffffffffffffffffffffffffff166129cb61237d565b73ffffffffffffffffffffffffffffffffffffffff1614612a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1890615318565b60405180910390fd5b80600e60026101000a81548160ff0219169083151502179055508015600e60036101000a81548160ff02191690831515021790555050565b612a61613382565b73ffffffffffffffffffffffffffffffffffffffff16612a7f61237d565b73ffffffffffffffffffffffffffffffffffffffff1614612ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acc90615318565b60405180910390fd5b80600f8190555050565b612ae7613382565b73ffffffffffffffffffffffffffffffffffffffff16612b0561237d565b73ffffffffffffffffffffffffffffffffffffffff1614612b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5290615318565b60405180910390fd5b8060098190555050565b612b6d613382565b73ffffffffffffffffffffffffffffffffffffffff16612b8b61237d565b73ffffffffffffffffffffffffffffffffffffffff1614612be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd890615318565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060612c5682613334565b612c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8c90615338565b60405180910390fd5b600e60019054906101000a900460ff1615612d13576011612cb583613f06565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001612cfd939291906150b1565b6040516020818303038152906040529050612da1565b60128054612d2090615757565b80601f0160208091040260200160405190810160405280929190818152602001828054612d4c90615757565b8015612d995780601f10612d6e57610100808354040283529160200191612d99565b820191906000526020600020905b815481529060010190602001808311612d7c57829003601f168201915b505050505090505b919050565b612dae613382565b73ffffffffffffffffffffffffffffffffffffffff16612dcc61237d565b73ffffffffffffffffffffffffffffffffffffffff1614612e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1990615318565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b600d5481565b612e4d613382565b73ffffffffffffffffffffffffffffffffffffffff16612e6b61237d565b73ffffffffffffffffffffffffffffffffffffffff1614612ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb890615318565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060138054612f1490615757565b80601f0160208091040260200160405190810160405280929190818152602001828054612f4090615757565b8015612f8d5780601f10612f6257610100808354040283529160200191612f8d565b820191906000526020600020905b815481529060010190602001808311612f7057829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b613039613382565b73ffffffffffffffffffffffffffffffffffffffff1661305761237d565b73ffffffffffffffffffffffffffffffffffffffff16146130ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a490615318565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561311d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311490615238565b60405180910390fd5b61312681613cbf565b50565b613131613382565b73ffffffffffffffffffffffffffffffffffffffff1661314f61237d565b73ffffffffffffffffffffffffffffffffffffffff16146131a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319c90615318565b60405180910390fd5b81600e60009054906101000a900460ff16156131f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ed906153b8565b60405180910390fd5b600a5481613202611160565b61320c9190615582565b111561324d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613244906153d8565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146132bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b290615278565b60405180910390fd5b6132c582846138fb565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161333f61343c565b1115801561334e575060015482105b801561337b575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061345082613a30565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146134bb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166134dc613382565b73ffffffffffffffffffffffffffffffffffffffff16148061350b575061350a85613505613382565b612f97565b5b806135505750613519613382565b73ffffffffffffffffffffffffffffffffffffffff1661353884610f3a565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613589576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156135f0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6135fd8585856001614067565b6136096000848761338a565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561388957600154821461388857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46138f4858585600161406d565b5050505050565b613915828260405180602001604052806000815250614073565b5050565b803411156139da5760003373ffffffffffffffffffffffffffffffffffffffff1682346139469190615663565b604051613952906150e2565b60006040518083038185875af1925050503d806000811461398f576040519150601f19603f3d011682016040523d82523d6000602084013e613994565b606091505b50509050806139d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139cf90615258565b60405180910390fd5b505b50565b6000826139ea8584614085565b1490509392505050565b6000613a298260095433604051602001613a0e9190615096565b604051602081830303815290604052805190602001206139dd565b9050919050565b613a38614566565b600082905080613a4661343c565b11158015613a55575060015481105b15613c88576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151613c8657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613b6a578092505050613cba565b5b600115613c8557818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613c80578092505050613cba565b613b6b565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613dcc613382565b8786866040518563ffffffff1660e01b8152600401613dee9493929190615112565b602060405180830381600087803b158015613e0857600080fd5b505af1925050508015613e3957506040513d601f19601f82011682018060405250810190613e369190614ac4565b60015b613eb3573d8060008114613e69576040519150601f19603f3d011682016040523d82523d6000602084013e613e6e565b606091505b50600081511415613eab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613f4e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614062565b600082905060005b60008214613f80578080613f69906157ba565b915050600a82613f7991906155d8565b9150613f56565b60008167ffffffffffffffff811115613f9c57613f9b615914565b5b6040519080825280601f01601f191660200182016040528015613fce5781602001600182028036833780820191505090505b5090505b6000851461405b57600182613fe79190615663565b9150600a85613ff69190615827565b60306140029190615582565b60f81b818381518110614018576140176158e5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561405491906155d8565b9450613fd2565b8093505050505b919050565b50505050565b50505050565b61408083838360016140fa565b505050565b60008082905060005b84518110156140ef5760008582815181106140ac576140ab6158e5565b5b602002602001015190508083116140ce576140c783826144c9565b92506140db565b6140d881846144c9565b92505b5080806140e7906157ba565b91505061408e565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415614168576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156141a3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6141b06000868387614067565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561437a57506143798773ffffffffffffffffffffffffffffffffffffffff16613d83565b5b15614440575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46143ef6000888480600101955088613da6565b614425576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561438057826001541461443b57600080fd5b6144ac565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415614441575b8160018190555050506144c2600086838761406d565b5050505050565b600082600052816020526040600020905092915050565b8280546144ec90615757565b90600052602060002090601f01602090048101928261450e5760008555614555565b82601f1061452757805160ff1916838001178555614555565b82800160010185558215614555579182015b82811115614554578251825591602001919060010190614539565b5b50905061456291906145a9565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156145c25760008160009055506001016145aa565b5090565b60006145d96145d484615458565b615433565b905080838252602082019050828560208602820111156145fc576145fb615948565b5b60005b8581101561462c57816146128882614712565b8452602084019350602083019250506001810190506145ff565b5050509392505050565b600061464961464484615484565b615433565b9050828152602081018484840111156146655761466461594d565b5b614670848285615715565b509392505050565b600061468b614686846154b5565b615433565b9050828152602081018484840111156146a7576146a661594d565b5b6146b2848285615715565b509392505050565b6000813590506146c981615cab565b92915050565b600082601f8301126146e4576146e3615943565b5b81356146f48482602086016145c6565b91505092915050565b60008135905061470c81615cc2565b92915050565b60008135905061472181615cd9565b92915050565b60008135905061473681615cf0565b92915050565b60008151905061474b81615cf0565b92915050565b600082601f83011261476657614765615943565b5b8135614776848260208601614636565b91505092915050565b600082601f83011261479457614793615943565b5b81356147a4848260208601614678565b91505092915050565b6000813590506147bc81615d07565b92915050565b6000602082840312156147d8576147d7615957565b5b60006147e6848285016146ba565b91505092915050565b6000806040838503121561480657614805615957565b5b6000614814858286016146ba565b9250506020614825858286016146ba565b9150509250929050565b60008060006060848603121561484857614847615957565b5b6000614856868287016146ba565b9350506020614867868287016146ba565b9250506040614878868287016147ad565b9150509250925092565b6000806000806080858703121561489c5761489b615957565b5b60006148aa878288016146ba565b94505060206148bb878288016146ba565b93505060406148cc878288016147ad565b925050606085013567ffffffffffffffff8111156148ed576148ec615952565b5b6148f987828801614751565b91505092959194509250565b6000806040838503121561491c5761491b615957565b5b600061492a858286016146ba565b925050602083013567ffffffffffffffff81111561494b5761494a615952565b5b614957858286016146cf565b9150509250929050565b6000806040838503121561497857614977615957565b5b6000614986858286016146ba565b9250506020614997858286016146fd565b9150509250929050565b600080604083850312156149b8576149b7615957565b5b60006149c6858286016146ba565b92505060206149d7858286016147ad565b9150509250929050565b6000602082840312156149f7576149f6615957565b5b6000614a05848285016146fd565b91505092915050565b60008060408385031215614a2557614a24615957565b5b6000614a33858286016146fd565b925050602083013567ffffffffffffffff811115614a5457614a53615952565b5b614a608582860161477f565b9150509250929050565b600060208284031215614a8057614a7f615957565b5b6000614a8e84828501614712565b91505092915050565b600060208284031215614aad57614aac615957565b5b6000614abb84828501614727565b91505092915050565b600060208284031215614ada57614ad9615957565b5b6000614ae88482850161473c565b91505092915050565b600060208284031215614b0757614b06615957565b5b600082013567ffffffffffffffff811115614b2557614b24615952565b5b614b318482850161477f565b91505092915050565b600060208284031215614b5057614b4f615957565b5b6000614b5e848285016147ad565b91505092915050565b60008060408385031215614b7e57614b7d615957565b5b6000614b8c858286016147ad565b9250506020614b9d858286016146ba565b9150509250929050565b60008060408385031215614bbe57614bbd615957565b5b6000614bcc858286016147ad565b925050602083013567ffffffffffffffff811115614bed57614bec615952565b5b614bf9858286016146cf565b9150509250929050565b6000614c0f8383615078565b60208301905092915050565b614c2481615697565b82525050565b614c3b614c3682615697565b615803565b82525050565b6000614c4c8261550b565b614c568185615539565b9350614c61836154e6565b8060005b83811015614c92578151614c798882614c03565b9750614c848361552c565b925050600181019050614c65565b5085935050505092915050565b614ca8816156a9565b82525050565b614cb7816156b5565b82525050565b6000614cc882615516565b614cd2818561554a565b9350614ce2818560208601615724565b614ceb8161595c565b840191505092915050565b6000614d0182615521565b614d0b8185615566565b9350614d1b818560208601615724565b614d248161595c565b840191505092915050565b6000614d3a82615521565b614d448185615577565b9350614d54818560208601615724565b80840191505092915050565b60008154614d6d81615757565b614d778186615577565b94506001821660008114614d925760018114614da357614dd6565b60ff19831686528186019350614dd6565b614dac856154f6565b60005b83811015614dce57815481890152600182019150602081019050614daf565b838801955050505b50505092915050565b6000614dec601083615566565b9150614df78261597a565b602082019050919050565b6000614e0f600e83615566565b9150614e1a826159a3565b602082019050919050565b6000614e32601483615566565b9150614e3d826159cc565b602082019050919050565b6000614e55602683615566565b9150614e60826159f5565b604082019050919050565b6000614e78600f83615566565b9150614e8382615a44565b602082019050919050565b6000614e9b601383615566565b9150614ea682615a6d565b602082019050919050565b6000614ebe601683615566565b9150614ec982615a96565b602082019050919050565b6000614ee1601683615566565b9150614eec82615abf565b602082019050919050565b6000614f04601383615566565b9150614f0f82615ae8565b602082019050919050565b6000614f27601983615566565b9150614f3282615b11565b602082019050919050565b6000614f4a602083615566565b9150614f5582615b3a565b602082019050919050565b6000614f6d602f83615566565b9150614f7882615b63565b604082019050919050565b6000614f90601183615566565b9150614f9b82615bb2565b602082019050919050565b6000614fb3601383615566565b9150614fbe82615bdb565b602082019050919050565b6000614fd6601483615566565b9150614fe182615c04565b602082019050919050565b6000614ff960008361555b565b915061500482615c2d565b600082019050919050565b600061501c601283615566565b915061502782615c30565b602082019050919050565b600061503f601583615566565b915061504a82615c59565b602082019050919050565b6000615062601083615566565b915061506d82615c82565b602082019050919050565b6150818161570b565b82525050565b6150908161570b565b82525050565b60006150a28284614c2a565b60148201915081905092915050565b60006150bd8286614d60565b91506150c98285614d2f565b91506150d58284614d2f565b9150819050949350505050565b60006150ed82614fec565b9150819050919050565b600060208201905061510c6000830184614c1b565b92915050565b60006080820190506151276000830187614c1b565b6151346020830186614c1b565b6151416040830185615087565b81810360608301526151538184614cbd565b905095945050505050565b600060208201905081810360008301526151788184614c41565b905092915050565b60006020820190506151956000830184614c9f565b92915050565b60006020820190506151b06000830184614cae565b92915050565b600060208201905081810360008301526151d08184614cf6565b905092915050565b600060208201905081810360008301526151f181614ddf565b9050919050565b6000602082019050818103600083015261521181614e02565b9050919050565b6000602082019050818103600083015261523181614e25565b9050919050565b6000602082019050818103600083015261525181614e48565b9050919050565b6000602082019050818103600083015261527181614e6b565b9050919050565b6000602082019050818103600083015261529181614e8e565b9050919050565b600060208201905081810360008301526152b181614eb1565b9050919050565b600060208201905081810360008301526152d181614ed4565b9050919050565b600060208201905081810360008301526152f181614ef7565b9050919050565b6000602082019050818103600083015261531181614f1a565b9050919050565b6000602082019050818103600083015261533181614f3d565b9050919050565b6000602082019050818103600083015261535181614f60565b9050919050565b6000602082019050818103600083015261537181614f83565b9050919050565b6000602082019050818103600083015261539181614fa6565b9050919050565b600060208201905081810360008301526153b181614fc9565b9050919050565b600060208201905081810360008301526153d18161500f565b9050919050565b600060208201905081810360008301526153f181615032565b9050919050565b6000602082019050818103600083015261541181615055565b9050919050565b600060208201905061542d6000830184615087565b92915050565b600061543d61544e565b90506154498282615789565b919050565b6000604051905090565b600067ffffffffffffffff82111561547357615472615914565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561549f5761549e615914565b5b6154a88261595c565b9050602081019050919050565b600067ffffffffffffffff8211156154d0576154cf615914565b5b6154d98261595c565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061558d8261570b565b91506155988361570b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156155cd576155cc615858565b5b828201905092915050565b60006155e38261570b565b91506155ee8361570b565b9250826155fe576155fd615887565b5b828204905092915050565b60006156148261570b565b915061561f8361570b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561565857615657615858565b5b828202905092915050565b600061566e8261570b565b91506156798361570b565b92508282101561568c5761568b615858565b5b828203905092915050565b60006156a2826156eb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615742578082015181840152602081019050615727565b83811115615751576000848401525b50505050565b6000600282049050600182168061576f57607f821691505b60208210811415615783576157826158b6565b5b50919050565b6157928261595c565b810181811067ffffffffffffffff821117156157b1576157b0615914565b5b80604052505050565b60006157c58261570b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156157f8576157f7615858565b5b600182019050919050565b600061580e82615815565b9050919050565b60006158208261596d565b9050919050565b60006158328261570b565b915061583d8361570b565b92508261584d5761584c615887565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f574c2073616c6520696e61637469766500000000000000000000000000000000600082015250565b7f55736572206e6f74206f6e20574c000000000000000000000000000000000000600082015250565b7f5465616d207472616e73666572206661696c6564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f446f796c6572207472616e73666572206661696c656400000000000000000000600082015250565b7f55736572206d617820574c206d696e74206c696d697400000000000000000000600082015250565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b7f436f6d6d756e697479207472616e73666572206661696c656400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f20646576206d696e7473206c656674000000000000000000000000000000600082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f5075626c69632073616c6520696e616374697665000000000000000000000000600082015250565b50565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b7f446576206d696e74696e67206f6e6c7900000000000000000000000000000000600082015250565b615cb481615697565b8114615cbf57600080fd5b50565b615ccb816156a9565b8114615cd657600080fd5b50565b615ce2816156b5565b8114615ced57600080fd5b50565b615cf9816156bf565b8114615d0457600080fd5b50565b615d108161570b565b8114615d1b57600080fd5b5056fea2646970667358221220916862c8e9b5bd29d5f735c0af862ac16b6a84b21f6e293b3c324f4b6ea450f864736f6c63430008070033
Deployed Bytecode Sourcemap
47298:25184:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29393:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32506:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34009:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33572:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47948:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67464:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28642:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34874:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69061:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59277:1803;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47346:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47687:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49319:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49276:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69547:1296;;;:::i;:::-;;35115:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64427:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62602:689;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57253:1884;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66507:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48835:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49869:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66264:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50133:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51634:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67857:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48803:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66839:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32314:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49473:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29762:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51298:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7151:103;;;;;;;;;;;;;:::i;:::-;;66140:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51069:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6500:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67059:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32675:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47795:59;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49358:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49417:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34285:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49755:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50387:76;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56451:700;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35371:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67992:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65998;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68587:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68810:145;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51449:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63403:733;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67555:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48383:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68297:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64205:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34643:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48007:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7409:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71007:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29393:305;29495:4;29547:25;29532:40;;;:11;:40;;;;:105;;;;29604:33;29589:48;;;:11;:48;;;;29532:105;:158;;;;29654:36;29678:11;29654:23;:36::i;:::-;29532:158;29512:178;;29393:305;;;:::o;32506:100::-;32560:13;32593:5;32586:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32506:100;:::o;34009:204::-;34077:7;34102:16;34110:7;34102;:16::i;:::-;34097:64;;34127:34;;;;;;;;;;;;;;34097:64;34181:15;:24;34197:7;34181:24;;;;;;;;;;;;;;;;;;;;;34174:31;;34009:204;;;:::o;33572:371::-;33645:13;33661:24;33677:7;33661:15;:24::i;:::-;33645:40;;33706:5;33700:11;;:2;:11;;;33696:48;;;33720:24;;;;;;;;;;;;;;33696:48;33777:5;33761:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33787:37;33804:5;33811:12;:10;:12::i;:::-;33787:16;:37::i;:::-;33786:38;33761:63;33757:138;;;33848:35;;;;;;;;;;;;;;33757:138;33907:28;33916:2;33920:7;33929:5;33907:8;:28::i;:::-;33634:309;33572:371;;:::o;47948:52::-;;;;:::o;67464:83::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67533:6:::1;67524;;:15;;;;;;;;;;;;;;;;;;67464:83:::0;:::o;28642:303::-;28686:7;28911:15;:13;:15::i;:::-;28896:12;;28880:13;;:28;:46;28873:53;;28642:303;:::o;34874:170::-;35008:28;35018:4;35024:2;35028:7;35008:9;:28::i;:::-;34874:170;;;:::o;69061:125::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69160:18:::1;69147:10;;:31;;;;;;;;;;;;;;;;;;69061:125:::0;:::o;59277:1803::-;59347:8;72183:6;;;;;;;;;;;72182:7;72174:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;72259:10;;72247:8;72231:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;72223:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;72425:10;72412:23;;:9;:23;;;72404:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;59464:13:::1;59480:18;;59464:34;;59610:17;59630:12;:24;59643:10;59630:24;;;;;;;;;;;;;;;;59610:44;;59683:10;;;;;;;;;;;59675:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;59761:24;;59749:8;59737:9;:20;;;;:::i;:::-;:48;;59729:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;60049:8;60041:5;:16;;;;:::i;:::-;60027:9;:31;;60019:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;60358:8;60346:9;:20;;;;:::i;:::-;60318:12;:24;60331:10;60318:24;;;;;;;;;;;;;;;:49;;;;60591:31;60601:10;60613:8;60591:9;:31::i;:::-;60829:3;60823:2;60811:8;60803:5;:16;;;;:::i;:::-;60802:23;;;;:::i;:::-;60801:31;;;;:::i;:::-;60784:13;;:48;;;;;;;:::i;:::-;;;;;;;;61041:31;61063:8;61055:5;:16;;;;:::i;:::-;61041:13;:31::i;:::-;59357:1723;;59277:1803:::0;;:::o;47346:25::-;;;;:::o;47687:32::-;;;;:::o;49319:30::-;;;;;;;;;;;;;:::o;49276:36::-;;;;;;;;;;;;;:::o;69547:1296::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;69673:19:::1;69695:21;69673:43;;69809:9;51338:42;69824:27;;69873:13;;69824:77;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69808:93;;;69920:4;69912:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;70264:1;70248:13;:17;;;;70476:15;;;;;;;;;;;70468:29;;70540:3;70534:2;70520:11;:16;;;;:::i;:::-;70519:24;;;;:::i;:::-;70468:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70457:101;;;;;70577:4;70569:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;70713:10;;;;;;;;;;;70705:24;;70751:21;70705:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70694:93;;;;;70806:4;70798:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;69594:1249;;69547:1296::o:0;35115:185::-;35253:39;35270:4;35276:2;35280:7;35253:39;;;;;;;;;;;;:16;:39::i;:::-;35115:185;;;:::o;64427:197::-;64515:4;64539:77;64558:6;64593:8;64576:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;64566:37;;;;;;64605:10;;64539:18;:77::i;:::-;64532:84;;64427:197;;;;:::o;62602:689::-;62662:16;62696:23;62722:17;62732:6;62722:9;:17::i;:::-;62696:43;;62750:30;62797:15;62783:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62750:63;;62824:22;62849:1;62824:26;;62861:23;62901:350;62926:15;62908;:33;:65;;;;;62963:10;;62945:14;:28;;62908:65;62901:350;;;62990:25;63018:23;63026:14;63018:7;:23::i;:::-;62990:51;;63083:6;63062:27;;:17;:27;;;63058:153;;;63143:14;63110:13;63124:15;63110:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;63178:17;;;;;:::i;:::-;;;;63058:153;63223:16;;;;;:::i;:::-;;;;62975:276;62901:350;;;63270:13;63263:20;;;;;;62602:689;;;:::o;57253:1884::-;57356:8;72183:6;;;;;;;;;;;72182:7;72174:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;72259:10;;72247:8;72231:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;72223:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;72425:10;72412:23;;:9;:23;;;72404:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;57473:13:::1;57489:23;;57473:39;;57624:17;57644:12;:24;57657:10;57644:24;;;;;;;;;;;;;;;;57624:44;;57689:17;;;;;;;;;;;57681:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;58258:33;;58246:8;58234:9;:20;;;;:::i;:::-;:57;;58226:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;58570:8;58562:5;:16;;;;:::i;:::-;58548:9;:31;;58540:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;58622:22;58638:5;58622:15;:22::i;:::-;58614:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;58855:8;58843:9;:20;;;;:::i;:::-;58815:12;:24;58828:10;58815:24;;;;;;;;;;;;;;;:49;;;;58877:31;58887:10;58899:8;58877:9;:31::i;:::-;58966:3;58960:2;58948:8;58940:5;:16;;;;:::i;:::-;58939:23;;;;:::i;:::-;58938:31;;;;:::i;:::-;58921:13;;:48;;;;;;;:::i;:::-;;;;;;;;59098:31;59120:8;59112:5;:16;;;;:::i;:::-;59098:13;:31::i;:::-;57366:1771;;57253:1884:::0;;;:::o;66507:138::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66619:18:::1;66599:17;:38;;;;;;;;;;;;:::i;:::-;;66507:138:::0;:::o;48835:28::-;;;;;;;;;;;;;:::o;49869:42::-;;;;;;;;;;;;;;;;;;;:::o;66264:98::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66346:8:::1;66336:7;:18;;;;;;;;;;;;:::i;:::-;;66264:98:::0;:::o;50133:84::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51634:70::-;;;;;;;;;;;;;:::o;67857:129::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67934:6:::1;67921:10;;:19;;;;;;;;;;;;;;;;;;67972:6;67971:7;67951:17;;:27;;;;;;;;;;;;;;;;;;67857:129:::0;:::o;48803:25::-;;;;;;;;;;;;;:::o;66839:151::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66944:9:::1;66933:8;;:20;;;;;;;;;;;;;;;;;;66974:8;66964:7;:18;;;;;;;;;;;;:::i;:::-;;66839:151:::0;;:::o;32314:125::-;32378:7;32405:21;32418:7;32405:12;:21::i;:::-;:26;;;32398:33;;32314:125;;;:::o;49473:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29762:206::-;29826:7;29867:1;29850:19;;:5;:19;;;29846:60;;;29878:28;;;;;;;;;;;;;;29846:60;29932:12;:19;29945:5;29932:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29924:36;;29917:43;;29762:206;;;:::o;51298:82::-;51338:42;51298:82;:::o;7151:103::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7216:30:::1;7243:1;7216:18;:30::i;:::-;7151:103::o:0;66140:116::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66242:6:::1;66215:24;:33;;;;66140:116:::0;:::o;51069:47::-;;;;;;;;;;;;;;;;;:::o;6500:87::-;6546:7;6573:6;;;;;;;;;;;6566:13;;6500:87;:::o;67059:115::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67154:12:::1;67139;:27;;;;;;;;;;;;:::i;:::-;;67059:115:::0;:::o;32675:104::-;32731:13;32764:7;32757:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32675:104;:::o;47795:59::-;47852:2;47795:59;:::o;49358:52::-;;;;:::o;49417:43::-;;;;:::o;34285:287::-;34396:12;:10;:12::i;:::-;34384:24;;:8;:24;;;34380:54;;;34417:17;;;;;;;;;;;;;;34380:54;34492:8;34447:18;:32;34466:12;:10;:12::i;:::-;34447:32;;;;;;;;;;;;;;;:42;34480:8;34447:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34545:8;34516:48;;34531:12;:10;:12::i;:::-;34516:48;;;34555:8;34516:48;;;;;;:::i;:::-;;;;;;;;34285:287;;:::o;49755:101::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50387:76::-;;;;;;;;;;;;;:::o;56451:700::-;56520:8;72183:6;;;;;;;;;;;72182:7;72174:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;72259:10;;72247:8;72231:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;72223:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;72425:10;72412:23;;:9;:23;;;72404:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;56648:16:::1;;;;;;;;;;;56634:30;;:10;:30;;;56626:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;47852:2;56895:8;56883:9;;:20;;;;:::i;:::-;:54;;56875:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;57091:8;57078:9;;:21;;;;;;;:::i;:::-;;;;;;;;57112:31;57122:10;57134:8;57112:9;:31::i;:::-;56451:700:::0;;:::o;35371:369::-;35538:28;35548:4;35554:2;35558:7;35538:9;:28::i;:::-;35581:15;:2;:13;;;:15::i;:::-;:76;;;;;35601:56;35632:4;35638:2;35642:7;35651:5;35601:30;:56::i;:::-;35600:57;35581:76;35577:156;;;35681:40;;;;;;;;;;;;;;35577:156;35371:369;;;;:::o;67992:136::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68083:6:::1;68063:17;;:26;;;;;;;;;;;;;;;;;;68114:6;68113:7;68100:10;;:20;;;;;;;;;;;;;;;;;;67992:136:::0;:::o;65998:::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66120:6:::1;66084:33;:42;;;;65998:136:::0;:::o;68587:112::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68680:11:::1;68667:10;:24;;;;68587:112:::0;:::o;68810:145::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68924:23:::1;68906:15;;:41;;;;;;;;;;;;;;;;;;68810:145:::0;:::o;51449:75::-;;;;;;;;;;;;;:::o;63403:733::-;63469:13;63734:17;63742:8;63734:7;:17::i;:::-;63726:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;63947:8;;;;;;;;;;;63943:186;;;64003:7;64012:26;64029:8;64012:16;:26::i;:::-;64040:9;;;;;;;;;;;;;;;;;63986:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63972:79;;;;63943:186;64100:17;64093:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63403:733;;;;:::o;67555:87::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67628:6:::1;67617:8;;:17;;;;;;;;;;;;;;;;;;67555:87:::0;:::o;48383:24::-;;;;:::o;68297:128::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68400:17:::1;68381:16;;:36;;;;;;;;;;;;;;;;;;68297:128:::0;:::o;64205:97::-;64249:13;64282:12;64275:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64205:97;:::o;34643:164::-;34740:4;34764:18;:25;34783:5;34764:25;;;;;;;;;;;;;;;:35;34790:8;34764:35;;;;;;;;;;;;;;;;;;;;;;;;;34757:42;;34643:164;;;;:::o;48007:47::-;;;;:::o;7409:201::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7518:1:::1;7498:22;;:8;:22;;;;7490:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7574:28;7593:8;7574:18;:28::i;:::-;7409:201:::0;:::o;71007:147::-;6731:12;:10;:12::i;:::-;6720:23;;:7;:5;:7::i;:::-;:23;;;6712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71096:8:::1;72183:6;;;;;;;;;;;72182:7;72174:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;72259:10;;72247:8;72231:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;72223:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;72425:10;72412:23;;:9;:23;;;72404:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;71117:29:::2;71127:8;71137;71117:9;:29::i;:::-;6791:1:::1;71007:147:::0;;:::o;19284:157::-;19369:4;19408:25;19393:40;;;:11;:40;;;;19386:47;;19284:157;;;:::o;35995:174::-;36052:4;36095:7;36076:15;:13;:15::i;:::-;:26;;:53;;;;;36116:13;;36106:7;:23;36076:53;:85;;;;;36134:11;:20;36146:7;36134:20;;;;;;;;;;;:27;;;;;;;;;;;;36133:28;36076:85;36069:92;;35995:174;;;:::o;5224:98::-;5277:7;5304:10;5297:17;;5224:98;:::o;44152:196::-;44294:2;44267:15;:24;44283:7;44267:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44332:7;44328:2;44312:28;;44321:5;44312:28;;;;;;;;;;;;44152:196;;;:::o;54020:101::-;54085:7;54112:1;54105:8;;54020:101;:::o;39095:2130::-;39210:35;39248:21;39261:7;39248:12;:21::i;:::-;39210:59;;39308:4;39286:26;;:13;:18;;;:26;;;39282:67;;39321:28;;;;;;;;;;;;;;39282:67;39362:22;39404:4;39388:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39425:36;39442:4;39448:12;:10;:12::i;:::-;39425:16;:36::i;:::-;39388:73;:126;;;;39502:12;:10;:12::i;:::-;39478:36;;:20;39490:7;39478:11;:20::i;:::-;:36;;;39388:126;39362:153;;39533:17;39528:66;;39559:35;;;;;;;;;;;;;;39528:66;39623:1;39609:16;;:2;:16;;;39605:52;;;39634:23;;;;;;;;;;;;;;39605:52;39670:43;39692:4;39698:2;39702:7;39711:1;39670:21;:43::i;:::-;39778:35;39795:1;39799:7;39808:4;39778:8;:35::i;:::-;40139:1;40109:12;:18;40122:4;40109:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40183:1;40155:12;:16;40168:2;40155:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40201:31;40235:11;:20;40247:7;40235:20;;;;;;;;;;;40201:54;;40286:2;40270:8;:13;;;:18;;;;;;;;;;;;;;;;;;40336:15;40303:8;:23;;;:49;;;;;;;;;;;;;;;;;;40604:19;40636:1;40626:7;:11;40604:33;;40652:31;40686:11;:24;40698:11;40686:24;;;;;;;;;;;40652:58;;40754:1;40729:27;;:8;:13;;;;;;;;;;;;:27;;;40725:384;;;40939:13;;40924:11;:28;40920:174;;40993:4;40977:8;:13;;;:20;;;;;;;;;;;;;;;;;;41046:13;:28;;;41020:8;:23;;;:54;;;;;;;;;;;;;;;;;;40920:174;40725:384;40084:1036;;;41156:7;41152:2;41137:27;;41146:4;41137:27;;;;;;;;;;;;41175:42;41196:4;41202:2;41206:7;41215:1;41175:20;:42::i;:::-;39199:2026;;39095:2130;;;:::o;36177:104::-;36246:27;36256:2;36260:8;36246:27;;;;;;;;;;;;:9;:27::i;:::-;36177:104;;:::o;54562:265::-;54635:5;54623:9;:17;54619:201;;;54658:9;54681:10;54673:24;;54736:5;54724:9;:17;;;;:::i;:::-;54673:88;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54657:104;;;54784:4;54776:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;54642:178;54619:201;54562:265;:::o;955:190::-;1080:4;1133;1104:25;1117:5;1124:4;1104:12;:25::i;:::-;:33;1097:40;;955:190;;;;;:::o;54268:184::-;54341:4;54365:79;54384:6;54392:10;;54431;54414:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;54404:39;;;;;;54365:18;:79::i;:::-;54358:86;;54268:184;;;:::o;31143:1109::-;31205:21;;:::i;:::-;31239:12;31254:7;31239:22;;31322:4;31303:15;:13;:15::i;:::-;:23;;:47;;;;;31337:13;;31330:4;:20;31303:47;31299:886;;;31371:31;31405:11;:17;31417:4;31405:17;;;;;;;;;;;31371:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31446:9;:16;;;31441:729;;31517:1;31491:28;;:9;:14;;;:28;;;31487:101;;31555:9;31548:16;;;;;;31487:101;31890:261;31897:4;31890:261;;;31930:6;;;;;;;;31975:11;:17;31987:4;31975:17;;;;;;;;;;;31963:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32049:1;32023:28;;:9;:14;;;:28;;;32019:109;;32091:9;32084:16;;;;;;32019:109;31890:261;;;31441:729;31352:833;31299:886;32213:31;;;;;;;;;;;;;;31143:1109;;;;:::o;7770:191::-;7844:16;7863:6;;;;;;;;;;;7844:25;;7889:8;7880:6;;:17;;;;;;;;;;;;;;;;;;7944:8;7913:40;;7934:8;7913:40;;;;;;;;;;;;7833:128;7770:191;:::o;9201:326::-;9261:4;9518:1;9496:7;:19;;;:23;9489:30;;9201:326;;;:::o;44840:667::-;45003:4;45040:2;45024:36;;;45061:12;:10;:12::i;:::-;45075:4;45081:7;45090:5;45024:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45020:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45275:1;45258:6;:13;:18;45254:235;;;45304:40;;;;;;;;;;;;;;45254:235;45447:6;45441:13;45432:6;45428:2;45424:15;45417:38;45020:480;45153:45;;;45143:55;;;:6;:55;;;;45136:62;;;44840:667;;;;;;:::o;2786:723::-;2842:13;3072:1;3063:5;:10;3059:53;;;3090:10;;;;;;;;;;;;;;;;;;;;;3059:53;3122:12;3137:5;3122:20;;3153:14;3178:78;3193:1;3185:4;:9;3178:78;;3211:8;;;;;:::i;:::-;;;;3242:2;3234:10;;;;;:::i;:::-;;;3178:78;;;3266:19;3298:6;3288:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3266:39;;3316:154;3332:1;3323:5;:10;3316:154;;3360:1;3350:11;;;;;:::i;:::-;;;3427:2;3419:5;:10;;;;:::i;:::-;3406:2;:24;;;;:::i;:::-;3393:39;;3376:6;3383;3376:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3456:2;3447:11;;;;;:::i;:::-;;;3316:154;;;3494:6;3480:21;;;;;2786:723;;;;:::o;46155:159::-;;;;;:::o;46973:158::-;;;;;:::o;36644:163::-;36767:32;36773:2;36777:8;36787:5;36794:4;36767:5;:32::i;:::-;36644:163;;;:::o;1507:675::-;1590:7;1610:20;1633:4;1610:27;;1653:9;1648:497;1672:5;:12;1668:1;:16;1648:497;;;1706:20;1729:5;1735:1;1729:8;;;;;;;;:::i;:::-;;;;;;;;1706:31;;1772:12;1756;:28;1752:382;;1899:42;1914:12;1928;1899:14;:42::i;:::-;1884:57;;1752:382;;;2076:42;2091:12;2105;2076:14;:42::i;:::-;2061:57;;1752:382;1691:454;1686:3;;;;;:::i;:::-;;;;1648:497;;;;2162:12;2155:19;;;1507:675;;;;:::o;37066:1775::-;37205:20;37228:13;;37205:36;;37270:1;37256:16;;:2;:16;;;37252:48;;;37281:19;;;;;;;;;;;;;;37252:48;37327:1;37315:8;:13;37311:44;;;37337:18;;;;;;;;;;;;;;37311:44;37368:61;37398:1;37402:2;37406:12;37420:8;37368:21;:61::i;:::-;37741:8;37706:12;:16;37719:2;37706:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37805:8;37765:12;:16;37778:2;37765:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37864:2;37831:11;:25;37843:12;37831:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37931:15;37881:11;:25;37893:12;37881:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37964:20;37987:12;37964:35;;38014:11;38043:8;38028:12;:23;38014:37;;38072:4;:23;;;;;38080:15;:2;:13;;;:15::i;:::-;38072:23;38068:641;;;38116:314;38172:12;38168:2;38147:38;;38164:1;38147:38;;;;;;;;;;;;38213:69;38252:1;38256:2;38260:14;;;;;;38276:5;38213:30;:69::i;:::-;38208:174;;38318:40;;;;;;;;;;;;;;38208:174;38425:3;38409:12;:19;;38116:314;;38511:12;38494:13;;:29;38490:43;;38525:8;;;38490:43;38068:641;;;38574:120;38630:14;;;;;;38626:2;38605:40;;38622:1;38605:40;;;;;;;;;;;;38689:3;38673:12;:19;;38574:120;;38068:641;38739:12;38723:13;:28;;;;37681:1082;;38773:60;38802:1;38806:2;38810:12;38824:8;38773:20;:60::i;:::-;37194:1647;37066:1775;;;;:::o;2190:224::-;2258:13;2321:1;2315:4;2308:15;2350:1;2344:4;2337:15;2391:4;2385;2375:21;2366:30;;2190:224;;;;:::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;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:139::-;2309:5;2347:6;2334:20;2325:29;;2363:33;2390:5;2363:33;:::i;:::-;2263:139;;;;:::o;2408:137::-;2453:5;2491:6;2478:20;2469:29;;2507:32;2533:5;2507:32;:::i;:::-;2408:137;;;;:::o;2551:141::-;2607:5;2638:6;2632:13;2623:22;;2654:32;2680:5;2654:32;:::i;:::-;2551:141;;;;:::o;2711:338::-;2766:5;2815:3;2808:4;2800:6;2796:17;2792:27;2782:122;;2823:79;;:::i;:::-;2782:122;2940:6;2927:20;2965:78;3039:3;3031:6;3024:4;3016:6;3012:17;2965:78;:::i;:::-;2956:87;;2772:277;2711:338;;;;:::o;3069:340::-;3125:5;3174:3;3167:4;3159:6;3155:17;3151:27;3141:122;;3182:79;;:::i;:::-;3141:122;3299:6;3286:20;3324:79;3399:3;3391:6;3384:4;3376:6;3372:17;3324:79;:::i;:::-;3315:88;;3131:278;3069:340;;;;:::o;3415:139::-;3461:5;3499:6;3486:20;3477:29;;3515:33;3542:5;3515:33;:::i;:::-;3415:139;;;;:::o;3560:329::-;3619:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:119;;;3674:79;;:::i;:::-;3636:119;3794:1;3819:53;3864:7;3855:6;3844:9;3840:22;3819:53;:::i;:::-;3809:63;;3765:117;3560:329;;;;:::o;3895:474::-;3963:6;3971;4020:2;4008:9;3999:7;3995:23;3991:32;3988:119;;;4026:79;;:::i;:::-;3988:119;4146:1;4171:53;4216:7;4207:6;4196:9;4192:22;4171:53;:::i;:::-;4161:63;;4117:117;4273:2;4299:53;4344:7;4335:6;4324:9;4320:22;4299:53;:::i;:::-;4289:63;;4244:118;3895:474;;;;;:::o;4375:619::-;4452:6;4460;4468;4517:2;4505:9;4496:7;4492:23;4488:32;4485:119;;;4523:79;;:::i;:::-;4485:119;4643:1;4668:53;4713:7;4704:6;4693:9;4689:22;4668:53;:::i;:::-;4658:63;;4614:117;4770:2;4796:53;4841:7;4832:6;4821:9;4817:22;4796:53;:::i;:::-;4786:63;;4741:118;4898:2;4924:53;4969:7;4960:6;4949:9;4945:22;4924:53;:::i;:::-;4914:63;;4869:118;4375:619;;;;;:::o;5000:943::-;5095:6;5103;5111;5119;5168:3;5156:9;5147:7;5143:23;5139:33;5136:120;;;5175:79;;:::i;:::-;5136:120;5295:1;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5266:117;5422:2;5448:53;5493:7;5484:6;5473:9;5469:22;5448:53;:::i;:::-;5438:63;;5393:118;5550:2;5576:53;5621:7;5612:6;5601:9;5597:22;5576:53;:::i;:::-;5566:63;;5521:118;5706:2;5695:9;5691:18;5678:32;5737:18;5729:6;5726:30;5723:117;;;5759:79;;:::i;:::-;5723:117;5864:62;5918:7;5909:6;5898:9;5894:22;5864:62;:::i;:::-;5854:72;;5649:287;5000:943;;;;;;;:::o;5949:684::-;6042:6;6050;6099:2;6087:9;6078:7;6074:23;6070:32;6067:119;;;6105:79;;:::i;:::-;6067:119;6225:1;6250:53;6295:7;6286:6;6275:9;6271:22;6250:53;:::i;:::-;6240:63;;6196:117;6380:2;6369:9;6365:18;6352:32;6411:18;6403:6;6400:30;6397:117;;;6433:79;;:::i;:::-;6397:117;6538:78;6608:7;6599:6;6588:9;6584:22;6538:78;:::i;:::-;6528:88;;6323:303;5949:684;;;;;:::o;6639:468::-;6704:6;6712;6761:2;6749:9;6740:7;6736:23;6732:32;6729:119;;;6767:79;;:::i;:::-;6729:119;6887:1;6912:53;6957:7;6948:6;6937:9;6933:22;6912:53;:::i;:::-;6902:63;;6858:117;7014:2;7040:50;7082:7;7073:6;7062:9;7058:22;7040:50;:::i;:::-;7030:60;;6985:115;6639:468;;;;;:::o;7113:474::-;7181:6;7189;7238:2;7226:9;7217:7;7213:23;7209:32;7206:119;;;7244:79;;:::i;:::-;7206:119;7364:1;7389:53;7434:7;7425:6;7414:9;7410:22;7389:53;:::i;:::-;7379:63;;7335:117;7491:2;7517:53;7562:7;7553:6;7542:9;7538:22;7517:53;:::i;:::-;7507:63;;7462:118;7113:474;;;;;:::o;7593:323::-;7649:6;7698:2;7686:9;7677:7;7673:23;7669:32;7666:119;;;7704:79;;:::i;:::-;7666:119;7824:1;7849:50;7891:7;7882:6;7871:9;7867:22;7849:50;:::i;:::-;7839:60;;7795:114;7593:323;;;;:::o;7922:648::-;7997:6;8005;8054:2;8042:9;8033:7;8029:23;8025:32;8022:119;;;8060:79;;:::i;:::-;8022:119;8180:1;8205:50;8247:7;8238:6;8227:9;8223:22;8205:50;:::i;:::-;8195:60;;8151:114;8332:2;8321:9;8317:18;8304:32;8363:18;8355:6;8352:30;8349:117;;;8385:79;;:::i;:::-;8349:117;8490:63;8545:7;8536:6;8525:9;8521:22;8490:63;:::i;:::-;8480:73;;8275:288;7922:648;;;;;:::o;8576:329::-;8635:6;8684:2;8672:9;8663:7;8659:23;8655:32;8652:119;;;8690:79;;:::i;:::-;8652:119;8810:1;8835:53;8880:7;8871:6;8860:9;8856:22;8835:53;:::i;:::-;8825:63;;8781:117;8576:329;;;;:::o;8911:327::-;8969:6;9018:2;9006:9;8997:7;8993:23;8989:32;8986:119;;;9024:79;;:::i;:::-;8986:119;9144:1;9169:52;9213:7;9204:6;9193:9;9189:22;9169:52;:::i;:::-;9159:62;;9115:116;8911:327;;;;:::o;9244:349::-;9313:6;9362:2;9350:9;9341:7;9337:23;9333:32;9330:119;;;9368:79;;:::i;:::-;9330:119;9488:1;9513:63;9568:7;9559:6;9548:9;9544:22;9513:63;:::i;:::-;9503:73;;9459:127;9244:349;;;;:::o;9599:509::-;9668:6;9717:2;9705:9;9696:7;9692:23;9688:32;9685:119;;;9723:79;;:::i;:::-;9685:119;9871:1;9860:9;9856:17;9843:31;9901:18;9893:6;9890:30;9887:117;;;9923:79;;:::i;:::-;9887:117;10028:63;10083:7;10074:6;10063:9;10059:22;10028:63;:::i;:::-;10018:73;;9814:287;9599:509;;;;:::o;10114:329::-;10173:6;10222:2;10210:9;10201:7;10197:23;10193:32;10190:119;;;10228:79;;:::i;:::-;10190:119;10348:1;10373:53;10418:7;10409:6;10398:9;10394:22;10373:53;:::i;:::-;10363:63;;10319:117;10114:329;;;;:::o;10449:474::-;10517:6;10525;10574:2;10562:9;10553:7;10549:23;10545:32;10542:119;;;10580:79;;:::i;:::-;10542:119;10700:1;10725:53;10770:7;10761:6;10750:9;10746:22;10725:53;:::i;:::-;10715:63;;10671:117;10827:2;10853:53;10898:7;10889:6;10878:9;10874:22;10853:53;:::i;:::-;10843:63;;10798:118;10449:474;;;;;:::o;10929:684::-;11022:6;11030;11079:2;11067:9;11058:7;11054:23;11050:32;11047:119;;;11085:79;;:::i;:::-;11047:119;11205:1;11230:53;11275:7;11266:6;11255:9;11251:22;11230:53;:::i;:::-;11220:63;;11176:117;11360:2;11349:9;11345:18;11332:32;11391:18;11383:6;11380:30;11377:117;;;11413:79;;:::i;:::-;11377:117;11518:78;11588:7;11579:6;11568:9;11564:22;11518:78;:::i;:::-;11508:88;;11303:303;10929:684;;;;;:::o;11619:179::-;11688:10;11709:46;11751:3;11743:6;11709:46;:::i;:::-;11787:4;11782:3;11778:14;11764:28;;11619:179;;;;:::o;11804:118::-;11891:24;11909:5;11891:24;:::i;:::-;11886:3;11879:37;11804:118;;:::o;11928:157::-;12033:45;12053:24;12071:5;12053:24;:::i;:::-;12033:45;:::i;:::-;12028:3;12021:58;11928:157;;:::o;12121:732::-;12240:3;12269:54;12317:5;12269:54;:::i;:::-;12339:86;12418:6;12413:3;12339:86;:::i;:::-;12332:93;;12449:56;12499:5;12449:56;:::i;:::-;12528:7;12559:1;12544:284;12569:6;12566:1;12563:13;12544:284;;;12645:6;12639:13;12672:63;12731:3;12716:13;12672:63;:::i;:::-;12665:70;;12758:60;12811:6;12758:60;:::i;:::-;12748:70;;12604:224;12591:1;12588;12584:9;12579:14;;12544:284;;;12548:14;12844:3;12837:10;;12245:608;;;12121:732;;;;:::o;12859:109::-;12940:21;12955:5;12940:21;:::i;:::-;12935:3;12928:34;12859:109;;:::o;12974:118::-;13061:24;13079:5;13061:24;:::i;:::-;13056:3;13049:37;12974:118;;:::o;13098:360::-;13184:3;13212:38;13244:5;13212:38;:::i;:::-;13266:70;13329:6;13324:3;13266:70;:::i;:::-;13259:77;;13345:52;13390:6;13385:3;13378:4;13371:5;13367:16;13345:52;:::i;:::-;13422:29;13444:6;13422:29;:::i;:::-;13417:3;13413:39;13406:46;;13188:270;13098:360;;;;:::o;13464:364::-;13552:3;13580:39;13613:5;13580:39;:::i;:::-;13635:71;13699:6;13694:3;13635:71;:::i;:::-;13628:78;;13715:52;13760:6;13755:3;13748:4;13741:5;13737:16;13715:52;:::i;:::-;13792:29;13814:6;13792:29;:::i;:::-;13787:3;13783:39;13776:46;;13556:272;13464:364;;;;:::o;13834:377::-;13940:3;13968:39;14001:5;13968:39;:::i;:::-;14023:89;14105:6;14100:3;14023:89;:::i;:::-;14016:96;;14121:52;14166:6;14161:3;14154:4;14147:5;14143:16;14121:52;:::i;:::-;14198:6;14193:3;14189:16;14182:23;;13944:267;13834:377;;;;:::o;14241:845::-;14344:3;14381:5;14375:12;14410:36;14436:9;14410:36;:::i;:::-;14462:89;14544:6;14539:3;14462:89;:::i;:::-;14455:96;;14582:1;14571:9;14567:17;14598:1;14593:137;;;;14744:1;14739:341;;;;14560:520;;14593:137;14677:4;14673:9;14662;14658:25;14653:3;14646:38;14713:6;14708:3;14704:16;14697:23;;14593:137;;14739:341;14806:38;14838:5;14806:38;:::i;:::-;14866:1;14880:154;14894:6;14891:1;14888:13;14880:154;;;14968:7;14962:14;14958:1;14953:3;14949:11;14942:35;15018:1;15009:7;15005:15;14994:26;;14916:4;14913:1;14909:12;14904:17;;14880:154;;;15063:6;15058:3;15054:16;15047:23;;14746:334;;14560:520;;14348:738;;14241:845;;;;:::o;15092:366::-;15234:3;15255:67;15319:2;15314:3;15255:67;:::i;:::-;15248:74;;15331:93;15420:3;15331:93;:::i;:::-;15449:2;15444:3;15440:12;15433:19;;15092:366;;;:::o;15464:::-;15606:3;15627:67;15691:2;15686:3;15627:67;:::i;:::-;15620:74;;15703:93;15792:3;15703:93;:::i;:::-;15821:2;15816:3;15812:12;15805:19;;15464:366;;;:::o;15836:::-;15978:3;15999:67;16063:2;16058:3;15999:67;:::i;:::-;15992:74;;16075:93;16164:3;16075:93;:::i;:::-;16193:2;16188:3;16184:12;16177:19;;15836:366;;;:::o;16208:::-;16350:3;16371:67;16435:2;16430:3;16371:67;:::i;:::-;16364:74;;16447:93;16536:3;16447:93;:::i;:::-;16565:2;16560:3;16556:12;16549:19;;16208:366;;;:::o;16580:::-;16722:3;16743:67;16807:2;16802:3;16743:67;:::i;:::-;16736:74;;16819:93;16908:3;16819:93;:::i;:::-;16937:2;16932:3;16928:12;16921:19;;16580:366;;;:::o;16952:::-;17094:3;17115:67;17179:2;17174:3;17115:67;:::i;:::-;17108:74;;17191:93;17280:3;17191:93;:::i;:::-;17309:2;17304:3;17300:12;17293:19;;16952:366;;;:::o;17324:::-;17466:3;17487:67;17551:2;17546:3;17487:67;:::i;:::-;17480:74;;17563:93;17652:3;17563:93;:::i;:::-;17681:2;17676:3;17672:12;17665:19;;17324:366;;;:::o;17696:::-;17838:3;17859:67;17923:2;17918:3;17859:67;:::i;:::-;17852:74;;17935:93;18024:3;17935:93;:::i;:::-;18053:2;18048:3;18044:12;18037:19;;17696:366;;;:::o;18068:::-;18210:3;18231:67;18295:2;18290:3;18231:67;:::i;:::-;18224:74;;18307:93;18396:3;18307:93;:::i;:::-;18425:2;18420:3;18416:12;18409:19;;18068:366;;;:::o;18440:::-;18582:3;18603:67;18667:2;18662:3;18603:67;:::i;:::-;18596:74;;18679:93;18768:3;18679:93;:::i;:::-;18797:2;18792:3;18788:12;18781:19;;18440:366;;;:::o;18812:::-;18954:3;18975:67;19039:2;19034:3;18975:67;:::i;:::-;18968:74;;19051:93;19140:3;19051:93;:::i;:::-;19169:2;19164:3;19160:12;19153:19;;18812:366;;;:::o;19184:::-;19326:3;19347:67;19411:2;19406:3;19347:67;:::i;:::-;19340:74;;19423:93;19512:3;19423:93;:::i;:::-;19541:2;19536:3;19532:12;19525:19;;19184:366;;;:::o;19556:::-;19698:3;19719:67;19783:2;19778:3;19719:67;:::i;:::-;19712:74;;19795:93;19884:3;19795:93;:::i;:::-;19913:2;19908:3;19904:12;19897:19;;19556:366;;;:::o;19928:::-;20070:3;20091:67;20155:2;20150:3;20091:67;:::i;:::-;20084:74;;20167:93;20256:3;20167:93;:::i;:::-;20285:2;20280:3;20276:12;20269:19;;19928:366;;;:::o;20300:::-;20442:3;20463:67;20527:2;20522:3;20463:67;:::i;:::-;20456:74;;20539:93;20628:3;20539:93;:::i;:::-;20657:2;20652:3;20648:12;20641:19;;20300:366;;;:::o;20672:398::-;20831:3;20852:83;20933:1;20928:3;20852:83;:::i;:::-;20845:90;;20944:93;21033:3;20944:93;:::i;:::-;21062:1;21057:3;21053:11;21046:18;;20672:398;;;:::o;21076:366::-;21218:3;21239:67;21303:2;21298:3;21239:67;:::i;:::-;21232:74;;21315:93;21404:3;21315:93;:::i;:::-;21433:2;21428:3;21424:12;21417:19;;21076:366;;;:::o;21448:::-;21590:3;21611:67;21675:2;21670:3;21611:67;:::i;:::-;21604:74;;21687:93;21776:3;21687:93;:::i;:::-;21805:2;21800:3;21796:12;21789:19;;21448:366;;;:::o;21820:::-;21962:3;21983:67;22047:2;22042:3;21983:67;:::i;:::-;21976:74;;22059:93;22148:3;22059:93;:::i;:::-;22177:2;22172:3;22168:12;22161:19;;21820:366;;;:::o;22192:108::-;22269:24;22287:5;22269:24;:::i;:::-;22264:3;22257:37;22192:108;;:::o;22306:118::-;22393:24;22411:5;22393:24;:::i;:::-;22388:3;22381:37;22306:118;;:::o;22430:256::-;22542:3;22557:75;22628:3;22619:6;22557:75;:::i;:::-;22657:2;22652:3;22648:12;22641:19;;22677:3;22670:10;;22430:256;;;;:::o;22692:589::-;22917:3;22939:92;23027:3;23018:6;22939:92;:::i;:::-;22932:99;;23048:95;23139:3;23130:6;23048:95;:::i;:::-;23041:102;;23160:95;23251:3;23242:6;23160:95;:::i;:::-;23153:102;;23272:3;23265:10;;22692:589;;;;;;:::o;23287:379::-;23471:3;23493:147;23636:3;23493:147;:::i;:::-;23486:154;;23657:3;23650:10;;23287:379;;;:::o;23672:222::-;23765:4;23803:2;23792:9;23788:18;23780:26;;23816:71;23884:1;23873:9;23869:17;23860:6;23816:71;:::i;:::-;23672:222;;;;:::o;23900:640::-;24095:4;24133:3;24122:9;24118:19;24110:27;;24147:71;24215:1;24204:9;24200:17;24191:6;24147:71;:::i;:::-;24228:72;24296:2;24285:9;24281:18;24272:6;24228:72;:::i;:::-;24310;24378:2;24367:9;24363:18;24354:6;24310:72;:::i;:::-;24429:9;24423:4;24419:20;24414:2;24403:9;24399:18;24392:48;24457:76;24528:4;24519:6;24457:76;:::i;:::-;24449:84;;23900:640;;;;;;;:::o;24546:373::-;24689:4;24727:2;24716:9;24712:18;24704:26;;24776:9;24770:4;24766:20;24762:1;24751:9;24747:17;24740:47;24804:108;24907:4;24898:6;24804:108;:::i;:::-;24796:116;;24546:373;;;;:::o;24925:210::-;25012:4;25050:2;25039:9;25035:18;25027:26;;25063:65;25125:1;25114:9;25110:17;25101:6;25063:65;:::i;:::-;24925:210;;;;:::o;25141:222::-;25234:4;25272:2;25261:9;25257:18;25249:26;;25285:71;25353:1;25342:9;25338:17;25329:6;25285:71;:::i;:::-;25141:222;;;;:::o;25369:313::-;25482:4;25520:2;25509:9;25505:18;25497:26;;25569:9;25563:4;25559:20;25555:1;25544:9;25540:17;25533:47;25597:78;25670:4;25661:6;25597:78;:::i;:::-;25589:86;;25369:313;;;;:::o;25688:419::-;25854:4;25892:2;25881:9;25877:18;25869:26;;25941:9;25935:4;25931:20;25927:1;25916:9;25912:17;25905:47;25969:131;26095:4;25969:131;:::i;:::-;25961:139;;25688:419;;;:::o;26113:::-;26279:4;26317:2;26306:9;26302:18;26294:26;;26366:9;26360:4;26356:20;26352:1;26341:9;26337:17;26330:47;26394:131;26520:4;26394:131;:::i;:::-;26386:139;;26113:419;;;:::o;26538:::-;26704:4;26742:2;26731:9;26727:18;26719:26;;26791:9;26785:4;26781:20;26777:1;26766:9;26762:17;26755:47;26819:131;26945:4;26819:131;:::i;:::-;26811:139;;26538:419;;;:::o;26963:::-;27129:4;27167:2;27156:9;27152:18;27144:26;;27216:9;27210:4;27206:20;27202:1;27191:9;27187:17;27180:47;27244:131;27370:4;27244:131;:::i;:::-;27236:139;;26963:419;;;:::o;27388:::-;27554:4;27592:2;27581:9;27577:18;27569:26;;27641:9;27635:4;27631:20;27627:1;27616:9;27612:17;27605:47;27669:131;27795:4;27669:131;:::i;:::-;27661:139;;27388:419;;;:::o;27813:::-;27979:4;28017:2;28006:9;28002:18;27994:26;;28066:9;28060:4;28056:20;28052:1;28041:9;28037:17;28030:47;28094:131;28220:4;28094:131;:::i;:::-;28086:139;;27813:419;;;:::o;28238:::-;28404:4;28442:2;28431:9;28427:18;28419:26;;28491:9;28485:4;28481:20;28477:1;28466:9;28462:17;28455:47;28519:131;28645:4;28519:131;:::i;:::-;28511:139;;28238:419;;;:::o;28663:::-;28829:4;28867:2;28856:9;28852:18;28844:26;;28916:9;28910:4;28906:20;28902:1;28891:9;28887:17;28880:47;28944:131;29070:4;28944:131;:::i;:::-;28936:139;;28663:419;;;:::o;29088:::-;29254:4;29292:2;29281:9;29277:18;29269:26;;29341:9;29335:4;29331:20;29327:1;29316:9;29312:17;29305:47;29369:131;29495:4;29369:131;:::i;:::-;29361:139;;29088:419;;;:::o;29513:::-;29679:4;29717:2;29706:9;29702:18;29694:26;;29766:9;29760:4;29756:20;29752:1;29741:9;29737:17;29730:47;29794:131;29920:4;29794:131;:::i;:::-;29786:139;;29513:419;;;:::o;29938:::-;30104:4;30142:2;30131:9;30127:18;30119:26;;30191:9;30185:4;30181:20;30177:1;30166:9;30162:17;30155:47;30219:131;30345:4;30219:131;:::i;:::-;30211:139;;29938:419;;;:::o;30363:::-;30529:4;30567:2;30556:9;30552:18;30544:26;;30616:9;30610:4;30606:20;30602:1;30591:9;30587:17;30580:47;30644:131;30770:4;30644:131;:::i;:::-;30636:139;;30363:419;;;:::o;30788:::-;30954:4;30992:2;30981:9;30977:18;30969:26;;31041:9;31035:4;31031:20;31027:1;31016:9;31012:17;31005:47;31069:131;31195:4;31069:131;:::i;:::-;31061:139;;30788:419;;;:::o;31213:::-;31379:4;31417:2;31406:9;31402:18;31394:26;;31466:9;31460:4;31456:20;31452:1;31441:9;31437:17;31430:47;31494:131;31620:4;31494:131;:::i;:::-;31486:139;;31213:419;;;:::o;31638:::-;31804:4;31842:2;31831:9;31827:18;31819:26;;31891:9;31885:4;31881:20;31877:1;31866:9;31862:17;31855:47;31919:131;32045:4;31919:131;:::i;:::-;31911:139;;31638:419;;;:::o;32063:::-;32229:4;32267:2;32256:9;32252:18;32244:26;;32316:9;32310:4;32306:20;32302:1;32291:9;32287:17;32280:47;32344:131;32470:4;32344:131;:::i;:::-;32336:139;;32063:419;;;:::o;32488:::-;32654:4;32692:2;32681:9;32677:18;32669:26;;32741:9;32735:4;32731:20;32727:1;32716:9;32712:17;32705:47;32769:131;32895:4;32769:131;:::i;:::-;32761:139;;32488:419;;;:::o;32913:::-;33079:4;33117:2;33106:9;33102:18;33094:26;;33166:9;33160:4;33156:20;33152:1;33141:9;33137:17;33130:47;33194:131;33320:4;33194:131;:::i;:::-;33186:139;;32913:419;;;:::o;33338:222::-;33431:4;33469:2;33458:9;33454:18;33446:26;;33482:71;33550:1;33539:9;33535:17;33526:6;33482:71;:::i;:::-;33338:222;;;;:::o;33566:129::-;33600:6;33627:20;;:::i;:::-;33617:30;;33656:33;33684:4;33676:6;33656:33;:::i;:::-;33566:129;;;:::o;33701:75::-;33734:6;33767:2;33761:9;33751:19;;33701:75;:::o;33782:311::-;33859:4;33949:18;33941:6;33938:30;33935:56;;;33971:18;;:::i;:::-;33935:56;34021:4;34013:6;34009:17;34001:25;;34081:4;34075;34071:15;34063:23;;33782:311;;;:::o;34099:307::-;34160:4;34250:18;34242:6;34239:30;34236:56;;;34272:18;;:::i;:::-;34236:56;34310:29;34332:6;34310:29;:::i;:::-;34302:37;;34394:4;34388;34384:15;34376:23;;34099:307;;;:::o;34412:308::-;34474:4;34564:18;34556:6;34553:30;34550:56;;;34586:18;;:::i;:::-;34550:56;34624:29;34646:6;34624:29;:::i;:::-;34616:37;;34708:4;34702;34698:15;34690:23;;34412:308;;;:::o;34726:132::-;34793:4;34816:3;34808:11;;34846:4;34841:3;34837:14;34829:22;;34726:132;;;:::o;34864:141::-;34913:4;34936:3;34928:11;;34959:3;34956:1;34949:14;34993:4;34990:1;34980:18;34972:26;;34864:141;;;:::o;35011:114::-;35078:6;35112:5;35106:12;35096:22;;35011:114;;;:::o;35131:98::-;35182:6;35216:5;35210:12;35200:22;;35131:98;;;:::o;35235:99::-;35287:6;35321:5;35315:12;35305:22;;35235:99;;;:::o;35340:113::-;35410:4;35442;35437:3;35433:14;35425:22;;35340:113;;;:::o;35459:184::-;35558:11;35592:6;35587:3;35580:19;35632:4;35627:3;35623:14;35608:29;;35459:184;;;;:::o;35649:168::-;35732:11;35766:6;35761:3;35754:19;35806:4;35801:3;35797:14;35782:29;;35649:168;;;;:::o;35823:147::-;35924:11;35961:3;35946:18;;35823:147;;;;:::o;35976:169::-;36060:11;36094:6;36089:3;36082:19;36134:4;36129:3;36125:14;36110:29;;35976:169;;;;:::o;36151:148::-;36253:11;36290:3;36275:18;;36151:148;;;;:::o;36305:305::-;36345:3;36364:20;36382:1;36364:20;:::i;:::-;36359:25;;36398:20;36416:1;36398:20;:::i;:::-;36393:25;;36552:1;36484:66;36480:74;36477:1;36474:81;36471:107;;;36558:18;;:::i;:::-;36471:107;36602:1;36599;36595:9;36588:16;;36305:305;;;;:::o;36616:185::-;36656:1;36673:20;36691:1;36673:20;:::i;:::-;36668:25;;36707:20;36725:1;36707:20;:::i;:::-;36702:25;;36746:1;36736:35;;36751:18;;:::i;:::-;36736:35;36793:1;36790;36786:9;36781:14;;36616:185;;;;:::o;36807:348::-;36847:7;36870:20;36888:1;36870:20;:::i;:::-;36865:25;;36904:20;36922:1;36904:20;:::i;:::-;36899:25;;37092:1;37024:66;37020:74;37017:1;37014:81;37009:1;37002:9;36995:17;36991:105;36988:131;;;37099:18;;:::i;:::-;36988:131;37147:1;37144;37140:9;37129:20;;36807:348;;;;:::o;37161:191::-;37201:4;37221:20;37239:1;37221:20;:::i;:::-;37216:25;;37255:20;37273:1;37255:20;:::i;:::-;37250:25;;37294:1;37291;37288:8;37285:34;;;37299:18;;:::i;:::-;37285:34;37344:1;37341;37337:9;37329:17;;37161:191;;;;:::o;37358:96::-;37395:7;37424:24;37442:5;37424:24;:::i;:::-;37413:35;;37358:96;;;:::o;37460:90::-;37494:7;37537:5;37530:13;37523:21;37512:32;;37460:90;;;:::o;37556:77::-;37593:7;37622:5;37611:16;;37556:77;;;:::o;37639:149::-;37675:7;37715:66;37708:5;37704:78;37693:89;;37639:149;;;:::o;37794:126::-;37831:7;37871:42;37864:5;37860:54;37849:65;;37794:126;;;:::o;37926:77::-;37963:7;37992:5;37981:16;;37926:77;;;:::o;38009:154::-;38093:6;38088:3;38083;38070:30;38155:1;38146:6;38141:3;38137:16;38130:27;38009:154;;;:::o;38169:307::-;38237:1;38247:113;38261:6;38258:1;38255:13;38247:113;;;38346:1;38341:3;38337:11;38331:18;38327:1;38322:3;38318:11;38311:39;38283:2;38280:1;38276:10;38271:15;;38247:113;;;38378:6;38375:1;38372:13;38369:101;;;38458:1;38449:6;38444:3;38440:16;38433:27;38369:101;38218:258;38169:307;;;:::o;38482:320::-;38526:6;38563:1;38557:4;38553:12;38543:22;;38610:1;38604:4;38600:12;38631:18;38621:81;;38687:4;38679:6;38675:17;38665:27;;38621:81;38749:2;38741:6;38738:14;38718:18;38715:38;38712:84;;;38768:18;;:::i;:::-;38712:84;38533:269;38482:320;;;:::o;38808:281::-;38891:27;38913:4;38891:27;:::i;:::-;38883:6;38879:40;39021:6;39009:10;39006:22;38985:18;38973:10;38970:34;38967:62;38964:88;;;39032:18;;:::i;:::-;38964:88;39072:10;39068:2;39061:22;38851:238;38808:281;;:::o;39095:233::-;39134:3;39157:24;39175:5;39157:24;:::i;:::-;39148:33;;39203:66;39196:5;39193:77;39190:103;;;39273:18;;:::i;:::-;39190:103;39320:1;39313:5;39309:13;39302:20;;39095:233;;;:::o;39334:100::-;39373:7;39402:26;39422:5;39402:26;:::i;:::-;39391:37;;39334:100;;;:::o;39440:94::-;39479:7;39508:20;39522:5;39508:20;:::i;:::-;39497:31;;39440:94;;;:::o;39540:176::-;39572:1;39589:20;39607:1;39589:20;:::i;:::-;39584:25;;39623:20;39641:1;39623:20;:::i;:::-;39618:25;;39662:1;39652:35;;39667:18;;:::i;:::-;39652:35;39708:1;39705;39701:9;39696:14;;39540:176;;;;:::o;39722:180::-;39770:77;39767:1;39760:88;39867:4;39864:1;39857:15;39891:4;39888:1;39881:15;39908:180;39956:77;39953:1;39946:88;40053:4;40050:1;40043:15;40077:4;40074:1;40067:15;40094:180;40142:77;40139:1;40132:88;40239:4;40236:1;40229:15;40263:4;40260:1;40253:15;40280:180;40328:77;40325:1;40318:88;40425:4;40422:1;40415:15;40449:4;40446:1;40439:15;40466:180;40514:77;40511:1;40504:88;40611:4;40608:1;40601:15;40635:4;40632:1;40625:15;40652:117;40761:1;40758;40751:12;40775:117;40884:1;40881;40874:12;40898:117;41007:1;41004;40997:12;41021:117;41130:1;41127;41120:12;41144:117;41253:1;41250;41243:12;41267:102;41308:6;41359:2;41355:7;41350:2;41343:5;41339:14;41335:28;41325:38;;41267:102;;;:::o;41375:94::-;41408:8;41456:5;41452:2;41448:14;41427:35;;41375:94;;;:::o;41475:166::-;41615:18;41611:1;41603:6;41599:14;41592:42;41475:166;:::o;41647:164::-;41787:16;41783:1;41775:6;41771:14;41764:40;41647:164;:::o;41817:170::-;41957:22;41953:1;41945:6;41941:14;41934:46;41817:170;:::o;41993:225::-;42133:34;42129:1;42121:6;42117:14;42110:58;42202:8;42197:2;42189:6;42185:15;42178:33;41993:225;:::o;42224:165::-;42364:17;42360:1;42352:6;42348:14;42341:41;42224:165;:::o;42395:169::-;42535:21;42531:1;42523:6;42519:14;42512:45;42395:169;:::o;42570:172::-;42710:24;42706:1;42698:6;42694:14;42687:48;42570:172;:::o;42748:::-;42888:24;42884:1;42876:6;42872:14;42865:48;42748:172;:::o;42926:169::-;43066:21;43062:1;43054:6;43050:14;43043:45;42926:169;:::o;43101:175::-;43241:27;43237:1;43229:6;43225:14;43218:51;43101:175;:::o;43282:182::-;43422:34;43418:1;43410:6;43406:14;43399:58;43282:182;:::o;43470:234::-;43610:34;43606:1;43598:6;43594:14;43587:58;43679:17;43674:2;43666:6;43662:15;43655:42;43470:234;:::o;43710:167::-;43850:19;43846:1;43838:6;43834:14;43827:43;43710:167;:::o;43883:169::-;44023:21;44019:1;44011:6;44007:14;44000:45;43883:169;:::o;44058:170::-;44198:22;44194:1;44186:6;44182:14;44175:46;44058:170;:::o;44234:114::-;;:::o;44354:168::-;44494:20;44490:1;44482:6;44478:14;44471:44;44354:168;:::o;44528:171::-;44668:23;44664:1;44656:6;44652:14;44645:47;44528:171;:::o;44705:166::-;44845:18;44841:1;44833:6;44829:14;44822:42;44705:166;:::o;44877:122::-;44950:24;44968:5;44950:24;:::i;:::-;44943:5;44940:35;44930:63;;44989:1;44986;44979:12;44930:63;44877:122;:::o;45005:116::-;45075:21;45090:5;45075:21;:::i;:::-;45068:5;45065:32;45055:60;;45111:1;45108;45101:12;45055:60;45005:116;:::o;45127:122::-;45200:24;45218:5;45200:24;:::i;:::-;45193:5;45190:35;45180:63;;45239:1;45236;45229:12;45180:63;45127:122;:::o;45255:120::-;45327:23;45344:5;45327:23;:::i;:::-;45320:5;45317:34;45307:62;;45365:1;45362;45355:12;45307:62;45255:120;:::o;45381:122::-;45454:24;45472:5;45454:24;:::i;:::-;45447:5;45444:35;45434:63;;45493:1;45490;45483:12;45434:63;45381:122;:::o
Swarm Source
ipfs://916862c8e9b5bd29d5f735c0af862ac16b6a84b21f6e293b3c324f4b6ea450f8
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.