Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
26 SLOTHS
Holders
23
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SLOTHSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ETHerealsloths
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-08 */ /** *Submitted for verification at Etherscan.io on 2021-09-08 */ // SPDX-License-Identifier: MIT // Author iBlockchainer (Telegram) // File: @openzeppelin/contracts/utils/Counters.sol // Author : iblockchainer (Telegram) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_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 { _setOwner(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" ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _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 { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require( index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds" ); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require( index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds" ); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: ETHerealsloths.sol pragma solidity ^0.8.0; contract ETHerealsloths is ERC721Enumerable, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenId; uint256 public MAX_SUPPlY = 8888; uint256 public OWNER_RESERVED = 88; uint256 public price = 68888000000000000; //0.068888 Ether uint256 public launchTime = 1631089234; uint256 public endTime = 1631707119; string baseTokenURI; bool public saleOpen = true; event NFTMinted(uint256 totalMinted); constructor(string memory baseURI) ERC721("ETHereal Sloths", "SLOTHS") { setBaseURI(baseURI); } //Get token Ids of all tokens owned by _owner function walletOfOwner(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function setPrice(uint256 _newPrice) public onlyOwner { price = _newPrice; } //Close sale if open, open sale if closed function pauseSale() public onlyOwner { saleOpen = false; } //Close sale if open, open sale if closed function unpauseSale() public onlyOwner { saleOpen = true; } function withdrawAll() public onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } //mint NFT function mintNFT(uint256 _count) public payable { if (msg.sender != owner()) { require(saleOpen, "Sale is paused please try again later"); } if (msg.sender != owner()) { require(block.timestamp >= launchTime, "Sale is not started yet"); } require( _count > 0 && _count <= 20, "Min 1 & Max 20 NFTs can be minted per transaction" ); if (msg.sender != owner()) { require( totalSupply() + _count <= (MAX_SUPPlY - OWNER_RESERVED), "All NFTs sold" ); }else{ require( totalSupply() + _count <= (MAX_SUPPlY), "All NFTs sold" ); } require( msg.value >= price * _count, "Ether sent with this transaction is not correct" ); address _to = msg.sender; for (uint256 i = 0; i < _count; i++) { _mint(_to); if (msg.sender == owner()) { OWNER_RESERVED--; } } } function airdrop(address[] calldata _recipients) external onlyOwner { require( totalSupply() + _recipients.length <= (MAX_SUPPlY - OWNER_RESERVED), "Airdrop minting will exceed maximum supply" ); require(_recipients.length != 0, "Address not found for minting"); for (uint256 i = 0; i < _recipients.length; i++) { require(_recipients[i] != address(0), "Minting to Null address"); _mint(_recipients[i]); } } function _mint(address _to) private { _tokenId.increment(); uint256 tokenId = _tokenId.current(); _safeMint(_to, tokenId); emit NFTMinted(tokenId); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setLaunchTime(uint256 _timestamp) external onlyOwner returns (bool){ launchTime = _timestamp; return true; } function getLaunchTime() external view onlyOwner returns (uint256){ return launchTime; } function getEndTime() view external onlyOwner returns (uint256){ return endTime; } function burnNFTs() external onlyOwner returns (uint256){ require(block.timestamp >= endTime, "Sale is not finished yet"); MAX_SUPPlY = totalSupply(); return MAX_SUPPlY; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"NFTMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPlY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OWNER_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLaunchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_timestamp","type":"uint256"}],"name":"setLaunchTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526122b8600c556058600d5566f4bd4561498000600e556361387252600f55636141dfef6010556001601260006101000a81548160ff0219169083151502179055503480156200005257600080fd5b506040516200538538038062005385833981810160405281019062000078919062000421565b6040518060400160405280600f81526020017f455448657265616c20536c6f74687300000000000000000000000000000000008152506040518060400160405280600681526020017f534c4f54485300000000000000000000000000000000000000000000000000008152508160009080519060200190620000fc929190620002f3565b50806001908051906020019062000115929190620002f3565b505050620001386200012c6200015060201b60201c565b6200015860201b60201c565b62000149816200021e60201b60201c565b5062000679565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200022e6200015060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000254620002c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a49062000499565b60405180910390fd5b8060119080519060200190620002c5929190620002f3565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003019062000561565b90600052602060002090601f01602090048101928262000325576000855562000371565b82601f106200034057805160ff191683800117855562000371565b8280016001018555821562000371579182015b828111156200037057825182559160200191906001019062000353565b5b50905062000380919062000384565b5090565b5b808211156200039f57600081600090555060010162000385565b5090565b6000620003ba620003b484620004e4565b620004bb565b905082815260208101848484011115620003d957620003d862000630565b5b620003e68482856200052b565b509392505050565b600082601f8301126200040657620004056200062b565b5b815162000418848260208601620003a3565b91505092915050565b6000602082840312156200043a57620004396200063a565b5b600082015167ffffffffffffffff8111156200045b576200045a62000635565b5b6200046984828501620003ee565b91505092915050565b6000620004816020836200051a565b91506200048e8262000650565b602082019050919050565b60006020820190508181036000830152620004b48162000472565b9050919050565b6000620004c7620004da565b9050620004d5828262000597565b919050565b6000604051905090565b600067ffffffffffffffff821115620005025762000501620005fc565b5b6200050d826200063f565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200054b5780820151818401526020810190506200052e565b838111156200055b576000848401525b50505050565b600060028204905060018216806200057a57607f821691505b60208210811415620005915762000590620005cd565b5b50919050565b620005a2826200063f565b810181811067ffffffffffffffff82111715620005c457620005c3620005fc565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614cfc80620006896000396000f3fe60806040526004361061021a5760003560e01c8063715018a6116101235780639ff46e74116100ab578063bb33d7291161006f578063bb33d729146107b4578063c87b56dd146107cb578063e0f888ef14610808578063e985e9c514610833578063f2fde38b146108705761021a565b80639ff46e74146106cf578063a035b1fe1461070c578063a22cb46514610737578063b774608614610760578063b88d4fde1461078b5761021a565b80638da5cb5b116100f25780638da5cb5b1461060957806391b7f5ed14610634578063926427441461065d57806395d89b411461067957806399288dbb146106a45761021a565b8063715018a614610587578063729ad39e1461059e578063790ca413146105c7578063853828b6146105f25761021a565b8063420db8cf116101a65780634f6ccce7116101755780634f6ccce71461049057806355367ba9146104cd57806355f804b3146104e45780636352211e1461050d57806370a082311461054a5761021a565b8063420db8cf146103d457806342842e0e146103ff578063438b630014610428578063439f5ac2146104655761021a565b806318160ddd116101ed57806318160ddd146102ed57806323b872dd146103185780632f745c59146103415780633197cbb61461037e57806334cf99fd146103a95761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613560565b610899565b6040516102539190613c3e565b60405180910390f35b34801561026857600080fd5b50610271610913565b60405161027e9190613c59565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613603565b6109a5565b6040516102bb9190613bb5565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e691906134d3565b610a2a565b005b3480156102f957600080fd5b50610302610b42565b60405161030f9190613ffb565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a91906133bd565b610b4f565b005b34801561034d57600080fd5b50610368600480360381019061036391906134d3565b610baf565b6040516103759190613ffb565b60405180910390f35b34801561038a57600080fd5b50610393610c54565b6040516103a09190613ffb565b60405180910390f35b3480156103b557600080fd5b506103be610c5a565b6040516103cb9190613ffb565b60405180910390f35b3480156103e057600080fd5b506103e9610d33565b6040516103f69190613ffb565b60405180910390f35b34801561040b57600080fd5b50610426600480360381019061042191906133bd565b610d39565b005b34801561043457600080fd5b5061044f600480360381019061044a9190613350565b610d59565b60405161045c9190613c1c565b60405180910390f35b34801561047157600080fd5b5061047a610e07565b6040516104879190613ffb565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190613603565b610e8d565b6040516104c49190613ffb565b60405180910390f35b3480156104d957600080fd5b506104e2610efe565b005b3480156104f057600080fd5b5061050b600480360381019061050691906135ba565b610f97565b005b34801561051957600080fd5b50610534600480360381019061052f9190613603565b61102d565b6040516105419190613bb5565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190613350565b6110df565b60405161057e9190613ffb565b60405180910390f35b34801561059357600080fd5b5061059c611197565b005b3480156105aa57600080fd5b506105c560048036038101906105c09190613513565b61121f565b005b3480156105d357600080fd5b506105dc611436565b6040516105e99190613ffb565b60405180910390f35b3480156105fe57600080fd5b5061060761143c565b005b34801561061557600080fd5b5061061e611567565b60405161062b9190613bb5565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190613603565b611591565b005b61067760048036038101906106729190613603565b611617565b005b34801561068557600080fd5b5061068e611941565b60405161069b9190613c59565b60405180910390f35b3480156106b057600080fd5b506106b96119d3565b6040516106c69190613c3e565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190613603565b6119e6565b6040516107039190613c3e565b60405180910390f35b34801561071857600080fd5b50610721611a74565b60405161072e9190613ffb565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190613493565b611a7a565b005b34801561076c57600080fd5b50610775611bfb565b6040516107829190613ffb565b60405180910390f35b34801561079757600080fd5b506107b260048036038101906107ad9190613410565b611c81565b005b3480156107c057600080fd5b506107c9611ce3565b005b3480156107d757600080fd5b506107f260048036038101906107ed9190613603565b611d7c565b6040516107ff9190613c59565b60405180910390f35b34801561081457600080fd5b5061081d611e23565b60405161082a9190613ffb565b60405180910390f35b34801561083f57600080fd5b5061085a6004803603810190610855919061337d565b611e29565b6040516108679190613c3e565b60405180910390f35b34801561087c57600080fd5b5061089760048036038101906108929190613350565b611ebd565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090c575061090b82611fb5565b5b9050919050565b60606000805461092290614319565b80601f016020809104026020016040519081016040528092919081815260200182805461094e90614319565b801561099b5780601f106109705761010080835404028352916020019161099b565b820191906000526020600020905b81548152906001019060200180831161097e57829003601f168201915b5050505050905090565b60006109b082612097565b6109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e690613ebb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a358261102d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d90613f5b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac5612103565b73ffffffffffffffffffffffffffffffffffffffff161480610af45750610af381610aee612103565b611e29565b5b610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a90613dfb565b60405180910390fd5b610b3d838361210b565b505050565b6000600880549050905090565b610b60610b5a612103565b826121c4565b610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690613fbb565b60405180910390fd5b610baa8383836122a2565b505050565b6000610bba836110df565b8210610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf290613cbb565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60105481565b6000610c64612103565b73ffffffffffffffffffffffffffffffffffffffff16610c82611567565b73ffffffffffffffffffffffffffffffffffffffff1614610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90613efb565b60405180910390fd5b601054421015610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1490613f7b565b60405180910390fd5b610d25610b42565b600c81905550600c54905090565b600d5481565b610d5483838360405180602001604052806000815250611c81565b505050565b60606000610d66836110df565b905060008167ffffffffffffffff811115610d8457610d836144e1565b5b604051908082528060200260200182016040528015610db25781602001602082028036833780820191505090505b50905060005b82811015610dfc57610dca8582610baf565b828281518110610ddd57610ddc6144b2565b5b6020026020010181815250508080610df49061437c565b915050610db8565b508092505050919050565b6000610e11612103565b73ffffffffffffffffffffffffffffffffffffffff16610e2f611567565b73ffffffffffffffffffffffffffffffffffffffff1614610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90613efb565b60405180910390fd5b601054905090565b6000610e97610b42565b8210610ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf90613fdb565b60405180910390fd5b60088281548110610eec57610eeb6144b2565b5b90600052602060002001549050919050565b610f06612103565b73ffffffffffffffffffffffffffffffffffffffff16610f24611567565b73ffffffffffffffffffffffffffffffffffffffff1614610f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7190613efb565b60405180910390fd5b6000601260006101000a81548160ff021916908315150217905550565b610f9f612103565b73ffffffffffffffffffffffffffffffffffffffff16610fbd611567565b73ffffffffffffffffffffffffffffffffffffffff1614611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a90613efb565b60405180910390fd5b806011908051906020019061102992919061310e565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90613e5b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790613e3b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61119f612103565b73ffffffffffffffffffffffffffffffffffffffff166111bd611567565b73ffffffffffffffffffffffffffffffffffffffff1614611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a90613efb565b60405180910390fd5b61121d60006124fe565b565b611227612103565b73ffffffffffffffffffffffffffffffffffffffff16611245611567565b73ffffffffffffffffffffffffffffffffffffffff161461129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290613efb565b60405180910390fd5b600d54600c546112ab9190614205565b828290506112b7610b42565b6112c19190614124565b1115611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990613e1b565b60405180910390fd5b6000828290501415611349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134090613c7b565b60405180910390fd5b60005b8282905081101561143157600073ffffffffffffffffffffffffffffffffffffffff16838383818110611382576113816144b2565b5b90506020020160208101906113979190613350565b73ffffffffffffffffffffffffffffffffffffffff1614156113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590613cdb565b60405180910390fd5b61141e838383818110611404576114036144b2565b5b90506020020160208101906114199190613350565b6125c4565b80806114299061437c565b91505061134c565b505050565b600f5481565b611444612103565b73ffffffffffffffffffffffffffffffffffffffff16611462611567565b73ffffffffffffffffffffffffffffffffffffffff16146114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90613efb565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516114de90613ba0565b60006040518083038185875af1925050503d806000811461151b576040519150601f19603f3d011682016040523d82523d6000602084013e611520565b606091505b5050905080611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90613f9b565b60405180910390fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611599612103565b73ffffffffffffffffffffffffffffffffffffffff166115b7611567565b73ffffffffffffffffffffffffffffffffffffffff161461160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490613efb565b60405180910390fd5b80600e8190555050565b61161f611567565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116a157601260009054906101000a900460ff166116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790613c9b565b60405180910390fd5b5b6116a9611567565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461172157600f54421015611720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171790613dbb565b60405180910390fd5b5b600081118015611732575060148111155b611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890613e9b565b60405180910390fd5b611779611567565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461181457600d54600c546117bb9190614205565b816117c4610b42565b6117ce9190614124565b111561180f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180690613ddb565b60405180910390fd5b61186c565b600c5481611820610b42565b61182a9190614124565b111561186b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186290613ddb565b60405180910390fd5b5b80600e5461187a91906141ab565b3410156118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390613edb565b60405180910390fd5b600033905060005b8281101561193c576118d5826125c4565b6118dd611567565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561192957600d6000815480929190611923906142ef565b91905055505b80806119349061437c565b9150506118c4565b505050565b60606001805461195090614319565b80601f016020809104026020016040519081016040528092919081815260200182805461197c90614319565b80156119c95780601f1061199e576101008083540402835291602001916119c9565b820191906000526020600020905b8154815290600101906020018083116119ac57829003601f168201915b5050505050905090565b601260009054906101000a900460ff1681565b60006119f0612103565b73ffffffffffffffffffffffffffffffffffffffff16611a0e611567565b73ffffffffffffffffffffffffffffffffffffffff1614611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90613efb565b60405180910390fd5b81600f8190555060019050919050565b600e5481565b611a82612103565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae790613d7b565b60405180910390fd5b8060056000611afd612103565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611baa612103565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bef9190613c3e565b60405180910390a35050565b6000611c05612103565b73ffffffffffffffffffffffffffffffffffffffff16611c23611567565b73ffffffffffffffffffffffffffffffffffffffff1614611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7090613efb565b60405180910390fd5b600f54905090565b611c92611c8c612103565b836121c4565b611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc890613fbb565b60405180910390fd5b611cdd84848484612621565b50505050565b611ceb612103565b73ffffffffffffffffffffffffffffffffffffffff16611d09611567565b73ffffffffffffffffffffffffffffffffffffffff1614611d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5690613efb565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550565b6060611d8782612097565b611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd90613f3b565b60405180910390fd5b6000611dd061267d565b90506000815111611df05760405180602001604052806000815250611e1b565b80611dfa8461270f565b604051602001611e0b929190613b7c565b6040516020818303038152906040525b915050919050565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ec5612103565b73ffffffffffffffffffffffffffffffffffffffff16611ee3611567565b73ffffffffffffffffffffffffffffffffffffffff1614611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3090613efb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa090613d1b565b60405180910390fd5b611fb2816124fe565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061208057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612090575061208f82612870565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661217e8361102d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121cf82612097565b61220e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220590613d9b565b60405180910390fd5b60006122198361102d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061228857508373ffffffffffffffffffffffffffffffffffffffff16612270846109a5565b73ffffffffffffffffffffffffffffffffffffffff16145b8061229957506122988185611e29565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122c28261102d565b73ffffffffffffffffffffffffffffffffffffffff1614612318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230f90613f1b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237f90613d5b565b60405180910390fd5b6123938383836128da565b61239e60008261210b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123ee9190614205565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124459190614124565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125ce600b6129ee565b60006125da600b612a04565b90506125e68282612a12565b7fd9dc24857f317ed9abbbb42e920ede0104231eb1d3d70236a74887ffaf159868816040516126159190613ffb565b60405180910390a15050565b61262c8484846122a2565b61263884848484612a30565b612677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266e90613cfb565b60405180910390fd5b50505050565b60606011805461268c90614319565b80601f01602080910402602001604051908101604052809291908181526020018280546126b890614319565b80156127055780601f106126da57610100808354040283529160200191612705565b820191906000526020600020905b8154815290600101906020018083116126e857829003601f168201915b5050505050905090565b60606000821415612757576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061286b565b600082905060005b600082146127895780806127729061437c565b915050600a82612782919061417a565b915061275f565b60008167ffffffffffffffff8111156127a5576127a46144e1565b5b6040519080825280601f01601f1916602001820160405280156127d75781602001600182028036833780820191505090505b5090505b60008514612864576001826127f09190614205565b9150600a856127ff91906143c5565b603061280b9190614124565b60f81b818381518110612821576128206144b2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561285d919061417a565b94506127db565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6128e5838383612bc7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129285761292381612bcc565b612967565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612966576129658382612c15565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129aa576129a581612d82565b6129e9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129e8576129e78282612e53565b5b5b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b612a2c828260405180602001604052806000815250612ed2565b5050565b6000612a518473ffffffffffffffffffffffffffffffffffffffff16612f2d565b15612bba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a7a612103565b8786866040518563ffffffff1660e01b8152600401612a9c9493929190613bd0565b602060405180830381600087803b158015612ab657600080fd5b505af1925050508015612ae757506040513d601f19601f82011682018060405250810190612ae4919061358d565b60015b612b6a573d8060008114612b17576040519150601f19603f3d011682016040523d82523d6000602084013e612b1c565b606091505b50600081511415612b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5990613cfb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bbf565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c22846110df565b612c2c9190614205565b9050600060076000848152602001908152602001600020549050818114612d11576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d969190614205565b9050600060096000848152602001908152602001600020549050600060088381548110612dc657612dc56144b2565b5b906000526020600020015490508060088381548110612de857612de76144b2565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e3757612e36614483565b5b6001900381819060005260206000200160009055905550505050565b6000612e5e836110df565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b612edc8383612f40565b612ee96000848484612a30565b612f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1f90613cfb565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa790613e7b565b60405180910390fd5b612fb981612097565b15612ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff090613d3b565b60405180910390fd5b613005600083836128da565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130559190614124565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461311a90614319565b90600052602060002090601f01602090048101928261313c5760008555613183565b82601f1061315557805160ff1916838001178555613183565b82800160010185558215613183579182015b82811115613182578251825591602001919060010190613167565b5b5090506131909190613194565b5090565b5b808211156131ad576000816000905550600101613195565b5090565b60006131c46131bf8461403b565b614016565b9050828152602081018484840111156131e0576131df61451f565b5b6131eb8482856142ad565b509392505050565b60006132066132018461406c565b614016565b9050828152602081018484840111156132225761322161451f565b5b61322d8482856142ad565b509392505050565b60008135905061324481614c6a565b92915050565b60008083601f8401126132605761325f614515565b5b8235905067ffffffffffffffff81111561327d5761327c614510565b5b6020830191508360208202830111156132995761329861451a565b5b9250929050565b6000813590506132af81614c81565b92915050565b6000813590506132c481614c98565b92915050565b6000815190506132d981614c98565b92915050565b600082601f8301126132f4576132f3614515565b5b81356133048482602086016131b1565b91505092915050565b600082601f83011261332257613321614515565b5b81356133328482602086016131f3565b91505092915050565b60008135905061334a81614caf565b92915050565b60006020828403121561336657613365614529565b5b600061337484828501613235565b91505092915050565b6000806040838503121561339457613393614529565b5b60006133a285828601613235565b92505060206133b385828601613235565b9150509250929050565b6000806000606084860312156133d6576133d5614529565b5b60006133e486828701613235565b93505060206133f586828701613235565b92505060406134068682870161333b565b9150509250925092565b6000806000806080858703121561342a57613429614529565b5b600061343887828801613235565b945050602061344987828801613235565b935050604061345a8782880161333b565b925050606085013567ffffffffffffffff81111561347b5761347a614524565b5b613487878288016132df565b91505092959194509250565b600080604083850312156134aa576134a9614529565b5b60006134b885828601613235565b92505060206134c9858286016132a0565b9150509250929050565b600080604083850312156134ea576134e9614529565b5b60006134f885828601613235565b92505060206135098582860161333b565b9150509250929050565b6000806020838503121561352a57613529614529565b5b600083013567ffffffffffffffff81111561354857613547614524565b5b6135548582860161324a565b92509250509250929050565b60006020828403121561357657613575614529565b5b6000613584848285016132b5565b91505092915050565b6000602082840312156135a3576135a2614529565b5b60006135b1848285016132ca565b91505092915050565b6000602082840312156135d0576135cf614529565b5b600082013567ffffffffffffffff8111156135ee576135ed614524565b5b6135fa8482850161330d565b91505092915050565b60006020828403121561361957613618614529565b5b60006136278482850161333b565b91505092915050565b600061363c8383613b5e565b60208301905092915050565b61365181614239565b82525050565b6000613662826140ad565b61366c81856140db565b93506136778361409d565b8060005b838110156136a857815161368f8882613630565b975061369a836140ce565b92505060018101905061367b565b5085935050505092915050565b6136be8161424b565b82525050565b60006136cf826140b8565b6136d981856140ec565b93506136e98185602086016142bc565b6136f28161452e565b840191505092915050565b6000613708826140c3565b6137128185614108565b93506137228185602086016142bc565b61372b8161452e565b840191505092915050565b6000613741826140c3565b61374b8185614119565b935061375b8185602086016142bc565b80840191505092915050565b6000613774601d83614108565b915061377f8261453f565b602082019050919050565b6000613797602583614108565b91506137a282614568565b604082019050919050565b60006137ba602b83614108565b91506137c5826145b7565b604082019050919050565b60006137dd601783614108565b91506137e882614606565b602082019050919050565b6000613800603283614108565b915061380b8261462f565b604082019050919050565b6000613823602683614108565b915061382e8261467e565b604082019050919050565b6000613846601c83614108565b9150613851826146cd565b602082019050919050565b6000613869602483614108565b9150613874826146f6565b604082019050919050565b600061388c601983614108565b915061389782614745565b602082019050919050565b60006138af602c83614108565b91506138ba8261476e565b604082019050919050565b60006138d2601783614108565b91506138dd826147bd565b602082019050919050565b60006138f5600d83614108565b9150613900826147e6565b602082019050919050565b6000613918603883614108565b91506139238261480f565b604082019050919050565b600061393b602a83614108565b91506139468261485e565b604082019050919050565b600061395e602a83614108565b9150613969826148ad565b604082019050919050565b6000613981602983614108565b915061398c826148fc565b604082019050919050565b60006139a4602083614108565b91506139af8261494b565b602082019050919050565b60006139c7603183614108565b91506139d282614974565b604082019050919050565b60006139ea602c83614108565b91506139f5826149c3565b604082019050919050565b6000613a0d602f83614108565b9150613a1882614a12565b604082019050919050565b6000613a30602083614108565b9150613a3b82614a61565b602082019050919050565b6000613a53602983614108565b9150613a5e82614a8a565b604082019050919050565b6000613a76602f83614108565b9150613a8182614ad9565b604082019050919050565b6000613a99602183614108565b9150613aa482614b28565b604082019050919050565b6000613abc6000836140fd565b9150613ac782614b77565b600082019050919050565b6000613adf601883614108565b9150613aea82614b7a565b602082019050919050565b6000613b02601083614108565b9150613b0d82614ba3565b602082019050919050565b6000613b25603183614108565b9150613b3082614bcc565b604082019050919050565b6000613b48602c83614108565b9150613b5382614c1b565b604082019050919050565b613b67816142a3565b82525050565b613b76816142a3565b82525050565b6000613b888285613736565b9150613b948284613736565b91508190509392505050565b6000613bab82613aaf565b9150819050919050565b6000602082019050613bca6000830184613648565b92915050565b6000608082019050613be56000830187613648565b613bf26020830186613648565b613bff6040830185613b6d565b8181036060830152613c1181846136c4565b905095945050505050565b60006020820190508181036000830152613c368184613657565b905092915050565b6000602082019050613c5360008301846136b5565b92915050565b60006020820190508181036000830152613c7381846136fd565b905092915050565b60006020820190508181036000830152613c9481613767565b9050919050565b60006020820190508181036000830152613cb48161378a565b9050919050565b60006020820190508181036000830152613cd4816137ad565b9050919050565b60006020820190508181036000830152613cf4816137d0565b9050919050565b60006020820190508181036000830152613d14816137f3565b9050919050565b60006020820190508181036000830152613d3481613816565b9050919050565b60006020820190508181036000830152613d5481613839565b9050919050565b60006020820190508181036000830152613d748161385c565b9050919050565b60006020820190508181036000830152613d948161387f565b9050919050565b60006020820190508181036000830152613db4816138a2565b9050919050565b60006020820190508181036000830152613dd4816138c5565b9050919050565b60006020820190508181036000830152613df4816138e8565b9050919050565b60006020820190508181036000830152613e148161390b565b9050919050565b60006020820190508181036000830152613e348161392e565b9050919050565b60006020820190508181036000830152613e5481613951565b9050919050565b60006020820190508181036000830152613e7481613974565b9050919050565b60006020820190508181036000830152613e9481613997565b9050919050565b60006020820190508181036000830152613eb4816139ba565b9050919050565b60006020820190508181036000830152613ed4816139dd565b9050919050565b60006020820190508181036000830152613ef481613a00565b9050919050565b60006020820190508181036000830152613f1481613a23565b9050919050565b60006020820190508181036000830152613f3481613a46565b9050919050565b60006020820190508181036000830152613f5481613a69565b9050919050565b60006020820190508181036000830152613f7481613a8c565b9050919050565b60006020820190508181036000830152613f9481613ad2565b9050919050565b60006020820190508181036000830152613fb481613af5565b9050919050565b60006020820190508181036000830152613fd481613b18565b9050919050565b60006020820190508181036000830152613ff481613b3b565b9050919050565b60006020820190506140106000830184613b6d565b92915050565b6000614020614031565b905061402c828261434b565b919050565b6000604051905090565b600067ffffffffffffffff821115614056576140556144e1565b5b61405f8261452e565b9050602081019050919050565b600067ffffffffffffffff821115614087576140866144e1565b5b6140908261452e565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061412f826142a3565b915061413a836142a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561416f5761416e6143f6565b5b828201905092915050565b6000614185826142a3565b9150614190836142a3565b9250826141a05761419f614425565b5b828204905092915050565b60006141b6826142a3565b91506141c1836142a3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141fa576141f96143f6565b5b828202905092915050565b6000614210826142a3565b915061421b836142a3565b92508282101561422e5761422d6143f6565b5b828203905092915050565b600061424482614283565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156142da5780820151818401526020810190506142bf565b838111156142e9576000848401525b50505050565b60006142fa826142a3565b9150600082141561430e5761430d6143f6565b5b600182039050919050565b6000600282049050600182168061433157607f821691505b6020821081141561434557614344614454565b5b50919050565b6143548261452e565b810181811067ffffffffffffffff82111715614373576143726144e1565b5b80604052505050565b6000614387826142a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143ba576143b96143f6565b5b600182019050919050565b60006143d0826142a3565b91506143db836142a3565b9250826143eb576143ea614425565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f41646472657373206e6f7420666f756e6420666f72206d696e74696e67000000600082015250565b7f53616c652069732070617573656420706c656173652074727920616761696e2060008201527f6c61746572000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720746f204e756c6c2061646472657373000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74207374617274656420796574000000000000000000600082015250565b7f416c6c204e46547320736f6c6400000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f41697264726f70206d696e74696e672077696c6c20657863656564206d61786960008201527f6d756d20737570706c7900000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4d696e20312026204d6178203230204e4654732063616e206265206d696e746560008201527f6420706572207472616e73616374696f6e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f53616c65206973206e6f742066696e6973686564207965740000000000000000600082015250565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614c7381614239565b8114614c7e57600080fd5b50565b614c8a8161424b565b8114614c9557600080fd5b50565b614ca181614257565b8114614cac57600080fd5b50565b614cb8816142a3565b8114614cc357600080fd5b5056fea2646970667358221220045b597557aa1856e6ea325154f1f74cfb22597b2f148d9a4176208a7516632964736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d537663327357505436534d66376469516e486e69643839426171614a586e4134344836344a44325463656a532f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c8063715018a6116101235780639ff46e74116100ab578063bb33d7291161006f578063bb33d729146107b4578063c87b56dd146107cb578063e0f888ef14610808578063e985e9c514610833578063f2fde38b146108705761021a565b80639ff46e74146106cf578063a035b1fe1461070c578063a22cb46514610737578063b774608614610760578063b88d4fde1461078b5761021a565b80638da5cb5b116100f25780638da5cb5b1461060957806391b7f5ed14610634578063926427441461065d57806395d89b411461067957806399288dbb146106a45761021a565b8063715018a614610587578063729ad39e1461059e578063790ca413146105c7578063853828b6146105f25761021a565b8063420db8cf116101a65780634f6ccce7116101755780634f6ccce71461049057806355367ba9146104cd57806355f804b3146104e45780636352211e1461050d57806370a082311461054a5761021a565b8063420db8cf146103d457806342842e0e146103ff578063438b630014610428578063439f5ac2146104655761021a565b806318160ddd116101ed57806318160ddd146102ed57806323b872dd146103185780632f745c59146103415780633197cbb61461037e57806334cf99fd146103a95761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613560565b610899565b6040516102539190613c3e565b60405180910390f35b34801561026857600080fd5b50610271610913565b60405161027e9190613c59565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613603565b6109a5565b6040516102bb9190613bb5565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e691906134d3565b610a2a565b005b3480156102f957600080fd5b50610302610b42565b60405161030f9190613ffb565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a91906133bd565b610b4f565b005b34801561034d57600080fd5b50610368600480360381019061036391906134d3565b610baf565b6040516103759190613ffb565b60405180910390f35b34801561038a57600080fd5b50610393610c54565b6040516103a09190613ffb565b60405180910390f35b3480156103b557600080fd5b506103be610c5a565b6040516103cb9190613ffb565b60405180910390f35b3480156103e057600080fd5b506103e9610d33565b6040516103f69190613ffb565b60405180910390f35b34801561040b57600080fd5b50610426600480360381019061042191906133bd565b610d39565b005b34801561043457600080fd5b5061044f600480360381019061044a9190613350565b610d59565b60405161045c9190613c1c565b60405180910390f35b34801561047157600080fd5b5061047a610e07565b6040516104879190613ffb565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190613603565b610e8d565b6040516104c49190613ffb565b60405180910390f35b3480156104d957600080fd5b506104e2610efe565b005b3480156104f057600080fd5b5061050b600480360381019061050691906135ba565b610f97565b005b34801561051957600080fd5b50610534600480360381019061052f9190613603565b61102d565b6040516105419190613bb5565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190613350565b6110df565b60405161057e9190613ffb565b60405180910390f35b34801561059357600080fd5b5061059c611197565b005b3480156105aa57600080fd5b506105c560048036038101906105c09190613513565b61121f565b005b3480156105d357600080fd5b506105dc611436565b6040516105e99190613ffb565b60405180910390f35b3480156105fe57600080fd5b5061060761143c565b005b34801561061557600080fd5b5061061e611567565b60405161062b9190613bb5565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190613603565b611591565b005b61067760048036038101906106729190613603565b611617565b005b34801561068557600080fd5b5061068e611941565b60405161069b9190613c59565b60405180910390f35b3480156106b057600080fd5b506106b96119d3565b6040516106c69190613c3e565b60405180910390f35b3480156106db57600080fd5b506106f660048036038101906106f19190613603565b6119e6565b6040516107039190613c3e565b60405180910390f35b34801561071857600080fd5b50610721611a74565b60405161072e9190613ffb565b60405180910390f35b34801561074357600080fd5b5061075e60048036038101906107599190613493565b611a7a565b005b34801561076c57600080fd5b50610775611bfb565b6040516107829190613ffb565b60405180910390f35b34801561079757600080fd5b506107b260048036038101906107ad9190613410565b611c81565b005b3480156107c057600080fd5b506107c9611ce3565b005b3480156107d757600080fd5b506107f260048036038101906107ed9190613603565b611d7c565b6040516107ff9190613c59565b60405180910390f35b34801561081457600080fd5b5061081d611e23565b60405161082a9190613ffb565b60405180910390f35b34801561083f57600080fd5b5061085a6004803603810190610855919061337d565b611e29565b6040516108679190613c3e565b60405180910390f35b34801561087c57600080fd5b5061089760048036038101906108929190613350565b611ebd565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090c575061090b82611fb5565b5b9050919050565b60606000805461092290614319565b80601f016020809104026020016040519081016040528092919081815260200182805461094e90614319565b801561099b5780601f106109705761010080835404028352916020019161099b565b820191906000526020600020905b81548152906001019060200180831161097e57829003601f168201915b5050505050905090565b60006109b082612097565b6109ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e690613ebb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a358261102d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9d90613f5b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ac5612103565b73ffffffffffffffffffffffffffffffffffffffff161480610af45750610af381610aee612103565b611e29565b5b610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a90613dfb565b60405180910390fd5b610b3d838361210b565b505050565b6000600880549050905090565b610b60610b5a612103565b826121c4565b610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9690613fbb565b60405180910390fd5b610baa8383836122a2565b505050565b6000610bba836110df565b8210610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf290613cbb565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60105481565b6000610c64612103565b73ffffffffffffffffffffffffffffffffffffffff16610c82611567565b73ffffffffffffffffffffffffffffffffffffffff1614610cd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccf90613efb565b60405180910390fd5b601054421015610d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1490613f7b565b60405180910390fd5b610d25610b42565b600c81905550600c54905090565b600d5481565b610d5483838360405180602001604052806000815250611c81565b505050565b60606000610d66836110df565b905060008167ffffffffffffffff811115610d8457610d836144e1565b5b604051908082528060200260200182016040528015610db25781602001602082028036833780820191505090505b50905060005b82811015610dfc57610dca8582610baf565b828281518110610ddd57610ddc6144b2565b5b6020026020010181815250508080610df49061437c565b915050610db8565b508092505050919050565b6000610e11612103565b73ffffffffffffffffffffffffffffffffffffffff16610e2f611567565b73ffffffffffffffffffffffffffffffffffffffff1614610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90613efb565b60405180910390fd5b601054905090565b6000610e97610b42565b8210610ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf90613fdb565b60405180910390fd5b60088281548110610eec57610eeb6144b2565b5b90600052602060002001549050919050565b610f06612103565b73ffffffffffffffffffffffffffffffffffffffff16610f24611567565b73ffffffffffffffffffffffffffffffffffffffff1614610f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7190613efb565b60405180910390fd5b6000601260006101000a81548160ff021916908315150217905550565b610f9f612103565b73ffffffffffffffffffffffffffffffffffffffff16610fbd611567565b73ffffffffffffffffffffffffffffffffffffffff1614611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a90613efb565b60405180910390fd5b806011908051906020019061102992919061310e565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd90613e5b565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114790613e3b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61119f612103565b73ffffffffffffffffffffffffffffffffffffffff166111bd611567565b73ffffffffffffffffffffffffffffffffffffffff1614611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a90613efb565b60405180910390fd5b61121d60006124fe565b565b611227612103565b73ffffffffffffffffffffffffffffffffffffffff16611245611567565b73ffffffffffffffffffffffffffffffffffffffff161461129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290613efb565b60405180910390fd5b600d54600c546112ab9190614205565b828290506112b7610b42565b6112c19190614124565b1115611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f990613e1b565b60405180910390fd5b6000828290501415611349576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134090613c7b565b60405180910390fd5b60005b8282905081101561143157600073ffffffffffffffffffffffffffffffffffffffff16838383818110611382576113816144b2565b5b90506020020160208101906113979190613350565b73ffffffffffffffffffffffffffffffffffffffff1614156113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590613cdb565b60405180910390fd5b61141e838383818110611404576114036144b2565b5b90506020020160208101906114199190613350565b6125c4565b80806114299061437c565b91505061134c565b505050565b600f5481565b611444612103565b73ffffffffffffffffffffffffffffffffffffffff16611462611567565b73ffffffffffffffffffffffffffffffffffffffff16146114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90613efb565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516114de90613ba0565b60006040518083038185875af1925050503d806000811461151b576040519150601f19603f3d011682016040523d82523d6000602084013e611520565b606091505b5050905080611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90613f9b565b60405180910390fd5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611599612103565b73ffffffffffffffffffffffffffffffffffffffff166115b7611567565b73ffffffffffffffffffffffffffffffffffffffff161461160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490613efb565b60405180910390fd5b80600e8190555050565b61161f611567565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116a157601260009054906101000a900460ff166116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790613c9b565b60405180910390fd5b5b6116a9611567565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461172157600f54421015611720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171790613dbb565b60405180910390fd5b5b600081118015611732575060148111155b611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890613e9b565b60405180910390fd5b611779611567565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461181457600d54600c546117bb9190614205565b816117c4610b42565b6117ce9190614124565b111561180f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180690613ddb565b60405180910390fd5b61186c565b600c5481611820610b42565b61182a9190614124565b111561186b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186290613ddb565b60405180910390fd5b5b80600e5461187a91906141ab565b3410156118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390613edb565b60405180910390fd5b600033905060005b8281101561193c576118d5826125c4565b6118dd611567565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141561192957600d6000815480929190611923906142ef565b91905055505b80806119349061437c565b9150506118c4565b505050565b60606001805461195090614319565b80601f016020809104026020016040519081016040528092919081815260200182805461197c90614319565b80156119c95780601f1061199e576101008083540402835291602001916119c9565b820191906000526020600020905b8154815290600101906020018083116119ac57829003601f168201915b5050505050905090565b601260009054906101000a900460ff1681565b60006119f0612103565b73ffffffffffffffffffffffffffffffffffffffff16611a0e611567565b73ffffffffffffffffffffffffffffffffffffffff1614611a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5b90613efb565b60405180910390fd5b81600f8190555060019050919050565b600e5481565b611a82612103565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae790613d7b565b60405180910390fd5b8060056000611afd612103565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611baa612103565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bef9190613c3e565b60405180910390a35050565b6000611c05612103565b73ffffffffffffffffffffffffffffffffffffffff16611c23611567565b73ffffffffffffffffffffffffffffffffffffffff1614611c79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7090613efb565b60405180910390fd5b600f54905090565b611c92611c8c612103565b836121c4565b611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc890613fbb565b60405180910390fd5b611cdd84848484612621565b50505050565b611ceb612103565b73ffffffffffffffffffffffffffffffffffffffff16611d09611567565b73ffffffffffffffffffffffffffffffffffffffff1614611d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5690613efb565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550565b6060611d8782612097565b611dc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbd90613f3b565b60405180910390fd5b6000611dd061267d565b90506000815111611df05760405180602001604052806000815250611e1b565b80611dfa8461270f565b604051602001611e0b929190613b7c565b6040516020818303038152906040525b915050919050565b600c5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ec5612103565b73ffffffffffffffffffffffffffffffffffffffff16611ee3611567565b73ffffffffffffffffffffffffffffffffffffffff1614611f39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3090613efb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa090613d1b565b60405180910390fd5b611fb2816124fe565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061208057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612090575061208f82612870565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661217e8361102d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121cf82612097565b61220e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220590613d9b565b60405180910390fd5b60006122198361102d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061228857508373ffffffffffffffffffffffffffffffffffffffff16612270846109a5565b73ffffffffffffffffffffffffffffffffffffffff16145b8061229957506122988185611e29565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122c28261102d565b73ffffffffffffffffffffffffffffffffffffffff1614612318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230f90613f1b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237f90613d5b565b60405180910390fd5b6123938383836128da565b61239e60008261210b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123ee9190614205565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124459190614124565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125ce600b6129ee565b60006125da600b612a04565b90506125e68282612a12565b7fd9dc24857f317ed9abbbb42e920ede0104231eb1d3d70236a74887ffaf159868816040516126159190613ffb565b60405180910390a15050565b61262c8484846122a2565b61263884848484612a30565b612677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266e90613cfb565b60405180910390fd5b50505050565b60606011805461268c90614319565b80601f01602080910402602001604051908101604052809291908181526020018280546126b890614319565b80156127055780601f106126da57610100808354040283529160200191612705565b820191906000526020600020905b8154815290600101906020018083116126e857829003601f168201915b5050505050905090565b60606000821415612757576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061286b565b600082905060005b600082146127895780806127729061437c565b915050600a82612782919061417a565b915061275f565b60008167ffffffffffffffff8111156127a5576127a46144e1565b5b6040519080825280601f01601f1916602001820160405280156127d75781602001600182028036833780820191505090505b5090505b60008514612864576001826127f09190614205565b9150600a856127ff91906143c5565b603061280b9190614124565b60f81b818381518110612821576128206144b2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561285d919061417a565b94506127db565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6128e5838383612bc7565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129285761292381612bcc565b612967565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612966576129658382612c15565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129aa576129a581612d82565b6129e9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129e8576129e78282612e53565b5b5b505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b612a2c828260405180602001604052806000815250612ed2565b5050565b6000612a518473ffffffffffffffffffffffffffffffffffffffff16612f2d565b15612bba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a7a612103565b8786866040518563ffffffff1660e01b8152600401612a9c9493929190613bd0565b602060405180830381600087803b158015612ab657600080fd5b505af1925050508015612ae757506040513d601f19601f82011682018060405250810190612ae4919061358d565b60015b612b6a573d8060008114612b17576040519150601f19603f3d011682016040523d82523d6000602084013e612b1c565b606091505b50600081511415612b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5990613cfb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bbf565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c22846110df565b612c2c9190614205565b9050600060076000848152602001908152602001600020549050818114612d11576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d969190614205565b9050600060096000848152602001908152602001600020549050600060088381548110612dc657612dc56144b2565b5b906000526020600020015490508060088381548110612de857612de76144b2565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e3757612e36614483565b5b6001900381819060005260206000200160009055905550505050565b6000612e5e836110df565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b612edc8383612f40565b612ee96000848484612a30565b612f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1f90613cfb565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fa790613e7b565b60405180910390fd5b612fb981612097565b15612ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff090613d3b565b60405180910390fd5b613005600083836128da565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130559190614124565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461311a90614319565b90600052602060002090601f01602090048101928261313c5760008555613183565b82601f1061315557805160ff1916838001178555613183565b82800160010185558215613183579182015b82811115613182578251825591602001919060010190613167565b5b5090506131909190613194565b5090565b5b808211156131ad576000816000905550600101613195565b5090565b60006131c46131bf8461403b565b614016565b9050828152602081018484840111156131e0576131df61451f565b5b6131eb8482856142ad565b509392505050565b60006132066132018461406c565b614016565b9050828152602081018484840111156132225761322161451f565b5b61322d8482856142ad565b509392505050565b60008135905061324481614c6a565b92915050565b60008083601f8401126132605761325f614515565b5b8235905067ffffffffffffffff81111561327d5761327c614510565b5b6020830191508360208202830111156132995761329861451a565b5b9250929050565b6000813590506132af81614c81565b92915050565b6000813590506132c481614c98565b92915050565b6000815190506132d981614c98565b92915050565b600082601f8301126132f4576132f3614515565b5b81356133048482602086016131b1565b91505092915050565b600082601f83011261332257613321614515565b5b81356133328482602086016131f3565b91505092915050565b60008135905061334a81614caf565b92915050565b60006020828403121561336657613365614529565b5b600061337484828501613235565b91505092915050565b6000806040838503121561339457613393614529565b5b60006133a285828601613235565b92505060206133b385828601613235565b9150509250929050565b6000806000606084860312156133d6576133d5614529565b5b60006133e486828701613235565b93505060206133f586828701613235565b92505060406134068682870161333b565b9150509250925092565b6000806000806080858703121561342a57613429614529565b5b600061343887828801613235565b945050602061344987828801613235565b935050604061345a8782880161333b565b925050606085013567ffffffffffffffff81111561347b5761347a614524565b5b613487878288016132df565b91505092959194509250565b600080604083850312156134aa576134a9614529565b5b60006134b885828601613235565b92505060206134c9858286016132a0565b9150509250929050565b600080604083850312156134ea576134e9614529565b5b60006134f885828601613235565b92505060206135098582860161333b565b9150509250929050565b6000806020838503121561352a57613529614529565b5b600083013567ffffffffffffffff81111561354857613547614524565b5b6135548582860161324a565b92509250509250929050565b60006020828403121561357657613575614529565b5b6000613584848285016132b5565b91505092915050565b6000602082840312156135a3576135a2614529565b5b60006135b1848285016132ca565b91505092915050565b6000602082840312156135d0576135cf614529565b5b600082013567ffffffffffffffff8111156135ee576135ed614524565b5b6135fa8482850161330d565b91505092915050565b60006020828403121561361957613618614529565b5b60006136278482850161333b565b91505092915050565b600061363c8383613b5e565b60208301905092915050565b61365181614239565b82525050565b6000613662826140ad565b61366c81856140db565b93506136778361409d565b8060005b838110156136a857815161368f8882613630565b975061369a836140ce565b92505060018101905061367b565b5085935050505092915050565b6136be8161424b565b82525050565b60006136cf826140b8565b6136d981856140ec565b93506136e98185602086016142bc565b6136f28161452e565b840191505092915050565b6000613708826140c3565b6137128185614108565b93506137228185602086016142bc565b61372b8161452e565b840191505092915050565b6000613741826140c3565b61374b8185614119565b935061375b8185602086016142bc565b80840191505092915050565b6000613774601d83614108565b915061377f8261453f565b602082019050919050565b6000613797602583614108565b91506137a282614568565b604082019050919050565b60006137ba602b83614108565b91506137c5826145b7565b604082019050919050565b60006137dd601783614108565b91506137e882614606565b602082019050919050565b6000613800603283614108565b915061380b8261462f565b604082019050919050565b6000613823602683614108565b915061382e8261467e565b604082019050919050565b6000613846601c83614108565b9150613851826146cd565b602082019050919050565b6000613869602483614108565b9150613874826146f6565b604082019050919050565b600061388c601983614108565b915061389782614745565b602082019050919050565b60006138af602c83614108565b91506138ba8261476e565b604082019050919050565b60006138d2601783614108565b91506138dd826147bd565b602082019050919050565b60006138f5600d83614108565b9150613900826147e6565b602082019050919050565b6000613918603883614108565b91506139238261480f565b604082019050919050565b600061393b602a83614108565b91506139468261485e565b604082019050919050565b600061395e602a83614108565b9150613969826148ad565b604082019050919050565b6000613981602983614108565b915061398c826148fc565b604082019050919050565b60006139a4602083614108565b91506139af8261494b565b602082019050919050565b60006139c7603183614108565b91506139d282614974565b604082019050919050565b60006139ea602c83614108565b91506139f5826149c3565b604082019050919050565b6000613a0d602f83614108565b9150613a1882614a12565b604082019050919050565b6000613a30602083614108565b9150613a3b82614a61565b602082019050919050565b6000613a53602983614108565b9150613a5e82614a8a565b604082019050919050565b6000613a76602f83614108565b9150613a8182614ad9565b604082019050919050565b6000613a99602183614108565b9150613aa482614b28565b604082019050919050565b6000613abc6000836140fd565b9150613ac782614b77565b600082019050919050565b6000613adf601883614108565b9150613aea82614b7a565b602082019050919050565b6000613b02601083614108565b9150613b0d82614ba3565b602082019050919050565b6000613b25603183614108565b9150613b3082614bcc565b604082019050919050565b6000613b48602c83614108565b9150613b5382614c1b565b604082019050919050565b613b67816142a3565b82525050565b613b76816142a3565b82525050565b6000613b888285613736565b9150613b948284613736565b91508190509392505050565b6000613bab82613aaf565b9150819050919050565b6000602082019050613bca6000830184613648565b92915050565b6000608082019050613be56000830187613648565b613bf26020830186613648565b613bff6040830185613b6d565b8181036060830152613c1181846136c4565b905095945050505050565b60006020820190508181036000830152613c368184613657565b905092915050565b6000602082019050613c5360008301846136b5565b92915050565b60006020820190508181036000830152613c7381846136fd565b905092915050565b60006020820190508181036000830152613c9481613767565b9050919050565b60006020820190508181036000830152613cb48161378a565b9050919050565b60006020820190508181036000830152613cd4816137ad565b9050919050565b60006020820190508181036000830152613cf4816137d0565b9050919050565b60006020820190508181036000830152613d14816137f3565b9050919050565b60006020820190508181036000830152613d3481613816565b9050919050565b60006020820190508181036000830152613d5481613839565b9050919050565b60006020820190508181036000830152613d748161385c565b9050919050565b60006020820190508181036000830152613d948161387f565b9050919050565b60006020820190508181036000830152613db4816138a2565b9050919050565b60006020820190508181036000830152613dd4816138c5565b9050919050565b60006020820190508181036000830152613df4816138e8565b9050919050565b60006020820190508181036000830152613e148161390b565b9050919050565b60006020820190508181036000830152613e348161392e565b9050919050565b60006020820190508181036000830152613e5481613951565b9050919050565b60006020820190508181036000830152613e7481613974565b9050919050565b60006020820190508181036000830152613e9481613997565b9050919050565b60006020820190508181036000830152613eb4816139ba565b9050919050565b60006020820190508181036000830152613ed4816139dd565b9050919050565b60006020820190508181036000830152613ef481613a00565b9050919050565b60006020820190508181036000830152613f1481613a23565b9050919050565b60006020820190508181036000830152613f3481613a46565b9050919050565b60006020820190508181036000830152613f5481613a69565b9050919050565b60006020820190508181036000830152613f7481613a8c565b9050919050565b60006020820190508181036000830152613f9481613ad2565b9050919050565b60006020820190508181036000830152613fb481613af5565b9050919050565b60006020820190508181036000830152613fd481613b18565b9050919050565b60006020820190508181036000830152613ff481613b3b565b9050919050565b60006020820190506140106000830184613b6d565b92915050565b6000614020614031565b905061402c828261434b565b919050565b6000604051905090565b600067ffffffffffffffff821115614056576140556144e1565b5b61405f8261452e565b9050602081019050919050565b600067ffffffffffffffff821115614087576140866144e1565b5b6140908261452e565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061412f826142a3565b915061413a836142a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561416f5761416e6143f6565b5b828201905092915050565b6000614185826142a3565b9150614190836142a3565b9250826141a05761419f614425565b5b828204905092915050565b60006141b6826142a3565b91506141c1836142a3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141fa576141f96143f6565b5b828202905092915050565b6000614210826142a3565b915061421b836142a3565b92508282101561422e5761422d6143f6565b5b828203905092915050565b600061424482614283565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156142da5780820151818401526020810190506142bf565b838111156142e9576000848401525b50505050565b60006142fa826142a3565b9150600082141561430e5761430d6143f6565b5b600182039050919050565b6000600282049050600182168061433157607f821691505b6020821081141561434557614344614454565b5b50919050565b6143548261452e565b810181811067ffffffffffffffff82111715614373576143726144e1565b5b80604052505050565b6000614387826142a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143ba576143b96143f6565b5b600182019050919050565b60006143d0826142a3565b91506143db836142a3565b9250826143eb576143ea614425565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f41646472657373206e6f7420666f756e6420666f72206d696e74696e67000000600082015250565b7f53616c652069732070617573656420706c656173652074727920616761696e2060008201527f6c61746572000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720746f204e756c6c2061646472657373000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74207374617274656420796574000000000000000000600082015250565b7f416c6c204e46547320736f6c6400000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f41697264726f70206d696e74696e672077696c6c20657863656564206d61786960008201527f6d756d20737570706c7900000000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4d696e20312026204d6178203230204e4654732063616e206265206d696e746560008201527f6420706572207472616e73616374696f6e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f45746865722073656e7420776974682074686973207472616e73616374696f6e60008201527f206973206e6f7420636f72726563740000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f53616c65206973206e6f742066696e6973686564207965740000000000000000600082015250565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b614c7381614239565b8114614c7e57600080fd5b50565b614c8a8161424b565b8114614c9557600080fd5b50565b614ca181614257565b8114614cac57600080fd5b50565b614cb8816142a3565b8114614cc357600080fd5b5056fea2646970667358221220045b597557aa1856e6ea325154f1f74cfb22597b2f148d9a4176208a7516632964736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d537663327357505436534d66376469516e486e69643839426171614a586e4134344836344a44325463656a532f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): https://ipfs.io/ipfs/QmSvc2sWPT6SMf7diQnHnid89BaqaJXnA44H64JD2TcejS/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d537663327357505436
Arg [3] : 534d66376469516e486e69643839426171614a586e4134344836344a44325463
Arg [4] : 656a532f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
46485:4328:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40015:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27175:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28868:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28391:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40818:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29927:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40399:343;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46818:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50597:213;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46668:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30374:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47141:385;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50489:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41008:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47788:73;;;;;;;;;;;;;:::i;:::-;;47534:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26782:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26425:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9882:94;;;;;;;;;;;;;:::i;:::-;;49384:508;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46773:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48003:174;;;;;;;;;;;;;:::i;:::-;;9231:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47643:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48201:1171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27344:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46886:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50223:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46709:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29248:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50375:102;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30630:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47921:74;;;;;;;;;;;;;:::i;:::-;;27519:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46629:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29646:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10131:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40015:300;40162:4;40219:35;40204:50;;;:11;:50;;;;:103;;;;40271:36;40295:11;40271:23;:36::i;:::-;40204:103;40184:123;;40015:300;;;:::o;27175:100::-;27229:13;27262:5;27255:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27175:100;:::o;28868:308::-;28989:7;29036:16;29044:7;29036;:16::i;:::-;29014:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;29144:15;:24;29160:7;29144:24;;;;;;;;;;;;;;;;;;;;;29137:31;;28868:308;;;:::o;28391:411::-;28472:13;28488:23;28503:7;28488:14;:23::i;:::-;28472:39;;28536:5;28530:11;;:2;:11;;;;28522:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28630:5;28614:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28639:37;28656:5;28663:12;:10;:12::i;:::-;28639:16;:37::i;:::-;28614:62;28592:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;28773:21;28782:2;28786:7;28773:8;:21::i;:::-;28461:341;28391:411;;:::o;40818:113::-;40879:7;40906:10;:17;;;;40899:24;;40818:113;:::o;29927:376::-;30136:41;30155:12;:10;:12::i;:::-;30169:7;30136:18;:41::i;:::-;30114:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30267:28;30277:4;30283:2;30287:7;30267:9;:28::i;:::-;29927:376;;;:::o;40399:343::-;40541:7;40596:23;40613:5;40596:16;:23::i;:::-;40588:5;:31;40566:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;40708:12;:19;40721:5;40708:19;;;;;;;;;;;;;;;:26;40728:5;40708:26;;;;;;;;;;;;40701:33;;40399:343;;;;:::o;46818:35::-;;;;:::o;50597:213::-;50645:7;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50691:7:::1;;50672:15;:26;;50664:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;50761:13;:11;:13::i;:::-;50748:10;:26;;;;50792:10;;50785:17;;50597:213:::0;:::o;46668:34::-;;;;:::o;30374:185::-;30512:39;30529:4;30535:2;30539:7;30512:39;;;;;;;;;;;;:16;:39::i;:::-;30374:185;;;:::o;47141:385::-;47230:16;47264:18;47285:17;47295:6;47285:9;:17::i;:::-;47264:38;;47315:25;47357:10;47343:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47315:53;;47384:9;47379:112;47403:10;47399:1;:14;47379:112;;;47449:30;47469:6;47477:1;47449:19;:30::i;:::-;47435:8;47444:1;47435:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;47415:3;;;;;:::i;:::-;;;;47379:112;;;;47510:8;47503:15;;;;47141:385;;;:::o;50489:96::-;50544:7;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50570:7:::1;;50563:14;;50489:96:::0;:::o;41008:320::-;41128:7;41183:30;:28;:30::i;:::-;41175:5;:38;41153:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;41303:10;41314:5;41303:17;;;;;;;;:::i;:::-;;;;;;;;;;41296:24;;41008:320;;;:::o;47788:73::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47848:5:::1;47837:8;;:16;;;;;;;;;;;;;;;;;;47788:73::o:0;47534:101::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47620:7:::1;47605:12;:22;;;;;;;;;;;;:::i;:::-;;47534:101:::0;:::o;26782:326::-;26899:7;26924:13;26940:7;:16;26948:7;26940:16;;;;;;;;;;;;;;;;;;;;;26924:32;;27006:1;26989:19;;:5;:19;;;;26967:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;27095:5;27088:12;;;26782:326;;;:::o;26425:295::-;26542:7;26606:1;26589:19;;:5;:19;;;;26567:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26696:9;:16;26706:5;26696:16;;;;;;;;;;;;;;;;26689:23;;26425:295;;;:::o;9882:94::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9947:21:::1;9965:1;9947:9;:21::i;:::-;9882:94::o:0;49384:508::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49537:14:::1;;49524:10;;:27;;;;:::i;:::-;49501:11;;:18;;49485:13;:11;:13::i;:::-;:34;;;;:::i;:::-;:67;;49463:159;;;;;;;;;;;;:::i;:::-;;;;;;;;;49663:1;49641:11;;:18;;:23;;49633:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49714:9;49709:176;49733:11;;:18;;49729:1;:22;49709:176;;;49807:1;49781:28;;:11;;49793:1;49781:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:28;;;;49773:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49852:21;49858:11;;49870:1;49858:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;49852:5;:21::i;:::-;49753:3;;;;;:::i;:::-;;;;49709:176;;;;49384:508:::0;;:::o;46773:38::-;;;;:::o;48003:174::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48055:12:::1;48073:10;:15;;48096:21;48073:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48054:68;;;48141:7;48133:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;48043:134;48003:174::o:0;9231:87::-;9277:7;9304:6;;;;;;;;;;;9297:13;;9231:87;:::o;47643:90::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47716:9:::1;47708:5;:17;;;;47643:90:::0;:::o;48201:1171::-;48278:7;:5;:7::i;:::-;48264:21;;:10;:21;;;48260:112;;48310:8;;;;;;;;;;;48302:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48260:112;48410:7;:5;:7::i;:::-;48396:21;;:10;:21;;;48392:119;;48461:10;;48442:15;:29;;48434:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;48392:119;48562:1;48553:6;:10;:26;;;;;48577:2;48567:6;:12;;48553:26;48531:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;48695:7;:5;:7::i;:::-;48681:21;;:10;:21;;;48677:328;;48785:14;;48772:10;;:27;;;;:::i;:::-;48761:6;48745:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:55;;48719:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;48677:328;;;48933:10;;48922:6;48906:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;;48880:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;48677:328;49068:6;49060:5;;:14;;;;:::i;:::-;49047:9;:27;;49025:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;49162:11;49176:10;49162:24;;49204:9;49199:166;49223:6;49219:1;:10;49199:166;;;49251:10;49257:3;49251:5;:10::i;:::-;49294:7;:5;:7::i;:::-;49280:21;;:10;:21;;;49276:78;;;49322:14;;:16;;;;;;;;;:::i;:::-;;;;;;49276:78;49231:3;;;;;:::i;:::-;;;;49199:166;;;;48249:1123;48201:1171;:::o;27344:104::-;27400:13;27433:7;27426:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27344:104;:::o;46886:27::-;;;;;;;;;;;;;:::o;50223:140::-;50294:4;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50323:10:::1;50310;:23;;;;50351:4;50344:11;;50223:140:::0;;;:::o;46709:40::-;;;;:::o;29248:327::-;29395:12;:10;:12::i;:::-;29383:24;;:8;:24;;;;29375:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29495:8;29450:18;:32;29469:12;:10;:12::i;:::-;29450:32;;;;;;;;;;;;;;;:42;29483:8;29450:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29548:8;29519:48;;29534:12;:10;:12::i;:::-;29519:48;;;29558:8;29519:48;;;;;;:::i;:::-;;;;;;;;29248:327;;:::o;50375:102::-;50433:7;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50459:10:::1;;50452:17;;50375:102:::0;:::o;30630:365::-;30819:41;30838:12;:10;:12::i;:::-;30852:7;30819:18;:41::i;:::-;30797:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;30948:39;30962:4;30968:2;30972:7;30981:5;30948:13;:39::i;:::-;30630:365;;;;:::o;47921:74::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47983:4:::1;47972:8;;:15;;;;;;;;;;;;;;;;;;47921:74::o:0;27519:468::-;27637:13;27690:16;27698:7;27690;:16::i;:::-;27668:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;27794:21;27818:10;:8;:10::i;:::-;27794:34;;27883:1;27865:7;27859:21;:25;:120;;;;;;;;;;;;;;;;;27928:7;27937:18;:7;:16;:18::i;:::-;27911:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27859:120;27839:140;;;27519:468;;;:::o;46629:32::-;;;;:::o;29646:214::-;29788:4;29817:18;:25;29836:5;29817:25;;;;;;;;;;;;;;;:35;29843:8;29817:35;;;;;;;;;;;;;;;;;;;;;;;;;29810:42;;29646:214;;;;:::o;10131:229::-;9462:12;:10;:12::i;:::-;9451:23;;:7;:5;:7::i;:::-;:23;;;9443:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10254:1:::1;10234:22;;:8;:22;;;;10212:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;10333:19;10343:8;10333:9;:19::i;:::-;10131:229:::0;:::o;26006:355::-;26153:4;26210:25;26195:40;;;:11;:40;;;;:105;;;;26267:33;26252:48;;;:11;:48;;;;26195:105;:158;;;;26317:36;26341:11;26317:23;:36::i;:::-;26195:158;26175:178;;26006:355;;;:::o;32542:127::-;32607:4;32659:1;32631:30;;:7;:16;32639:7;32631:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32624:37;;32542:127;;;:::o;2204:98::-;2257:7;2284:10;2277:17;;2204:98;:::o;36665:174::-;36767:2;36740:15;:24;36756:7;36740:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36823:7;36819:2;36785:46;;36794:23;36809:7;36794:14;:23::i;:::-;36785:46;;;;;;;;;;;;36665:174;;:::o;32836:452::-;32965:4;33009:16;33017:7;33009;:16::i;:::-;32987:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;33108:13;33124:23;33139:7;33124:14;:23::i;:::-;33108:39;;33177:5;33166:16;;:7;:16;;;:64;;;;33223:7;33199:31;;:20;33211:7;33199:11;:20::i;:::-;:31;;;33166:64;:113;;;;33247:32;33264:5;33271:7;33247:16;:32::i;:::-;33166:113;33158:122;;;32836:452;;;;:::o;35932:615::-;36105:4;36078:31;;:23;36093:7;36078:14;:23::i;:::-;:31;;;36056:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;36211:1;36197:16;;:2;:16;;;;36189:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36267:39;36288:4;36294:2;36298:7;36267:20;:39::i;:::-;36371:29;36388:1;36392:7;36371:8;:29::i;:::-;36432:1;36413:9;:15;36423:4;36413:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36461:1;36444:9;:13;36454:2;36444:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36492:2;36473:7;:16;36481:7;36473:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36531:7;36527:2;36512:27;;36521:4;36512:27;;;;;;;;;;;;35932:615;;;:::o;10368:173::-;10424:16;10443:6;;;;;;;;;;;10424:25;;10469:8;10460:6;;:17;;;;;;;;;;;;;;;;;;10524:8;10493:40;;10514:8;10493:40;;;;;;;;;;;;10413:128;10368:173;:::o;49900:190::-;49947:20;:8;:18;:20::i;:::-;49978:15;49996:18;:8;:16;:18::i;:::-;49978:36;;50025:23;50035:3;50040:7;50025:9;:23::i;:::-;50064:18;50074:7;50064:18;;;;;;:::i;:::-;;;;;;;;49936:154;49900:190;:::o;31877:352::-;32034:28;32044:4;32050:2;32054:7;32034:9;:28::i;:::-;32095:48;32118:4;32124:2;32128:7;32137:5;32095:22;:48::i;:::-;32073:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;31877:352;;;;:::o;50098:113::-;50158:13;50191:12;50184:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50098:113;:::o;12873:723::-;12929:13;13159:1;13150:5;:10;13146:53;;;13177:10;;;;;;;;;;;;;;;;;;;;;13146:53;13209:12;13224:5;13209:20;;13240:14;13265:78;13280:1;13272:4;:9;13265:78;;13298:8;;;;;:::i;:::-;;;;13329:2;13321:10;;;;;:::i;:::-;;;13265:78;;;13353:19;13385:6;13375:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13353:39;;13403:154;13419:1;13410:5;:10;13403:154;;13447:1;13437:11;;;;;:::i;:::-;;;13514:2;13506:5;:10;;;;:::i;:::-;13493:2;:24;;;;:::i;:::-;13480:39;;13463:6;13470;13463:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;13543:2;13534:11;;;;;:::i;:::-;;;13403:154;;;13581:6;13567:21;;;;;12873:723;;;;:::o;12352:207::-;12482:4;12526:25;12511:40;;;:11;:40;;;;12504:47;;12352:207;;;:::o;41941:589::-;42085:45;42112:4;42118:2;42122:7;42085:26;:45::i;:::-;42163:1;42147:18;;:4;:18;;;42143:187;;;42182:40;42214:7;42182:31;:40::i;:::-;42143:187;;;42252:2;42244:10;;:4;:10;;;42240:90;;42271:47;42304:4;42310:7;42271:32;:47::i;:::-;42240:90;42143:187;42358:1;42344:16;;:2;:16;;;42340:183;;;42377:45;42414:7;42377:36;:45::i;:::-;42340:183;;;42450:4;42444:10;;:2;:10;;;42440:83;;42471:40;42499:2;42503:7;42471:27;:40::i;:::-;42440:83;42340:183;41941:589;;;:::o;1113:127::-;1220:1;1202:7;:14;;;:19;;;;;;;;;;;1113:127;:::o;991:114::-;1056:7;1083;:14;;;1076:21;;991:114;;;:::o;33630:110::-;33706:26;33716:2;33720:7;33706:26;;;;;;;;;;;;:9;:26::i;:::-;33630:110;;:::o;37404:984::-;37559:4;37580:15;:2;:13;;;:15::i;:::-;37576:805;;;37649:2;37633:36;;;37692:12;:10;:12::i;:::-;37727:4;37754:7;37784:5;37633:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37612:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38012:1;37995:6;:13;:18;37991:320;;;38038:108;;;;;;;;;;:::i;:::-;;;;;;;;37991:320;38261:6;38255:13;38246:6;38242:2;38238:15;38231:38;37612:714;37882:45;;;37872:55;;;:6;:55;;;;37865:62;;;;;37576:805;38365:4;38358:11;;37404:984;;;;;;;:::o;38960:126::-;;;;:::o;43253:164::-;43357:10;:17;;;;43330:15;:24;43346:7;43330:24;;;;;;;;;;;:44;;;;43385:10;43401:7;43385:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43253:164;:::o;44044:1002::-;44324:22;44374:1;44349:22;44366:4;44349:16;:22::i;:::-;:26;;;;:::i;:::-;44324:51;;44386:18;44407:17;:26;44425:7;44407:26;;;;;;;;;;;;44386:47;;44554:14;44540:10;:28;44536:328;;44585:19;44607:12;:18;44620:4;44607:18;;;;;;;;;;;;;;;:34;44626:14;44607:34;;;;;;;;;;;;44585:56;;44691:11;44658:12;:18;44671:4;44658:18;;;;;;;;;;;;;;;:30;44677:10;44658:30;;;;;;;;;;;:44;;;;44808:10;44775:17;:30;44793:11;44775:30;;;;;;;;;;;:43;;;;44570:294;44536:328;44960:17;:26;44978:7;44960:26;;;;;;;;;;;44953:33;;;45004:12;:18;45017:4;45004:18;;;;;;;;;;;;;;;:34;45023:14;45004:34;;;;;;;;;;;44997:41;;;44139:907;;44044:1002;;:::o;45341:1079::-;45594:22;45639:1;45619:10;:17;;;;:21;;;;:::i;:::-;45594:46;;45651:18;45672:15;:24;45688:7;45672:24;;;;;;;;;;;;45651:45;;46023:19;46045:10;46056:14;46045:26;;;;;;;;:::i;:::-;;;;;;;;;;46023:48;;46109:11;46084:10;46095;46084:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;46220:10;46189:15;:28;46205:11;46189:28;;;;;;;;;;;:41;;;;46361:15;:24;46377:7;46361:24;;;;;;;;;;;46354:31;;;46396:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45412:1008;;;45341:1079;:::o;42831:221::-;42916:14;42933:20;42950:2;42933:16;:20::i;:::-;42916:37;;42991:7;42964:12;:16;42977:2;42964:16;;;;;;;;;;;;;;;:24;42981:6;42964:24;;;;;;;;;;;:34;;;;43038:6;43009:17;:26;43027:7;43009:26;;;;;;;;;;;:35;;;;42905:147;42831:221;;:::o;33967:321::-;34097:18;34103:2;34107:7;34097:5;:18::i;:::-;34148:54;34179:1;34183:2;34187:7;34196:5;34148:22;:54::i;:::-;34126:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;33967:321;;;:::o;15426:387::-;15486:4;15694:12;15761:7;15749:20;15741:28;;15804:1;15797:4;:8;15790:15;;;15426:387;;;:::o;34624:382::-;34718:1;34704:16;;:2;:16;;;;34696:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34777:16;34785:7;34777;:16::i;:::-;34776:17;34768:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34839:45;34868:1;34872:2;34876:7;34839:20;:45::i;:::-;34914:1;34897:9;:13;34907:2;34897:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34945:2;34926:7;:16;34934:7;34926:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34990:7;34986:2;34965:33;;34982:1;34965:33;;;;;;;;;;;;34624:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:327::-;6834:6;6883:2;6871:9;6862:7;6858:23;6854:32;6851:119;;;6889:79;;:::i;:::-;6851:119;7009:1;7034:52;7078:7;7069:6;7058:9;7054:22;7034:52;:::i;:::-;7024:62;;6980:116;6776:327;;;;:::o;7109:349::-;7178:6;7227:2;7215:9;7206:7;7202:23;7198:32;7195:119;;;7233:79;;:::i;:::-;7195:119;7353:1;7378:63;7433:7;7424:6;7413:9;7409:22;7378:63;:::i;:::-;7368:73;;7324:127;7109:349;;;;:::o;7464:509::-;7533:6;7582:2;7570:9;7561:7;7557:23;7553:32;7550:119;;;7588:79;;:::i;:::-;7550:119;7736:1;7725:9;7721:17;7708:31;7766:18;7758:6;7755:30;7752:117;;;7788:79;;:::i;:::-;7752:117;7893:63;7948:7;7939:6;7928:9;7924:22;7893:63;:::i;:::-;7883:73;;7679:287;7464:509;;;;:::o;7979:329::-;8038:6;8087:2;8075:9;8066:7;8062:23;8058:32;8055:119;;;8093:79;;:::i;:::-;8055:119;8213:1;8238:53;8283:7;8274:6;8263:9;8259:22;8238:53;:::i;:::-;8228:63;;8184:117;7979:329;;;;:::o;8314:179::-;8383:10;8404:46;8446:3;8438:6;8404:46;:::i;:::-;8482:4;8477:3;8473:14;8459:28;;8314:179;;;;:::o;8499:118::-;8586:24;8604:5;8586:24;:::i;:::-;8581:3;8574:37;8499:118;;:::o;8653:732::-;8772:3;8801:54;8849:5;8801:54;:::i;:::-;8871:86;8950:6;8945:3;8871:86;:::i;:::-;8864:93;;8981:56;9031:5;8981:56;:::i;:::-;9060:7;9091:1;9076:284;9101:6;9098:1;9095:13;9076:284;;;9177:6;9171:13;9204:63;9263:3;9248:13;9204:63;:::i;:::-;9197:70;;9290:60;9343:6;9290:60;:::i;:::-;9280:70;;9136:224;9123:1;9120;9116:9;9111:14;;9076:284;;;9080:14;9376:3;9369:10;;8777:608;;;8653:732;;;;:::o;9391:109::-;9472:21;9487:5;9472:21;:::i;:::-;9467:3;9460:34;9391:109;;:::o;9506:360::-;9592:3;9620:38;9652:5;9620:38;:::i;:::-;9674:70;9737:6;9732:3;9674:70;:::i;:::-;9667:77;;9753:52;9798:6;9793:3;9786:4;9779:5;9775:16;9753:52;:::i;:::-;9830:29;9852:6;9830:29;:::i;:::-;9825:3;9821:39;9814:46;;9596:270;9506:360;;;;:::o;9872:364::-;9960:3;9988:39;10021:5;9988:39;:::i;:::-;10043:71;10107:6;10102:3;10043:71;:::i;:::-;10036:78;;10123:52;10168:6;10163:3;10156:4;10149:5;10145:16;10123:52;:::i;:::-;10200:29;10222:6;10200:29;:::i;:::-;10195:3;10191:39;10184:46;;9964:272;9872:364;;;;:::o;10242:377::-;10348:3;10376:39;10409:5;10376:39;:::i;:::-;10431:89;10513:6;10508:3;10431:89;:::i;:::-;10424:96;;10529:52;10574:6;10569:3;10562:4;10555:5;10551:16;10529:52;:::i;:::-;10606:6;10601:3;10597:16;10590:23;;10352:267;10242:377;;;;:::o;10625:366::-;10767:3;10788:67;10852:2;10847:3;10788:67;:::i;:::-;10781:74;;10864:93;10953:3;10864:93;:::i;:::-;10982:2;10977:3;10973:12;10966:19;;10625:366;;;:::o;10997:::-;11139:3;11160:67;11224:2;11219:3;11160:67;:::i;:::-;11153:74;;11236:93;11325:3;11236:93;:::i;:::-;11354:2;11349:3;11345:12;11338:19;;10997:366;;;:::o;11369:::-;11511:3;11532:67;11596:2;11591:3;11532:67;:::i;:::-;11525:74;;11608:93;11697:3;11608:93;:::i;:::-;11726:2;11721:3;11717:12;11710:19;;11369:366;;;:::o;11741:::-;11883:3;11904:67;11968:2;11963:3;11904:67;:::i;:::-;11897:74;;11980:93;12069:3;11980:93;:::i;:::-;12098:2;12093:3;12089:12;12082:19;;11741:366;;;:::o;12113:::-;12255:3;12276:67;12340:2;12335:3;12276:67;:::i;:::-;12269:74;;12352:93;12441:3;12352:93;:::i;:::-;12470:2;12465:3;12461:12;12454:19;;12113:366;;;:::o;12485:::-;12627:3;12648:67;12712:2;12707:3;12648:67;:::i;:::-;12641:74;;12724:93;12813:3;12724:93;:::i;:::-;12842:2;12837:3;12833:12;12826:19;;12485:366;;;:::o;12857:::-;12999:3;13020:67;13084:2;13079:3;13020:67;:::i;:::-;13013:74;;13096:93;13185:3;13096:93;:::i;:::-;13214:2;13209:3;13205:12;13198:19;;12857:366;;;:::o;13229:::-;13371:3;13392:67;13456:2;13451:3;13392:67;:::i;:::-;13385:74;;13468:93;13557:3;13468:93;:::i;:::-;13586:2;13581:3;13577:12;13570:19;;13229:366;;;:::o;13601:::-;13743:3;13764:67;13828:2;13823:3;13764:67;:::i;:::-;13757:74;;13840:93;13929:3;13840:93;:::i;:::-;13958:2;13953:3;13949:12;13942:19;;13601:366;;;:::o;13973:::-;14115:3;14136:67;14200:2;14195:3;14136:67;:::i;:::-;14129:74;;14212:93;14301:3;14212:93;:::i;:::-;14330:2;14325:3;14321:12;14314:19;;13973:366;;;:::o;14345:::-;14487:3;14508:67;14572:2;14567:3;14508:67;:::i;:::-;14501:74;;14584:93;14673:3;14584:93;:::i;:::-;14702:2;14697:3;14693:12;14686:19;;14345:366;;;:::o;14717:::-;14859:3;14880:67;14944:2;14939:3;14880:67;:::i;:::-;14873:74;;14956:93;15045:3;14956:93;:::i;:::-;15074:2;15069:3;15065:12;15058:19;;14717:366;;;:::o;15089:::-;15231:3;15252:67;15316:2;15311:3;15252:67;:::i;:::-;15245:74;;15328:93;15417:3;15328:93;:::i;:::-;15446:2;15441:3;15437:12;15430:19;;15089:366;;;:::o;15461:::-;15603:3;15624:67;15688:2;15683:3;15624:67;:::i;:::-;15617:74;;15700:93;15789:3;15700:93;:::i;:::-;15818:2;15813:3;15809:12;15802:19;;15461:366;;;:::o;15833:::-;15975:3;15996:67;16060:2;16055:3;15996:67;:::i;:::-;15989:74;;16072:93;16161:3;16072:93;:::i;:::-;16190:2;16185:3;16181:12;16174:19;;15833:366;;;:::o;16205:::-;16347:3;16368:67;16432:2;16427:3;16368:67;:::i;:::-;16361:74;;16444:93;16533:3;16444:93;:::i;:::-;16562:2;16557:3;16553:12;16546:19;;16205:366;;;:::o;16577:::-;16719:3;16740:67;16804:2;16799:3;16740:67;:::i;:::-;16733:74;;16816:93;16905:3;16816:93;:::i;:::-;16934:2;16929:3;16925:12;16918:19;;16577:366;;;:::o;16949:::-;17091:3;17112:67;17176:2;17171:3;17112:67;:::i;:::-;17105:74;;17188:93;17277:3;17188:93;:::i;:::-;17306:2;17301:3;17297:12;17290:19;;16949:366;;;:::o;17321:::-;17463:3;17484:67;17548:2;17543:3;17484:67;:::i;:::-;17477:74;;17560:93;17649:3;17560:93;:::i;:::-;17678:2;17673:3;17669:12;17662:19;;17321:366;;;:::o;17693:::-;17835:3;17856:67;17920:2;17915:3;17856:67;:::i;:::-;17849:74;;17932:93;18021:3;17932:93;:::i;:::-;18050:2;18045:3;18041:12;18034:19;;17693:366;;;:::o;18065:::-;18207:3;18228:67;18292:2;18287:3;18228:67;:::i;:::-;18221:74;;18304:93;18393:3;18304:93;:::i;:::-;18422:2;18417:3;18413:12;18406:19;;18065:366;;;:::o;18437:::-;18579:3;18600:67;18664:2;18659:3;18600:67;:::i;:::-;18593:74;;18676:93;18765:3;18676:93;:::i;:::-;18794:2;18789:3;18785:12;18778:19;;18437:366;;;:::o;18809:::-;18951:3;18972:67;19036:2;19031:3;18972:67;:::i;:::-;18965:74;;19048:93;19137:3;19048:93;:::i;:::-;19166:2;19161:3;19157:12;19150:19;;18809:366;;;:::o;19181:::-;19323:3;19344:67;19408:2;19403:3;19344:67;:::i;:::-;19337:74;;19420:93;19509:3;19420:93;:::i;:::-;19538:2;19533:3;19529:12;19522:19;;19181:366;;;:::o;19553:398::-;19712:3;19733:83;19814:1;19809:3;19733:83;:::i;:::-;19726:90;;19825:93;19914:3;19825:93;:::i;:::-;19943:1;19938:3;19934:11;19927:18;;19553:398;;;:::o;19957:366::-;20099:3;20120:67;20184:2;20179:3;20120:67;:::i;:::-;20113:74;;20196:93;20285:3;20196:93;:::i;:::-;20314:2;20309:3;20305:12;20298:19;;19957:366;;;:::o;20329:::-;20471:3;20492:67;20556:2;20551:3;20492:67;:::i;:::-;20485:74;;20568:93;20657:3;20568:93;:::i;:::-;20686:2;20681:3;20677:12;20670:19;;20329:366;;;:::o;20701:::-;20843:3;20864:67;20928:2;20923:3;20864:67;:::i;:::-;20857:74;;20940:93;21029:3;20940:93;:::i;:::-;21058:2;21053:3;21049:12;21042:19;;20701:366;;;:::o;21073:::-;21215:3;21236:67;21300:2;21295:3;21236:67;:::i;:::-;21229:74;;21312:93;21401:3;21312:93;:::i;:::-;21430:2;21425:3;21421:12;21414:19;;21073:366;;;:::o;21445:108::-;21522:24;21540:5;21522:24;:::i;:::-;21517:3;21510:37;21445:108;;:::o;21559:118::-;21646:24;21664:5;21646:24;:::i;:::-;21641:3;21634:37;21559:118;;:::o;21683:435::-;21863:3;21885:95;21976:3;21967:6;21885:95;:::i;:::-;21878:102;;21997:95;22088:3;22079:6;21997:95;:::i;:::-;21990:102;;22109:3;22102:10;;21683:435;;;;;:::o;22124:379::-;22308:3;22330:147;22473:3;22330:147;:::i;:::-;22323:154;;22494:3;22487:10;;22124:379;;;:::o;22509:222::-;22602:4;22640:2;22629:9;22625:18;22617:26;;22653:71;22721:1;22710:9;22706:17;22697:6;22653:71;:::i;:::-;22509:222;;;;:::o;22737:640::-;22932:4;22970:3;22959:9;22955:19;22947:27;;22984:71;23052:1;23041:9;23037:17;23028:6;22984:71;:::i;:::-;23065:72;23133:2;23122:9;23118:18;23109:6;23065:72;:::i;:::-;23147;23215:2;23204:9;23200:18;23191:6;23147:72;:::i;:::-;23266:9;23260:4;23256:20;23251:2;23240:9;23236:18;23229:48;23294:76;23365:4;23356:6;23294:76;:::i;:::-;23286:84;;22737:640;;;;;;;:::o;23383:373::-;23526:4;23564:2;23553:9;23549:18;23541:26;;23613:9;23607:4;23603:20;23599:1;23588:9;23584:17;23577:47;23641:108;23744:4;23735:6;23641:108;:::i;:::-;23633:116;;23383:373;;;;:::o;23762:210::-;23849:4;23887:2;23876:9;23872:18;23864:26;;23900:65;23962:1;23951:9;23947:17;23938:6;23900:65;:::i;:::-;23762:210;;;;:::o;23978:313::-;24091:4;24129:2;24118:9;24114:18;24106:26;;24178:9;24172:4;24168:20;24164:1;24153:9;24149:17;24142:47;24206:78;24279:4;24270:6;24206:78;:::i;:::-;24198:86;;23978:313;;;;:::o;24297:419::-;24463:4;24501:2;24490:9;24486:18;24478:26;;24550:9;24544:4;24540:20;24536:1;24525:9;24521:17;24514:47;24578:131;24704:4;24578:131;:::i;:::-;24570:139;;24297:419;;;:::o;24722:::-;24888:4;24926:2;24915:9;24911:18;24903:26;;24975:9;24969:4;24965:20;24961:1;24950:9;24946:17;24939:47;25003:131;25129:4;25003:131;:::i;:::-;24995:139;;24722:419;;;:::o;25147:::-;25313:4;25351:2;25340:9;25336:18;25328:26;;25400:9;25394:4;25390:20;25386:1;25375:9;25371:17;25364:47;25428:131;25554:4;25428:131;:::i;:::-;25420:139;;25147:419;;;:::o;25572:::-;25738:4;25776:2;25765:9;25761:18;25753:26;;25825:9;25819:4;25815:20;25811:1;25800:9;25796:17;25789:47;25853:131;25979:4;25853:131;:::i;:::-;25845:139;;25572:419;;;:::o;25997:::-;26163:4;26201:2;26190:9;26186:18;26178:26;;26250:9;26244:4;26240:20;26236:1;26225:9;26221:17;26214:47;26278:131;26404:4;26278:131;:::i;:::-;26270:139;;25997:419;;;:::o;26422:::-;26588:4;26626:2;26615:9;26611:18;26603:26;;26675:9;26669:4;26665:20;26661:1;26650:9;26646:17;26639:47;26703:131;26829:4;26703:131;:::i;:::-;26695:139;;26422:419;;;:::o;26847:::-;27013:4;27051:2;27040:9;27036:18;27028:26;;27100:9;27094:4;27090:20;27086:1;27075:9;27071:17;27064:47;27128:131;27254:4;27128:131;:::i;:::-;27120:139;;26847:419;;;:::o;27272:::-;27438:4;27476:2;27465:9;27461:18;27453:26;;27525:9;27519:4;27515:20;27511:1;27500:9;27496:17;27489:47;27553:131;27679:4;27553:131;:::i;:::-;27545:139;;27272:419;;;:::o;27697:::-;27863:4;27901:2;27890:9;27886:18;27878:26;;27950:9;27944:4;27940:20;27936:1;27925:9;27921:17;27914:47;27978:131;28104:4;27978:131;:::i;:::-;27970:139;;27697:419;;;:::o;28122:::-;28288:4;28326:2;28315:9;28311:18;28303:26;;28375:9;28369:4;28365:20;28361:1;28350:9;28346:17;28339:47;28403:131;28529:4;28403:131;:::i;:::-;28395:139;;28122:419;;;:::o;28547:::-;28713:4;28751:2;28740:9;28736:18;28728:26;;28800:9;28794:4;28790:20;28786:1;28775:9;28771:17;28764:47;28828:131;28954:4;28828:131;:::i;:::-;28820:139;;28547:419;;;:::o;28972:::-;29138:4;29176:2;29165:9;29161:18;29153:26;;29225:9;29219:4;29215:20;29211:1;29200:9;29196:17;29189:47;29253:131;29379:4;29253:131;:::i;:::-;29245:139;;28972:419;;;:::o;29397:::-;29563:4;29601:2;29590:9;29586:18;29578:26;;29650:9;29644:4;29640:20;29636:1;29625:9;29621:17;29614:47;29678:131;29804:4;29678:131;:::i;:::-;29670:139;;29397:419;;;:::o;29822:::-;29988:4;30026:2;30015:9;30011:18;30003:26;;30075:9;30069:4;30065:20;30061:1;30050:9;30046:17;30039:47;30103:131;30229:4;30103:131;:::i;:::-;30095:139;;29822:419;;;:::o;30247:::-;30413:4;30451:2;30440:9;30436:18;30428:26;;30500:9;30494:4;30490:20;30486:1;30475:9;30471:17;30464:47;30528:131;30654:4;30528:131;:::i;:::-;30520:139;;30247:419;;;:::o;30672:::-;30838:4;30876:2;30865:9;30861:18;30853:26;;30925:9;30919:4;30915:20;30911:1;30900:9;30896:17;30889:47;30953:131;31079:4;30953:131;:::i;:::-;30945:139;;30672:419;;;:::o;31097:::-;31263:4;31301:2;31290:9;31286:18;31278:26;;31350:9;31344:4;31340:20;31336:1;31325:9;31321:17;31314:47;31378:131;31504:4;31378:131;:::i;:::-;31370:139;;31097:419;;;:::o;31522:::-;31688:4;31726:2;31715:9;31711:18;31703:26;;31775:9;31769:4;31765:20;31761:1;31750:9;31746:17;31739:47;31803:131;31929:4;31803:131;:::i;:::-;31795:139;;31522:419;;;:::o;31947:::-;32113:4;32151:2;32140:9;32136:18;32128:26;;32200:9;32194:4;32190:20;32186:1;32175:9;32171:17;32164:47;32228:131;32354:4;32228:131;:::i;:::-;32220:139;;31947:419;;;:::o;32372:::-;32538:4;32576:2;32565:9;32561:18;32553:26;;32625:9;32619:4;32615:20;32611:1;32600:9;32596:17;32589:47;32653:131;32779:4;32653:131;:::i;:::-;32645:139;;32372:419;;;:::o;32797:::-;32963:4;33001:2;32990:9;32986:18;32978:26;;33050:9;33044:4;33040:20;33036:1;33025:9;33021:17;33014:47;33078:131;33204:4;33078:131;:::i;:::-;33070:139;;32797:419;;;:::o;33222:::-;33388:4;33426:2;33415:9;33411:18;33403:26;;33475:9;33469:4;33465:20;33461:1;33450:9;33446:17;33439:47;33503:131;33629:4;33503:131;:::i;:::-;33495:139;;33222:419;;;:::o;33647:::-;33813:4;33851:2;33840:9;33836:18;33828:26;;33900:9;33894:4;33890:20;33886:1;33875:9;33871:17;33864:47;33928:131;34054:4;33928:131;:::i;:::-;33920:139;;33647:419;;;:::o;34072:::-;34238:4;34276:2;34265:9;34261:18;34253:26;;34325:9;34319:4;34315:20;34311:1;34300:9;34296:17;34289:47;34353:131;34479:4;34353:131;:::i;:::-;34345:139;;34072:419;;;:::o;34497:::-;34663:4;34701:2;34690:9;34686:18;34678:26;;34750:9;34744:4;34740:20;34736:1;34725:9;34721:17;34714:47;34778:131;34904:4;34778:131;:::i;:::-;34770:139;;34497:419;;;:::o;34922:::-;35088:4;35126:2;35115:9;35111:18;35103:26;;35175:9;35169:4;35165:20;35161:1;35150:9;35146:17;35139:47;35203:131;35329:4;35203:131;:::i;:::-;35195:139;;34922:419;;;:::o;35347:::-;35513:4;35551:2;35540:9;35536:18;35528:26;;35600:9;35594:4;35590:20;35586:1;35575:9;35571:17;35564:47;35628:131;35754:4;35628:131;:::i;:::-;35620:139;;35347:419;;;:::o;35772:::-;35938:4;35976:2;35965:9;35961:18;35953:26;;36025:9;36019:4;36015:20;36011:1;36000:9;35996:17;35989:47;36053:131;36179:4;36053:131;:::i;:::-;36045:139;;35772:419;;;:::o;36197:222::-;36290:4;36328:2;36317:9;36313:18;36305:26;;36341:71;36409:1;36398:9;36394:17;36385:6;36341:71;:::i;:::-;36197:222;;;;:::o;36425:129::-;36459:6;36486:20;;:::i;:::-;36476:30;;36515:33;36543:4;36535:6;36515:33;:::i;:::-;36425:129;;;:::o;36560:75::-;36593:6;36626:2;36620:9;36610:19;;36560:75;:::o;36641:307::-;36702:4;36792:18;36784:6;36781:30;36778:56;;;36814:18;;:::i;:::-;36778:56;36852:29;36874:6;36852:29;:::i;:::-;36844:37;;36936:4;36930;36926:15;36918:23;;36641:307;;;:::o;36954:308::-;37016:4;37106:18;37098:6;37095:30;37092:56;;;37128:18;;:::i;:::-;37092:56;37166:29;37188:6;37166:29;:::i;:::-;37158:37;;37250:4;37244;37240:15;37232:23;;36954:308;;;:::o;37268:132::-;37335:4;37358:3;37350:11;;37388:4;37383:3;37379:14;37371:22;;37268:132;;;:::o;37406:114::-;37473:6;37507:5;37501:12;37491:22;;37406:114;;;:::o;37526:98::-;37577:6;37611:5;37605:12;37595:22;;37526:98;;;:::o;37630:99::-;37682:6;37716:5;37710:12;37700:22;;37630:99;;;:::o;37735:113::-;37805:4;37837;37832:3;37828:14;37820:22;;37735:113;;;:::o;37854:184::-;37953:11;37987:6;37982:3;37975:19;38027:4;38022:3;38018:14;38003:29;;37854:184;;;;:::o;38044:168::-;38127:11;38161:6;38156:3;38149:19;38201:4;38196:3;38192:14;38177:29;;38044:168;;;;:::o;38218:147::-;38319:11;38356:3;38341:18;;38218:147;;;;:::o;38371:169::-;38455:11;38489:6;38484:3;38477:19;38529:4;38524:3;38520:14;38505:29;;38371:169;;;;:::o;38546:148::-;38648:11;38685:3;38670:18;;38546:148;;;;:::o;38700:305::-;38740:3;38759:20;38777:1;38759:20;:::i;:::-;38754:25;;38793:20;38811:1;38793:20;:::i;:::-;38788:25;;38947:1;38879:66;38875:74;38872:1;38869:81;38866:107;;;38953:18;;:::i;:::-;38866:107;38997:1;38994;38990:9;38983:16;;38700:305;;;;:::o;39011:185::-;39051:1;39068:20;39086:1;39068:20;:::i;:::-;39063:25;;39102:20;39120:1;39102:20;:::i;:::-;39097:25;;39141:1;39131:35;;39146:18;;:::i;:::-;39131:35;39188:1;39185;39181:9;39176:14;;39011:185;;;;:::o;39202:348::-;39242:7;39265:20;39283:1;39265:20;:::i;:::-;39260:25;;39299:20;39317:1;39299:20;:::i;:::-;39294:25;;39487:1;39419:66;39415:74;39412:1;39409:81;39404:1;39397:9;39390:17;39386:105;39383:131;;;39494:18;;:::i;:::-;39383:131;39542:1;39539;39535:9;39524:20;;39202:348;;;;:::o;39556:191::-;39596:4;39616:20;39634:1;39616:20;:::i;:::-;39611:25;;39650:20;39668:1;39650:20;:::i;:::-;39645:25;;39689:1;39686;39683:8;39680:34;;;39694:18;;:::i;:::-;39680:34;39739:1;39736;39732:9;39724:17;;39556:191;;;;:::o;39753:96::-;39790:7;39819:24;39837:5;39819:24;:::i;:::-;39808:35;;39753:96;;;:::o;39855:90::-;39889:7;39932:5;39925:13;39918:21;39907:32;;39855:90;;;:::o;39951:149::-;39987:7;40027:66;40020:5;40016:78;40005:89;;39951:149;;;:::o;40106:126::-;40143:7;40183:42;40176:5;40172:54;40161:65;;40106:126;;;:::o;40238:77::-;40275:7;40304:5;40293:16;;40238:77;;;:::o;40321:154::-;40405:6;40400:3;40395;40382:30;40467:1;40458:6;40453:3;40449:16;40442:27;40321:154;;;:::o;40481:307::-;40549:1;40559:113;40573:6;40570:1;40567:13;40559:113;;;40658:1;40653:3;40649:11;40643:18;40639:1;40634:3;40630:11;40623:39;40595:2;40592:1;40588:10;40583:15;;40559:113;;;40690:6;40687:1;40684:13;40681:101;;;40770:1;40761:6;40756:3;40752:16;40745:27;40681:101;40530:258;40481:307;;;:::o;40794:171::-;40833:3;40856:24;40874:5;40856:24;:::i;:::-;40847:33;;40902:4;40895:5;40892:15;40889:41;;;40910:18;;:::i;:::-;40889:41;40957:1;40950:5;40946:13;40939:20;;40794:171;;;:::o;40971:320::-;41015:6;41052:1;41046:4;41042:12;41032:22;;41099:1;41093:4;41089:12;41120:18;41110:81;;41176:4;41168:6;41164:17;41154:27;;41110:81;41238:2;41230:6;41227:14;41207:18;41204:38;41201:84;;;41257:18;;:::i;:::-;41201:84;41022:269;40971:320;;;:::o;41297:281::-;41380:27;41402:4;41380:27;:::i;:::-;41372:6;41368:40;41510:6;41498:10;41495:22;41474:18;41462:10;41459:34;41456:62;41453:88;;;41521:18;;:::i;:::-;41453:88;41561:10;41557:2;41550:22;41340:238;41297:281;;:::o;41584:233::-;41623:3;41646:24;41664:5;41646:24;:::i;:::-;41637:33;;41692:66;41685:5;41682:77;41679:103;;;41762:18;;:::i;:::-;41679:103;41809:1;41802:5;41798:13;41791:20;;41584:233;;;:::o;41823:176::-;41855:1;41872:20;41890:1;41872:20;:::i;:::-;41867:25;;41906:20;41924:1;41906:20;:::i;:::-;41901:25;;41945:1;41935:35;;41950:18;;:::i;:::-;41935:35;41991:1;41988;41984:9;41979:14;;41823:176;;;;:::o;42005:180::-;42053:77;42050:1;42043:88;42150:4;42147:1;42140:15;42174:4;42171:1;42164:15;42191:180;42239:77;42236:1;42229:88;42336:4;42333:1;42326:15;42360:4;42357:1;42350:15;42377:180;42425:77;42422:1;42415:88;42522:4;42519:1;42512:15;42546:4;42543:1;42536:15;42563:180;42611:77;42608:1;42601:88;42708:4;42705:1;42698:15;42732:4;42729:1;42722:15;42749:180;42797:77;42794:1;42787:88;42894:4;42891:1;42884:15;42918:4;42915:1;42908:15;42935:180;42983:77;42980:1;42973:88;43080:4;43077:1;43070:15;43104:4;43101:1;43094:15;43121:117;43230:1;43227;43220:12;43244:117;43353:1;43350;43343:12;43367:117;43476:1;43473;43466:12;43490:117;43599:1;43596;43589:12;43613:117;43722:1;43719;43712:12;43736:117;43845:1;43842;43835:12;43859:102;43900:6;43951:2;43947:7;43942:2;43935:5;43931:14;43927:28;43917:38;;43859:102;;;:::o;43967:179::-;44107:31;44103:1;44095:6;44091:14;44084:55;43967:179;:::o;44152:224::-;44292:34;44288:1;44280:6;44276:14;44269:58;44361:7;44356:2;44348:6;44344:15;44337:32;44152:224;:::o;44382:230::-;44522:34;44518:1;44510:6;44506:14;44499:58;44591:13;44586:2;44578:6;44574:15;44567:38;44382:230;:::o;44618:173::-;44758:25;44754:1;44746:6;44742:14;44735:49;44618:173;:::o;44797:237::-;44937:34;44933:1;44925:6;44921:14;44914:58;45006:20;45001:2;44993:6;44989:15;44982:45;44797:237;:::o;45040:225::-;45180:34;45176:1;45168:6;45164:14;45157:58;45249:8;45244:2;45236:6;45232:15;45225:33;45040:225;:::o;45271:178::-;45411:30;45407:1;45399:6;45395:14;45388:54;45271:178;:::o;45455:223::-;45595:34;45591:1;45583:6;45579:14;45572:58;45664:6;45659:2;45651:6;45647:15;45640:31;45455:223;:::o;45684:175::-;45824:27;45820:1;45812:6;45808:14;45801:51;45684:175;:::o;45865:231::-;46005:34;46001:1;45993:6;45989:14;45982:58;46074:14;46069:2;46061:6;46057:15;46050:39;45865:231;:::o;46102:173::-;46242:25;46238:1;46230:6;46226:14;46219:49;46102:173;:::o;46281:163::-;46421:15;46417:1;46409:6;46405:14;46398:39;46281:163;:::o;46450:243::-;46590:34;46586:1;46578:6;46574:14;46567:58;46659:26;46654:2;46646:6;46642:15;46635:51;46450:243;:::o;46699:229::-;46839:34;46835:1;46827:6;46823:14;46816:58;46908:12;46903:2;46895:6;46891:15;46884:37;46699:229;:::o;46934:::-;47074:34;47070:1;47062:6;47058:14;47051:58;47143:12;47138:2;47130:6;47126:15;47119:37;46934:229;:::o;47169:228::-;47309:34;47305:1;47297:6;47293:14;47286:58;47378:11;47373:2;47365:6;47361:15;47354:36;47169:228;:::o;47403:182::-;47543:34;47539:1;47531:6;47527:14;47520:58;47403:182;:::o;47591:236::-;47731:34;47727:1;47719:6;47715:14;47708:58;47800:19;47795:2;47787:6;47783:15;47776:44;47591:236;:::o;47833:231::-;47973:34;47969:1;47961:6;47957:14;47950:58;48042:14;48037:2;48029:6;48025:15;48018:39;47833:231;:::o;48070:234::-;48210:34;48206:1;48198:6;48194:14;48187:58;48279:17;48274:2;48266:6;48262:15;48255:42;48070:234;:::o;48310:182::-;48450:34;48446:1;48438:6;48434:14;48427:58;48310:182;:::o;48498:228::-;48638:34;48634:1;48626:6;48622:14;48615:58;48707:11;48702:2;48694:6;48690:15;48683:36;48498:228;:::o;48732:234::-;48872:34;48868:1;48860:6;48856:14;48849:58;48941:17;48936:2;48928:6;48924:15;48917:42;48732:234;:::o;48972:220::-;49112:34;49108:1;49100:6;49096:14;49089:58;49181:3;49176:2;49168:6;49164:15;49157:28;48972:220;:::o;49198:114::-;;:::o;49318:174::-;49458:26;49454:1;49446:6;49442:14;49435:50;49318:174;:::o;49498:166::-;49638:18;49634:1;49626:6;49622:14;49615:42;49498:166;:::o;49670:236::-;49810:34;49806:1;49798:6;49794:14;49787:58;49879:19;49874:2;49866:6;49862:15;49855:44;49670:236;:::o;49912:231::-;50052:34;50048:1;50040:6;50036:14;50029:58;50121:14;50116:2;50108:6;50104:15;50097:39;49912:231;:::o;50149:122::-;50222:24;50240:5;50222:24;:::i;:::-;50215:5;50212:35;50202:63;;50261:1;50258;50251:12;50202:63;50149:122;:::o;50277:116::-;50347:21;50362:5;50347:21;:::i;:::-;50340:5;50337:32;50327:60;;50383:1;50380;50373:12;50327:60;50277:116;:::o;50399:120::-;50471:23;50488:5;50471:23;:::i;:::-;50464:5;50461:34;50451:62;;50509:1;50506;50499:12;50451:62;50399:120;:::o;50525:122::-;50598:24;50616:5;50598:24;:::i;:::-;50591:5;50588:35;50578:63;;50637:1;50634;50627:12;50578:63;50525:122;:::o
Swarm Source
ipfs://045b597557aa1856e6ea325154f1f74cfb22597b2f148d9a4176208a75166329
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.