Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 7 from a total of 7 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 17026312 | 633 days ago | IN | 0 ETH | 0.00094983 | ||||
Mint | 17019215 | 634 days ago | IN | 0.014 ETH | 0.00340754 | ||||
Mint | 17019098 | 634 days ago | IN | 0.014 ETH | 0.00332506 | ||||
Mint | 17018808 | 634 days ago | IN | 0.014 ETH | 0.00282764 | ||||
Set Base URI | 16950921 | 644 days ago | IN | 0 ETH | 0.00059305 | ||||
Set Base URI | 16950915 | 644 days ago | IN | 0 ETH | 0.00093588 | ||||
Mint For Address | 16950827 | 644 days ago | IN | 0 ETH | 0.00154585 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
17026312 | 633 days ago | 0.042 ETH |
Loading...
Loading
Contract Name:
Munzters
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-31 */ // SPDX-License-Identifier: MIT 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; } } /** * @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); } } /** * @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; } } /** * @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); } } /** * @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); } } } } /** * @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); } /** * @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); } /** * @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; } } /** * @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; } /** * @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); } error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract Munzters is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public _baseTokenURI; string public hiddenMetadataUri; uint256 public cost = 0.0028 ether; uint256 public platFee = 0.000575 ether; uint256 public maxSupply = 25000; uint256 public maxMintAmountPerTx = 5; bool public paused; bool public revealed = true; constructor() ERC721A("Munzters", "MUNTZ") { setHiddenMetadataUri("https://ipfs.Munzters.xyz"); } function freeMint(uint256 _mintAmount) public payable nonReentrant { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!"); require(!paused, "The contract is paused!"); require(msg.value >= platFee * _mintAmount, "Insufficient funds!"); if (totalSupply() >= maxSupply) { require(msg.value > 0, "Max Supply exceeded!"); } _safeMint(_msgSender(), _mintAmount); } function mint(uint256 _mintAmount) public payable nonReentrant { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!"); require(!paused, "The contract is paused!"); require(msg.value >= cost * _mintAmount, "Insufficient funds!"); if (totalSupply() >= maxSupply) { require(msg.value > 0, "Max Supply exceeded!"); } _safeMint(_msgSender(), _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setPlatFee(uint256 _cost) public onlyOwner { platFee = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setMaxSupply(uint256 _maxSupply) public onlyOwner { maxSupply = _maxSupply; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner nonReentrant { (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); } // METADATA HANDLING function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setBaseURI(string calldata baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI does not exist!"); if (revealed) { return string(abi.encodePacked(_baseURI(), _tokenId.toString())); } else { return hiddenMetadataUri; } } }
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":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"platFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPlatFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526609f295cd5f0000600c5566020af59ebef000600d556161a8600e556005600f556001601060016101000a81548160ff0219169083151502179055503480156200004d57600080fd5b506040518060400160405280600881526020017f4d756e7a746572730000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d554e545a0000000000000000000000000000000000000000000000000000008152508160029081620000cb919062000589565b508060039081620000dd919062000589565b50620000ee6200016a60201b60201c565b6000819055505050620001166200010a6200017360201b60201c565b6200017b60201b60201c565b6001600981905550620001646040518060400160405280601981526020017f68747470733a2f2f697066732e4d756e7a746572732e78797a000000000000008152506200024160201b60201c565b620006f3565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002516200017360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000277620002e560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c790620006d1565b60405180910390fd5b80600b9081620002e1919062000589565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200039157607f821691505b602082108103620003a757620003a662000349565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004117fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003d2565b6200041d8683620003d2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200046a620004646200045e8462000435565b6200043f565b62000435565b9050919050565b6000819050919050565b620004868362000449565b6200049e620004958262000471565b848454620003df565b825550505050565b600090565b620004b5620004a6565b620004c28184846200047b565b505050565b5b81811015620004ea57620004de600082620004ab565b600181019050620004c8565b5050565b601f82111562000539576200050381620003ad565b6200050e84620003c2565b810160208510156200051e578190505b620005366200052d85620003c2565b830182620004c7565b50505b505050565b600082821c905092915050565b60006200055e600019846008026200053e565b1980831691505092915050565b60006200057983836200054b565b9150826002028217905092915050565b62000594826200030f565b67ffffffffffffffff811115620005b057620005af6200031a565b5b620005bc825462000378565b620005c9828285620004ee565b600060209050601f831160018114620006015760008415620005ec578287015190505b620005f885826200056b565b86555062000668565b601f1984166200061186620003ad565b60005b828110156200063b5784890151825560018201915060208501945060208101905062000614565b868310156200065b578489015162000657601f8916826200054b565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620006b960208362000670565b9150620006c68262000681565b602082019050919050565b60006020820190508181036000830152620006ec81620006aa565b9050919050565b61425580620007036000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063b071401b116100ab578063d5abeb011161006f578063d5abeb011461077b578063e0a80853146107a6578063e985e9c5146107cf578063efbd73f41461080c578063f2fde38b146108355761021a565b8063b071401b14610698578063b88d4fde146106c1578063ba6527d3146106ea578063c87b56dd14610713578063cfc86f7b146107505761021a565b806394354fd0116100f257806394354fd0146105d257806395d89b41146105fd578063a0712d6814610628578063a22cb46514610644578063a45ba8e71461066d5761021a565b806370a0823114610537578063715018a6146105745780637c928fe91461058b5780638da5cb5b146105a75761021a565b806342842e0e116101a65780635183022711610175578063518302271461045257806355f804b31461047d5780635c975abb146104a65780636352211e146104d15780636f8b44b01461050e5761021a565b806342842e0e146103ac57806344a0d68a146103d55780634e014fa5146103fe5780634fdd43cb146104295761021a565b806313faede6116101ed57806313faede6146102ed57806316c38b3c1461031857806318160ddd1461034157806323b872dd1461036c5780633ccfd60b146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612fb8565b61085e565b6040516102539190613000565b60405180910390f35b34801561026857600080fd5b50610271610940565b60405161027e91906130ab565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613103565b6109d2565b6040516102bb9190613171565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e691906131b8565b610a4e565b005b3480156102f957600080fd5b50610302610b58565b60405161030f9190613207565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061324e565b610b5e565b005b34801561034d57600080fd5b50610356610bf7565b6040516103639190613207565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061327b565b610c0e565b005b3480156103a157600080fd5b506103aa610c1e565b005b3480156103b857600080fd5b506103d360048036038101906103ce919061327b565b610d6f565b005b3480156103e157600080fd5b506103fc60048036038101906103f79190613103565b610d8f565b005b34801561040a57600080fd5b50610413610e15565b6040516104209190613207565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190613403565b610e1b565b005b34801561045e57600080fd5b50610467610eaa565b6040516104749190613000565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f91906134ac565b610ebd565b005b3480156104b257600080fd5b506104bb610f4f565b6040516104c89190613000565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190613103565b610f62565b6040516105059190613171565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190613103565b610f78565b005b34801561054357600080fd5b5061055e600480360381019061055991906134f9565b610ffe565b60405161056b9190613207565b60405180910390f35b34801561058057600080fd5b506105896110cd565b005b6105a560048036038101906105a09190613103565b611155565b005b3480156105b357600080fd5b506105bc61135a565b6040516105c99190613171565b60405180910390f35b3480156105de57600080fd5b506105e7611384565b6040516105f49190613207565b60405180910390f35b34801561060957600080fd5b5061061261138a565b60405161061f91906130ab565b60405180910390f35b610642600480360381019061063d9190613103565b61141c565b005b34801561065057600080fd5b5061066b60048036038101906106669190613526565b611621565b005b34801561067957600080fd5b50610682611798565b60405161068f91906130ab565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba9190613103565b611826565b005b3480156106cd57600080fd5b506106e860048036038101906106e39190613607565b6118ac565b005b3480156106f657600080fd5b50610711600480360381019061070c9190613103565b611928565b005b34801561071f57600080fd5b5061073a60048036038101906107359190613103565b6119ae565b60405161074791906130ab565b60405180910390f35b34801561075c57600080fd5b50610765611ad8565b60405161077291906130ab565b60405180910390f35b34801561078757600080fd5b50610790611b66565b60405161079d9190613207565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c8919061324e565b611b6c565b005b3480156107db57600080fd5b506107f660048036038101906107f1919061368a565b611c05565b6040516108039190613000565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e91906136ca565b611c99565b005b34801561084157600080fd5b5061085c600480360381019061085791906134f9565b611d23565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610939575061093882611e1a565b5b9050919050565b60606002805461094f90613739565b80601f016020809104026020016040519081016040528092919081815260200182805461097b90613739565b80156109c85780601f1061099d576101008083540402835291602001916109c8565b820191906000526020600020905b8154815290600101906020018083116109ab57829003601f168201915b5050505050905090565b60006109dd82611e84565b610a13576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5982610f62565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ac0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610adf611ed2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b115750610b0f81610b0a611ed2565b611c05565b155b15610b48576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b53838383611eda565b505050565b600c5481565b610b66611ed2565b73ffffffffffffffffffffffffffffffffffffffff16610b8461135a565b73ffffffffffffffffffffffffffffffffffffffff1614610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd1906137b6565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610c01611f8c565b6001546000540303905090565b610c19838383611f95565b505050565b610c26611ed2565b73ffffffffffffffffffffffffffffffffffffffff16610c4461135a565b73ffffffffffffffffffffffffffffffffffffffff1614610c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c91906137b6565b60405180910390fd5b600260095403610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690613822565b60405180910390fd5b60026009819055506000610cf161135a565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d1490613873565b60006040518083038185875af1925050503d8060008114610d51576040519150601f19603f3d011682016040523d82523d6000602084013e610d56565b606091505b5050905080610d6457600080fd5b506001600981905550565b610d8a838383604051806020016040528060008152506118ac565b505050565b610d97611ed2565b73ffffffffffffffffffffffffffffffffffffffff16610db561135a565b73ffffffffffffffffffffffffffffffffffffffff1614610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e02906137b6565b60405180910390fd5b80600c8190555050565b600d5481565b610e23611ed2565b73ffffffffffffffffffffffffffffffffffffffff16610e4161135a565b73ffffffffffffffffffffffffffffffffffffffff1614610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e906137b6565b60405180910390fd5b80600b9081610ea69190613a34565b5050565b601060019054906101000a900460ff1681565b610ec5611ed2565b73ffffffffffffffffffffffffffffffffffffffff16610ee361135a565b73ffffffffffffffffffffffffffffffffffffffff1614610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f30906137b6565b60405180910390fd5b8181600a9182610f4a929190613b11565b505050565b601060009054906101000a900460ff1681565b6000610f6d82612449565b600001519050919050565b610f80611ed2565b73ffffffffffffffffffffffffffffffffffffffff16610f9e61135a565b73ffffffffffffffffffffffffffffffffffffffff1614610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb906137b6565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611065576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110d5611ed2565b73ffffffffffffffffffffffffffffffffffffffff166110f361135a565b73ffffffffffffffffffffffffffffffffffffffff1614611149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611140906137b6565b60405180910390fd5b61115360006126d8565b565b60026009540361119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190613822565b60405180910390fd5b60026009819055506000811180156111b45750600f548111155b6111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90613c2d565b60405180910390fd5b600e54816111ff610bf7565b6112099190613c7c565b111561124a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124190613cfc565b60405180910390fd5b601060009054906101000a900460ff161561129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190613d68565b60405180910390fd5b80600d546112a89190613d88565b3410156112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e190613e16565b60405180910390fd5b600e546112f5610bf7565b1061133e576000341161133d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133490613e82565b60405180910390fd5b5b61134f611349611ed2565b8261279e565b600160098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606003805461139990613739565b80601f01602080910402602001604051908101604052809291908181526020018280546113c590613739565b80156114125780601f106113e757610100808354040283529160200191611412565b820191906000526020600020905b8154815290600101906020018083116113f557829003601f168201915b5050505050905090565b600260095403611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145890613822565b60405180910390fd5b600260098190555060008111801561147b5750600f548111155b6114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190613c2d565b60405180910390fd5b600e54816114c6610bf7565b6114d09190613c7c565b1115611511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150890613cfc565b60405180910390fd5b601060009054906101000a900460ff1615611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890613d68565b60405180910390fd5b80600c5461156f9190613d88565b3410156115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890613e16565b60405180910390fd5b600e546115bc610bf7565b106116055760003411611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb90613e82565b60405180910390fd5b5b611616611610611ed2565b8261279e565b600160098190555050565b611629611ed2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361168d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061169a611ed2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611747611ed2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161178c9190613000565b60405180910390a35050565b600b80546117a590613739565b80601f01602080910402602001604051908101604052809291908181526020018280546117d190613739565b801561181e5780601f106117f35761010080835404028352916020019161181e565b820191906000526020600020905b81548152906001019060200180831161180157829003601f168201915b505050505081565b61182e611ed2565b73ffffffffffffffffffffffffffffffffffffffff1661184c61135a565b73ffffffffffffffffffffffffffffffffffffffff16146118a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611899906137b6565b60405180910390fd5b80600f8190555050565b6118b7848484611f95565b6118d68373ffffffffffffffffffffffffffffffffffffffff166127bc565b80156118eb57506118e9848484846127df565b155b15611922576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611930611ed2565b73ffffffffffffffffffffffffffffffffffffffff1661194e61135a565b73ffffffffffffffffffffffffffffffffffffffff16146119a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199b906137b6565b60405180910390fd5b80600d8190555050565b60606119b982611e84565b6119f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ef90613eee565b60405180910390fd5b601060019054906101000a900460ff1615611a4557611a1561292f565b611a1e836129c1565b604051602001611a2f929190613f4a565b6040516020818303038152906040529050611ad3565b600b8054611a5290613739565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7e90613739565b8015611acb5780601f10611aa057610100808354040283529160200191611acb565b820191906000526020600020905b815481529060010190602001808311611aae57829003601f168201915b505050505090505b919050565b600a8054611ae590613739565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1190613739565b8015611b5e5780601f10611b3357610100808354040283529160200191611b5e565b820191906000526020600020905b815481529060010190602001808311611b4157829003601f168201915b505050505081565b600e5481565b611b74611ed2565b73ffffffffffffffffffffffffffffffffffffffff16611b9261135a565b73ffffffffffffffffffffffffffffffffffffffff1614611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf906137b6565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ca1611ed2565b73ffffffffffffffffffffffffffffffffffffffff16611cbf61135a565b73ffffffffffffffffffffffffffffffffffffffff1614611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c906137b6565b60405180910390fd5b611d1f818361279e565b5050565b611d2b611ed2565b73ffffffffffffffffffffffffffffffffffffffff16611d4961135a565b73ffffffffffffffffffffffffffffffffffffffff1614611d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d96906137b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0590613fe0565b60405180910390fd5b611e17816126d8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611e8f611f8c565b11158015611e9e575060005482105b8015611ecb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611fa082612449565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461200b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661202c611ed2565b73ffffffffffffffffffffffffffffffffffffffff16148061205b575061205a85612055611ed2565b611c05565b5b806120a05750612069611ed2565b73ffffffffffffffffffffffffffffffffffffffff16612088846109d2565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806120d9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361213f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61214c8585856001612b21565b61215860008487611eda565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036123d75760005482146123d657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124428585856001612b27565b5050505050565b612451612f09565b60008290508061245f611f8c565b1115801561246e575060005481105b156126a1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161269f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125835780925050506126d3565b5b60011561269e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126995780925050506126d3565b612584565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127b8828260405180602001604052806000815250612b2d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612805611ed2565b8786866040518563ffffffff1660e01b81526004016128279493929190614055565b6020604051808303816000875af192505050801561286357506040513d601f19601f8201168201806040525081019061286091906140b6565b60015b6128dc573d8060008114612893576040519150601f19603f3d011682016040523d82523d6000602084013e612898565b606091505b5060008151036128d4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461293e90613739565b80601f016020809104026020016040519081016040528092919081815260200182805461296a90613739565b80156129b75780601f1061298c576101008083540402835291602001916129b7565b820191906000526020600020905b81548152906001019060200180831161299a57829003601f168201915b5050505050905090565b606060008203612a08576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b1c565b600082905060005b60008214612a3a578080612a23906140e3565b915050600a82612a33919061415a565b9150612a10565b60008167ffffffffffffffff811115612a5657612a556132d8565b5b6040519080825280601f01601f191660200182016040528015612a885781602001600182028036833780820191505090505b5090505b60008514612b1557600182612aa1919061418b565b9150600a85612ab091906141bf565b6030612abc9190613c7c565b60f81b818381518110612ad257612ad16141f0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b0e919061415a565b9450612a8c565b8093505050505b919050565b50505050565b50505050565b612b3a8383836001612b3f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612bab576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612be5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bf26000868387612b21565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612dbc5750612dbb8773ffffffffffffffffffffffffffffffffffffffff166127bc565b5b15612e81575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e3160008884806001019550886127df565b612e67576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612dc2578260005414612e7c57600080fd5b612eec565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612e82575b816000819055505050612f026000868387612b27565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f9581612f60565b8114612fa057600080fd5b50565b600081359050612fb281612f8c565b92915050565b600060208284031215612fce57612fcd612f56565b5b6000612fdc84828501612fa3565b91505092915050565b60008115159050919050565b612ffa81612fe5565b82525050565b60006020820190506130156000830184612ff1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561305557808201518184015260208101905061303a565b60008484015250505050565b6000601f19601f8301169050919050565b600061307d8261301b565b6130878185613026565b9350613097818560208601613037565b6130a081613061565b840191505092915050565b600060208201905081810360008301526130c58184613072565b905092915050565b6000819050919050565b6130e0816130cd565b81146130eb57600080fd5b50565b6000813590506130fd816130d7565b92915050565b60006020828403121561311957613118612f56565b5b6000613127848285016130ee565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061315b82613130565b9050919050565b61316b81613150565b82525050565b60006020820190506131866000830184613162565b92915050565b61319581613150565b81146131a057600080fd5b50565b6000813590506131b28161318c565b92915050565b600080604083850312156131cf576131ce612f56565b5b60006131dd858286016131a3565b92505060206131ee858286016130ee565b9150509250929050565b613201816130cd565b82525050565b600060208201905061321c60008301846131f8565b92915050565b61322b81612fe5565b811461323657600080fd5b50565b60008135905061324881613222565b92915050565b60006020828403121561326457613263612f56565b5b600061327284828501613239565b91505092915050565b60008060006060848603121561329457613293612f56565b5b60006132a2868287016131a3565b93505060206132b3868287016131a3565b92505060406132c4868287016130ee565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61331082613061565b810181811067ffffffffffffffff8211171561332f5761332e6132d8565b5b80604052505050565b6000613342612f4c565b905061334e8282613307565b919050565b600067ffffffffffffffff82111561336e5761336d6132d8565b5b61337782613061565b9050602081019050919050565b82818337600083830152505050565b60006133a66133a184613353565b613338565b9050828152602081018484840111156133c2576133c16132d3565b5b6133cd848285613384565b509392505050565b600082601f8301126133ea576133e96132ce565b5b81356133fa848260208601613393565b91505092915050565b60006020828403121561341957613418612f56565b5b600082013567ffffffffffffffff81111561343757613436612f5b565b5b613443848285016133d5565b91505092915050565b600080fd5b600080fd5b60008083601f84011261346c5761346b6132ce565b5b8235905067ffffffffffffffff8111156134895761348861344c565b5b6020830191508360018202830111156134a5576134a4613451565b5b9250929050565b600080602083850312156134c3576134c2612f56565b5b600083013567ffffffffffffffff8111156134e1576134e0612f5b565b5b6134ed85828601613456565b92509250509250929050565b60006020828403121561350f5761350e612f56565b5b600061351d848285016131a3565b91505092915050565b6000806040838503121561353d5761353c612f56565b5b600061354b858286016131a3565b925050602061355c85828601613239565b9150509250929050565b600067ffffffffffffffff821115613581576135806132d8565b5b61358a82613061565b9050602081019050919050565b60006135aa6135a584613566565b613338565b9050828152602081018484840111156135c6576135c56132d3565b5b6135d1848285613384565b509392505050565b600082601f8301126135ee576135ed6132ce565b5b81356135fe848260208601613597565b91505092915050565b6000806000806080858703121561362157613620612f56565b5b600061362f878288016131a3565b9450506020613640878288016131a3565b9350506040613651878288016130ee565b925050606085013567ffffffffffffffff81111561367257613671612f5b565b5b61367e878288016135d9565b91505092959194509250565b600080604083850312156136a1576136a0612f56565b5b60006136af858286016131a3565b92505060206136c0858286016131a3565b9150509250929050565b600080604083850312156136e1576136e0612f56565b5b60006136ef858286016130ee565b9250506020613700858286016131a3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061375157607f821691505b6020821081036137645761376361370a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137a0602083613026565b91506137ab8261376a565b602082019050919050565b600060208201905081810360008301526137cf81613793565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061380c601f83613026565b9150613817826137d6565b602082019050919050565b6000602082019050818103600083015261383b816137ff565b9050919050565b600081905092915050565b50565b600061385d600083613842565b91506138688261384d565b600082019050919050565b600061387e82613850565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026138ea7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826138ad565b6138f486836138ad565b95508019841693508086168417925050509392505050565b6000819050919050565b600061393161392c613927846130cd565b61390c565b6130cd565b9050919050565b6000819050919050565b61394b83613916565b61395f61395782613938565b8484546138ba565b825550505050565b600090565b613974613967565b61397f818484613942565b505050565b5b818110156139a35761399860008261396c565b600181019050613985565b5050565b601f8211156139e8576139b981613888565b6139c28461389d565b810160208510156139d1578190505b6139e56139dd8561389d565b830182613984565b50505b505050565b600082821c905092915050565b6000613a0b600019846008026139ed565b1980831691505092915050565b6000613a2483836139fa565b9150826002028217905092915050565b613a3d8261301b565b67ffffffffffffffff811115613a5657613a556132d8565b5b613a608254613739565b613a6b8282856139a7565b600060209050601f831160018114613a9e5760008415613a8c578287015190505b613a968582613a18565b865550613afe565b601f198416613aac86613888565b60005b82811015613ad457848901518255600182019150602085019450602081019050613aaf565b86831015613af15784890151613aed601f8916826139fa565b8355505b6001600288020188555050505b505050505050565b600082905092915050565b613b1b8383613b06565b67ffffffffffffffff811115613b3457613b336132d8565b5b613b3e8254613739565b613b498282856139a7565b6000601f831160018114613b785760008415613b66578287013590505b613b708582613a18565b865550613bd8565b601f198416613b8686613888565b60005b82811015613bae57848901358255600182019150602085019450602081019050613b89565b86831015613bcb5784890135613bc7601f8916826139fa565b8355505b6001600288020188555050505b50505050505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613c17601483613026565b9150613c2282613be1565b602082019050919050565b60006020820190508181036000830152613c4681613c0a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c87826130cd565b9150613c92836130cd565b9250828201905080821115613caa57613ca9613c4d565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613ce6601483613026565b9150613cf182613cb0565b602082019050919050565b60006020820190508181036000830152613d1581613cd9565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613d52601783613026565b9150613d5d82613d1c565b602082019050919050565b60006020820190508181036000830152613d8181613d45565b9050919050565b6000613d93826130cd565b9150613d9e836130cd565b9250828202613dac816130cd565b91508282048414831517613dc357613dc2613c4d565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613e00601383613026565b9150613e0b82613dca565b602082019050919050565b60006020820190508181036000830152613e2f81613df3565b9050919050565b7f4d617820537570706c7920657863656564656421000000000000000000000000600082015250565b6000613e6c601483613026565b9150613e7782613e36565b602082019050919050565b60006020820190508181036000830152613e9b81613e5f565b9050919050565b7f55524920646f6573206e6f742065786973742100000000000000000000000000600082015250565b6000613ed8601383613026565b9150613ee382613ea2565b602082019050919050565b60006020820190508181036000830152613f0781613ecb565b9050919050565b600081905092915050565b6000613f248261301b565b613f2e8185613f0e565b9350613f3e818560208601613037565b80840191505092915050565b6000613f568285613f19565b9150613f628284613f19565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fca602683613026565b9150613fd582613f6e565b604082019050919050565b60006020820190508181036000830152613ff981613fbd565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061402782614000565b614031818561400b565b9350614041818560208601613037565b61404a81613061565b840191505092915050565b600060808201905061406a6000830187613162565b6140776020830186613162565b61408460408301856131f8565b8181036060830152614096818461401c565b905095945050505050565b6000815190506140b081612f8c565b92915050565b6000602082840312156140cc576140cb612f56565b5b60006140da848285016140a1565b91505092915050565b60006140ee826130cd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036141205761411f613c4d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614165826130cd565b9150614170836130cd565b9250826141805761417f61412b565b5b828204905092915050565b6000614196826130cd565b91506141a1836130cd565b92508282039050818111156141b9576141b8613c4d565b5b92915050565b60006141ca826130cd565b91506141d5836130cd565b9250826141e5576141e461412b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212203dc34b9b6a20db6e66dbc30fa9d063847b259af8b41c8a5eb8964ffcaf498e6664736f6c63430008120033
Deployed Bytecode
0x60806040526004361061021a5760003560e01c806370a0823111610123578063b071401b116100ab578063d5abeb011161006f578063d5abeb011461077b578063e0a80853146107a6578063e985e9c5146107cf578063efbd73f41461080c578063f2fde38b146108355761021a565b8063b071401b14610698578063b88d4fde146106c1578063ba6527d3146106ea578063c87b56dd14610713578063cfc86f7b146107505761021a565b806394354fd0116100f257806394354fd0146105d257806395d89b41146105fd578063a0712d6814610628578063a22cb46514610644578063a45ba8e71461066d5761021a565b806370a0823114610537578063715018a6146105745780637c928fe91461058b5780638da5cb5b146105a75761021a565b806342842e0e116101a65780635183022711610175578063518302271461045257806355f804b31461047d5780635c975abb146104a65780636352211e146104d15780636f8b44b01461050e5761021a565b806342842e0e146103ac57806344a0d68a146103d55780634e014fa5146103fe5780634fdd43cb146104295761021a565b806313faede6116101ed57806313faede6146102ed57806316c38b3c1461031857806318160ddd1461034157806323b872dd1461036c5780633ccfd60b146103955761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612fb8565b61085e565b6040516102539190613000565b60405180910390f35b34801561026857600080fd5b50610271610940565b60405161027e91906130ab565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613103565b6109d2565b6040516102bb9190613171565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e691906131b8565b610a4e565b005b3480156102f957600080fd5b50610302610b58565b60405161030f9190613207565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061324e565b610b5e565b005b34801561034d57600080fd5b50610356610bf7565b6040516103639190613207565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061327b565b610c0e565b005b3480156103a157600080fd5b506103aa610c1e565b005b3480156103b857600080fd5b506103d360048036038101906103ce919061327b565b610d6f565b005b3480156103e157600080fd5b506103fc60048036038101906103f79190613103565b610d8f565b005b34801561040a57600080fd5b50610413610e15565b6040516104209190613207565b60405180910390f35b34801561043557600080fd5b50610450600480360381019061044b9190613403565b610e1b565b005b34801561045e57600080fd5b50610467610eaa565b6040516104749190613000565b60405180910390f35b34801561048957600080fd5b506104a4600480360381019061049f91906134ac565b610ebd565b005b3480156104b257600080fd5b506104bb610f4f565b6040516104c89190613000565b60405180910390f35b3480156104dd57600080fd5b506104f860048036038101906104f39190613103565b610f62565b6040516105059190613171565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190613103565b610f78565b005b34801561054357600080fd5b5061055e600480360381019061055991906134f9565b610ffe565b60405161056b9190613207565b60405180910390f35b34801561058057600080fd5b506105896110cd565b005b6105a560048036038101906105a09190613103565b611155565b005b3480156105b357600080fd5b506105bc61135a565b6040516105c99190613171565b60405180910390f35b3480156105de57600080fd5b506105e7611384565b6040516105f49190613207565b60405180910390f35b34801561060957600080fd5b5061061261138a565b60405161061f91906130ab565b60405180910390f35b610642600480360381019061063d9190613103565b61141c565b005b34801561065057600080fd5b5061066b60048036038101906106669190613526565b611621565b005b34801561067957600080fd5b50610682611798565b60405161068f91906130ab565b60405180910390f35b3480156106a457600080fd5b506106bf60048036038101906106ba9190613103565b611826565b005b3480156106cd57600080fd5b506106e860048036038101906106e39190613607565b6118ac565b005b3480156106f657600080fd5b50610711600480360381019061070c9190613103565b611928565b005b34801561071f57600080fd5b5061073a60048036038101906107359190613103565b6119ae565b60405161074791906130ab565b60405180910390f35b34801561075c57600080fd5b50610765611ad8565b60405161077291906130ab565b60405180910390f35b34801561078757600080fd5b50610790611b66565b60405161079d9190613207565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c8919061324e565b611b6c565b005b3480156107db57600080fd5b506107f660048036038101906107f1919061368a565b611c05565b6040516108039190613000565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e91906136ca565b611c99565b005b34801561084157600080fd5b5061085c600480360381019061085791906134f9565b611d23565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061092957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610939575061093882611e1a565b5b9050919050565b60606002805461094f90613739565b80601f016020809104026020016040519081016040528092919081815260200182805461097b90613739565b80156109c85780601f1061099d576101008083540402835291602001916109c8565b820191906000526020600020905b8154815290600101906020018083116109ab57829003601f168201915b5050505050905090565b60006109dd82611e84565b610a13576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a5982610f62565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ac0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610adf611ed2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b115750610b0f81610b0a611ed2565b611c05565b155b15610b48576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b53838383611eda565b505050565b600c5481565b610b66611ed2565b73ffffffffffffffffffffffffffffffffffffffff16610b8461135a565b73ffffffffffffffffffffffffffffffffffffffff1614610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd1906137b6565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b6000610c01611f8c565b6001546000540303905090565b610c19838383611f95565b505050565b610c26611ed2565b73ffffffffffffffffffffffffffffffffffffffff16610c4461135a565b73ffffffffffffffffffffffffffffffffffffffff1614610c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c91906137b6565b60405180910390fd5b600260095403610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690613822565b60405180910390fd5b60026009819055506000610cf161135a565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d1490613873565b60006040518083038185875af1925050503d8060008114610d51576040519150601f19603f3d011682016040523d82523d6000602084013e610d56565b606091505b5050905080610d6457600080fd5b506001600981905550565b610d8a838383604051806020016040528060008152506118ac565b505050565b610d97611ed2565b73ffffffffffffffffffffffffffffffffffffffff16610db561135a565b73ffffffffffffffffffffffffffffffffffffffff1614610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e02906137b6565b60405180910390fd5b80600c8190555050565b600d5481565b610e23611ed2565b73ffffffffffffffffffffffffffffffffffffffff16610e4161135a565b73ffffffffffffffffffffffffffffffffffffffff1614610e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8e906137b6565b60405180910390fd5b80600b9081610ea69190613a34565b5050565b601060019054906101000a900460ff1681565b610ec5611ed2565b73ffffffffffffffffffffffffffffffffffffffff16610ee361135a565b73ffffffffffffffffffffffffffffffffffffffff1614610f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f30906137b6565b60405180910390fd5b8181600a9182610f4a929190613b11565b505050565b601060009054906101000a900460ff1681565b6000610f6d82612449565b600001519050919050565b610f80611ed2565b73ffffffffffffffffffffffffffffffffffffffff16610f9e61135a565b73ffffffffffffffffffffffffffffffffffffffff1614610ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610feb906137b6565b60405180910390fd5b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611065576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110d5611ed2565b73ffffffffffffffffffffffffffffffffffffffff166110f361135a565b73ffffffffffffffffffffffffffffffffffffffff1614611149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611140906137b6565b60405180910390fd5b61115360006126d8565b565b60026009540361119a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119190613822565b60405180910390fd5b60026009819055506000811180156111b45750600f548111155b6111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90613c2d565b60405180910390fd5b600e54816111ff610bf7565b6112099190613c7c565b111561124a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124190613cfc565b60405180910390fd5b601060009054906101000a900460ff161561129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190613d68565b60405180910390fd5b80600d546112a89190613d88565b3410156112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e190613e16565b60405180910390fd5b600e546112f5610bf7565b1061133e576000341161133d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133490613e82565b60405180910390fd5b5b61134f611349611ed2565b8261279e565b600160098190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b60606003805461139990613739565b80601f01602080910402602001604051908101604052809291908181526020018280546113c590613739565b80156114125780601f106113e757610100808354040283529160200191611412565b820191906000526020600020905b8154815290600101906020018083116113f557829003601f168201915b5050505050905090565b600260095403611461576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145890613822565b60405180910390fd5b600260098190555060008111801561147b5750600f548111155b6114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b190613c2d565b60405180910390fd5b600e54816114c6610bf7565b6114d09190613c7c565b1115611511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150890613cfc565b60405180910390fd5b601060009054906101000a900460ff1615611561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155890613d68565b60405180910390fd5b80600c5461156f9190613d88565b3410156115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890613e16565b60405180910390fd5b600e546115bc610bf7565b106116055760003411611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb90613e82565b60405180910390fd5b5b611616611610611ed2565b8261279e565b600160098190555050565b611629611ed2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361168d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061169a611ed2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611747611ed2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161178c9190613000565b60405180910390a35050565b600b80546117a590613739565b80601f01602080910402602001604051908101604052809291908181526020018280546117d190613739565b801561181e5780601f106117f35761010080835404028352916020019161181e565b820191906000526020600020905b81548152906001019060200180831161180157829003601f168201915b505050505081565b61182e611ed2565b73ffffffffffffffffffffffffffffffffffffffff1661184c61135a565b73ffffffffffffffffffffffffffffffffffffffff16146118a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611899906137b6565b60405180910390fd5b80600f8190555050565b6118b7848484611f95565b6118d68373ffffffffffffffffffffffffffffffffffffffff166127bc565b80156118eb57506118e9848484846127df565b155b15611922576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b611930611ed2565b73ffffffffffffffffffffffffffffffffffffffff1661194e61135a565b73ffffffffffffffffffffffffffffffffffffffff16146119a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199b906137b6565b60405180910390fd5b80600d8190555050565b60606119b982611e84565b6119f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ef90613eee565b60405180910390fd5b601060019054906101000a900460ff1615611a4557611a1561292f565b611a1e836129c1565b604051602001611a2f929190613f4a565b6040516020818303038152906040529050611ad3565b600b8054611a5290613739565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7e90613739565b8015611acb5780601f10611aa057610100808354040283529160200191611acb565b820191906000526020600020905b815481529060010190602001808311611aae57829003601f168201915b505050505090505b919050565b600a8054611ae590613739565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1190613739565b8015611b5e5780601f10611b3357610100808354040283529160200191611b5e565b820191906000526020600020905b815481529060010190602001808311611b4157829003601f168201915b505050505081565b600e5481565b611b74611ed2565b73ffffffffffffffffffffffffffffffffffffffff16611b9261135a565b73ffffffffffffffffffffffffffffffffffffffff1614611be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdf906137b6565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ca1611ed2565b73ffffffffffffffffffffffffffffffffffffffff16611cbf61135a565b73ffffffffffffffffffffffffffffffffffffffff1614611d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0c906137b6565b60405180910390fd5b611d1f818361279e565b5050565b611d2b611ed2565b73ffffffffffffffffffffffffffffffffffffffff16611d4961135a565b73ffffffffffffffffffffffffffffffffffffffff1614611d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d96906137b6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0590613fe0565b60405180910390fd5b611e17816126d8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611e8f611f8c565b11158015611e9e575060005482105b8015611ecb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611fa082612449565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461200b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661202c611ed2565b73ffffffffffffffffffffffffffffffffffffffff16148061205b575061205a85612055611ed2565b611c05565b5b806120a05750612069611ed2565b73ffffffffffffffffffffffffffffffffffffffff16612088846109d2565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806120d9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361213f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61214c8585856001612b21565b61215860008487611eda565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036123d75760005482146123d657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124428585856001612b27565b5050505050565b612451612f09565b60008290508061245f611f8c565b1115801561246e575060005481105b156126a1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161269f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125835780925050506126d3565b5b60011561269e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126995780925050506126d3565b612584565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127b8828260405180602001604052806000815250612b2d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612805611ed2565b8786866040518563ffffffff1660e01b81526004016128279493929190614055565b6020604051808303816000875af192505050801561286357506040513d601f19601f8201168201806040525081019061286091906140b6565b60015b6128dc573d8060008114612893576040519150601f19603f3d011682016040523d82523d6000602084013e612898565b606091505b5060008151036128d4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461293e90613739565b80601f016020809104026020016040519081016040528092919081815260200182805461296a90613739565b80156129b75780601f1061298c576101008083540402835291602001916129b7565b820191906000526020600020905b81548152906001019060200180831161299a57829003601f168201915b5050505050905090565b606060008203612a08576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b1c565b600082905060005b60008214612a3a578080612a23906140e3565b915050600a82612a33919061415a565b9150612a10565b60008167ffffffffffffffff811115612a5657612a556132d8565b5b6040519080825280601f01601f191660200182016040528015612a885781602001600182028036833780820191505090505b5090505b60008514612b1557600182612aa1919061418b565b9150600a85612ab091906141bf565b6030612abc9190613c7c565b60f81b818381518110612ad257612ad16141f0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b0e919061415a565b9450612a8c565b8093505050505b919050565b50505050565b50505050565b612b3a8383836001612b3f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612bab576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612be5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bf26000868387612b21565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612dbc5750612dbb8773ffffffffffffffffffffffffffffffffffffffff166127bc565b5b15612e81575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e3160008884806001019550886127df565b612e67576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612dc2578260005414612e7c57600080fd5b612eec565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612e82575b816000819055505050612f026000868387612b27565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612f9581612f60565b8114612fa057600080fd5b50565b600081359050612fb281612f8c565b92915050565b600060208284031215612fce57612fcd612f56565b5b6000612fdc84828501612fa3565b91505092915050565b60008115159050919050565b612ffa81612fe5565b82525050565b60006020820190506130156000830184612ff1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561305557808201518184015260208101905061303a565b60008484015250505050565b6000601f19601f8301169050919050565b600061307d8261301b565b6130878185613026565b9350613097818560208601613037565b6130a081613061565b840191505092915050565b600060208201905081810360008301526130c58184613072565b905092915050565b6000819050919050565b6130e0816130cd565b81146130eb57600080fd5b50565b6000813590506130fd816130d7565b92915050565b60006020828403121561311957613118612f56565b5b6000613127848285016130ee565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061315b82613130565b9050919050565b61316b81613150565b82525050565b60006020820190506131866000830184613162565b92915050565b61319581613150565b81146131a057600080fd5b50565b6000813590506131b28161318c565b92915050565b600080604083850312156131cf576131ce612f56565b5b60006131dd858286016131a3565b92505060206131ee858286016130ee565b9150509250929050565b613201816130cd565b82525050565b600060208201905061321c60008301846131f8565b92915050565b61322b81612fe5565b811461323657600080fd5b50565b60008135905061324881613222565b92915050565b60006020828403121561326457613263612f56565b5b600061327284828501613239565b91505092915050565b60008060006060848603121561329457613293612f56565b5b60006132a2868287016131a3565b93505060206132b3868287016131a3565b92505060406132c4868287016130ee565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61331082613061565b810181811067ffffffffffffffff8211171561332f5761332e6132d8565b5b80604052505050565b6000613342612f4c565b905061334e8282613307565b919050565b600067ffffffffffffffff82111561336e5761336d6132d8565b5b61337782613061565b9050602081019050919050565b82818337600083830152505050565b60006133a66133a184613353565b613338565b9050828152602081018484840111156133c2576133c16132d3565b5b6133cd848285613384565b509392505050565b600082601f8301126133ea576133e96132ce565b5b81356133fa848260208601613393565b91505092915050565b60006020828403121561341957613418612f56565b5b600082013567ffffffffffffffff81111561343757613436612f5b565b5b613443848285016133d5565b91505092915050565b600080fd5b600080fd5b60008083601f84011261346c5761346b6132ce565b5b8235905067ffffffffffffffff8111156134895761348861344c565b5b6020830191508360018202830111156134a5576134a4613451565b5b9250929050565b600080602083850312156134c3576134c2612f56565b5b600083013567ffffffffffffffff8111156134e1576134e0612f5b565b5b6134ed85828601613456565b92509250509250929050565b60006020828403121561350f5761350e612f56565b5b600061351d848285016131a3565b91505092915050565b6000806040838503121561353d5761353c612f56565b5b600061354b858286016131a3565b925050602061355c85828601613239565b9150509250929050565b600067ffffffffffffffff821115613581576135806132d8565b5b61358a82613061565b9050602081019050919050565b60006135aa6135a584613566565b613338565b9050828152602081018484840111156135c6576135c56132d3565b5b6135d1848285613384565b509392505050565b600082601f8301126135ee576135ed6132ce565b5b81356135fe848260208601613597565b91505092915050565b6000806000806080858703121561362157613620612f56565b5b600061362f878288016131a3565b9450506020613640878288016131a3565b9350506040613651878288016130ee565b925050606085013567ffffffffffffffff81111561367257613671612f5b565b5b61367e878288016135d9565b91505092959194509250565b600080604083850312156136a1576136a0612f56565b5b60006136af858286016131a3565b92505060206136c0858286016131a3565b9150509250929050565b600080604083850312156136e1576136e0612f56565b5b60006136ef858286016130ee565b9250506020613700858286016131a3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061375157607f821691505b6020821081036137645761376361370a565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137a0602083613026565b91506137ab8261376a565b602082019050919050565b600060208201905081810360008301526137cf81613793565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061380c601f83613026565b9150613817826137d6565b602082019050919050565b6000602082019050818103600083015261383b816137ff565b9050919050565b600081905092915050565b50565b600061385d600083613842565b91506138688261384d565b600082019050919050565b600061387e82613850565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026138ea7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826138ad565b6138f486836138ad565b95508019841693508086168417925050509392505050565b6000819050919050565b600061393161392c613927846130cd565b61390c565b6130cd565b9050919050565b6000819050919050565b61394b83613916565b61395f61395782613938565b8484546138ba565b825550505050565b600090565b613974613967565b61397f818484613942565b505050565b5b818110156139a35761399860008261396c565b600181019050613985565b5050565b601f8211156139e8576139b981613888565b6139c28461389d565b810160208510156139d1578190505b6139e56139dd8561389d565b830182613984565b50505b505050565b600082821c905092915050565b6000613a0b600019846008026139ed565b1980831691505092915050565b6000613a2483836139fa565b9150826002028217905092915050565b613a3d8261301b565b67ffffffffffffffff811115613a5657613a556132d8565b5b613a608254613739565b613a6b8282856139a7565b600060209050601f831160018114613a9e5760008415613a8c578287015190505b613a968582613a18565b865550613afe565b601f198416613aac86613888565b60005b82811015613ad457848901518255600182019150602085019450602081019050613aaf565b86831015613af15784890151613aed601f8916826139fa565b8355505b6001600288020188555050505b505050505050565b600082905092915050565b613b1b8383613b06565b67ffffffffffffffff811115613b3457613b336132d8565b5b613b3e8254613739565b613b498282856139a7565b6000601f831160018114613b785760008415613b66578287013590505b613b708582613a18565b865550613bd8565b601f198416613b8686613888565b60005b82811015613bae57848901358255600182019150602085019450602081019050613b89565b86831015613bcb5784890135613bc7601f8916826139fa565b8355505b6001600288020188555050505b50505050505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613c17601483613026565b9150613c2282613be1565b602082019050919050565b60006020820190508181036000830152613c4681613c0a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c87826130cd565b9150613c92836130cd565b9250828201905080821115613caa57613ca9613c4d565b5b92915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613ce6601483613026565b9150613cf182613cb0565b602082019050919050565b60006020820190508181036000830152613d1581613cd9565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613d52601783613026565b9150613d5d82613d1c565b602082019050919050565b60006020820190508181036000830152613d8181613d45565b9050919050565b6000613d93826130cd565b9150613d9e836130cd565b9250828202613dac816130cd565b91508282048414831517613dc357613dc2613c4d565b5b5092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613e00601383613026565b9150613e0b82613dca565b602082019050919050565b60006020820190508181036000830152613e2f81613df3565b9050919050565b7f4d617820537570706c7920657863656564656421000000000000000000000000600082015250565b6000613e6c601483613026565b9150613e7782613e36565b602082019050919050565b60006020820190508181036000830152613e9b81613e5f565b9050919050565b7f55524920646f6573206e6f742065786973742100000000000000000000000000600082015250565b6000613ed8601383613026565b9150613ee382613ea2565b602082019050919050565b60006020820190508181036000830152613f0781613ecb565b9050919050565b600081905092915050565b6000613f248261301b565b613f2e8185613f0e565b9350613f3e818560208601613037565b80840191505092915050565b6000613f568285613f19565b9150613f628284613f19565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613fca602683613026565b9150613fd582613f6e565b604082019050919050565b60006020820190508181036000830152613ff981613fbd565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061402782614000565b614031818561400b565b9350614041818560208601613037565b61404a81613061565b840191505092915050565b600060808201905061406a6000830187613162565b6140776020830186613162565b61408460408301856131f8565b8181036060830152614096818461401c565b905095945050505050565b6000815190506140b081612f8c565b92915050565b6000602082840312156140cc576140cb612f56565b5b60006140da848285016140a1565b91505092915050565b60006140ee826130cd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036141205761411f613c4d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614165826130cd565b9150614170836130cd565b9250826141805761417f61412b565b5b828204905092915050565b6000614196826130cd565b91506141a1836130cd565b92508282039050818111156141b9576141b8613c4d565b5b92915050565b60006141ca826130cd565b91506141d5836130cd565b9250826141e5576141e461412b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212203dc34b9b6a20db6e66dbc30fa9d063847b259af8b41c8a5eb8964ffcaf498e6664736f6c63430008120033
Deployed Bytecode Sourcemap
45847:3216:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28102:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31215:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32718:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32281:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46009:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48120:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27351:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33583:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48203:150;;;;;;;;;;;;;:::i;:::-;;33824:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47718:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46048:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48385:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46197:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48523:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46174:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31023:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48020:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28471:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6969:103;;;;;;;;;;;;;:::i;:::-;;46350:522;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6318:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46130:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31384:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46876:515;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32994:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45971:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47884:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34080:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47796:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48743:317;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45939:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46092:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47631:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33352:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47397:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7227:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28102:305;28204:4;28256:25;28241:40;;;:11;:40;;;;:105;;;;28313:33;28298:48;;;:11;:48;;;;28241:105;:158;;;;28363:36;28387:11;28363:23;:36::i;:::-;28241:158;28221:178;;28102:305;;;:::o;31215:100::-;31269:13;31302:5;31295:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31215:100;:::o;32718:204::-;32786:7;32811:16;32819:7;32811;:16::i;:::-;32806:64;;32836:34;;;;;;;;;;;;;;32806:64;32890:15;:24;32906:7;32890:24;;;;;;;;;;;;;;;;;;;;;32883:31;;32718:204;;;:::o;32281:371::-;32354:13;32370:24;32386:7;32370:15;:24::i;:::-;32354:40;;32415:5;32409:11;;:2;:11;;;32405:48;;32429:24;;;;;;;;;;;;;;32405:48;32486:5;32470:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32496:37;32513:5;32520:12;:10;:12::i;:::-;32496:16;:37::i;:::-;32495:38;32470:63;32466:138;;;32557:35;;;;;;;;;;;;;;32466:138;32616:28;32625:2;32629:7;32638:5;32616:8;:28::i;:::-;32343:309;32281:371;;:::o;46009:34::-;;;;:::o;48120:77::-;6549:12;:10;:12::i;:::-;6538:23;;:7;:5;:7::i;:::-;:23;;;6530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48185:6:::1;48176;;:15;;;;;;;;;;;;;;;;;;48120:77:::0;:::o;27351:303::-;27395:7;27620:15;:13;:15::i;:::-;27605:12;;27589:13;;:28;:46;27582:53;;27351:303;:::o;33583:170::-;33717:28;33727:4;33733:2;33737:7;33717:9;:28::i;:::-;33583:170;;;:::o;48203:150::-;6549:12;:10;:12::i;:::-;6538:23;;:7;:5;:7::i;:::-;:23;;;6530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1713:1:::1;2311:7;;:19:::0;2303:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1713:1;2444:7;:18;;;;48261:7:::2;48282;:5;:7::i;:::-;48274:21;;48303;48274:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48260:69;;;48344:2;48336:11;;;::::0;::::2;;48253:100;1669:1:::1;2623:7;:22;;;;48203:150::o:0;33824:185::-;33962:39;33979:4;33985:2;33989:7;33962:39;;;;;;;;;;;;:16;:39::i;:::-;33824:185;;;:::o;47718:74::-;6549:12;:10;:12::i;:::-;6538:23;;:7;:5;:7::i;:::-;:23;;;6530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47781:5:::1;47774:4;:12;;;;47718:74:::0;:::o;46048:39::-;;;;:::o;48385:132::-;6549:12;:10;:12::i;:::-;6538:23;;:7;:5;:7::i;:::-;:23;;;6530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48493:18:::1;48473:17;:38;;;;;;:::i;:::-;;48385:132:::0;:::o;46197:27::-;;;;;;;;;;;;;:::o;48523:98::-;6549:12;:10;:12::i;:::-;6538:23;;:7;:5;:7::i;:::-;:23;;;6530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48608:7:::1;;48592:13;:23;;;;;;;:::i;:::-;;48523:98:::0;;:::o;46174:18::-;;;;;;;;;;;;;:::o;31023:125::-;31087:7;31114:21;31127:7;31114:12;:21::i;:::-;:26;;;31107:33;;31023:125;;;:::o;48020:94::-;6549:12;:10;:12::i;:::-;6538:23;;:7;:5;:7::i;:::-;:23;;;6530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48098:10:::1;48086:9;:22;;;;48020:94:::0;:::o;28471:206::-;28535:7;28576:1;28559:19;;:5;:19;;;28555:60;;28587:28;;;;;;;;;;;;;;28555:60;28641:12;:19;28654:5;28641:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28633:36;;28626:43;;28471:206;;;:::o;6969:103::-;6549:12;:10;:12::i;:::-;6538:23;;:7;:5;:7::i;:::-;:23;;;6530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7034:30:::1;7061:1;7034:18;:30::i;:::-;6969:103::o:0;46350:522::-;1713:1;2311:7;;:19;2303:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1713:1;2444:7;:18;;;;46446:1:::1;46432:11;:15;:52;;;;;46466:18;;46451:11;:33;;46432:52;46424:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;46555:9;;46540:11;46524:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;46516:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46605:6;;;;;;;;;;;46604:7;46596:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;46677:11;46667:7;;:21;;;;:::i;:::-;46654:9;:34;;46646:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;46742:9;;46725:13;:11;:13::i;:::-;:26;46721:101;;46786:1;46774:9;:13;46766:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;46721:101;46830:36;46840:12;:10;:12::i;:::-;46854:11;46830:9;:36::i;:::-;1669:1:::0;2623:7;:22;;;;46350:522;:::o;6318:87::-;6364:7;6391:6;;;;;;;;;;;6384:13;;6318:87;:::o;46130:37::-;;;;:::o;31384:104::-;31440:13;31473:7;31466:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31384:104;:::o;46876:515::-;1713:1;2311:7;;:19;2303:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1713:1;2444:7;:18;;;;46968:1:::1;46954:11;:15;:52;;;;;46988:18;;46973:11;:33;;46954:52;46946:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;47077:9;;47062:11;47046:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;47038:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47127:6;;;;;;;;;;;47126:7;47118:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;47196:11;47189:4;;:18;;;;:::i;:::-;47176:9;:31;;47168:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47261:9;;47244:13;:11;:13::i;:::-;:26;47240:101;;47305:1;47293:9;:13;47285:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;47240:101;47349:36;47359:12;:10;:12::i;:::-;47373:11;47349:9;:36::i;:::-;1669:1:::0;2623:7;:22;;;;46876:515;:::o;32994:287::-;33105:12;:10;:12::i;:::-;33093:24;;:8;:24;;;33089:54;;33126:17;;;;;;;;;;;;;;33089:54;33201:8;33156:18;:32;33175:12;:10;:12::i;:::-;33156:32;;;;;;;;;;;;;;;:42;33189:8;33156:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33254:8;33225:48;;33240:12;:10;:12::i;:::-;33225:48;;;33264:8;33225:48;;;;;;:::i;:::-;;;;;;;;32994:287;;:::o;45971:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47884:130::-;6549:12;:10;:12::i;:::-;6538:23;;:7;:5;:7::i;:::-;:23;;;6530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47989:19:::1;47968:18;:40;;;;47884:130:::0;:::o;34080:369::-;34247:28;34257:4;34263:2;34267:7;34247:9;:28::i;:::-;34290:15;:2;:13;;;:15::i;:::-;:76;;;;;34310:56;34341:4;34347:2;34351:7;34360:5;34310:30;:56::i;:::-;34309:57;34290:76;34286:156;;;34390:40;;;;;;;;;;;;;;34286:156;34080:369;;;;:::o;47796:80::-;6549:12;:10;:12::i;:::-;6538:23;;:7;:5;:7::i;:::-;:23;;;6530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47865:5:::1;47855:7;:15;;;;47796:80:::0;:::o;48743:317::-;48817:13;48849:17;48857:8;48849:7;:17::i;:::-;48841:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;48905:8;;;;;;;;;;;48901:154;;;48959:10;:8;:10::i;:::-;48971:19;:8;:17;:19::i;:::-;48942:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48928:64;;;;48901:154;49028:17;49021:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48743:317;;;;:::o;45939:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46092:32::-;;;;:::o;47631:81::-;6549:12;:10;:12::i;:::-;6538:23;;:7;:5;:7::i;:::-;:23;;;6530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47700:6:::1;47689:8;;:17;;;;;;;;;;;;;;;;;;47631:81:::0;:::o;33352:164::-;33449:4;33473:18;:25;33492:5;33473:25;;;;;;;;;;;;;;;:35;33499:8;33473:35;;;;;;;;;;;;;;;;;;;;;;;;;33466:42;;33352:164;;;;:::o;47397:127::-;6549:12;:10;:12::i;:::-;6538:23;;:7;:5;:7::i;:::-;:23;;;6530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47485:33:::1;47495:9;47506:11;47485:9;:33::i;:::-;47397:127:::0;;:::o;7227:201::-;6549:12;:10;:12::i;:::-;6538:23;;:7;:5;:7::i;:::-;:23;;;6530:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7336:1:::1;7316:22;;:8;:22;;::::0;7308:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7392:28;7411:8;7392:18;:28::i;:::-;7227:201:::0;:::o;18445:157::-;18530:4;18569:25;18554:40;;;:11;:40;;;;18547:47;;18445:157;;;:::o;34704:174::-;34761:4;34804:7;34785:15;:13;:15::i;:::-;:26;;:53;;;;;34825:13;;34815:7;:23;34785:53;:85;;;;;34843:11;:20;34855:7;34843:20;;;;;;;;;;;:27;;;;;;;;;;;;34842:28;34785:85;34778:92;;34704:174;;;:::o;5185:98::-;5238:7;5265:10;5258:17;;5185:98;:::o;42861:196::-;43003:2;42976:15;:24;42992:7;42976:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43041:7;43037:2;43021:28;;43030:5;43021:28;;;;;;;;;;;;42861:196;;;:::o;47530:95::-;47595:7;47618:1;47611:8;;47530:95;:::o;37804:2130::-;37919:35;37957:21;37970:7;37957:12;:21::i;:::-;37919:59;;38017:4;37995:26;;:13;:18;;;:26;;;37991:67;;38030:28;;;;;;;;;;;;;;37991:67;38071:22;38113:4;38097:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;38134:36;38151:4;38157:12;:10;:12::i;:::-;38134:16;:36::i;:::-;38097:73;:126;;;;38211:12;:10;:12::i;:::-;38187:36;;:20;38199:7;38187:11;:20::i;:::-;:36;;;38097:126;38071:153;;38242:17;38237:66;;38268:35;;;;;;;;;;;;;;38237:66;38332:1;38318:16;;:2;:16;;;38314:52;;38343:23;;;;;;;;;;;;;;38314:52;38379:43;38401:4;38407:2;38411:7;38420:1;38379:21;:43::i;:::-;38487:35;38504:1;38508:7;38517:4;38487:8;:35::i;:::-;38848:1;38818:12;:18;38831:4;38818:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38892:1;38864:12;:16;38877:2;38864:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38910:31;38944:11;:20;38956:7;38944:20;;;;;;;;;;;38910:54;;38995:2;38979:8;:13;;;:18;;;;;;;;;;;;;;;;;;39045:15;39012:8;:23;;;:49;;;;;;;;;;;;;;;;;;39313:19;39345:1;39335:7;:11;39313:33;;39361:31;39395:11;:24;39407:11;39395:24;;;;;;;;;;;39361:58;;39463:1;39438:27;;:8;:13;;;;;;;;;;;;:27;;;39434:384;;39648:13;;39633:11;:28;39629:174;;39702:4;39686:8;:13;;;:20;;;;;;;;;;;;;;;;;;39755:13;:28;;;39729:8;:23;;;:54;;;;;;;;;;;;;;;;;;39629:174;39434:384;38793:1036;;;39865:7;39861:2;39846:27;;39855:4;39846:27;;;;;;;;;;;;39884:42;39905:4;39911:2;39915:7;39924:1;39884:20;:42::i;:::-;37908:2026;;37804:2130;;;:::o;29852:1109::-;29914:21;;:::i;:::-;29948:12;29963:7;29948:22;;30031:4;30012:15;:13;:15::i;:::-;:23;;:47;;;;;30046:13;;30039:4;:20;30012:47;30008:886;;;30080:31;30114:11;:17;30126:4;30114:17;;;;;;;;;;;30080:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30155:9;:16;;;30150:729;;30226:1;30200:28;;:9;:14;;;:28;;;30196:101;;30264:9;30257:16;;;;;;30196:101;30599:261;30606:4;30599:261;;;30639:6;;;;;;;;30684:11;:17;30696:4;30684:17;;;;;;;;;;;30672:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30758:1;30732:28;;:9;:14;;;:28;;;30728:109;;30800:9;30793:16;;;;;;30728:109;30599:261;;;30150:729;30061:833;30008:886;30922:31;;;;;;;;;;;;;;29852:1109;;;;:::o;7588:191::-;7662:16;7681:6;;;;;;;;;;;7662:25;;7707:8;7698:6;;:17;;;;;;;;;;;;;;;;;;7762:8;7731:40;;7752:8;7731:40;;;;;;;;;;;;7651:128;7588:191;:::o;34886:104::-;34955:27;34965:2;34969:8;34955:27;;;;;;;;;;;;:9;:27::i;:::-;34886:104;;:::o;8865:326::-;8925:4;9182:1;9160:7;:19;;;:23;9153:30;;8865:326;;;:::o;43549:667::-;43712:4;43749:2;43733:36;;;43770:12;:10;:12::i;:::-;43784:4;43790:7;43799:5;43733:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43729:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43984:1;43967:6;:13;:18;43963:235;;44013:40;;;;;;;;;;;;;;43963:235;44156:6;44150:13;44141:6;44137:2;44133:15;44126:38;43729:480;43862:45;;;43852:55;;;:6;:55;;;;43845:62;;;43549:667;;;;;;:::o;48627:110::-;48687:13;48718;48711:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48627:110;:::o;2886:723::-;2942:13;3172:1;3163:5;:10;3159:53;;3190:10;;;;;;;;;;;;;;;;;;;;;3159:53;3222:12;3237:5;3222:20;;3253:14;3278:78;3293:1;3285:4;:9;3278:78;;3311:8;;;;;:::i;:::-;;;;3342:2;3334:10;;;;;:::i;:::-;;;3278:78;;;3366:19;3398:6;3388:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3366:39;;3416:154;3432:1;3423:5;:10;3416:154;;3460:1;3450:11;;;;;:::i;:::-;;;3527:2;3519:5;:10;;;;:::i;:::-;3506:2;:24;;;;:::i;:::-;3493:39;;3476:6;3483;3476:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3556:2;3547:11;;;;;:::i;:::-;;;3416:154;;;3594:6;3580:21;;;;;2886:723;;;;:::o;44864:159::-;;;;;:::o;45682:158::-;;;;;:::o;35353:163::-;35476:32;35482:2;35486:8;35496:5;35503:4;35476:5;:32::i;:::-;35353:163;;;:::o;35775:1775::-;35914:20;35937:13;;35914:36;;35979:1;35965:16;;:2;:16;;;35961:48;;35990:19;;;;;;;;;;;;;;35961:48;36036:1;36024:8;:13;36020:44;;36046:18;;;;;;;;;;;;;;36020:44;36077:61;36107:1;36111:2;36115:12;36129:8;36077:21;:61::i;:::-;36450:8;36415:12;:16;36428:2;36415:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36514:8;36474:12;:16;36487:2;36474:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36573:2;36540:11;:25;36552:12;36540:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36640:15;36590:11;:25;36602:12;36590:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;36673:20;36696:12;36673:35;;36723:11;36752:8;36737:12;:23;36723:37;;36781:4;:23;;;;;36789:15;:2;:13;;;:15::i;:::-;36781:23;36777:641;;;36825:314;36881:12;36877:2;36856:38;;36873:1;36856:38;;;;;;;;;;;;36922:69;36961:1;36965:2;36969:14;;;;;;36985:5;36922:30;:69::i;:::-;36917:174;;37027:40;;;;;;;;;;;;;;36917:174;37134:3;37118:12;:19;36825:314;;37220:12;37203:13;;:29;37199:43;;37234:8;;;37199:43;36777:641;;;37283:120;37339:14;;;;;;37335:2;37314:40;;37331:1;37314:40;;;;;;;;;;;;37398:3;37382:12;:19;37283:120;;36777:641;37448:12;37432:13;:28;;;;36390:1082;;37482:60;37511:1;37515:2;37519:12;37533:8;37482:20;:60::i;:::-;35903:1647;35775:1775;;;;:::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:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:116::-;5312:21;5327:5;5312:21;:::i;:::-;5305:5;5302:32;5292:60;;5348:1;5345;5338:12;5292:60;5242:116;:::o;5364:133::-;5407:5;5445:6;5432:20;5423:29;;5461:30;5485:5;5461:30;:::i;:::-;5364:133;;;;:::o;5503:323::-;5559:6;5608:2;5596:9;5587:7;5583:23;5579:32;5576:119;;;5614:79;;:::i;:::-;5576:119;5734:1;5759:50;5801:7;5792:6;5781:9;5777:22;5759:50;:::i;:::-;5749:60;;5705:114;5503:323;;;;:::o;5832:619::-;5909:6;5917;5925;5974:2;5962:9;5953:7;5949:23;5945:32;5942:119;;;5980:79;;:::i;:::-;5942:119;6100:1;6125:53;6170:7;6161:6;6150:9;6146:22;6125:53;:::i;:::-;6115:63;;6071:117;6227:2;6253:53;6298:7;6289:6;6278:9;6274:22;6253:53;:::i;:::-;6243:63;;6198:118;6355:2;6381:53;6426:7;6417:6;6406:9;6402:22;6381:53;:::i;:::-;6371:63;;6326:118;5832:619;;;;;:::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:117::-;9192:1;9189;9182:12;9206:117;9315:1;9312;9305:12;9343:553;9401:8;9411:6;9461:3;9454:4;9446:6;9442:17;9438:27;9428:122;;9469:79;;:::i;:::-;9428:122;9582:6;9569:20;9559:30;;9612:18;9604:6;9601:30;9598:117;;;9634:79;;:::i;:::-;9598:117;9748:4;9740:6;9736:17;9724:29;;9802:3;9794:4;9786:6;9782:17;9772:8;9768:32;9765:41;9762:128;;;9809:79;;:::i;:::-;9762:128;9343:553;;;;;:::o;9902:529::-;9973:6;9981;10030:2;10018:9;10009:7;10005:23;10001:32;9998:119;;;10036:79;;:::i;:::-;9998:119;10184:1;10173:9;10169:17;10156:31;10214:18;10206:6;10203:30;10200:117;;;10236:79;;:::i;:::-;10200:117;10349:65;10406:7;10397:6;10386:9;10382:22;10349:65;:::i;:::-;10331:83;;;;10127:297;9902:529;;;;;:::o;10437:329::-;10496:6;10545:2;10533:9;10524:7;10520:23;10516:32;10513:119;;;10551:79;;:::i;:::-;10513:119;10671:1;10696:53;10741:7;10732:6;10721:9;10717:22;10696:53;:::i;:::-;10686:63;;10642:117;10437:329;;;;:::o;10772:468::-;10837:6;10845;10894:2;10882:9;10873:7;10869:23;10865:32;10862:119;;;10900:79;;:::i;:::-;10862:119;11020:1;11045:53;11090:7;11081:6;11070:9;11066:22;11045:53;:::i;:::-;11035:63;;10991:117;11147:2;11173:50;11215:7;11206:6;11195:9;11191:22;11173:50;:::i;:::-;11163:60;;11118:115;10772:468;;;;;:::o;11246:307::-;11307:4;11397:18;11389:6;11386:30;11383:56;;;11419:18;;:::i;:::-;11383:56;11457:29;11479:6;11457:29;:::i;:::-;11449:37;;11541:4;11535;11531:15;11523:23;;11246:307;;;:::o;11559:423::-;11636:5;11661:65;11677:48;11718:6;11677:48;:::i;:::-;11661:65;:::i;:::-;11652:74;;11749:6;11742:5;11735:21;11787:4;11780:5;11776:16;11825:3;11816:6;11811:3;11807:16;11804:25;11801:112;;;11832:79;;:::i;:::-;11801:112;11922:54;11969:6;11964:3;11959;11922:54;:::i;:::-;11642:340;11559:423;;;;;:::o;12001:338::-;12056:5;12105:3;12098:4;12090:6;12086:17;12082:27;12072:122;;12113:79;;:::i;:::-;12072:122;12230:6;12217:20;12255:78;12329:3;12321:6;12314:4;12306:6;12302:17;12255:78;:::i;:::-;12246:87;;12062:277;12001:338;;;;:::o;12345:943::-;12440:6;12448;12456;12464;12513:3;12501:9;12492:7;12488:23;12484:33;12481:120;;;12520:79;;:::i;:::-;12481:120;12640:1;12665:53;12710:7;12701:6;12690:9;12686:22;12665:53;:::i;:::-;12655:63;;12611:117;12767:2;12793:53;12838:7;12829:6;12818:9;12814:22;12793:53;:::i;:::-;12783:63;;12738:118;12895:2;12921:53;12966:7;12957:6;12946:9;12942:22;12921:53;:::i;:::-;12911:63;;12866:118;13051:2;13040:9;13036:18;13023:32;13082:18;13074:6;13071:30;13068:117;;;13104:79;;:::i;:::-;13068:117;13209:62;13263:7;13254:6;13243:9;13239:22;13209:62;:::i;:::-;13199:72;;12994:287;12345:943;;;;;;;:::o;13294:474::-;13362:6;13370;13419:2;13407:9;13398:7;13394:23;13390:32;13387:119;;;13425:79;;:::i;:::-;13387:119;13545:1;13570:53;13615:7;13606:6;13595:9;13591:22;13570:53;:::i;:::-;13560:63;;13516:117;13672:2;13698:53;13743:7;13734:6;13723:9;13719:22;13698:53;:::i;:::-;13688:63;;13643:118;13294:474;;;;;:::o;13774:::-;13842:6;13850;13899:2;13887:9;13878:7;13874:23;13870:32;13867:119;;;13905:79;;:::i;:::-;13867:119;14025:1;14050:53;14095:7;14086:6;14075:9;14071:22;14050:53;:::i;:::-;14040:63;;13996:117;14152:2;14178:53;14223:7;14214:6;14203:9;14199:22;14178:53;:::i;:::-;14168:63;;14123:118;13774:474;;;;;:::o;14254:180::-;14302:77;14299:1;14292:88;14399:4;14396:1;14389:15;14423:4;14420:1;14413:15;14440:320;14484:6;14521:1;14515:4;14511:12;14501:22;;14568:1;14562:4;14558:12;14589:18;14579:81;;14645:4;14637:6;14633:17;14623:27;;14579:81;14707:2;14699:6;14696:14;14676:18;14673:38;14670:84;;14726:18;;:::i;:::-;14670:84;14491:269;14440:320;;;:::o;14766:182::-;14906:34;14902:1;14894:6;14890:14;14883:58;14766:182;:::o;14954:366::-;15096:3;15117:67;15181:2;15176:3;15117:67;:::i;:::-;15110:74;;15193:93;15282:3;15193:93;:::i;:::-;15311:2;15306:3;15302:12;15295:19;;14954:366;;;:::o;15326:419::-;15492:4;15530:2;15519:9;15515:18;15507:26;;15579:9;15573:4;15569:20;15565:1;15554:9;15550:17;15543:47;15607:131;15733:4;15607:131;:::i;:::-;15599:139;;15326:419;;;:::o;15751:181::-;15891:33;15887:1;15879:6;15875:14;15868:57;15751:181;:::o;15938:366::-;16080:3;16101:67;16165:2;16160:3;16101:67;:::i;:::-;16094:74;;16177:93;16266:3;16177:93;:::i;:::-;16295:2;16290:3;16286:12;16279:19;;15938:366;;;:::o;16310:419::-;16476:4;16514:2;16503:9;16499:18;16491:26;;16563:9;16557:4;16553:20;16549:1;16538:9;16534:17;16527:47;16591:131;16717:4;16591:131;:::i;:::-;16583:139;;16310:419;;;:::o;16735:147::-;16836:11;16873:3;16858:18;;16735:147;;;;:::o;16888:114::-;;:::o;17008:398::-;17167:3;17188:83;17269:1;17264:3;17188:83;:::i;:::-;17181:90;;17280:93;17369:3;17280:93;:::i;:::-;17398:1;17393:3;17389:11;17382:18;;17008:398;;;:::o;17412:379::-;17596:3;17618:147;17761:3;17618:147;:::i;:::-;17611:154;;17782:3;17775:10;;17412:379;;;:::o;17797:141::-;17846:4;17869:3;17861:11;;17892:3;17889:1;17882:14;17926:4;17923:1;17913:18;17905:26;;17797:141;;;:::o;17944:93::-;17981:6;18028:2;18023;18016:5;18012:14;18008:23;17998:33;;17944:93;;;:::o;18043:107::-;18087:8;18137:5;18131:4;18127:16;18106:37;;18043:107;;;;:::o;18156:393::-;18225:6;18275:1;18263:10;18259:18;18298:97;18328:66;18317:9;18298:97;:::i;:::-;18416:39;18446:8;18435:9;18416:39;:::i;:::-;18404:51;;18488:4;18484:9;18477:5;18473:21;18464:30;;18537:4;18527:8;18523:19;18516:5;18513:30;18503:40;;18232:317;;18156:393;;;;;:::o;18555:60::-;18583:3;18604:5;18597:12;;18555:60;;;:::o;18621:142::-;18671:9;18704:53;18722:34;18731:24;18749:5;18731:24;:::i;:::-;18722:34;:::i;:::-;18704:53;:::i;:::-;18691:66;;18621:142;;;:::o;18769:75::-;18812:3;18833:5;18826:12;;18769:75;;;:::o;18850:269::-;18960:39;18991:7;18960:39;:::i;:::-;19021:91;19070:41;19094:16;19070:41;:::i;:::-;19062:6;19055:4;19049:11;19021:91;:::i;:::-;19015:4;19008:105;18926:193;18850:269;;;:::o;19125:73::-;19170:3;19125:73;:::o;19204:189::-;19281:32;;:::i;:::-;19322:65;19380:6;19372;19366:4;19322:65;:::i;:::-;19257:136;19204:189;;:::o;19399:186::-;19459:120;19476:3;19469:5;19466:14;19459:120;;;19530:39;19567:1;19560:5;19530:39;:::i;:::-;19503:1;19496:5;19492:13;19483:22;;19459:120;;;19399:186;;:::o;19591:543::-;19692:2;19687:3;19684:11;19681:446;;;19726:38;19758:5;19726:38;:::i;:::-;19810:29;19828:10;19810:29;:::i;:::-;19800:8;19796:44;19993:2;19981:10;19978:18;19975:49;;;20014:8;19999:23;;19975:49;20037:80;20093:22;20111:3;20093:22;:::i;:::-;20083:8;20079:37;20066:11;20037:80;:::i;:::-;19696:431;;19681:446;19591:543;;;:::o;20140:117::-;20194:8;20244:5;20238:4;20234:16;20213:37;;20140:117;;;;:::o;20263:169::-;20307:6;20340:51;20388:1;20384:6;20376:5;20373:1;20369:13;20340:51;:::i;:::-;20336:56;20421:4;20415;20411:15;20401:25;;20314:118;20263:169;;;;:::o;20437:295::-;20513:4;20659:29;20684:3;20678:4;20659:29;:::i;:::-;20651:37;;20721:3;20718:1;20714:11;20708:4;20705:21;20697:29;;20437:295;;;;:::o;20737:1395::-;20854:37;20887:3;20854:37;:::i;:::-;20956:18;20948:6;20945:30;20942:56;;;20978:18;;:::i;:::-;20942:56;21022:38;21054:4;21048:11;21022:38;:::i;:::-;21107:67;21167:6;21159;21153:4;21107:67;:::i;:::-;21201:1;21225:4;21212:17;;21257:2;21249:6;21246:14;21274:1;21269:618;;;;21931:1;21948:6;21945:77;;;21997:9;21992:3;21988:19;21982:26;21973:35;;21945:77;22048:67;22108:6;22101:5;22048:67;:::i;:::-;22042:4;22035:81;21904:222;21239:887;;21269:618;21321:4;21317:9;21309:6;21305:22;21355:37;21387:4;21355:37;:::i;:::-;21414:1;21428:208;21442:7;21439:1;21436:14;21428:208;;;21521:9;21516:3;21512:19;21506:26;21498:6;21491:42;21572:1;21564:6;21560:14;21550:24;;21619:2;21608:9;21604:18;21591:31;;21465:4;21462:1;21458:12;21453:17;;21428:208;;;21664:6;21655:7;21652:19;21649:179;;;21722:9;21717:3;21713:19;21707:26;21765:48;21807:4;21799:6;21795:17;21784:9;21765:48;:::i;:::-;21757:6;21750:64;21672:156;21649:179;21874:1;21870;21862:6;21858:14;21854:22;21848:4;21841:36;21276:611;;;21239:887;;20829:1303;;;20737:1395;;:::o;22138:97::-;22197:6;22225:3;22215:13;;22138:97;;;;:::o;22241:1403::-;22365:44;22405:3;22400;22365:44;:::i;:::-;22474:18;22466:6;22463:30;22460:56;;;22496:18;;:::i;:::-;22460:56;22540:38;22572:4;22566:11;22540:38;:::i;:::-;22625:67;22685:6;22677;22671:4;22625:67;:::i;:::-;22719:1;22748:2;22740:6;22737:14;22765:1;22760:632;;;;23436:1;23453:6;23450:84;;;23509:9;23504:3;23500:19;23487:33;23478:42;;23450:84;23560:67;23620:6;23613:5;23560:67;:::i;:::-;23554:4;23547:81;23409:229;22730:908;;22760:632;22812:4;22808:9;22800:6;22796:22;22846:37;22878:4;22846:37;:::i;:::-;22905:1;22919:215;22933:7;22930:1;22927:14;22919:215;;;23019:9;23014:3;23010:19;22997:33;22989:6;22982:49;23070:1;23062:6;23058:14;23048:24;;23117:2;23106:9;23102:18;23089:31;;22956:4;22953:1;22949:12;22944:17;;22919:215;;;23162:6;23153:7;23150:19;23147:186;;;23227:9;23222:3;23218:19;23205:33;23270:48;23312:4;23304:6;23300:17;23289:9;23270:48;:::i;:::-;23262:6;23255:64;23170:163;23147:186;23379:1;23375;23367:6;23363:14;23359:22;23353:4;23346:36;22767:625;;;22730:908;;22340:1304;;;22241:1403;;;:::o;23650:170::-;23790:22;23786:1;23778:6;23774:14;23767:46;23650:170;:::o;23826:366::-;23968:3;23989:67;24053:2;24048:3;23989:67;:::i;:::-;23982:74;;24065:93;24154:3;24065:93;:::i;:::-;24183:2;24178:3;24174:12;24167:19;;23826:366;;;:::o;24198:419::-;24364:4;24402:2;24391:9;24387:18;24379:26;;24451:9;24445:4;24441:20;24437:1;24426:9;24422:17;24415:47;24479:131;24605:4;24479:131;:::i;:::-;24471:139;;24198:419;;;:::o;24623:180::-;24671:77;24668:1;24661:88;24768:4;24765:1;24758:15;24792:4;24789:1;24782:15;24809:191;24849:3;24868:20;24886:1;24868:20;:::i;:::-;24863:25;;24902:20;24920:1;24902:20;:::i;:::-;24897:25;;24945:1;24942;24938:9;24931:16;;24966:3;24963:1;24960:10;24957:36;;;24973:18;;:::i;:::-;24957:36;24809:191;;;;:::o;25006:170::-;25146:22;25142:1;25134:6;25130:14;25123:46;25006:170;:::o;25182:366::-;25324:3;25345:67;25409:2;25404:3;25345:67;:::i;:::-;25338:74;;25421:93;25510:3;25421:93;:::i;:::-;25539:2;25534:3;25530:12;25523:19;;25182:366;;;:::o;25554:419::-;25720:4;25758:2;25747:9;25743:18;25735:26;;25807:9;25801:4;25797:20;25793:1;25782:9;25778:17;25771:47;25835:131;25961:4;25835:131;:::i;:::-;25827:139;;25554:419;;;:::o;25979:173::-;26119:25;26115:1;26107:6;26103:14;26096:49;25979:173;:::o;26158:366::-;26300:3;26321:67;26385:2;26380:3;26321:67;:::i;:::-;26314:74;;26397:93;26486:3;26397:93;:::i;:::-;26515:2;26510:3;26506:12;26499:19;;26158:366;;;:::o;26530:419::-;26696:4;26734:2;26723:9;26719:18;26711:26;;26783:9;26777:4;26773:20;26769:1;26758:9;26754:17;26747:47;26811:131;26937:4;26811:131;:::i;:::-;26803:139;;26530:419;;;:::o;26955:410::-;26995:7;27018:20;27036:1;27018:20;:::i;:::-;27013:25;;27052:20;27070:1;27052:20;:::i;:::-;27047:25;;27107:1;27104;27100:9;27129:30;27147:11;27129:30;:::i;:::-;27118:41;;27308:1;27299:7;27295:15;27292:1;27289:22;27269:1;27262:9;27242:83;27219:139;;27338:18;;:::i;:::-;27219:139;27003:362;26955:410;;;;:::o;27371:169::-;27511:21;27507:1;27499:6;27495:14;27488:45;27371:169;:::o;27546:366::-;27688:3;27709:67;27773:2;27768:3;27709:67;:::i;:::-;27702:74;;27785:93;27874:3;27785:93;:::i;:::-;27903:2;27898:3;27894:12;27887:19;;27546:366;;;:::o;27918:419::-;28084:4;28122:2;28111:9;28107:18;28099:26;;28171:9;28165:4;28161:20;28157:1;28146:9;28142:17;28135:47;28199:131;28325:4;28199:131;:::i;:::-;28191:139;;27918:419;;;:::o;28343:170::-;28483:22;28479:1;28471:6;28467:14;28460:46;28343:170;:::o;28519:366::-;28661:3;28682:67;28746:2;28741:3;28682:67;:::i;:::-;28675:74;;28758:93;28847:3;28758:93;:::i;:::-;28876:2;28871:3;28867:12;28860:19;;28519:366;;;:::o;28891:419::-;29057:4;29095:2;29084:9;29080:18;29072:26;;29144:9;29138:4;29134:20;29130:1;29119:9;29115:17;29108:47;29172:131;29298:4;29172:131;:::i;:::-;29164:139;;28891:419;;;:::o;29316:169::-;29456:21;29452:1;29444:6;29440:14;29433:45;29316:169;:::o;29491:366::-;29633:3;29654:67;29718:2;29713:3;29654:67;:::i;:::-;29647:74;;29730:93;29819:3;29730:93;:::i;:::-;29848:2;29843:3;29839:12;29832:19;;29491:366;;;:::o;29863:419::-;30029:4;30067:2;30056:9;30052:18;30044:26;;30116:9;30110:4;30106:20;30102:1;30091:9;30087:17;30080:47;30144:131;30270:4;30144:131;:::i;:::-;30136:139;;29863:419;;;:::o;30288:148::-;30390:11;30427:3;30412:18;;30288:148;;;;:::o;30442:390::-;30548:3;30576:39;30609:5;30576:39;:::i;:::-;30631:89;30713:6;30708:3;30631:89;:::i;:::-;30624:96;;30729:65;30787:6;30782:3;30775:4;30768:5;30764:16;30729:65;:::i;:::-;30819:6;30814:3;30810:16;30803:23;;30552:280;30442:390;;;;:::o;30838:435::-;31018:3;31040:95;31131:3;31122:6;31040:95;:::i;:::-;31033:102;;31152:95;31243:3;31234:6;31152:95;:::i;:::-;31145:102;;31264:3;31257:10;;30838:435;;;;;:::o;31279:225::-;31419:34;31415:1;31407:6;31403:14;31396:58;31488:8;31483:2;31475:6;31471:15;31464:33;31279:225;:::o;31510:366::-;31652:3;31673:67;31737:2;31732:3;31673:67;:::i;:::-;31666:74;;31749:93;31838:3;31749:93;:::i;:::-;31867:2;31862:3;31858:12;31851:19;;31510:366;;;:::o;31882:419::-;32048:4;32086:2;32075:9;32071:18;32063:26;;32135:9;32129:4;32125:20;32121:1;32110:9;32106:17;32099:47;32163:131;32289:4;32163:131;:::i;:::-;32155:139;;31882:419;;;:::o;32307:98::-;32358:6;32392:5;32386:12;32376:22;;32307:98;;;:::o;32411:168::-;32494:11;32528:6;32523:3;32516:19;32568:4;32563:3;32559:14;32544:29;;32411:168;;;;:::o;32585:373::-;32671:3;32699:38;32731:5;32699:38;:::i;:::-;32753:70;32816:6;32811:3;32753:70;:::i;:::-;32746:77;;32832:65;32890:6;32885:3;32878:4;32871:5;32867:16;32832:65;:::i;:::-;32922:29;32944:6;32922:29;:::i;:::-;32917:3;32913:39;32906:46;;32675:283;32585:373;;;;:::o;32964:640::-;33159:4;33197:3;33186:9;33182:19;33174:27;;33211:71;33279:1;33268:9;33264:17;33255:6;33211:71;:::i;:::-;33292:72;33360:2;33349:9;33345:18;33336:6;33292:72;:::i;:::-;33374;33442:2;33431:9;33427:18;33418:6;33374:72;:::i;:::-;33493:9;33487:4;33483:20;33478:2;33467:9;33463:18;33456:48;33521:76;33592:4;33583:6;33521:76;:::i;:::-;33513:84;;32964:640;;;;;;;:::o;33610:141::-;33666:5;33697:6;33691:13;33682:22;;33713:32;33739:5;33713:32;:::i;:::-;33610:141;;;;:::o;33757:349::-;33826:6;33875:2;33863:9;33854:7;33850:23;33846:32;33843:119;;;33881:79;;:::i;:::-;33843:119;34001:1;34026:63;34081:7;34072:6;34061:9;34057:22;34026:63;:::i;:::-;34016:73;;33972:127;33757:349;;;;:::o;34112:233::-;34151:3;34174:24;34192:5;34174:24;:::i;:::-;34165:33;;34220:66;34213:5;34210:77;34207:103;;34290:18;;:::i;:::-;34207:103;34337:1;34330:5;34326:13;34319:20;;34112:233;;;:::o;34351:180::-;34399:77;34396:1;34389:88;34496:4;34493:1;34486:15;34520:4;34517:1;34510:15;34537:185;34577:1;34594:20;34612:1;34594:20;:::i;:::-;34589:25;;34628:20;34646:1;34628:20;:::i;:::-;34623:25;;34667:1;34657:35;;34672:18;;:::i;:::-;34657:35;34714:1;34711;34707:9;34702:14;;34537:185;;;;:::o;34728:194::-;34768:4;34788:20;34806:1;34788:20;:::i;:::-;34783:25;;34822:20;34840:1;34822:20;:::i;:::-;34817:25;;34866:1;34863;34859:9;34851:17;;34890:1;34884:4;34881:11;34878:37;;;34895:18;;:::i;:::-;34878:37;34728:194;;;;:::o;34928:176::-;34960:1;34977:20;34995:1;34977:20;:::i;:::-;34972:25;;35011:20;35029:1;35011:20;:::i;:::-;35006:25;;35050:1;35040:35;;35055:18;;:::i;:::-;35040:35;35096:1;35093;35089:9;35084:14;;34928:176;;;;:::o;35110:180::-;35158:77;35155:1;35148:88;35255:4;35252:1;35245:15;35279:4;35276:1;35269:15
Swarm Source
ipfs://3dc34b9b6a20db6e66dbc30fa9d063847b259af8b41c8a5eb8964ffcaf498e66
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.