ERC-721
Overview
Max Total Supply
950 SDLK
Holders
348
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 SDLKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ShenmiDonaldDuck
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-10 */ /** *Submitted for verification at Etherscan.io on 2023-03-12 */ /** *Submitted for verification at Etherscan.io on 2022-08-09 */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/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: 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 1; } /** * @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; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ 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 { 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 (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 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) 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; 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 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 {} } pragma solidity ^0.8.0; contract ShenmiDonaldDuck is ERC721A, Ownable, ReentrancyGuard { using Address for address; using Strings for uint; string public baseTokenURI = "ipfs://QmT92SnamUnUERWqu3sTYD1dsrFDZaBd3YV8EcYYKkWKY8/"; uint256 public maxSupply = 1999; uint256 public MAX_MINTS_PER_TX = 20; uint256 public PUBLIC_SALE_PRICE = 0.003 ether; uint256 public NUM_FREE_MINTS = 550; uint256 public MAX_FREE_PER_WALLET = 2; uint256 public freeNFTAlreadyMinted = 0; bool public isPublicSaleActive = false; constructor( ) ERC721A("ShenmiDonaldDuck", "SDLK") { } function mint(uint256 numberOfTokens) external payable { require(isPublicSaleActive, "Public sale is not open"); require(totalSupply() + numberOfTokens < maxSupply + 1, "No more"); if(freeNFTAlreadyMinted + numberOfTokens > NUM_FREE_MINTS){ require( (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value, "Incorrect ETH value sent" ); } else { if (balanceOf(msg.sender) + numberOfTokens > MAX_FREE_PER_WALLET) { require( (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value, "Incorrect ETH value sent" ); require( numberOfTokens <= MAX_MINTS_PER_TX, "Max mints per transaction exceeded" ); } else { require( numberOfTokens <= MAX_FREE_PER_WALLET, "Max mints per transaction exceeded" ); freeNFTAlreadyMinted += numberOfTokens; } } _safeMint(msg.sender, numberOfTokens); } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function treasuryMint(uint quantity) public onlyOwner { require( quantity > 0, "Invalid mint amount" ); require( totalSupply() + quantity <= maxSupply, "Maximum supply exceeded" ); _safeMint(msg.sender, quantity); } function withdraw() public onlyOwner nonReentrant { Address.sendValue(payable(msg.sender), address(this).balance); } function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json")); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function setNumFreeMints(uint256 _numfreemints) external onlyOwner { NUM_FREE_MINTS = _numfreemints; } function setSalePrice(uint256 _price) external onlyOwner { PUBLIC_SALE_PRICE = _price; } function setMaxLimitPerTransaction(uint256 _limit) external onlyOwner { MAX_MINTS_PER_TX = _limit; } function setFreeLimitPerWallet(uint256 _limit) external onlyOwner { MAX_FREE_PER_WALLET = _limit; } }
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":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeNFTAlreadyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setFreeLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051806060016040528060368152602001620044b560369139600a90816200002e9190620004a5565b506107cf600b556014600c55660aa87bee538000600d55610226600e556002600f5560006010556000601160006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280601081526020017f5368656e6d69446f6e616c644475636b000000000000000000000000000000008152506040518060400160405280600481526020017f53444c4b000000000000000000000000000000000000000000000000000000008152508160029081620000fb9190620004a5565b5080600390816200010d9190620004a5565b506200011e6200015460201b60201c565b6000819055505050620001466200013a6200015d60201b60201c565b6200016560201b60201c565b60016009819055506200058c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002ad57607f821691505b602082108103620002c357620002c262000265565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200032d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002ee565b620003398683620002ee565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000386620003806200037a8462000351565b6200035b565b62000351565b9050919050565b6000819050919050565b620003a28362000365565b620003ba620003b1826200038d565b848454620002fb565b825550505050565b600090565b620003d1620003c2565b620003de81848462000397565b505050565b5b818110156200040657620003fa600082620003c7565b600181019050620003e4565b5050565b601f82111562000455576200041f81620002c9565b6200042a84620002de565b810160208510156200043a578190505b620004526200044985620002de565b830182620003e3565b50505b505050565b600082821c905092915050565b60006200047a600019846008026200045a565b1980831691505092915050565b600062000495838362000467565b9150826002028217905092915050565b620004b0826200022b565b67ffffffffffffffff811115620004cc57620004cb62000236565b5b620004d8825462000294565b620004e58282856200040a565b600060209050601f8311600181146200051d576000841562000508578287015190505b62000514858262000487565b86555062000584565b601f1984166200052d86620002c9565b60005b82811015620005575784890151825560018201915060208501945060208101905062000530565b8683101562000577578489015162000573601f89168262000467565b8355505b6001600288020188555050505b505050505050565b613f19806200059c6000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb7146106ea578063d5abeb0114610715578063e985e9c514610740578063efdc77881461077d578063f2fde38b146107a6576101f9565b8063a22cb46514610630578063b88d4fde14610659578063c6a91b4214610682578063c87b56dd146106ad576101f9565b8063982d669e116100dc578063982d669e1461059557806398710d1e146105c05780639e9fcffc146105eb578063a0712d6814610614576101f9565b806370a08231146104eb578063715018a6146105285780638da5cb5b1461053f57806395d89b411461056a576101f9565b8063193ad7b41161019057806328cad13d1161015f57806328cad13d1461041c5780633ccfd60b1461044557806342842e0e1461045c57806355f804b3146104855780636352211e146104ae576101f9565b8063193ad7b4146103745780631e84c4131461039f578063202f298a146103ca57806323b872dd146103f3576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102f757806318160ddd146103205780631919fed71461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612b5d565b6107cf565b6040516102329190612ba5565b60405180910390f35b34801561024757600080fd5b506102506108b1565b60405161025d9190612c50565b60405180910390f35b34801561027257600080fd5b5061027b610943565b6040516102889190612c8b565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612cd2565b610949565b6040516102c59190612d40565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612d87565b6109c5565b005b34801561030357600080fd5b5061031e60048036038101906103199190612cd2565b610acf565b005b34801561032c57600080fd5b50610335610b55565b6040516103429190612c8b565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612cd2565b610b6c565b005b34801561038057600080fd5b50610389610bf2565b6040516103969190612c8b565b60405180910390f35b3480156103ab57600080fd5b506103b4610bf8565b6040516103c19190612ba5565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612cd2565b610c0b565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612dc7565b610c91565b005b34801561042857600080fd5b50610443600480360381019061043e9190612e46565b610ca1565b005b34801561045157600080fd5b5061045a610d3a565b005b34801561046857600080fd5b50610483600480360381019061047e9190612dc7565b610e17565b005b34801561049157600080fd5b506104ac60048036038101906104a79190612fa8565b610e37565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190612cd2565b610ec6565b6040516104e29190612d40565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190612ff1565b610edc565b60405161051f9190612c8b565b60405180910390f35b34801561053457600080fd5b5061053d610fab565b005b34801561054b57600080fd5b50610554611033565b6040516105619190612d40565b60405180910390f35b34801561057657600080fd5b5061057f61105d565b60405161058c9190612c50565b60405180910390f35b3480156105a157600080fd5b506105aa6110ef565b6040516105b79190612c8b565b60405180910390f35b3480156105cc57600080fd5b506105d56110f5565b6040516105e29190612c8b565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612cd2565b6110fb565b005b61062e60048036038101906106299190612cd2565b611181565b005b34801561063c57600080fd5b506106576004803603810190610652919061301e565b6113c2565b005b34801561066557600080fd5b50610680600480360381019061067b91906130ff565b611539565b005b34801561068e57600080fd5b506106976115b5565b6040516106a49190612c8b565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190612cd2565b6115bb565b6040516106e19190612c50565b60405180910390f35b3480156106f657600080fd5b506106ff611637565b60405161070c9190612c50565b60405180910390f35b34801561072157600080fd5b5061072a6116c5565b6040516107379190612c8b565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613182565b6116cb565b6040516107749190612ba5565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190612cd2565b61175f565b005b3480156107b257600080fd5b506107cd60048036038101906107c89190612ff1565b611882565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57506108a982611979565b5b9050919050565b6060600280546108c0906131f1565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906131f1565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600d5481565b6000610954826119e3565b61098a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d082610ec6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a37576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a56611a31565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a885750610a8681610a81611a31565b6116cb565b155b15610abf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aca838383611a39565b505050565b610ad7611a31565b73ffffffffffffffffffffffffffffffffffffffff16610af5611033565b73ffffffffffffffffffffffffffffffffffffffff1614610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b429061326e565b60405180910390fd5b80600e8190555050565b6000610b5f611aeb565b6001546000540303905090565b610b74611a31565b73ffffffffffffffffffffffffffffffffffffffff16610b92611033565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf9061326e565b60405180910390fd5b80600d8190555050565b60105481565b601160009054906101000a900460ff1681565b610c13611a31565b73ffffffffffffffffffffffffffffffffffffffff16610c31611033565b73ffffffffffffffffffffffffffffffffffffffff1614610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e9061326e565b60405180910390fd5b80600f8190555050565b610c9c838383611af4565b505050565b610ca9611a31565b73ffffffffffffffffffffffffffffffffffffffff16610cc7611033565b73ffffffffffffffffffffffffffffffffffffffff1614610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d149061326e565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b610d42611a31565b73ffffffffffffffffffffffffffffffffffffffff16610d60611033565b73ffffffffffffffffffffffffffffffffffffffff1614610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad9061326e565b60405180910390fd5b600260095403610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df2906132da565b60405180910390fd5b6002600981905550610e0d3347611fa8565b6001600981905550565b610e3283838360405180602001604052806000815250611539565b505050565b610e3f611a31565b73ffffffffffffffffffffffffffffffffffffffff16610e5d611033565b73ffffffffffffffffffffffffffffffffffffffff1614610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa9061326e565b60405180910390fd5b80600a9081610ec291906134a6565b5050565b6000610ed18261209c565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f43576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fb3611a31565b73ffffffffffffffffffffffffffffffffffffffff16610fd1611033565b73ffffffffffffffffffffffffffffffffffffffff1614611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e9061326e565b60405180910390fd5b611031600061232b565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461106c906131f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611098906131f1565b80156110e55780601f106110ba576101008083540402835291602001916110e5565b820191906000526020600020905b8154815290600101906020018083116110c857829003601f168201915b5050505050905090565b600e5481565b600f5481565b611103611a31565b73ffffffffffffffffffffffffffffffffffffffff16611121611033565b73ffffffffffffffffffffffffffffffffffffffff1614611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e9061326e565b60405180910390fd5b80600c8190555050565b601160009054906101000a900460ff166111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c7906135c4565b60405180910390fd5b6001600b546111df9190613613565b816111e8610b55565b6111f29190613613565b10611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990613693565b60405180910390fd5b600e54816010546112439190613613565b111561129e573481600d5461125891906136b3565b1115611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129090613741565b60405180910390fd5b6113b5565b600f54816112ab33610edc565b6112b59190613613565b1115611355573481600d546112ca91906136b3565b111561130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613741565b60405180910390fd5b600c54811115611350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611347906137d3565b60405180910390fd5b6113b4565b600f5481111561139a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611391906137d3565b60405180910390fd5b80601060008282546113ac9190613613565b925050819055505b5b6113bf33826123f1565b50565b6113ca611a31565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361142e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061143b611a31565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114e8611a31565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161152d9190612ba5565b60405180910390a35050565b611544848484611af4565b6115638373ffffffffffffffffffffffffffffffffffffffff1661240f565b8015611578575061157684848484612432565b155b156115af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c5481565b60606115c6826119e3565b611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613865565b60405180910390fd5b600a61161083612582565b6040516020016116219291906139dc565b6040516020818303038152906040529050919050565b600a8054611644906131f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611670906131f1565b80156116bd5780601f10611692576101008083540402835291602001916116bd565b820191906000526020600020905b8154815290600101906020018083116116a057829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611767611a31565b73ffffffffffffffffffffffffffffffffffffffff16611785611033565b73ffffffffffffffffffffffffffffffffffffffff16146117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d29061326e565b60405180910390fd5b6000811161181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590613a62565b60405180910390fd5b600b548161182a610b55565b6118349190613613565b1115611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c90613ace565b60405180910390fd5b61187f33826123f1565b50565b61188a611a31565b73ffffffffffffffffffffffffffffffffffffffff166118a8611033565b73ffffffffffffffffffffffffffffffffffffffff16146118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f59061326e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490613b60565b60405180910390fd5b6119768161232b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119ee611aeb565b111580156119fd575060005482105b8015611a2a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611aff8261209c565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b6a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b8b611a31565b73ffffffffffffffffffffffffffffffffffffffff161480611bba5750611bb985611bb4611a31565b6116cb565b5b80611bff5750611bc8611a31565b73ffffffffffffffffffffffffffffffffffffffff16611be784610949565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c38576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611c9e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cab85858560016126e2565b611cb760008487611a39565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611f36576000548214611f3557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fa185858560016126e8565b5050505050565b80471015611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290613bcc565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161201190613c1d565b60006040518083038185875af1925050503d806000811461204e576040519150601f19603f3d011682016040523d82523d6000602084013e612053565b606091505b5050905080612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208e90613ca4565b60405180910390fd5b505050565b6120a4612aae565b6000829050806120b2611aeb565b111580156120c1575060005481105b156122f4576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122f257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121d6578092505050612326565b5b6001156122f157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122ec578092505050612326565b6121d7565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61240b8282604051806020016040528060008152506126ee565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612458611a31565b8786866040518563ffffffff1660e01b815260040161247a9493929190613d19565b6020604051808303816000875af19250505080156124b657506040513d601f19601f820116820180604052508101906124b39190613d7a565b60015b61252f573d80600081146124e6576040519150601f19603f3d011682016040523d82523d6000602084013e6124eb565b606091505b506000815103612527576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036125c9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126dd565b600082905060005b600082146125fb5780806125e490613da7565b915050600a826125f49190613e1e565b91506125d1565b60008167ffffffffffffffff81111561261757612616612e7d565b5b6040519080825280601f01601f1916602001820160405280156126495781602001600182028036833780820191505090505b5090505b600085146126d6576001826126629190613e4f565b9150600a856126719190613e83565b603061267d9190613613565b60f81b81838151811061269357612692613eb4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126cf9190613e1e565b945061264d565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361275a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612794576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127a160008583866126e2565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129628673ffffffffffffffffffffffffffffffffffffffff1661240f565b15612a27575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129d76000878480600101955087612432565b612a0d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612968578260005414612a2257600080fd5b612a92565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612a28575b816000819055505050612aa860008583866126e8565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b3a81612b05565b8114612b4557600080fd5b50565b600081359050612b5781612b31565b92915050565b600060208284031215612b7357612b72612afb565b5b6000612b8184828501612b48565b91505092915050565b60008115159050919050565b612b9f81612b8a565b82525050565b6000602082019050612bba6000830184612b96565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bfa578082015181840152602081019050612bdf565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c2282612bc0565b612c2c8185612bcb565b9350612c3c818560208601612bdc565b612c4581612c06565b840191505092915050565b60006020820190508181036000830152612c6a8184612c17565b905092915050565b6000819050919050565b612c8581612c72565b82525050565b6000602082019050612ca06000830184612c7c565b92915050565b612caf81612c72565b8114612cba57600080fd5b50565b600081359050612ccc81612ca6565b92915050565b600060208284031215612ce857612ce7612afb565b5b6000612cf684828501612cbd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d2a82612cff565b9050919050565b612d3a81612d1f565b82525050565b6000602082019050612d556000830184612d31565b92915050565b612d6481612d1f565b8114612d6f57600080fd5b50565b600081359050612d8181612d5b565b92915050565b60008060408385031215612d9e57612d9d612afb565b5b6000612dac85828601612d72565b9250506020612dbd85828601612cbd565b9150509250929050565b600080600060608486031215612de057612ddf612afb565b5b6000612dee86828701612d72565b9350506020612dff86828701612d72565b9250506040612e1086828701612cbd565b9150509250925092565b612e2381612b8a565b8114612e2e57600080fd5b50565b600081359050612e4081612e1a565b92915050565b600060208284031215612e5c57612e5b612afb565b5b6000612e6a84828501612e31565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612eb582612c06565b810181811067ffffffffffffffff82111715612ed457612ed3612e7d565b5b80604052505050565b6000612ee7612af1565b9050612ef38282612eac565b919050565b600067ffffffffffffffff821115612f1357612f12612e7d565b5b612f1c82612c06565b9050602081019050919050565b82818337600083830152505050565b6000612f4b612f4684612ef8565b612edd565b905082815260208101848484011115612f6757612f66612e78565b5b612f72848285612f29565b509392505050565b600082601f830112612f8f57612f8e612e73565b5b8135612f9f848260208601612f38565b91505092915050565b600060208284031215612fbe57612fbd612afb565b5b600082013567ffffffffffffffff811115612fdc57612fdb612b00565b5b612fe884828501612f7a565b91505092915050565b60006020828403121561300757613006612afb565b5b600061301584828501612d72565b91505092915050565b6000806040838503121561303557613034612afb565b5b600061304385828601612d72565b925050602061305485828601612e31565b9150509250929050565b600067ffffffffffffffff82111561307957613078612e7d565b5b61308282612c06565b9050602081019050919050565b60006130a261309d8461305e565b612edd565b9050828152602081018484840111156130be576130bd612e78565b5b6130c9848285612f29565b509392505050565b600082601f8301126130e6576130e5612e73565b5b81356130f684826020860161308f565b91505092915050565b6000806000806080858703121561311957613118612afb565b5b600061312787828801612d72565b945050602061313887828801612d72565b935050604061314987828801612cbd565b925050606085013567ffffffffffffffff81111561316a57613169612b00565b5b613176878288016130d1565b91505092959194509250565b6000806040838503121561319957613198612afb565b5b60006131a785828601612d72565b92505060206131b885828601612d72565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061320957607f821691505b60208210810361321c5761321b6131c2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613258602083612bcb565b915061326382613222565b602082019050919050565b600060208201905081810360008301526132878161324b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006132c4601f83612bcb565b91506132cf8261328e565b602082019050919050565b600060208201905081810360008301526132f3816132b7565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261335c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261331f565b613366868361331f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006133a361339e61339984612c72565b61337e565b612c72565b9050919050565b6000819050919050565b6133bd83613388565b6133d16133c9826133aa565b84845461332c565b825550505050565b600090565b6133e66133d9565b6133f18184846133b4565b505050565b5b818110156134155761340a6000826133de565b6001810190506133f7565b5050565b601f82111561345a5761342b816132fa565b6134348461330f565b81016020851015613443578190505b61345761344f8561330f565b8301826133f6565b50505b505050565b600082821c905092915050565b600061347d6000198460080261345f565b1980831691505092915050565b6000613496838361346c565b9150826002028217905092915050565b6134af82612bc0565b67ffffffffffffffff8111156134c8576134c7612e7d565b5b6134d282546131f1565b6134dd828285613419565b600060209050601f83116001811461351057600084156134fe578287015190505b613508858261348a565b865550613570565b601f19841661351e866132fa565b60005b8281101561354657848901518255600182019150602085019450602081019050613521565b86831015613563578489015161355f601f89168261346c565b8355505b6001600288020188555050505b505050505050565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b60006135ae601783612bcb565b91506135b982613578565b602082019050919050565b600060208201905081810360008301526135dd816135a1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061361e82612c72565b915061362983612c72565b9250828201905080821115613641576136406135e4565b5b92915050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b600061367d600783612bcb565b915061368882613647565b602082019050919050565b600060208201905081810360008301526136ac81613670565b9050919050565b60006136be82612c72565b91506136c983612c72565b92508282026136d781612c72565b915082820484148315176136ee576136ed6135e4565b5b5092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b600061372b601883612bcb565b9150613736826136f5565b602082019050919050565b6000602082019050818103600083015261375a8161371e565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b60006137bd602283612bcb565b91506137c882613761565b604082019050919050565b600060208201905081810360008301526137ec816137b0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061384f602f83612bcb565b915061385a826137f3565b604082019050919050565b6000602082019050818103600083015261387e81613842565b9050919050565b600081905092915050565b6000815461389d816131f1565b6138a78186613885565b945060018216600081146138c257600181146138d75761390a565b60ff198316865281151582028601935061390a565b6138e0856132fa565b60005b83811015613902578154818901526001820191506020810190506138e3565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613949600183613885565b915061395482613913565b600182019050919050565b600061396a82612bc0565b6139748185613885565b9350613984818560208601612bdc565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006139c6600583613885565b91506139d182613990565b600582019050919050565b60006139e88285613890565b91506139f38261393c565b91506139ff828461395f565b9150613a0a826139b9565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613a4c601383612bcb565b9150613a5782613a16565b602082019050919050565b60006020820190508181036000830152613a7b81613a3f565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000613ab8601783612bcb565b9150613ac382613a82565b602082019050919050565b60006020820190508181036000830152613ae781613aab565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b4a602683612bcb565b9150613b5582613aee565b604082019050919050565b60006020820190508181036000830152613b7981613b3d565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613bb6601d83612bcb565b9150613bc182613b80565b602082019050919050565b60006020820190508181036000830152613be581613ba9565b9050919050565b600081905092915050565b50565b6000613c07600083613bec565b9150613c1282613bf7565b600082019050919050565b6000613c2882613bfa565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613c8e603a83612bcb565b9150613c9982613c32565b604082019050919050565b60006020820190508181036000830152613cbd81613c81565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ceb82613cc4565b613cf58185613ccf565b9350613d05818560208601612bdc565b613d0e81612c06565b840191505092915050565b6000608082019050613d2e6000830187612d31565b613d3b6020830186612d31565b613d486040830185612c7c565b8181036060830152613d5a8184613ce0565b905095945050505050565b600081519050613d7481612b31565b92915050565b600060208284031215613d9057613d8f612afb565b5b6000613d9e84828501613d65565b91505092915050565b6000613db282612c72565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613de457613de36135e4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e2982612c72565b9150613e3483612c72565b925082613e4457613e43613def565b5b828204905092915050565b6000613e5a82612c72565b9150613e6583612c72565b9250828203905081811115613e7d57613e7c6135e4565b5b92915050565b6000613e8e82612c72565b9150613e9983612c72565b925082613ea957613ea8613def565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122018ab4e6b56925f7d70d2edab66bb725243290f4d0955c71b4095d55f9883918064736f6c63430008120033697066733a2f2f516d543932536e616d556e55455257717533735459443164737246445a61426433595638456359594b6b574b59382f
Deployed Bytecode
0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d547cfb71161006f578063d547cfb7146106ea578063d5abeb0114610715578063e985e9c514610740578063efdc77881461077d578063f2fde38b146107a6576101f9565b8063a22cb46514610630578063b88d4fde14610659578063c6a91b4214610682578063c87b56dd146106ad576101f9565b8063982d669e116100dc578063982d669e1461059557806398710d1e146105c05780639e9fcffc146105eb578063a0712d6814610614576101f9565b806370a08231146104eb578063715018a6146105285780638da5cb5b1461053f57806395d89b411461056a576101f9565b8063193ad7b41161019057806328cad13d1161015f57806328cad13d1461041c5780633ccfd60b1461044557806342842e0e1461045c57806355f804b3146104855780636352211e146104ae576101f9565b8063193ad7b4146103745780631e84c4131461039f578063202f298a146103ca57806323b872dd146103f3576101f9565b8063095ea7b3116101cc578063095ea7b3146102ce5780630a00ae83146102f757806318160ddd146103205780631919fed71461034b576101f9565b806301ffc9a7146101fe57806306fdde031461023b57806307e89ec014610266578063081812fc14610291575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612b5d565b6107cf565b6040516102329190612ba5565b60405180910390f35b34801561024757600080fd5b506102506108b1565b60405161025d9190612c50565b60405180910390f35b34801561027257600080fd5b5061027b610943565b6040516102889190612c8b565b60405180910390f35b34801561029d57600080fd5b506102b860048036038101906102b39190612cd2565b610949565b6040516102c59190612d40565b60405180910390f35b3480156102da57600080fd5b506102f560048036038101906102f09190612d87565b6109c5565b005b34801561030357600080fd5b5061031e60048036038101906103199190612cd2565b610acf565b005b34801561032c57600080fd5b50610335610b55565b6040516103429190612c8b565b60405180910390f35b34801561035757600080fd5b50610372600480360381019061036d9190612cd2565b610b6c565b005b34801561038057600080fd5b50610389610bf2565b6040516103969190612c8b565b60405180910390f35b3480156103ab57600080fd5b506103b4610bf8565b6040516103c19190612ba5565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612cd2565b610c0b565b005b3480156103ff57600080fd5b5061041a60048036038101906104159190612dc7565b610c91565b005b34801561042857600080fd5b50610443600480360381019061043e9190612e46565b610ca1565b005b34801561045157600080fd5b5061045a610d3a565b005b34801561046857600080fd5b50610483600480360381019061047e9190612dc7565b610e17565b005b34801561049157600080fd5b506104ac60048036038101906104a79190612fa8565b610e37565b005b3480156104ba57600080fd5b506104d560048036038101906104d09190612cd2565b610ec6565b6040516104e29190612d40565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190612ff1565b610edc565b60405161051f9190612c8b565b60405180910390f35b34801561053457600080fd5b5061053d610fab565b005b34801561054b57600080fd5b50610554611033565b6040516105619190612d40565b60405180910390f35b34801561057657600080fd5b5061057f61105d565b60405161058c9190612c50565b60405180910390f35b3480156105a157600080fd5b506105aa6110ef565b6040516105b79190612c8b565b60405180910390f35b3480156105cc57600080fd5b506105d56110f5565b6040516105e29190612c8b565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190612cd2565b6110fb565b005b61062e60048036038101906106299190612cd2565b611181565b005b34801561063c57600080fd5b506106576004803603810190610652919061301e565b6113c2565b005b34801561066557600080fd5b50610680600480360381019061067b91906130ff565b611539565b005b34801561068e57600080fd5b506106976115b5565b6040516106a49190612c8b565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190612cd2565b6115bb565b6040516106e19190612c50565b60405180910390f35b3480156106f657600080fd5b506106ff611637565b60405161070c9190612c50565b60405180910390f35b34801561072157600080fd5b5061072a6116c5565b6040516107379190612c8b565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613182565b6116cb565b6040516107749190612ba5565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190612cd2565b61175f565b005b3480156107b257600080fd5b506107cd60048036038101906107c89190612ff1565b611882565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108aa57506108a982611979565b5b9050919050565b6060600280546108c0906131f1565b80601f01602080910402602001604051908101604052809291908181526020018280546108ec906131f1565b80156109395780601f1061090e57610100808354040283529160200191610939565b820191906000526020600020905b81548152906001019060200180831161091c57829003601f168201915b5050505050905090565b600d5481565b6000610954826119e3565b61098a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109d082610ec6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a37576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a56611a31565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a885750610a8681610a81611a31565b6116cb565b155b15610abf576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610aca838383611a39565b505050565b610ad7611a31565b73ffffffffffffffffffffffffffffffffffffffff16610af5611033565b73ffffffffffffffffffffffffffffffffffffffff1614610b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b429061326e565b60405180910390fd5b80600e8190555050565b6000610b5f611aeb565b6001546000540303905090565b610b74611a31565b73ffffffffffffffffffffffffffffffffffffffff16610b92611033565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf9061326e565b60405180910390fd5b80600d8190555050565b60105481565b601160009054906101000a900460ff1681565b610c13611a31565b73ffffffffffffffffffffffffffffffffffffffff16610c31611033565b73ffffffffffffffffffffffffffffffffffffffff1614610c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7e9061326e565b60405180910390fd5b80600f8190555050565b610c9c838383611af4565b505050565b610ca9611a31565b73ffffffffffffffffffffffffffffffffffffffff16610cc7611033565b73ffffffffffffffffffffffffffffffffffffffff1614610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d149061326e565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b610d42611a31565b73ffffffffffffffffffffffffffffffffffffffff16610d60611033565b73ffffffffffffffffffffffffffffffffffffffff1614610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad9061326e565b60405180910390fd5b600260095403610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df2906132da565b60405180910390fd5b6002600981905550610e0d3347611fa8565b6001600981905550565b610e3283838360405180602001604052806000815250611539565b505050565b610e3f611a31565b73ffffffffffffffffffffffffffffffffffffffff16610e5d611033565b73ffffffffffffffffffffffffffffffffffffffff1614610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa9061326e565b60405180910390fd5b80600a9081610ec291906134a6565b5050565b6000610ed18261209c565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f43576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fb3611a31565b73ffffffffffffffffffffffffffffffffffffffff16610fd1611033565b73ffffffffffffffffffffffffffffffffffffffff1614611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e9061326e565b60405180910390fd5b611031600061232b565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461106c906131f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611098906131f1565b80156110e55780601f106110ba576101008083540402835291602001916110e5565b820191906000526020600020905b8154815290600101906020018083116110c857829003601f168201915b5050505050905090565b600e5481565b600f5481565b611103611a31565b73ffffffffffffffffffffffffffffffffffffffff16611121611033565b73ffffffffffffffffffffffffffffffffffffffff1614611177576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116e9061326e565b60405180910390fd5b80600c8190555050565b601160009054906101000a900460ff166111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c7906135c4565b60405180910390fd5b6001600b546111df9190613613565b816111e8610b55565b6111f29190613613565b10611232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122990613693565b60405180910390fd5b600e54816010546112439190613613565b111561129e573481600d5461125891906136b3565b1115611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129090613741565b60405180910390fd5b6113b5565b600f54816112ab33610edc565b6112b59190613613565b1115611355573481600d546112ca91906136b3565b111561130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290613741565b60405180910390fd5b600c54811115611350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611347906137d3565b60405180910390fd5b6113b4565b600f5481111561139a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611391906137d3565b60405180910390fd5b80601060008282546113ac9190613613565b925050819055505b5b6113bf33826123f1565b50565b6113ca611a31565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361142e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061143b611a31565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114e8611a31565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161152d9190612ba5565b60405180910390a35050565b611544848484611af4565b6115638373ffffffffffffffffffffffffffffffffffffffff1661240f565b8015611578575061157684848484612432565b155b156115af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c5481565b60606115c6826119e3565b611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613865565b60405180910390fd5b600a61161083612582565b6040516020016116219291906139dc565b6040516020818303038152906040529050919050565b600a8054611644906131f1565b80601f0160208091040260200160405190810160405280929190818152602001828054611670906131f1565b80156116bd5780601f10611692576101008083540402835291602001916116bd565b820191906000526020600020905b8154815290600101906020018083116116a057829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611767611a31565b73ffffffffffffffffffffffffffffffffffffffff16611785611033565b73ffffffffffffffffffffffffffffffffffffffff16146117db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d29061326e565b60405180910390fd5b6000811161181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590613a62565b60405180910390fd5b600b548161182a610b55565b6118349190613613565b1115611875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186c90613ace565b60405180910390fd5b61187f33826123f1565b50565b61188a611a31565b73ffffffffffffffffffffffffffffffffffffffff166118a8611033565b73ffffffffffffffffffffffffffffffffffffffff16146118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f59061326e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490613b60565b60405180910390fd5b6119768161232b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119ee611aeb565b111580156119fd575060005482105b8015611a2a575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611aff8261209c565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b6a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b8b611a31565b73ffffffffffffffffffffffffffffffffffffffff161480611bba5750611bb985611bb4611a31565b6116cb565b5b80611bff5750611bc8611a31565b73ffffffffffffffffffffffffffffffffffffffff16611be784610949565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c38576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611c9e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cab85858560016126e2565b611cb760008487611a39565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611f36576000548214611f3557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fa185858560016126e8565b5050505050565b80471015611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290613bcc565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161201190613c1d565b60006040518083038185875af1925050503d806000811461204e576040519150601f19603f3d011682016040523d82523d6000602084013e612053565b606091505b5050905080612097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208e90613ca4565b60405180910390fd5b505050565b6120a4612aae565b6000829050806120b2611aeb565b111580156120c1575060005481105b156122f4576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122f257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121d6578092505050612326565b5b6001156122f157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122ec578092505050612326565b6121d7565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61240b8282604051806020016040528060008152506126ee565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612458611a31565b8786866040518563ffffffff1660e01b815260040161247a9493929190613d19565b6020604051808303816000875af19250505080156124b657506040513d601f19601f820116820180604052508101906124b39190613d7a565b60015b61252f573d80600081146124e6576040519150601f19603f3d011682016040523d82523d6000602084013e6124eb565b606091505b506000815103612527576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036125c9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126dd565b600082905060005b600082146125fb5780806125e490613da7565b915050600a826125f49190613e1e565b91506125d1565b60008167ffffffffffffffff81111561261757612616612e7d565b5b6040519080825280601f01601f1916602001820160405280156126495781602001600182028036833780820191505090505b5090505b600085146126d6576001826126629190613e4f565b9150600a856126719190613e83565b603061267d9190613613565b60f81b81838151811061269357612692613eb4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126cf9190613e1e565b945061264d565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361275a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303612794576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127a160008583866126e2565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129628673ffffffffffffffffffffffffffffffffffffffff1661240f565b15612a27575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129d76000878480600101955087612432565b612a0d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612968578260005414612a2257600080fd5b612a92565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612a28575b816000819055505050612aa860008583866126e8565b50505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612b3a81612b05565b8114612b4557600080fd5b50565b600081359050612b5781612b31565b92915050565b600060208284031215612b7357612b72612afb565b5b6000612b8184828501612b48565b91505092915050565b60008115159050919050565b612b9f81612b8a565b82525050565b6000602082019050612bba6000830184612b96565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612bfa578082015181840152602081019050612bdf565b60008484015250505050565b6000601f19601f8301169050919050565b6000612c2282612bc0565b612c2c8185612bcb565b9350612c3c818560208601612bdc565b612c4581612c06565b840191505092915050565b60006020820190508181036000830152612c6a8184612c17565b905092915050565b6000819050919050565b612c8581612c72565b82525050565b6000602082019050612ca06000830184612c7c565b92915050565b612caf81612c72565b8114612cba57600080fd5b50565b600081359050612ccc81612ca6565b92915050565b600060208284031215612ce857612ce7612afb565b5b6000612cf684828501612cbd565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d2a82612cff565b9050919050565b612d3a81612d1f565b82525050565b6000602082019050612d556000830184612d31565b92915050565b612d6481612d1f565b8114612d6f57600080fd5b50565b600081359050612d8181612d5b565b92915050565b60008060408385031215612d9e57612d9d612afb565b5b6000612dac85828601612d72565b9250506020612dbd85828601612cbd565b9150509250929050565b600080600060608486031215612de057612ddf612afb565b5b6000612dee86828701612d72565b9350506020612dff86828701612d72565b9250506040612e1086828701612cbd565b9150509250925092565b612e2381612b8a565b8114612e2e57600080fd5b50565b600081359050612e4081612e1a565b92915050565b600060208284031215612e5c57612e5b612afb565b5b6000612e6a84828501612e31565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612eb582612c06565b810181811067ffffffffffffffff82111715612ed457612ed3612e7d565b5b80604052505050565b6000612ee7612af1565b9050612ef38282612eac565b919050565b600067ffffffffffffffff821115612f1357612f12612e7d565b5b612f1c82612c06565b9050602081019050919050565b82818337600083830152505050565b6000612f4b612f4684612ef8565b612edd565b905082815260208101848484011115612f6757612f66612e78565b5b612f72848285612f29565b509392505050565b600082601f830112612f8f57612f8e612e73565b5b8135612f9f848260208601612f38565b91505092915050565b600060208284031215612fbe57612fbd612afb565b5b600082013567ffffffffffffffff811115612fdc57612fdb612b00565b5b612fe884828501612f7a565b91505092915050565b60006020828403121561300757613006612afb565b5b600061301584828501612d72565b91505092915050565b6000806040838503121561303557613034612afb565b5b600061304385828601612d72565b925050602061305485828601612e31565b9150509250929050565b600067ffffffffffffffff82111561307957613078612e7d565b5b61308282612c06565b9050602081019050919050565b60006130a261309d8461305e565b612edd565b9050828152602081018484840111156130be576130bd612e78565b5b6130c9848285612f29565b509392505050565b600082601f8301126130e6576130e5612e73565b5b81356130f684826020860161308f565b91505092915050565b6000806000806080858703121561311957613118612afb565b5b600061312787828801612d72565b945050602061313887828801612d72565b935050604061314987828801612cbd565b925050606085013567ffffffffffffffff81111561316a57613169612b00565b5b613176878288016130d1565b91505092959194509250565b6000806040838503121561319957613198612afb565b5b60006131a785828601612d72565b92505060206131b885828601612d72565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061320957607f821691505b60208210810361321c5761321b6131c2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613258602083612bcb565b915061326382613222565b602082019050919050565b600060208201905081810360008301526132878161324b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006132c4601f83612bcb565b91506132cf8261328e565b602082019050919050565b600060208201905081810360008301526132f3816132b7565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261335c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261331f565b613366868361331f565b95508019841693508086168417925050509392505050565b6000819050919050565b60006133a361339e61339984612c72565b61337e565b612c72565b9050919050565b6000819050919050565b6133bd83613388565b6133d16133c9826133aa565b84845461332c565b825550505050565b600090565b6133e66133d9565b6133f18184846133b4565b505050565b5b818110156134155761340a6000826133de565b6001810190506133f7565b5050565b601f82111561345a5761342b816132fa565b6134348461330f565b81016020851015613443578190505b61345761344f8561330f565b8301826133f6565b50505b505050565b600082821c905092915050565b600061347d6000198460080261345f565b1980831691505092915050565b6000613496838361346c565b9150826002028217905092915050565b6134af82612bc0565b67ffffffffffffffff8111156134c8576134c7612e7d565b5b6134d282546131f1565b6134dd828285613419565b600060209050601f83116001811461351057600084156134fe578287015190505b613508858261348a565b865550613570565b601f19841661351e866132fa565b60005b8281101561354657848901518255600182019150602085019450602081019050613521565b86831015613563578489015161355f601f89168261346c565b8355505b6001600288020188555050505b505050505050565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b60006135ae601783612bcb565b91506135b982613578565b602082019050919050565b600060208201905081810360008301526135dd816135a1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061361e82612c72565b915061362983612c72565b9250828201905080821115613641576136406135e4565b5b92915050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b600061367d600783612bcb565b915061368882613647565b602082019050919050565b600060208201905081810360008301526136ac81613670565b9050919050565b60006136be82612c72565b91506136c983612c72565b92508282026136d781612c72565b915082820484148315176136ee576136ed6135e4565b5b5092915050565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b600061372b601883612bcb565b9150613736826136f5565b602082019050919050565b6000602082019050818103600083015261375a8161371e565b9050919050565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b60006137bd602283612bcb565b91506137c882613761565b604082019050919050565b600060208201905081810360008301526137ec816137b0565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061384f602f83612bcb565b915061385a826137f3565b604082019050919050565b6000602082019050818103600083015261387e81613842565b9050919050565b600081905092915050565b6000815461389d816131f1565b6138a78186613885565b945060018216600081146138c257600181146138d75761390a565b60ff198316865281151582028601935061390a565b6138e0856132fa565b60005b83811015613902578154818901526001820191506020810190506138e3565b838801955050505b50505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000613949600183613885565b915061395482613913565b600182019050919050565b600061396a82612bc0565b6139748185613885565b9350613984818560208601612bdc565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006139c6600583613885565b91506139d182613990565b600582019050919050565b60006139e88285613890565b91506139f38261393c565b91506139ff828461395f565b9150613a0a826139b9565b91508190509392505050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000613a4c601383612bcb565b9150613a5782613a16565b602082019050919050565b60006020820190508181036000830152613a7b81613a3f565b9050919050565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b6000613ab8601783612bcb565b9150613ac382613a82565b602082019050919050565b60006020820190508181036000830152613ae781613aab565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b4a602683612bcb565b9150613b5582613aee565b604082019050919050565b60006020820190508181036000830152613b7981613b3d565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613bb6601d83612bcb565b9150613bc182613b80565b602082019050919050565b60006020820190508181036000830152613be581613ba9565b9050919050565b600081905092915050565b50565b6000613c07600083613bec565b9150613c1282613bf7565b600082019050919050565b6000613c2882613bfa565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613c8e603a83612bcb565b9150613c9982613c32565b604082019050919050565b60006020820190508181036000830152613cbd81613c81565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613ceb82613cc4565b613cf58185613ccf565b9350613d05818560208601612bdc565b613d0e81612c06565b840191505092915050565b6000608082019050613d2e6000830187612d31565b613d3b6020830186612d31565b613d486040830185612c7c565b8181036060830152613d5a8184613ce0565b905095945050505050565b600081519050613d7481612b31565b92915050565b600060208284031215613d9057613d8f612afb565b5b6000613d9e84828501613d65565b91505092915050565b6000613db282612c72565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613de457613de36135e4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e2982612c72565b9150613e3483612c72565b925082613e4457613e43613def565b5b828204905092915050565b6000613e5a82612c72565b9150613e6583612c72565b9250828203905081811115613e7d57613e7c6135e4565b5b92915050565b6000613e8e82612c72565b9150613e9983612c72565b925082613ea957613ea8613def565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122018ab4e6b56925f7d70d2edab66bb725243290f4d0955c71b4095d55f9883918064736f6c63430008120033
Deployed Bytecode Sourcemap
48749:3336:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29898:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33011:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49050:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34514:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34077:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51567:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29147:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51702:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49187:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49231:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51956:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35379:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51413:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50806:142;;;;;;;;;;;;;:::i;:::-;;35620:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50402:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32819:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30267:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7664:103;;;;;;;;;;;;;:::i;:::-;;7013:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33180:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49102:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49143:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51823:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49348:1048;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34790:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35876:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49008:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50954:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48878:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48970:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35148:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50516:284;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7922:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29898:305;30000:4;30052:25;30037:40;;;:11;:40;;;;:105;;;;30109:33;30094:48;;;:11;:48;;;;30037:105;:158;;;;30159:36;30183:11;30159:23;:36::i;:::-;30037:158;30017:178;;29898:305;;;:::o;33011:100::-;33065:13;33098:5;33091:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33011:100;:::o;49050:47::-;;;;:::o;34514:204::-;34582:7;34607:16;34615:7;34607;:16::i;:::-;34602:64;;34632:34;;;;;;;;;;;;;;34602:64;34686:15;:24;34702:7;34686:24;;;;;;;;;;;;;;;;;;;;;34679:31;;34514:204;;;:::o;34077:371::-;34150:13;34166:24;34182:7;34166:15;:24::i;:::-;34150:40;;34211:5;34205:11;;:2;:11;;;34201:48;;34225:24;;;;;;;;;;;;;;34201:48;34282:5;34266:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34292:37;34309:5;34316:12;:10;:12::i;:::-;34292:16;:37::i;:::-;34291:38;34266:63;34262:138;;;34353:35;;;;;;;;;;;;;;34262:138;34412:28;34421:2;34425:7;34434:5;34412:8;:28::i;:::-;34139:309;34077:371;;:::o;51567:129::-;7244:12;:10;:12::i;:::-;7233:23;;:7;:5;:7::i;:::-;:23;;;7225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51677:13:::1;51660:14;:30;;;;51567:129:::0;:::o;29147:303::-;29191:7;29416:15;:13;:15::i;:::-;29401:12;;29385:13;;:28;:46;29378:53;;29147:303;:::o;51702:115::-;7244:12;:10;:12::i;:::-;7233:23;;:7;:5;:7::i;:::-;:23;;;7225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51805:6:::1;51785:17;:26;;;;51702:115:::0;:::o;49187:39::-;;;;:::o;49231:38::-;;;;;;;;;;;;;:::o;51956:126::-;7244:12;:10;:12::i;:::-;7233:23;;:7;:5;:7::i;:::-;:23;;;7225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52070:6:::1;52048:19;:28;;;;51956:126:::0;:::o;35379:170::-;35513:28;35523:4;35529:2;35533:7;35513:9;:28::i;:::-;35379:170;;;:::o;51413:148::-;7244:12;:10;:12::i;:::-;7233:23;;:7;:5;:7::i;:::-;:23;;;7225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51536:19:::1;51515:18;;:40;;;;;;;;;;;;;;;;;;51413:148:::0;:::o;50806:142::-;7244:12;:10;:12::i;:::-;7233:23;;:7;:5;:7::i;:::-;:23;;;7225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1987:1:::1;2585:7;;:19:::0;2577:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1987:1;2718:7;:18;;;;50881:61:::2;50907:10;50920:21;50881:17;:61::i;:::-;1943:1:::1;2897:7;:22;;;;50806:142::o:0;35620:185::-;35758:39;35775:4;35781:2;35785:7;35758:39;;;;;;;;;;;;:16;:39::i;:::-;35620:185;;;:::o;50402:108::-;7244:12;:10;:12::i;:::-;7233:23;;:7;:5;:7::i;:::-;:23;;;7225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50497:7:::1;50482:12;:22;;;;;;:::i;:::-;;50402:108:::0;:::o;32819:125::-;32883:7;32910:21;32923:7;32910:12;:21::i;:::-;:26;;;32903:33;;32819:125;;;:::o;30267:206::-;30331:7;30372:1;30355:19;;:5;:19;;;30351:60;;30383:28;;;;;;;;;;;;;;30351:60;30437:12;:19;30450:5;30437:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30429:36;;30422:43;;30267:206;;;:::o;7664:103::-;7244:12;:10;:12::i;:::-;7233:23;;:7;:5;:7::i;:::-;:23;;;7225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7729:30:::1;7756:1;7729:18;:30::i;:::-;7664:103::o:0;7013:87::-;7059:7;7086:6;;;;;;;;;;;7079:13;;7013:87;:::o;33180:104::-;33236:13;33269:7;33262:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33180:104;:::o;49102:36::-;;;;:::o;49143:39::-;;;;:::o;51823:127::-;7244:12;:10;:12::i;:::-;7233:23;;:7;:5;:7::i;:::-;:23;;;7225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51938:6:::1;51919:16;:25;;;;51823:127:::0;:::o;49348:1048::-;49435:18;;;;;;;;;;;49427:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;49541:1;49529:9;;:13;;;;:::i;:::-;49512:14;49496:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:46;49488:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49606:14;;49589;49566:20;;:37;;;;:::i;:::-;:54;49563:784;;;49694:9;49675:14;49655:17;;:34;;;;:::i;:::-;49654:49;;49632:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;49563:784;;;49825:19;;49808:14;49784:21;49794:10;49784:9;:21::i;:::-;:38;;;;:::i;:::-;:60;49780:560;;;49919:9;49900:14;49880:17;;:34;;;;:::i;:::-;49879:49;;49857:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;50031:16;;50013:14;:34;;49991:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;49780:560;;;50186:19;;50168:14;:37;;50142:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;50314:14;50290:20;;:38;;;;;;;:::i;:::-;;;;;;;;49780:560;49563:784;50353:37;50363:10;50375:14;50353:9;:37::i;:::-;49348:1048;:::o;34790:287::-;34901:12;:10;:12::i;:::-;34889:24;;:8;:24;;;34885:54;;34922:17;;;;;;;;;;;;;;34885:54;34997:8;34952:18;:32;34971:12;:10;:12::i;:::-;34952:32;;;;;;;;;;;;;;;:42;34985:8;34952:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35050:8;35021:48;;35036:12;:10;:12::i;:::-;35021:48;;;35060:8;35021:48;;;;;;:::i;:::-;;;;;;;;34790:287;;:::o;35876:369::-;36043:28;36053:4;36059:2;36063:7;36043:9;:28::i;:::-;36086:15;:2;:13;;;:15::i;:::-;:76;;;;;36106:56;36137:4;36143:2;36147:7;36156:5;36106:30;:56::i;:::-;36105:57;36086:76;36082:156;;;36186:40;;;;;;;;;;;;;;36082:156;35876:369;;;;:::o;49008:37::-;;;;:::o;50954:312::-;51050:13;51091:17;51099:8;51091:7;:17::i;:::-;51075:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;51211:12;51230:19;:8;:17;:19::i;:::-;51194:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51180:80;;50954:312;;;:::o;48878:87::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48970:33::-;;;;:::o;35148:164::-;35245:4;35269:18;:25;35288:5;35269:25;;;;;;;;;;;;;;;:35;35295:8;35269:35;;;;;;;;;;;;;;;;;;;;;;;;;35262:42;;35148:164;;;;:::o;50516:284::-;7244:12;:10;:12::i;:::-;7233:23;;:7;:5;:7::i;:::-;:23;;;7225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50617:1:::1;50606:8;:12;50590:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50706:9;;50694:8;50678:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;50662:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;50763:31;50773:10;50785:8;50763:9;:31::i;:::-;50516:284:::0;:::o;7922:201::-;7244:12;:10;:12::i;:::-;7233:23;;:7;:5;:7::i;:::-;:23;;;7225:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8031:1:::1;8011:22;;:8;:22;;::::0;8003:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8087:28;8106:8;8087:18;:28::i;:::-;7922:201:::0;:::o;19797:157::-;19882:4;19921:25;19906:40;;;:11;:40;;;;19899:47;;19797:157;;;:::o;36500:174::-;36557:4;36600:7;36581:15;:13;:15::i;:::-;:26;;:53;;;;;36621:13;;36611:7;:23;36581:53;:85;;;;;36639:11;:20;36651:7;36639:20;;;;;;;;;;;:27;;;;;;;;;;;;36638:28;36581:85;36574:92;;36500:174;;;:::o;5737:98::-;5790:7;5817:10;5810:17;;5737:98;:::o;45726:196::-;45868:2;45841:15;:24;45857:7;45841:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45906:7;45902:2;45886:28;;45895:5;45886:28;;;;;;;;;;;;45726:196;;;:::o;28921:92::-;28977:7;29004:1;28997:8;;28921:92;:::o;40674:2130::-;40789:35;40827:21;40840:7;40827:12;:21::i;:::-;40789:59;;40887:4;40865:26;;:13;:18;;;:26;;;40861:67;;40900:28;;;;;;;;;;;;;;40861:67;40941:22;40983:4;40967:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;41004:36;41021:4;41027:12;:10;:12::i;:::-;41004:16;:36::i;:::-;40967:73;:126;;;;41081:12;:10;:12::i;:::-;41057:36;;:20;41069:7;41057:11;:20::i;:::-;:36;;;40967:126;40941:153;;41112:17;41107:66;;41138:35;;;;;;;;;;;;;;41107:66;41202:1;41188:16;;:2;:16;;;41184:52;;41213:23;;;;;;;;;;;;;;41184:52;41249:43;41271:4;41277:2;41281:7;41290:1;41249:21;:43::i;:::-;41357:35;41374:1;41378:7;41387:4;41357:8;:35::i;:::-;41718:1;41688:12;:18;41701:4;41688:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41762:1;41734:12;:16;41747:2;41734:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41780:31;41814:11;:20;41826:7;41814:20;;;;;;;;;;;41780:54;;41865:2;41849:8;:13;;;:18;;;;;;;;;;;;;;;;;;41915:15;41882:8;:23;;;:49;;;;;;;;;;;;;;;;;;42183:19;42215:1;42205:7;:11;42183:33;;42231:31;42265:11;:24;42277:11;42265:24;;;;;;;;;;;42231:58;;42333:1;42308:27;;:8;:13;;;;;;;;;;;;:27;;;42304:384;;42518:13;;42503:11;:28;42499:174;;42572:4;42556:8;:13;;;:20;;;;;;;;;;;;;;;;;;42625:13;:28;;;42599:8;:23;;;:54;;;;;;;;;;;;;;;;;;42499:174;42304:384;41663:1036;;;42735:7;42731:2;42716:27;;42725:4;42716:27;;;;;;;;;;;;42754:42;42775:4;42781:2;42785:7;42794:1;42754:20;:42::i;:::-;40778:2026;;40674:2130;;;:::o;10975:317::-;11090:6;11065:21;:31;;11057:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11144:12;11162:9;:14;;11184:6;11162:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11143:52;;;11214:7;11206:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;11046:246;10975:317;;:::o;31648:1109::-;31710:21;;:::i;:::-;31744:12;31759:7;31744:22;;31827:4;31808:15;:13;:15::i;:::-;:23;;:47;;;;;31842:13;;31835:4;:20;31808:47;31804:886;;;31876:31;31910:11;:17;31922:4;31910:17;;;;;;;;;;;31876:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31951:9;:16;;;31946:729;;32022:1;31996:28;;:9;:14;;;:28;;;31992:101;;32060:9;32053:16;;;;;;31992:101;32395:261;32402:4;32395:261;;;32435:6;;;;;;;;32480:11;:17;32492:4;32480:17;;;;;;;;;;;32468:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32554:1;32528:28;;:9;:14;;;:28;;;32524:109;;32596:9;32589:16;;;;;;32524:109;32395:261;;;31946:729;31857:833;31804:886;32718:31;;;;;;;;;;;;;;31648:1109;;;;:::o;8283:191::-;8357:16;8376:6;;;;;;;;;;;8357:25;;8402:8;8393:6;;:17;;;;;;;;;;;;;;;;;;8457:8;8426:40;;8447:8;8426:40;;;;;;;;;;;;8346:128;8283:191;:::o;36758:104::-;36827:27;36837:2;36841:8;36827:27;;;;;;;;;;;;:9;:27::i;:::-;36758:104;;:::o;9714:326::-;9774:4;10031:1;10009:7;:19;;;:23;10002:30;;9714:326;;;:::o;46414:667::-;46577:4;46614:2;46598:36;;;46635:12;:10;:12::i;:::-;46649:4;46655:7;46664:5;46598:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;46594:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46849:1;46832:6;:13;:18;46828:235;;46878:40;;;;;;;;;;;;;;46828:235;47021:6;47015:13;47006:6;47002:2;46998:15;46991:38;46594:480;46727:45;;;46717:55;;;:6;:55;;;;46710:62;;;46414:667;;;;;;:::o;3299:723::-;3355:13;3585:1;3576:5;:10;3572:53;;3603:10;;;;;;;;;;;;;;;;;;;;;3572:53;3635:12;3650:5;3635:20;;3666:14;3691:78;3706:1;3698:4;:9;3691:78;;3724:8;;;;;:::i;:::-;;;;3755:2;3747:10;;;;;:::i;:::-;;;3691:78;;;3779:19;3811:6;3801:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3779:39;;3829:154;3845:1;3836:5;:10;3829:154;;3873:1;3863:11;;;;;:::i;:::-;;;3940:2;3932:5;:10;;;;:::i;:::-;3919:2;:24;;;;:::i;:::-;3906:39;;3889:6;3896;3889:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3969:2;3960:11;;;;;:::i;:::-;;;3829:154;;;4007:6;3993:21;;;;;3299:723;;;;:::o;47729:159::-;;;;;:::o;48547:158::-;;;;;:::o;37236:1751::-;37359:20;37382:13;;37359:36;;37424:1;37410:16;;:2;:16;;;37406:48;;37435:19;;;;;;;;;;;;;;37406:48;37481:1;37469:8;:13;37465:44;;37491:18;;;;;;;;;;;;;;37465:44;37522:61;37552:1;37556:2;37560:12;37574:8;37522:21;:61::i;:::-;37895:8;37860:12;:16;37873:2;37860:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37959:8;37919:12;:16;37932:2;37919:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38018:2;37985:11;:25;37997:12;37985:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38085:15;38035:11;:25;38047:12;38035:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38118:20;38141:12;38118:35;;38168:11;38197:8;38182:12;:23;38168:37;;38226:15;:2;:13;;;:15::i;:::-;38222:633;;;38262:314;38318:12;38314:2;38293:38;;38310:1;38293:38;;;;;;;;;;;;38359:69;38398:1;38402:2;38406:14;;;;;;38422:5;38359:30;:69::i;:::-;38354:174;;38464:40;;;;;;;;;;;;;;38354:174;38571:3;38555:12;:19;38262:314;;38657:12;38640:13;;:29;38636:43;;38671:8;;;38636:43;38222:633;;;38720:120;38776:14;;;;;;38772:2;38751:40;;38768:1;38751:40;;;;;;;;;;;;38835:3;38819:12;:19;38720:120;;38222:633;38885:12;38869:13;:28;;;;37835:1074;;38919:60;38948:1;38952:2;38956:12;38970:8;38919:20;:60::i;:::-;37348:1639;37236:1751;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:118::-;3030:24;3048:5;3030:24;:::i;:::-;3025:3;3018:37;2943:118;;:::o;3067:222::-;3160:4;3198:2;3187:9;3183:18;3175:26;;3211:71;3279:1;3268:9;3264:17;3255:6;3211:71;:::i;:::-;3067:222;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:116::-;5937:21;5952:5;5937:21;:::i;:::-;5930:5;5927:32;5917:60;;5973:1;5970;5963:12;5917:60;5867:116;:::o;5989:133::-;6032:5;6070:6;6057:20;6048:29;;6086:30;6110:5;6086:30;:::i;:::-;5989:133;;;;:::o;6128:323::-;6184:6;6233:2;6221:9;6212:7;6208:23;6204:32;6201:119;;;6239:79;;:::i;:::-;6201:119;6359:1;6384:50;6426:7;6417:6;6406:9;6402:22;6384:50;:::i;:::-;6374:60;;6330:114;6128:323;;;;:::o;6457:117::-;6566:1;6563;6556:12;6580:117;6689:1;6686;6679:12;6703:180;6751:77;6748:1;6741:88;6848:4;6845:1;6838:15;6872:4;6869:1;6862:15;6889:281;6972:27;6994:4;6972:27;:::i;:::-;6964:6;6960:40;7102:6;7090:10;7087:22;7066:18;7054:10;7051:34;7048:62;7045:88;;;7113:18;;:::i;:::-;7045:88;7153:10;7149:2;7142:22;6932:238;6889:281;;:::o;7176:129::-;7210:6;7237:20;;:::i;:::-;7227:30;;7266:33;7294:4;7286:6;7266:33;:::i;:::-;7176:129;;;:::o;7311:308::-;7373:4;7463:18;7455:6;7452:30;7449:56;;;7485:18;;:::i;:::-;7449:56;7523:29;7545:6;7523:29;:::i;:::-;7515:37;;7607:4;7601;7597:15;7589:23;;7311:308;;;:::o;7625:146::-;7722:6;7717:3;7712;7699:30;7763:1;7754:6;7749:3;7745:16;7738:27;7625:146;;;:::o;7777:425::-;7855:5;7880:66;7896:49;7938:6;7896:49;:::i;:::-;7880:66;:::i;:::-;7871:75;;7969:6;7962:5;7955:21;8007:4;8000:5;7996:16;8045:3;8036:6;8031:3;8027:16;8024:25;8021:112;;;8052:79;;:::i;:::-;8021:112;8142:54;8189:6;8184:3;8179;8142:54;:::i;:::-;7861:341;7777:425;;;;;:::o;8222:340::-;8278:5;8327:3;8320:4;8312:6;8308:17;8304:27;8294:122;;8335:79;;:::i;:::-;8294:122;8452:6;8439:20;8477:79;8552:3;8544:6;8537:4;8529:6;8525:17;8477:79;:::i;:::-;8468:88;;8284:278;8222:340;;;;:::o;8568:509::-;8637:6;8686:2;8674:9;8665:7;8661:23;8657:32;8654:119;;;8692:79;;:::i;:::-;8654:119;8840:1;8829:9;8825:17;8812:31;8870:18;8862:6;8859:30;8856:117;;;8892:79;;:::i;:::-;8856:117;8997:63;9052:7;9043:6;9032:9;9028:22;8997:63;:::i;:::-;8987:73;;8783:287;8568:509;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:468::-;9483:6;9491;9540:2;9528:9;9519:7;9515:23;9511:32;9508:119;;;9546:79;;:::i;:::-;9508:119;9666:1;9691:53;9736:7;9727:6;9716:9;9712:22;9691:53;:::i;:::-;9681:63;;9637:117;9793:2;9819:50;9861:7;9852:6;9841:9;9837:22;9819:50;:::i;:::-;9809:60;;9764:115;9418:468;;;;;:::o;9892:307::-;9953:4;10043:18;10035:6;10032:30;10029:56;;;10065:18;;:::i;:::-;10029:56;10103:29;10125:6;10103:29;:::i;:::-;10095:37;;10187:4;10181;10177:15;10169:23;;9892:307;;;:::o;10205:423::-;10282:5;10307:65;10323:48;10364:6;10323:48;:::i;:::-;10307:65;:::i;:::-;10298:74;;10395:6;10388:5;10381:21;10433:4;10426:5;10422:16;10471:3;10462:6;10457:3;10453:16;10450:25;10447:112;;;10478:79;;:::i;:::-;10447:112;10568:54;10615:6;10610:3;10605;10568:54;:::i;:::-;10288:340;10205:423;;;;;:::o;10647:338::-;10702:5;10751:3;10744:4;10736:6;10732:17;10728:27;10718:122;;10759:79;;:::i;:::-;10718:122;10876:6;10863:20;10901:78;10975:3;10967:6;10960:4;10952:6;10948:17;10901:78;:::i;:::-;10892:87;;10708:277;10647:338;;;;:::o;10991:943::-;11086:6;11094;11102;11110;11159:3;11147:9;11138:7;11134:23;11130:33;11127:120;;;11166:79;;:::i;:::-;11127:120;11286:1;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11257:117;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11541:2;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11512:118;11697:2;11686:9;11682:18;11669:32;11728:18;11720:6;11717:30;11714:117;;;11750:79;;:::i;:::-;11714:117;11855:62;11909:7;11900:6;11889:9;11885:22;11855:62;:::i;:::-;11845:72;;11640:287;10991:943;;;;;;;:::o;11940:474::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12289:118;11940:474;;;;;:::o;12420:180::-;12468:77;12465:1;12458:88;12565:4;12562:1;12555:15;12589:4;12586:1;12579:15;12606:320;12650:6;12687:1;12681:4;12677:12;12667:22;;12734:1;12728:4;12724:12;12755:18;12745:81;;12811:4;12803:6;12799:17;12789:27;;12745:81;12873:2;12865:6;12862:14;12842:18;12839:38;12836:84;;12892:18;;:::i;:::-;12836:84;12657:269;12606:320;;;:::o;12932:182::-;13072:34;13068:1;13060:6;13056:14;13049:58;12932:182;:::o;13120:366::-;13262:3;13283:67;13347:2;13342:3;13283:67;:::i;:::-;13276:74;;13359:93;13448:3;13359:93;:::i;:::-;13477:2;13472:3;13468:12;13461:19;;13120:366;;;:::o;13492:419::-;13658:4;13696:2;13685:9;13681:18;13673:26;;13745:9;13739:4;13735:20;13731:1;13720:9;13716:17;13709:47;13773:131;13899:4;13773:131;:::i;:::-;13765:139;;13492:419;;;:::o;13917:181::-;14057:33;14053:1;14045:6;14041:14;14034:57;13917:181;:::o;14104:366::-;14246:3;14267:67;14331:2;14326:3;14267:67;:::i;:::-;14260:74;;14343:93;14432:3;14343:93;:::i;:::-;14461:2;14456:3;14452:12;14445:19;;14104:366;;;:::o;14476:419::-;14642:4;14680:2;14669:9;14665:18;14657:26;;14729:9;14723:4;14719:20;14715:1;14704:9;14700:17;14693:47;14757:131;14883:4;14757:131;:::i;:::-;14749:139;;14476:419;;;:::o;14901:141::-;14950:4;14973:3;14965:11;;14996:3;14993:1;14986:14;15030:4;15027:1;15017:18;15009:26;;14901:141;;;:::o;15048:93::-;15085:6;15132:2;15127;15120:5;15116:14;15112:23;15102:33;;15048:93;;;:::o;15147:107::-;15191:8;15241:5;15235:4;15231:16;15210:37;;15147:107;;;;:::o;15260:393::-;15329:6;15379:1;15367:10;15363:18;15402:97;15432:66;15421:9;15402:97;:::i;:::-;15520:39;15550:8;15539:9;15520:39;:::i;:::-;15508:51;;15592:4;15588:9;15581:5;15577:21;15568:30;;15641:4;15631:8;15627:19;15620:5;15617:30;15607:40;;15336:317;;15260:393;;;;;:::o;15659:60::-;15687:3;15708:5;15701:12;;15659:60;;;:::o;15725:142::-;15775:9;15808:53;15826:34;15835:24;15853:5;15835:24;:::i;:::-;15826:34;:::i;:::-;15808:53;:::i;:::-;15795:66;;15725:142;;;:::o;15873:75::-;15916:3;15937:5;15930:12;;15873:75;;;:::o;15954:269::-;16064:39;16095:7;16064:39;:::i;:::-;16125:91;16174:41;16198:16;16174:41;:::i;:::-;16166:6;16159:4;16153:11;16125:91;:::i;:::-;16119:4;16112:105;16030:193;15954:269;;;:::o;16229:73::-;16274:3;16229:73;:::o;16308:189::-;16385:32;;:::i;:::-;16426:65;16484:6;16476;16470:4;16426:65;:::i;:::-;16361:136;16308:189;;:::o;16503:186::-;16563:120;16580:3;16573:5;16570:14;16563:120;;;16634:39;16671:1;16664:5;16634:39;:::i;:::-;16607:1;16600:5;16596:13;16587:22;;16563:120;;;16503:186;;:::o;16695:543::-;16796:2;16791:3;16788:11;16785:446;;;16830:38;16862:5;16830:38;:::i;:::-;16914:29;16932:10;16914:29;:::i;:::-;16904:8;16900:44;17097:2;17085:10;17082:18;17079:49;;;17118:8;17103:23;;17079:49;17141:80;17197:22;17215:3;17197:22;:::i;:::-;17187:8;17183:37;17170:11;17141:80;:::i;:::-;16800:431;;16785:446;16695:543;;;:::o;17244:117::-;17298:8;17348:5;17342:4;17338:16;17317:37;;17244:117;;;;:::o;17367:169::-;17411:6;17444:51;17492:1;17488:6;17480:5;17477:1;17473:13;17444:51;:::i;:::-;17440:56;17525:4;17519;17515:15;17505:25;;17418:118;17367:169;;;;:::o;17541:295::-;17617:4;17763:29;17788:3;17782:4;17763:29;:::i;:::-;17755:37;;17825:3;17822:1;17818:11;17812:4;17809:21;17801:29;;17541:295;;;;:::o;17841:1395::-;17958:37;17991:3;17958:37;:::i;:::-;18060:18;18052:6;18049:30;18046:56;;;18082:18;;:::i;:::-;18046:56;18126:38;18158:4;18152:11;18126:38;:::i;:::-;18211:67;18271:6;18263;18257:4;18211:67;:::i;:::-;18305:1;18329:4;18316:17;;18361:2;18353:6;18350:14;18378:1;18373:618;;;;19035:1;19052:6;19049:77;;;19101:9;19096:3;19092:19;19086:26;19077:35;;19049:77;19152:67;19212:6;19205:5;19152:67;:::i;:::-;19146:4;19139:81;19008:222;18343:887;;18373:618;18425:4;18421:9;18413:6;18409:22;18459:37;18491:4;18459:37;:::i;:::-;18518:1;18532:208;18546:7;18543:1;18540:14;18532:208;;;18625:9;18620:3;18616:19;18610:26;18602:6;18595:42;18676:1;18668:6;18664:14;18654:24;;18723:2;18712:9;18708:18;18695:31;;18569:4;18566:1;18562:12;18557:17;;18532:208;;;18768:6;18759:7;18756:19;18753:179;;;18826:9;18821:3;18817:19;18811:26;18869:48;18911:4;18903:6;18899:17;18888:9;18869:48;:::i;:::-;18861:6;18854:64;18776:156;18753:179;18978:1;18974;18966:6;18962:14;18958:22;18952:4;18945:36;18380:611;;;18343:887;;17933:1303;;;17841:1395;;:::o;19242:173::-;19382:25;19378:1;19370:6;19366:14;19359:49;19242:173;:::o;19421:366::-;19563:3;19584:67;19648:2;19643:3;19584:67;:::i;:::-;19577:74;;19660:93;19749:3;19660:93;:::i;:::-;19778:2;19773:3;19769:12;19762:19;;19421:366;;;:::o;19793:419::-;19959:4;19997:2;19986:9;19982:18;19974:26;;20046:9;20040:4;20036:20;20032:1;20021:9;20017:17;20010:47;20074:131;20200:4;20074:131;:::i;:::-;20066:139;;19793:419;;;:::o;20218:180::-;20266:77;20263:1;20256:88;20363:4;20360:1;20353:15;20387:4;20384:1;20377:15;20404:191;20444:3;20463:20;20481:1;20463:20;:::i;:::-;20458:25;;20497:20;20515:1;20497:20;:::i;:::-;20492:25;;20540:1;20537;20533:9;20526:16;;20561:3;20558:1;20555:10;20552:36;;;20568:18;;:::i;:::-;20552:36;20404:191;;;;:::o;20601:157::-;20741:9;20737:1;20729:6;20725:14;20718:33;20601:157;:::o;20764:365::-;20906:3;20927:66;20991:1;20986:3;20927:66;:::i;:::-;20920:73;;21002:93;21091:3;21002:93;:::i;:::-;21120:2;21115:3;21111:12;21104:19;;20764:365;;;:::o;21135:419::-;21301:4;21339:2;21328:9;21324:18;21316:26;;21388:9;21382:4;21378:20;21374:1;21363:9;21359:17;21352:47;21416:131;21542:4;21416:131;:::i;:::-;21408:139;;21135:419;;;:::o;21560:410::-;21600:7;21623:20;21641:1;21623:20;:::i;:::-;21618:25;;21657:20;21675:1;21657:20;:::i;:::-;21652:25;;21712:1;21709;21705:9;21734:30;21752:11;21734:30;:::i;:::-;21723:41;;21913:1;21904:7;21900:15;21897:1;21894:22;21874:1;21867:9;21847:83;21824:139;;21943:18;;:::i;:::-;21824:139;21608:362;21560:410;;;;:::o;21976:174::-;22116:26;22112:1;22104:6;22100:14;22093:50;21976:174;:::o;22156:366::-;22298:3;22319:67;22383:2;22378:3;22319:67;:::i;:::-;22312:74;;22395:93;22484:3;22395:93;:::i;:::-;22513:2;22508:3;22504:12;22497:19;;22156:366;;;:::o;22528:419::-;22694:4;22732:2;22721:9;22717:18;22709:26;;22781:9;22775:4;22771:20;22767:1;22756:9;22752:17;22745:47;22809:131;22935:4;22809:131;:::i;:::-;22801:139;;22528:419;;;:::o;22953:221::-;23093:34;23089:1;23081:6;23077:14;23070:58;23162:4;23157:2;23149:6;23145:15;23138:29;22953:221;:::o;23180:366::-;23322:3;23343:67;23407:2;23402:3;23343:67;:::i;:::-;23336:74;;23419:93;23508:3;23419:93;:::i;:::-;23537:2;23532:3;23528:12;23521:19;;23180:366;;;:::o;23552:419::-;23718:4;23756:2;23745:9;23741:18;23733:26;;23805:9;23799:4;23795:20;23791:1;23780:9;23776:17;23769:47;23833:131;23959:4;23833:131;:::i;:::-;23825:139;;23552:419;;;:::o;23977:234::-;24117:34;24113:1;24105:6;24101:14;24094:58;24186:17;24181:2;24173:6;24169:15;24162:42;23977:234;:::o;24217:366::-;24359:3;24380:67;24444:2;24439:3;24380:67;:::i;:::-;24373:74;;24456:93;24545:3;24456:93;:::i;:::-;24574:2;24569:3;24565:12;24558:19;;24217:366;;;:::o;24589:419::-;24755:4;24793:2;24782:9;24778:18;24770:26;;24842:9;24836:4;24832:20;24828:1;24817:9;24813:17;24806:47;24870:131;24996:4;24870:131;:::i;:::-;24862:139;;24589:419;;;:::o;25014:148::-;25116:11;25153:3;25138:18;;25014:148;;;;:::o;25192:874::-;25295:3;25332:5;25326:12;25361:36;25387:9;25361:36;:::i;:::-;25413:89;25495:6;25490:3;25413:89;:::i;:::-;25406:96;;25533:1;25522:9;25518:17;25549:1;25544:166;;;;25724:1;25719:341;;;;25511:549;;25544:166;25628:4;25624:9;25613;25609:25;25604:3;25597:38;25690:6;25683:14;25676:22;25668:6;25664:35;25659:3;25655:45;25648:52;;25544:166;;25719:341;25786:38;25818:5;25786:38;:::i;:::-;25846:1;25860:154;25874:6;25871:1;25868:13;25860:154;;;25948:7;25942:14;25938:1;25933:3;25929:11;25922:35;25998:1;25989:7;25985:15;25974:26;;25896:4;25893:1;25889:12;25884:17;;25860:154;;;26043:6;26038:3;26034:16;26027:23;;25726:334;;25511:549;;25299:767;;25192:874;;;;:::o;26072:151::-;26212:3;26208:1;26200:6;26196:14;26189:27;26072:151;:::o;26229:400::-;26389:3;26410:84;26492:1;26487:3;26410:84;:::i;:::-;26403:91;;26503:93;26592:3;26503:93;:::i;:::-;26621:1;26616:3;26612:11;26605:18;;26229:400;;;:::o;26635:390::-;26741:3;26769:39;26802:5;26769:39;:::i;:::-;26824:89;26906:6;26901:3;26824:89;:::i;:::-;26817:96;;26922:65;26980:6;26975:3;26968:4;26961:5;26957:16;26922:65;:::i;:::-;27012:6;27007:3;27003:16;26996:23;;26745:280;26635:390;;;;:::o;27031:155::-;27171:7;27167:1;27159:6;27155:14;27148:31;27031:155;:::o;27192:400::-;27352:3;27373:84;27455:1;27450:3;27373:84;:::i;:::-;27366:91;;27466:93;27555:3;27466:93;:::i;:::-;27584:1;27579:3;27575:11;27568:18;;27192:400;;;:::o;27598:961::-;27977:3;27999:92;28087:3;28078:6;27999:92;:::i;:::-;27992:99;;28108:148;28252:3;28108:148;:::i;:::-;28101:155;;28273:95;28364:3;28355:6;28273:95;:::i;:::-;28266:102;;28385:148;28529:3;28385:148;:::i;:::-;28378:155;;28550:3;28543:10;;27598:961;;;;;:::o;28565:169::-;28705:21;28701:1;28693:6;28689:14;28682:45;28565:169;:::o;28740:366::-;28882:3;28903:67;28967:2;28962:3;28903:67;:::i;:::-;28896:74;;28979:93;29068:3;28979:93;:::i;:::-;29097:2;29092:3;29088:12;29081:19;;28740:366;;;:::o;29112:419::-;29278:4;29316:2;29305:9;29301:18;29293:26;;29365:9;29359:4;29355:20;29351:1;29340:9;29336:17;29329:47;29393:131;29519:4;29393:131;:::i;:::-;29385:139;;29112:419;;;:::o;29537:173::-;29677:25;29673:1;29665:6;29661:14;29654:49;29537:173;:::o;29716:366::-;29858:3;29879:67;29943:2;29938:3;29879:67;:::i;:::-;29872:74;;29955:93;30044:3;29955:93;:::i;:::-;30073:2;30068:3;30064:12;30057:19;;29716:366;;;:::o;30088:419::-;30254:4;30292:2;30281:9;30277:18;30269:26;;30341:9;30335:4;30331:20;30327:1;30316:9;30312:17;30305:47;30369:131;30495:4;30369:131;:::i;:::-;30361:139;;30088:419;;;:::o;30513:225::-;30653:34;30649:1;30641:6;30637:14;30630:58;30722:8;30717:2;30709:6;30705:15;30698:33;30513:225;:::o;30744:366::-;30886:3;30907:67;30971:2;30966:3;30907:67;:::i;:::-;30900:74;;30983:93;31072:3;30983:93;:::i;:::-;31101:2;31096:3;31092:12;31085:19;;30744:366;;;:::o;31116:419::-;31282:4;31320:2;31309:9;31305:18;31297:26;;31369:9;31363:4;31359:20;31355:1;31344:9;31340:17;31333:47;31397:131;31523:4;31397:131;:::i;:::-;31389:139;;31116:419;;;:::o;31541:179::-;31681:31;31677:1;31669:6;31665:14;31658:55;31541:179;:::o;31726:366::-;31868:3;31889:67;31953:2;31948:3;31889:67;:::i;:::-;31882:74;;31965:93;32054:3;31965:93;:::i;:::-;32083:2;32078:3;32074:12;32067:19;;31726:366;;;:::o;32098:419::-;32264:4;32302:2;32291:9;32287:18;32279:26;;32351:9;32345:4;32341:20;32337:1;32326:9;32322:17;32315:47;32379:131;32505:4;32379:131;:::i;:::-;32371:139;;32098:419;;;:::o;32523:147::-;32624:11;32661:3;32646:18;;32523:147;;;;:::o;32676:114::-;;:::o;32796:398::-;32955:3;32976:83;33057:1;33052:3;32976:83;:::i;:::-;32969:90;;33068:93;33157:3;33068:93;:::i;:::-;33186:1;33181:3;33177:11;33170:18;;32796:398;;;:::o;33200:379::-;33384:3;33406:147;33549:3;33406:147;:::i;:::-;33399:154;;33570:3;33563:10;;33200:379;;;:::o;33585:245::-;33725:34;33721:1;33713:6;33709:14;33702:58;33794:28;33789:2;33781:6;33777:15;33770:53;33585:245;:::o;33836:366::-;33978:3;33999:67;34063:2;34058:3;33999:67;:::i;:::-;33992:74;;34075:93;34164:3;34075:93;:::i;:::-;34193:2;34188:3;34184:12;34177:19;;33836:366;;;:::o;34208:419::-;34374:4;34412:2;34401:9;34397:18;34389:26;;34461:9;34455:4;34451:20;34447:1;34436:9;34432:17;34425:47;34489:131;34615:4;34489:131;:::i;:::-;34481:139;;34208:419;;;:::o;34633:98::-;34684:6;34718:5;34712:12;34702:22;;34633:98;;;:::o;34737:168::-;34820:11;34854:6;34849:3;34842:19;34894:4;34889:3;34885:14;34870:29;;34737:168;;;;:::o;34911:373::-;34997:3;35025:38;35057:5;35025:38;:::i;:::-;35079:70;35142:6;35137:3;35079:70;:::i;:::-;35072:77;;35158:65;35216:6;35211:3;35204:4;35197:5;35193:16;35158:65;:::i;:::-;35248:29;35270:6;35248:29;:::i;:::-;35243:3;35239:39;35232:46;;35001:283;34911:373;;;;:::o;35290:640::-;35485:4;35523:3;35512:9;35508:19;35500:27;;35537:71;35605:1;35594:9;35590:17;35581:6;35537:71;:::i;:::-;35618:72;35686:2;35675:9;35671:18;35662:6;35618:72;:::i;:::-;35700;35768:2;35757:9;35753:18;35744:6;35700:72;:::i;:::-;35819:9;35813:4;35809:20;35804:2;35793:9;35789:18;35782:48;35847:76;35918:4;35909:6;35847:76;:::i;:::-;35839:84;;35290:640;;;;;;;:::o;35936:141::-;35992:5;36023:6;36017:13;36008:22;;36039:32;36065:5;36039:32;:::i;:::-;35936:141;;;;:::o;36083:349::-;36152:6;36201:2;36189:9;36180:7;36176:23;36172:32;36169:119;;;36207:79;;:::i;:::-;36169:119;36327:1;36352:63;36407:7;36398:6;36387:9;36383:22;36352:63;:::i;:::-;36342:73;;36298:127;36083:349;;;;:::o;36438:233::-;36477:3;36500:24;36518:5;36500:24;:::i;:::-;36491:33;;36546:66;36539:5;36536:77;36533:103;;36616:18;;:::i;:::-;36533:103;36663:1;36656:5;36652:13;36645:20;;36438:233;;;:::o;36677:180::-;36725:77;36722:1;36715:88;36822:4;36819:1;36812:15;36846:4;36843:1;36836:15;36863:185;36903:1;36920:20;36938:1;36920:20;:::i;:::-;36915:25;;36954:20;36972:1;36954:20;:::i;:::-;36949:25;;36993:1;36983:35;;36998:18;;:::i;:::-;36983:35;37040:1;37037;37033:9;37028:14;;36863:185;;;;:::o;37054:194::-;37094:4;37114:20;37132:1;37114:20;:::i;:::-;37109:25;;37148:20;37166:1;37148:20;:::i;:::-;37143:25;;37192:1;37189;37185:9;37177:17;;37216:1;37210:4;37207:11;37204:37;;;37221:18;;:::i;:::-;37204:37;37054:194;;;;:::o;37254:176::-;37286:1;37303:20;37321:1;37303:20;:::i;:::-;37298:25;;37337:20;37355:1;37337:20;:::i;:::-;37332:25;;37376:1;37366:35;;37381:18;;:::i;:::-;37366:35;37422:1;37419;37415:9;37410:14;;37254:176;;;;:::o;37436:180::-;37484:77;37481:1;37474:88;37581:4;37578:1;37571:15;37605:4;37602:1;37595:15
Swarm Source
ipfs://18ab4e6b56925f7d70d2edab66bb725243290f4d0955c71b4095d55f98839180
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.