Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,601 DAC
Holders
632
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DACLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DigitalApeClub
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-02 */ // SPDX-License-Identifier: GPL-3.0 // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.9; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.9; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.9; /** * @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/utils/Address.sol pragma solidity ^0.8.9; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.9; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.9; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.9; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.9; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.9; /** * @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); } pragma solidity >=0.8.9; // to enable certain compiler features 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; //Mapping para atribuirle un URI para cada token mapping(uint256 => string) internal id_to_URI; /** * @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) { } /** * @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.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 {} } pragma solidity ^0.8.9; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } pragma solidity ^0.8.9; /** * @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); /** * @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); } // Creator: Chiru Labs pragma solidity ^0.8.9; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) contract DigitalApeClub is ERC721A, Ownable { using Strings for uint256; //declares the maximum amount of tokens that can be minted, total and in presale uint256 private maxTotalTokens; //initial part of the URI for the metadata string private _currentBaseURI; //cost of mints depending on state of sale uint private constant mintCost_ = 0.07 ether; //maximum amount of mints allowed per person uint256 public constant maxMint = 4; //the amount of reserved mints that have currently been executed by creator and giveaways uint private _reservedMints; //the maximum amount of reserved mints allowed for creator and giveaways uint private maxReservedMints = 150; //dummy address that we use to sign the mint transaction to make sure it is valid address private dummy = 0x80E4929c869102140E69550BBECC20bEd61B080c; //marks the timestamp of when the respective sales open uint256 internal presaleLaunchTime; uint256 internal publicSaleLaunchTime; uint256 internal revealTime; //dictates if sale is paused or not bool private paused_; //amount of mints that each address has executed mapping(address => uint256) public mintsPerAddress; //current state os sale enum State {NoSale, Presale, PublicSale} //defines the uri for when the NFTs have not been yet revealed string public unrevealedURI; //declaring initial values for variables constructor() ERC721A('Digital Ape Club', 'DAC') { maxTotalTokens = 7777; unrevealedURI = "ipfs://QmZN8fQJhHBBAAXQpfoPq1cRYrKarvwmoRgCdPweJKyZGb/"; } //in case somebody accidentaly sends funds or transaction to contract receive() payable external {} fallback() payable external { revert(); } //visualize baseURI function _baseURI() internal view virtual override returns (string memory) { return _currentBaseURI; } //change baseURI in case needed for IPFS function changeBaseURI(string memory baseURI_) public onlyOwner { _currentBaseURI = baseURI_; } function changeUnrevealedURI(string memory unrevealedURI_) public onlyOwner { unrevealedURI = unrevealedURI_; } function switchToPresale() public onlyOwner { require(saleState() == State.NoSale, 'Sale is already Open!'); presaleLaunchTime = block.timestamp; } function switchToPublicSale() public onlyOwner { require(saleState() == State.Presale, 'Sale must be in Presale!'); publicSaleLaunchTime = block.timestamp; } modifier onlyValidAccess(uint8 _v, bytes32 _r, bytes32 _s) { require( isValidAccessMessage(msg.sender,_v,_r,_s), 'Invalid Signature' ); _; } /* * @dev Verifies if message was signed by owner to give access to _add for this contract. * Assumes Geth signature prefix. * @param _add Address of agent with access * @param _v ECDSA signature parameter v. * @param _r ECDSA signature parameters r. * @param _s ECDSA signature parameters s. * @return Validity of access message for a given address. */ function isValidAccessMessage(address _add, uint8 _v, bytes32 _r, bytes32 _s) view public returns (bool) { bytes32 hash = keccak256(abi.encodePacked(address(this), _add)); return dummy == ecrecover(keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)), _v, _r, _s); } //mint a @param number of NFTs in presale function presaleMint(uint256 number, uint8 _v, bytes32 _r, bytes32 _s) onlyValidAccess(_v, _r, _s) public payable { require(!paused_, "Sale is paused!"); State saleState_ = saleState(); require(saleState_ != State.NoSale, "Sale in not open yet!"); require(saleState_ != State.PublicSale, "Presale has closed, Check out Public Sale!"); require(totalSupply() + number <= maxTotalTokens - (maxReservedMints - _reservedMints), "Not enough NFTs left to mint.."); require(mintsPerAddress[msg.sender] + number <= maxMint, "Maximum 4 Mints per Address allowed!"); require(msg.value >= mintCost() * number, "Not sufficient Ether to mint this amount of NFTs (Cost = 0.065 ether each NFT)"); _safeMint(msg.sender, number); mintsPerAddress[msg.sender] += number; } //mint a @param number of NFTs in public sale function publicSaleMint(uint256 number) public payable { require(!paused_, "Sale is paused!"); State saleState_ = saleState(); require(saleState_ == State.PublicSale, "Public Sale in not open yet!"); require(totalSupply() + number <= maxTotalTokens - (maxReservedMints - _reservedMints), "Not enough NFTs left to mint.."); require(mintsPerAddress[msg.sender] + number <= maxMint, "Maximum 4 Mints per Address allowed!"); require(msg.value >= mintCost() * number, "Not sufficient Ether to mint this amount of NFTs (Cost = 0.08 ether for each NFT)"); _safeMint(msg.sender, number); mintsPerAddress[msg.sender] += number; } function tokenURI(uint256 tokenId_) public view virtual override returns (string memory) { require(_exists(tokenId_), "ERC721Metadata: URI query for nonexistent token"); //check to see that 24 hours have passed since beginning of publicsale launch if (revealTime == 0) { return unrevealedURI; } else { string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId_.toString(), '.json')) : ""; } } //reserved NFTs for creator function reservedMint(uint number, address recipient) public onlyOwner { require(_reservedMints + number <= maxReservedMints, "Not enough Reserved NFTs left to mint.."); _safeMint(recipient, number); mintsPerAddress[recipient] += number; _reservedMints += number; } //burn the tokens that have not been sold yet function burnTokens() public onlyOwner { maxTotalTokens = totalSupply(); } //se the current account balance function accountBalance() public onlyOwner view returns(uint) { return address(this).balance; } //retrieve all funds recieved from minting function withdraw() public onlyOwner { uint256 balance = accountBalance(); require(balance > 0, 'No Funds to withdraw, Balance is 0'); _withdraw(payable(0x8d8bc9AbA71f929CE28cdEDDA5B829d919eA2BaC), balance); } //send the percentage of funds to a shareholder´s wallet function _withdraw(address payable account, uint256 amount) internal { (bool sent, ) = account.call{value: amount}(""); require(sent, "Failed to send Ether"); } //change the dummy account used for signing transactions function changeDummy(address _dummy) public onlyOwner { dummy = _dummy; } //to see the total amount of reserved mints left function reservedMintsLeft() public onlyOwner view returns(uint) { return maxReservedMints - _reservedMints; } //see current state of sale //see the current state of the sale function saleState() public view returns(State){ if (presaleLaunchTime == 0) { return State.NoSale; } else if (publicSaleLaunchTime == 0) { return State.Presale; } else { return State.PublicSale; } } //gets the cost of current mint function mintCost() public pure returns(uint) { return mintCost_; } //see when NFTs will be revealed function timeOfReveal() public view returns(uint256) { require(revealTime != 0, 'NFT Reveal Time has not been determined yet!'); return revealTime; } function reveal() public onlyOwner { require(revealTime == 0, "Collection has already been revealed!"); revealTime = block.timestamp; } function isPaused() public view returns(bool) { return paused_; } function togglePause() public onlyOwner { paused_ = !paused_; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"accountBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_dummy","type":"address"}],"name":"changeDummy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"unrevealedURI_","type":"string"}],"name":"changeUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"isValidAccessMessage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMintsLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","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":"saleState","outputs":[{"internalType":"enum DigitalApeClub.State","name":"","type":"uint8"}],"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"switchToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchToPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeOfReveal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","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":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526096600b557380e4929c869102140e69550bbecc20bed61b080c600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006b57600080fd5b506040518060400160405280601081526020017f4469676974616c2041706520436c7562000000000000000000000000000000008152506040518060400160405280600381526020017f44414300000000000000000000000000000000000000000000000000000000008152508160019080519060200190620000f09291906200023b565b508060029080519060200190620001099291906200023b565b5050506200012c620001206200016d60201b60201c565b6200017560201b60201c565b611e6160088190555060405180606001604052806036815260200162005dcb6036913960129080519060200190620001669291906200023b565b5062000350565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000249906200031a565b90600052602060002090601f0160209004810192826200026d5760008555620002b9565b82601f106200028857805160ff1916838001178555620002b9565b82800160010185558215620002b9579182015b82811115620002b85782518255916020019190600101906200029b565b5b509050620002c89190620002cc565b5090565b5b80821115620002e7576000816000905550600101620002cd565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200033357607f821691505b602082108114156200034a5762000349620002eb565b5b50919050565b615a6b80620003606000396000f3fe60806040526004361061024a5760003560e01c806370a0823111610139578063b3ab66b0116100b6578063c87b56dd1161007a578063c87b56dd14610842578063dcd4e7321461087f578063e985e9c51461089b578063eab41782146108d8578063f2fde38b146108ef578063ff9849941461091857610251565b8063b3ab66b014610792578063b88d4fde146107ae578063bdb4b848146107d7578063c4ae316814610802578063c4d8b9df1461081957610251565b806395d89b41116100fd57806395d89b41146106d1578063a22cb465146106fc578063a475b5dd14610725578063b0a1c1c41461073c578063b187bd261461076757610251565b806370a08231146105fc578063715018a6146106395780637501f741146106505780637c76f6981461067b5780638da5cb5b146106a657610251565b80633023eba6116101c75780634520e9161161018b5780634520e916146105015780634f6ccce71461052c578063603f4d52146105695780636352211e146105945780637035bf18146105d157610251565b80633023eba61461041e578063326241141461045b57806339a0c6f9146104985780633ccfd60b146104c157806342842e0e146104d857610251565b8063095ea7b31161020e578063095ea7b31461033b57806318160ddd1461036457806318df64031461038f57806323b872dd146103b85780632f745c59146103e157610251565b80630191a6571461025657806301ffc9a71461027f57806306fdde03146102bc57806308003f78146102e7578063081812fc146102fe57610251565b3661025157005b600080fd5b34801561026257600080fd5b5061027d6004803603810190610278919061395e565b61092f565b005b34801561028b57600080fd5b506102a660048036038101906102a191906139e3565b6109ef565b6040516102b39190613a2b565b60405180910390f35b3480156102c857600080fd5b506102d1610b39565b6040516102de9190613adf565b60405180910390f35b3480156102f357600080fd5b506102fc610bcb565b005b34801561030a57600080fd5b5061032560048036038101906103209190613b37565b610c57565b6040516103329190613b73565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190613b8e565b610cdc565b005b34801561037057600080fd5b50610379610df5565b6040516103869190613bdd565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b19190613bf8565b610dfe565b005b3480156103c457600080fd5b506103df60048036038101906103da9190613c38565b610f49565b005b3480156103ed57600080fd5b5061040860048036038101906104039190613b8e565b610f59565b6040516104159190613bdd565b60405180910390f35b34801561042a57600080fd5b506104456004803603810190610440919061395e565b61114b565b6040516104529190613bdd565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190613cfa565b611163565b60405161048f9190613a2b565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613e96565b611261565b005b3480156104cd57600080fd5b506104d66112f7565b005b3480156104e457600080fd5b506104ff60048036038101906104fa9190613c38565b6113e3565b005b34801561050d57600080fd5b50610516611403565b6040516105239190613bdd565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190613b37565b611496565b6040516105609190613bdd565b60405180910390f35b34801561057557600080fd5b5061057e6114e9565b60405161058b9190613f56565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190613b37565b61151a565b6040516105c89190613b73565b60405180910390f35b3480156105dd57600080fd5b506105e6611530565b6040516105f39190613adf565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e919061395e565b6115be565b6040516106309190613bdd565b60405180910390f35b34801561064557600080fd5b5061064e6116a7565b005b34801561065c57600080fd5b5061066561172f565b6040516106729190613bdd565b60405180910390f35b34801561068757600080fd5b50610690611734565b60405161069d9190613bdd565b60405180910390f35b3480156106b257600080fd5b506106bb611783565b6040516106c89190613b73565b60405180910390f35b3480156106dd57600080fd5b506106e66117ad565b6040516106f39190613adf565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190613f9d565b61183f565b005b34801561073157600080fd5b5061073a6119c0565b005b34801561074857600080fd5b50610751611a8a565b60405161075e9190613bdd565b60405180910390f35b34801561077357600080fd5b5061077c611b0e565b6040516107899190613a2b565b60405180910390f35b6107ac60048036038101906107a79190613b37565b611b25565b005b3480156107ba57600080fd5b506107d560048036038101906107d0919061407e565b611d9f565b005b3480156107e357600080fd5b506107ec611dfb565b6040516107f99190613bdd565b60405180910390f35b34801561080e57600080fd5b50610817611e0a565b005b34801561082557600080fd5b50610840600480360381019061083b9190613e96565b611eb2565b005b34801561084e57600080fd5b5061086960048036038101906108649190613b37565b611f48565b6040516108769190613adf565b60405180910390f35b61089960048036038101906108949190614101565b61208d565b005b3480156108a757600080fd5b506108c260048036038101906108bd9190614168565b6123c4565b6040516108cf9190613a2b565b60405180910390f35b3480156108e457600080fd5b506108ed612458565b005b3480156108fb57600080fd5b506109166004803603810190610911919061395e565b61254b565b005b34801561092457600080fd5b5061092d612643565b005b610937612736565b73ffffffffffffffffffffffffffffffffffffffff16610955611783565b73ffffffffffffffffffffffffffffffffffffffff16146109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a2906141f4565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b2257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b325750610b318261273e565b5b9050919050565b606060018054610b4890614243565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7490614243565b8015610bc15780601f10610b9657610100808354040283529160200191610bc1565b820191906000526020600020905b815481529060010190602001808311610ba457829003601f168201915b5050505050905090565b610bd3612736565b73ffffffffffffffffffffffffffffffffffffffff16610bf1611783565b73ffffffffffffffffffffffffffffffffffffffff1614610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e906141f4565b60405180910390fd5b610c4f610df5565b600881905550565b6000610c62826127a8565b610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c98906142e7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ce78261151a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90614379565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d77612736565b73ffffffffffffffffffffffffffffffffffffffff161480610da65750610da581610da0612736565b6123c4565b5b610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc9061440b565b60405180910390fd5b610df08383836127b5565b505050565b60008054905090565b610e06612736565b73ffffffffffffffffffffffffffffffffffffffff16610e24611783565b73ffffffffffffffffffffffffffffffffffffffff1614610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906141f4565b60405180910390fd5b600b5482600a54610e8b919061445a565b1115610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec390614522565b60405180910390fd5b610ed68183612867565b81601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f25919061445a565b9250508190555081600a6000828254610f3e919061445a565b925050819055505050565b610f54838383612885565b505050565b6000610f64836115be565b8210610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c906145b4565b60405180910390fd5b6000610faf610df5565b905060008060005b83811015611109576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110a957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110fb57868414156110f2578195505050505050611145565b83806001019450505b508080600101915050610fb7565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90614646565b60405180910390fd5b92915050565b60116020528060005260406000206000915090505481565b60008030866040516020016111799291906146ae565b6040516020818303038152906040528051906020012090506001816040516020016111a49190614752565b60405160208183030381529060405280519060200120868686604051600081526020016040526040516111da9493929190614796565b6020604051602081039080840390855afa1580156111fc573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050949350505050565b611269612736565b73ffffffffffffffffffffffffffffffffffffffff16611287611783565b73ffffffffffffffffffffffffffffffffffffffff16146112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d4906141f4565b60405180910390fd5b80600990805190602001906112f392919061380f565b5050565b6112ff612736565b73ffffffffffffffffffffffffffffffffffffffff1661131d611783565b73ffffffffffffffffffffffffffffffffffffffff1614611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a906141f4565b60405180910390fd5b600061137d611a8a565b9050600081116113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b99061484d565b60405180910390fd5b6113e0738d8bc9aba71f929ce28cdedda5b829d919ea2bac82612dc5565b50565b6113fe83838360405180602001604052806000815250611d9f565b505050565b600061140d612736565b73ffffffffffffffffffffffffffffffffffffffff1661142b611783565b73ffffffffffffffffffffffffffffffffffffffff1614611481576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611478906141f4565b60405180910390fd5b600a54600b54611491919061486d565b905090565b60006114a0610df5565b82106114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890614913565b60405180910390fd5b819050919050565b600080600d5414156114fe5760009050611517565b6000600e5414156115125760019050611517565b600290505b90565b600061152582612e76565b600001519050919050565b6012805461153d90614243565b80601f016020809104026020016040519081016040528092919081815260200182805461156990614243565b80156115b65780601f1061158b576101008083540402835291602001916115b6565b820191906000526020600020905b81548152906001019060200180831161159957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611626906149a5565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6116af612736565b73ffffffffffffffffffffffffffffffffffffffff166116cd611783565b73ffffffffffffffffffffffffffffffffffffffff1614611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a906141f4565b60405180910390fd5b61172d6000613010565b565b600481565b600080600f54141561177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290614a37565b60405180910390fd5b600f54905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546117bc90614243565b80601f01602080910402602001604051908101604052809291908181526020018280546117e890614243565b80156118355780601f1061180a57610100808354040283529160200191611835565b820191906000526020600020905b81548152906001019060200180831161181857829003601f168201915b5050505050905090565b611847612736565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac90614aa3565b60405180910390fd5b80600660006118c2612736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661196f612736565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119b49190613a2b565b60405180910390a35050565b6119c8612736565b73ffffffffffffffffffffffffffffffffffffffff166119e6611783565b73ffffffffffffffffffffffffffffffffffffffff1614611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a33906141f4565b60405180910390fd5b6000600f5414611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890614b35565b60405180910390fd5b42600f81905550565b6000611a94612736565b73ffffffffffffffffffffffffffffffffffffffff16611ab2611783565b73ffffffffffffffffffffffffffffffffffffffff1614611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff906141f4565b60405180910390fd5b47905090565b6000601060009054906101000a900460ff16905090565b601060009054906101000a900460ff1615611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90614ba1565b60405180910390fd5b6000611b7f6114e9565b9050600280811115611b9457611b93613edf565b5b816002811115611ba757611ba6613edf565b5b14611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde90614c0d565b60405180910390fd5b600a54600b54611bf7919061486d565b600854611c04919061486d565b82611c0d610df5565b611c17919061445a565b1115611c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4f90614c79565b60405180910390fd5b600482601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ca5919061445a565b1115611ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdd90614d0b565b60405180910390fd5b81611cef611dfb565b611cf99190614d2b565b341015611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290614e1d565b60405180910390fd5b611d453383612867565b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d94919061445a565b925050819055505050565b611daa848484612885565b611db6848484846130d6565b611df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dec90614eaf565b60405180910390fd5b50505050565b600066f8b0a10e470000905090565b611e12612736565b73ffffffffffffffffffffffffffffffffffffffff16611e30611783565b73ffffffffffffffffffffffffffffffffffffffff1614611e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7d906141f4565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b611eba612736565b73ffffffffffffffffffffffffffffffffffffffff16611ed8611783565b73ffffffffffffffffffffffffffffffffffffffff1614611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f25906141f4565b60405180910390fd5b8060129080519060200190611f4492919061380f565b5050565b6060611f53826127a8565b611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990614f41565b60405180910390fd5b6000600f54141561202f5760128054611faa90614243565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd690614243565b80156120235780601f10611ff857610100808354040283529160200191612023565b820191906000526020600020905b81548152906001019060200180831161200657829003601f168201915b50505050509050612088565b600061203961326d565b905060008151116120595760405180602001604052806000815250612084565b80612063846132ff565b604051602001612074929190614fde565b6040516020818303038152906040525b9150505b919050565b82828261209c33848484611163565b6120db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d290615059565b60405180910390fd5b601060009054906101000a900460ff161561212b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212290614ba1565b60405180910390fd5b60006121356114e9565b90506000600281111561214b5761214a613edf565b5b81600281111561215e5761215d613edf565b5b141561219f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612196906150c5565b60405180910390fd5b6002808111156121b2576121b1613edf565b5b8160028111156121c5576121c4613edf565b5b1415612206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fd90615157565b60405180910390fd5b600a54600b54612216919061486d565b600854612223919061486d565b8861222c610df5565b612236919061445a565b1115612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e90614c79565b60405180910390fd5b600488601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122c4919061445a565b1115612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc90614d0b565b60405180910390fd5b8761230e611dfb565b6123189190614d2b565b34101561235a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123519061520f565b60405180910390fd5b6123643389612867565b87601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123b3919061445a565b925050819055505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612460612736565b73ffffffffffffffffffffffffffffffffffffffff1661247e611783565b73ffffffffffffffffffffffffffffffffffffffff16146124d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cb906141f4565b60405180910390fd5b600060028111156124e8576124e7613edf565b5b6124f06114e9565b600281111561250257612501613edf565b5b14612542576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125399061527b565b60405180910390fd5b42600d81905550565b612553612736565b73ffffffffffffffffffffffffffffffffffffffff16612571611783565b73ffffffffffffffffffffffffffffffffffffffff16146125c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125be906141f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262e9061530d565b60405180910390fd5b61264081613010565b50565b61264b612736565b73ffffffffffffffffffffffffffffffffffffffff16612669611783565b73ffffffffffffffffffffffffffffffffffffffff16146126bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b6906141f4565b60405180910390fd5b600160028111156126d3576126d2613edf565b5b6126db6114e9565b60028111156126ed576126ec613edf565b5b1461272d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272490615379565b60405180910390fd5b42600e81905550565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612881828260405180602001604052806000815250613460565b5050565b600061289082612e76565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166128b7612736565b73ffffffffffffffffffffffffffffffffffffffff16148061291357506128dc612736565b73ffffffffffffffffffffffffffffffffffffffff166128fb84610c57565b73ffffffffffffffffffffffffffffffffffffffff16145b8061292f575061292e8260000151612929612736565b6123c4565b5b905080612971576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129689061540b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129da9061549d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4a9061552f565b60405180910390fd5b612a608585856001613472565b612a7060008484600001516127b5565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d5557612cb4816127a8565b15612d545782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dbe8585856001613478565b5050505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612deb90615580565b60006040518083038185875af1925050503d8060008114612e28576040519150601f19603f3d011682016040523d82523d6000602084013e612e2d565b606091505b5050905080612e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e68906155e1565b60405180910390fd5b505050565b612e7e613895565b612e87826127a8565b612ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebd90615673565b60405180910390fd5b60008290505b60008110612fcf576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fc057809250505061300b565b50808060019003915050612ecc565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300290615705565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006130f78473ffffffffffffffffffffffffffffffffffffffff1661347e565b15613260578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613120612736565b8786866040518563ffffffff1660e01b8152600401613142949392919061577a565b602060405180830381600087803b15801561315c57600080fd5b505af192505050801561318d57506040513d601f19601f8201168201806040525081019061318a91906157db565b60015b613210573d80600081146131bd576040519150601f19603f3d011682016040523d82523d6000602084013e6131c2565b606091505b50600081511415613208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ff90614eaf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613265565b600190505b949350505050565b60606009805461327c90614243565b80601f01602080910402602001604051908101604052809291908181526020018280546132a890614243565b80156132f55780601f106132ca576101008083540402835291602001916132f5565b820191906000526020600020905b8154815290600101906020018083116132d857829003601f168201915b5050505050905090565b60606000821415613347576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061345b565b600082905060005b6000821461337957808061336290615808565b915050600a826133729190615880565b915061334f565b60008167ffffffffffffffff81111561339557613394613d6b565b5b6040519080825280601f01601f1916602001820160405280156133c75781602001600182028036833780820191505090505b5090505b60008514613454576001826133e0919061486d565b9150600a856133ef91906158b1565b60306133fb919061445a565b60f81b818381518110613411576134106158e2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561344d9190615880565b94506133cb565b8093505050505b919050565b61346d8383836001613491565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134fe90615983565b60405180910390fd5b600084141561354b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354290615a15565b60405180910390fd5b6135586000868387613472565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156137f257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156137dd5761379d60008884886130d6565b6137dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d390614eaf565b60405180910390fd5b5b81806001019250508080600101915050613726565b5080600081905550506138086000868387613478565b5050505050565b82805461381b90614243565b90600052602060002090601f01602090048101928261383d5760008555613884565b82601f1061385657805160ff1916838001178555613884565b82800160010185558215613884579182015b82811115613883578251825591602001919060010190613868565b5b50905061389191906138cf565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156138e85760008160009055506001016138d0565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061392b82613900565b9050919050565b61393b81613920565b811461394657600080fd5b50565b60008135905061395881613932565b92915050565b600060208284031215613974576139736138f6565b5b600061398284828501613949565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139c08161398b565b81146139cb57600080fd5b50565b6000813590506139dd816139b7565b92915050565b6000602082840312156139f9576139f86138f6565b5b6000613a07848285016139ce565b91505092915050565b60008115159050919050565b613a2581613a10565b82525050565b6000602082019050613a406000830184613a1c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a80578082015181840152602081019050613a65565b83811115613a8f576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ab182613a46565b613abb8185613a51565b9350613acb818560208601613a62565b613ad481613a95565b840191505092915050565b60006020820190508181036000830152613af98184613aa6565b905092915050565b6000819050919050565b613b1481613b01565b8114613b1f57600080fd5b50565b600081359050613b3181613b0b565b92915050565b600060208284031215613b4d57613b4c6138f6565b5b6000613b5b84828501613b22565b91505092915050565b613b6d81613920565b82525050565b6000602082019050613b886000830184613b64565b92915050565b60008060408385031215613ba557613ba46138f6565b5b6000613bb385828601613949565b9250506020613bc485828601613b22565b9150509250929050565b613bd781613b01565b82525050565b6000602082019050613bf26000830184613bce565b92915050565b60008060408385031215613c0f57613c0e6138f6565b5b6000613c1d85828601613b22565b9250506020613c2e85828601613949565b9150509250929050565b600080600060608486031215613c5157613c506138f6565b5b6000613c5f86828701613949565b9350506020613c7086828701613949565b9250506040613c8186828701613b22565b9150509250925092565b600060ff82169050919050565b613ca181613c8b565b8114613cac57600080fd5b50565b600081359050613cbe81613c98565b92915050565b6000819050919050565b613cd781613cc4565b8114613ce257600080fd5b50565b600081359050613cf481613cce565b92915050565b60008060008060808587031215613d1457613d136138f6565b5b6000613d2287828801613949565b9450506020613d3387828801613caf565b9350506040613d4487828801613ce5565b9250506060613d5587828801613ce5565b91505092959194509250565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613da382613a95565b810181811067ffffffffffffffff82111715613dc257613dc1613d6b565b5b80604052505050565b6000613dd56138ec565b9050613de18282613d9a565b919050565b600067ffffffffffffffff821115613e0157613e00613d6b565b5b613e0a82613a95565b9050602081019050919050565b82818337600083830152505050565b6000613e39613e3484613de6565b613dcb565b905082815260208101848484011115613e5557613e54613d66565b5b613e60848285613e17565b509392505050565b600082601f830112613e7d57613e7c613d61565b5b8135613e8d848260208601613e26565b91505092915050565b600060208284031215613eac57613eab6138f6565b5b600082013567ffffffffffffffff811115613eca57613ec96138fb565b5b613ed684828501613e68565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110613f1f57613f1e613edf565b5b50565b6000819050613f3082613f0e565b919050565b6000613f4082613f22565b9050919050565b613f5081613f35565b82525050565b6000602082019050613f6b6000830184613f47565b92915050565b613f7a81613a10565b8114613f8557600080fd5b50565b600081359050613f9781613f71565b92915050565b60008060408385031215613fb457613fb36138f6565b5b6000613fc285828601613949565b9250506020613fd385828601613f88565b9150509250929050565b600067ffffffffffffffff821115613ff857613ff7613d6b565b5b61400182613a95565b9050602081019050919050565b600061402161401c84613fdd565b613dcb565b90508281526020810184848401111561403d5761403c613d66565b5b614048848285613e17565b509392505050565b600082601f83011261406557614064613d61565b5b813561407584826020860161400e565b91505092915050565b60008060008060808587031215614098576140976138f6565b5b60006140a687828801613949565b94505060206140b787828801613949565b93505060406140c887828801613b22565b925050606085013567ffffffffffffffff8111156140e9576140e86138fb565b5b6140f587828801614050565b91505092959194509250565b6000806000806080858703121561411b5761411a6138f6565b5b600061412987828801613b22565b945050602061413a87828801613caf565b935050604061414b87828801613ce5565b925050606061415c87828801613ce5565b91505092959194509250565b6000806040838503121561417f5761417e6138f6565b5b600061418d85828601613949565b925050602061419e85828601613949565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141de602083613a51565b91506141e9826141a8565b602082019050919050565b6000602082019050818103600083015261420d816141d1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061425b57607f821691505b6020821081141561426f5761426e614214565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006142d1602d83613a51565b91506142dc82614275565b604082019050919050565b60006020820190508181036000830152614300816142c4565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614363602283613a51565b915061436e82614307565b604082019050919050565b6000602082019050818103600083015261439281614356565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006143f5603983613a51565b915061440082614399565b604082019050919050565b60006020820190508181036000830152614424816143e8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061446582613b01565b915061447083613b01565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144a5576144a461442b565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f60008201527f206d696e742e2e00000000000000000000000000000000000000000000000000602082015250565b600061450c602783613a51565b9150614517826144b0565b604082019050919050565b6000602082019050818103600083015261453b816144ff565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061459e602283613a51565b91506145a982614542565b604082019050919050565b600060208201905081810360008301526145cd81614591565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614630602e83613a51565b915061463b826145d4565b604082019050919050565b6000602082019050818103600083015261465f81614623565b9050919050565b60008160601b9050919050565b600061467e82614666565b9050919050565b600061469082614673565b9050919050565b6146a86146a382613920565b614685565b82525050565b60006146ba8285614697565b6014820191506146ca8284614697565b6014820191508190509392505050565b600081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b600061471b601c836146da565b9150614726826146e5565b601c82019050919050565b6000819050919050565b61474c61474782613cc4565b614731565b82525050565b600061475d8261470e565b9150614769828461473b565b60208201915081905092915050565b61478181613cc4565b82525050565b61479081613c8b565b82525050565b60006080820190506147ab6000830187614778565b6147b86020830186614787565b6147c56040830185614778565b6147d26060830184614778565b95945050505050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b6000614837602283613a51565b9150614842826147db565b604082019050919050565b600060208201905081810360008301526148668161482a565b9050919050565b600061487882613b01565b915061488383613b01565b9250828210156148965761489561442b565b5b828203905092915050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006148fd602383613a51565b9150614908826148a1565b604082019050919050565b6000602082019050818103600083015261492c816148f0565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061498f602b83613a51565b915061499a82614933565b604082019050919050565b600060208201905081810360008301526149be81614982565b9050919050565b7f4e46542052657665616c2054696d6520686173206e6f74206265656e2064657460008201527f65726d696e656420796574210000000000000000000000000000000000000000602082015250565b6000614a21602c83613a51565b9150614a2c826149c5565b604082019050919050565b60006020820190508181036000830152614a5081614a14565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614a8d601a83613a51565b9150614a9882614a57565b602082019050919050565b60006020820190508181036000830152614abc81614a80565b9050919050565b7f436f6c6c656374696f6e2068617320616c7265616479206265656e207265766560008201527f616c656421000000000000000000000000000000000000000000000000000000602082015250565b6000614b1f602583613a51565b9150614b2a82614ac3565b604082019050919050565b60006020820190508181036000830152614b4e81614b12565b9050919050565b7f53616c6520697320706175736564210000000000000000000000000000000000600082015250565b6000614b8b600f83613a51565b9150614b9682614b55565b602082019050919050565b60006020820190508181036000830152614bba81614b7e565b9050919050565b7f5075626c69632053616c6520696e206e6f74206f70656e207965742100000000600082015250565b6000614bf7601c83613a51565b9150614c0282614bc1565b602082019050919050565b60006020820190508181036000830152614c2681614bea565b9050919050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b6000614c63601e83613a51565b9150614c6e82614c2d565b602082019050919050565b60006020820190508181036000830152614c9281614c56565b9050919050565b7f4d6178696d756d2034204d696e747320706572204164647265737320616c6c6f60008201527f7765642100000000000000000000000000000000000000000000000000000000602082015250565b6000614cf5602483613a51565b9150614d0082614c99565b604082019050919050565b60006020820190508181036000830152614d2481614ce8565b9050919050565b6000614d3682613b01565b9150614d4183613b01565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d7a57614d7961442b565b5b828202905092915050565b7f4e6f742073756666696369656e7420457468657220746f206d696e742074686960008201527f7320616d6f756e74206f66204e4654732028436f7374203d20302e303820657460208201527f68657220666f722065616368204e465429000000000000000000000000000000604082015250565b6000614e07605183613a51565b9150614e1282614d85565b606082019050919050565b60006020820190508181036000830152614e3681614dfa565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614e99603383613a51565b9150614ea482614e3d565b604082019050919050565b60006020820190508181036000830152614ec881614e8c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614f2b602f83613a51565b9150614f3682614ecf565b604082019050919050565b60006020820190508181036000830152614f5a81614f1e565b9050919050565b6000614f6c82613a46565b614f7681856146da565b9350614f86818560208601613a62565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614fc86005836146da565b9150614fd382614f92565b600582019050919050565b6000614fea8285614f61565b9150614ff68284614f61565b915061500182614fbb565b91508190509392505050565b7f496e76616c6964205369676e6174757265000000000000000000000000000000600082015250565b6000615043601183613a51565b915061504e8261500d565b602082019050919050565b6000602082019050818103600083015261507281615036565b9050919050565b7f53616c6520696e206e6f74206f70656e20796574210000000000000000000000600082015250565b60006150af601583613a51565b91506150ba82615079565b602082019050919050565b600060208201905081810360008301526150de816150a2565b9050919050565b7f50726573616c652068617320636c6f7365642c20436865636b206f757420507560008201527f626c69632053616c652100000000000000000000000000000000000000000000602082015250565b6000615141602a83613a51565b915061514c826150e5565b604082019050919050565b6000602082019050818103600083015261517081615134565b9050919050565b7f4e6f742073756666696369656e7420457468657220746f206d696e742074686960008201527f7320616d6f756e74206f66204e4654732028436f7374203d20302e303635206560208201527f746865722065616368204e465429000000000000000000000000000000000000604082015250565b60006151f9604e83613a51565b915061520482615177565b606082019050919050565b60006020820190508181036000830152615228816151ec565b9050919050565b7f53616c6520697320616c7265616479204f70656e210000000000000000000000600082015250565b6000615265601583613a51565b91506152708261522f565b602082019050919050565b6000602082019050818103600083015261529481615258565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006152f7602683613a51565b91506153028261529b565b604082019050919050565b60006020820190508181036000830152615326816152ea565b9050919050565b7f53616c65206d75737420626520696e2050726573616c65210000000000000000600082015250565b6000615363601883613a51565b915061536e8261532d565b602082019050919050565b6000602082019050818103600083015261539281615356565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006153f5603283613a51565b915061540082615399565b604082019050919050565b60006020820190508181036000830152615424816153e8565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000615487602683613a51565b91506154928261542b565b604082019050919050565b600060208201905081810360008301526154b68161547a565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615519602583613a51565b9150615524826154bd565b604082019050919050565b600060208201905081810360008301526155488161550c565b9050919050565b600081905092915050565b50565b600061556a60008361554f565b91506155758261555a565b600082019050919050565b600061558b8261555d565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b60006155cb601483613a51565b91506155d682615595565b602082019050919050565b600060208201905081810360008301526155fa816155be565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061565d602a83613a51565b915061566882615601565b604082019050919050565b6000602082019050818103600083015261568c81615650565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006156ef602f83613a51565b91506156fa82615693565b604082019050919050565b6000602082019050818103600083015261571e816156e2565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061574c82615725565b6157568185615730565b9350615766818560208601613a62565b61576f81613a95565b840191505092915050565b600060808201905061578f6000830187613b64565b61579c6020830186613b64565b6157a96040830185613bce565b81810360608301526157bb8184615741565b905095945050505050565b6000815190506157d5816139b7565b92915050565b6000602082840312156157f1576157f06138f6565b5b60006157ff848285016157c6565b91505092915050565b600061581382613b01565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156158465761584561442b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061588b82613b01565b915061589683613b01565b9250826158a6576158a5615851565b5b828204905092915050565b60006158bc82613b01565b91506158c783613b01565b9250826158d7576158d6615851565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061596d602183613a51565b915061597882615911565b604082019050919050565b6000602082019050818103600083015261599c81615960565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006159ff602883613a51565b9150615a0a826159a3565b604082019050919050565b60006020820190508181036000830152615a2e816159f2565b905091905056fea2646970667358221220d8de4c089464de4e1c8f7eb841e4c582734750f0b10b5a73b74b722c2ce6ad1f64736f6c63430008090033697066733a2f2f516d5a4e3866514a684842424141585170666f507131635259724b617276776d6f526743645077654a4b795a47622f
Deployed Bytecode
0x60806040526004361061024a5760003560e01c806370a0823111610139578063b3ab66b0116100b6578063c87b56dd1161007a578063c87b56dd14610842578063dcd4e7321461087f578063e985e9c51461089b578063eab41782146108d8578063f2fde38b146108ef578063ff9849941461091857610251565b8063b3ab66b014610792578063b88d4fde146107ae578063bdb4b848146107d7578063c4ae316814610802578063c4d8b9df1461081957610251565b806395d89b41116100fd57806395d89b41146106d1578063a22cb465146106fc578063a475b5dd14610725578063b0a1c1c41461073c578063b187bd261461076757610251565b806370a08231146105fc578063715018a6146106395780637501f741146106505780637c76f6981461067b5780638da5cb5b146106a657610251565b80633023eba6116101c75780634520e9161161018b5780634520e916146105015780634f6ccce71461052c578063603f4d52146105695780636352211e146105945780637035bf18146105d157610251565b80633023eba61461041e578063326241141461045b57806339a0c6f9146104985780633ccfd60b146104c157806342842e0e146104d857610251565b8063095ea7b31161020e578063095ea7b31461033b57806318160ddd1461036457806318df64031461038f57806323b872dd146103b85780632f745c59146103e157610251565b80630191a6571461025657806301ffc9a71461027f57806306fdde03146102bc57806308003f78146102e7578063081812fc146102fe57610251565b3661025157005b600080fd5b34801561026257600080fd5b5061027d6004803603810190610278919061395e565b61092f565b005b34801561028b57600080fd5b506102a660048036038101906102a191906139e3565b6109ef565b6040516102b39190613a2b565b60405180910390f35b3480156102c857600080fd5b506102d1610b39565b6040516102de9190613adf565b60405180910390f35b3480156102f357600080fd5b506102fc610bcb565b005b34801561030a57600080fd5b5061032560048036038101906103209190613b37565b610c57565b6040516103329190613b73565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d9190613b8e565b610cdc565b005b34801561037057600080fd5b50610379610df5565b6040516103869190613bdd565b60405180910390f35b34801561039b57600080fd5b506103b660048036038101906103b19190613bf8565b610dfe565b005b3480156103c457600080fd5b506103df60048036038101906103da9190613c38565b610f49565b005b3480156103ed57600080fd5b5061040860048036038101906104039190613b8e565b610f59565b6040516104159190613bdd565b60405180910390f35b34801561042a57600080fd5b506104456004803603810190610440919061395e565b61114b565b6040516104529190613bdd565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d9190613cfa565b611163565b60405161048f9190613a2b565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613e96565b611261565b005b3480156104cd57600080fd5b506104d66112f7565b005b3480156104e457600080fd5b506104ff60048036038101906104fa9190613c38565b6113e3565b005b34801561050d57600080fd5b50610516611403565b6040516105239190613bdd565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e9190613b37565b611496565b6040516105609190613bdd565b60405180910390f35b34801561057557600080fd5b5061057e6114e9565b60405161058b9190613f56565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190613b37565b61151a565b6040516105c89190613b73565b60405180910390f35b3480156105dd57600080fd5b506105e6611530565b6040516105f39190613adf565b60405180910390f35b34801561060857600080fd5b50610623600480360381019061061e919061395e565b6115be565b6040516106309190613bdd565b60405180910390f35b34801561064557600080fd5b5061064e6116a7565b005b34801561065c57600080fd5b5061066561172f565b6040516106729190613bdd565b60405180910390f35b34801561068757600080fd5b50610690611734565b60405161069d9190613bdd565b60405180910390f35b3480156106b257600080fd5b506106bb611783565b6040516106c89190613b73565b60405180910390f35b3480156106dd57600080fd5b506106e66117ad565b6040516106f39190613adf565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190613f9d565b61183f565b005b34801561073157600080fd5b5061073a6119c0565b005b34801561074857600080fd5b50610751611a8a565b60405161075e9190613bdd565b60405180910390f35b34801561077357600080fd5b5061077c611b0e565b6040516107899190613a2b565b60405180910390f35b6107ac60048036038101906107a79190613b37565b611b25565b005b3480156107ba57600080fd5b506107d560048036038101906107d0919061407e565b611d9f565b005b3480156107e357600080fd5b506107ec611dfb565b6040516107f99190613bdd565b60405180910390f35b34801561080e57600080fd5b50610817611e0a565b005b34801561082557600080fd5b50610840600480360381019061083b9190613e96565b611eb2565b005b34801561084e57600080fd5b5061086960048036038101906108649190613b37565b611f48565b6040516108769190613adf565b60405180910390f35b61089960048036038101906108949190614101565b61208d565b005b3480156108a757600080fd5b506108c260048036038101906108bd9190614168565b6123c4565b6040516108cf9190613a2b565b60405180910390f35b3480156108e457600080fd5b506108ed612458565b005b3480156108fb57600080fd5b506109166004803603810190610911919061395e565b61254b565b005b34801561092457600080fd5b5061092d612643565b005b610937612736565b73ffffffffffffffffffffffffffffffffffffffff16610955611783565b73ffffffffffffffffffffffffffffffffffffffff16146109ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a2906141f4565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610aba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b2257507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b325750610b318261273e565b5b9050919050565b606060018054610b4890614243565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7490614243565b8015610bc15780601f10610b9657610100808354040283529160200191610bc1565b820191906000526020600020905b815481529060010190602001808311610ba457829003601f168201915b5050505050905090565b610bd3612736565b73ffffffffffffffffffffffffffffffffffffffff16610bf1611783565b73ffffffffffffffffffffffffffffffffffffffff1614610c47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3e906141f4565b60405180910390fd5b610c4f610df5565b600881905550565b6000610c62826127a8565b610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c98906142e7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ce78261151a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4f90614379565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d77612736565b73ffffffffffffffffffffffffffffffffffffffff161480610da65750610da581610da0612736565b6123c4565b5b610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc9061440b565b60405180910390fd5b610df08383836127b5565b505050565b60008054905090565b610e06612736565b73ffffffffffffffffffffffffffffffffffffffff16610e24611783565b73ffffffffffffffffffffffffffffffffffffffff1614610e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e71906141f4565b60405180910390fd5b600b5482600a54610e8b919061445a565b1115610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec390614522565b60405180910390fd5b610ed68183612867565b81601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f25919061445a565b9250508190555081600a6000828254610f3e919061445a565b925050819055505050565b610f54838383612885565b505050565b6000610f64836115be565b8210610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c906145b4565b60405180910390fd5b6000610faf610df5565b905060008060005b83811015611109576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110a957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110fb57868414156110f2578195505050505050611145565b83806001019450505b508080600101915050610fb7565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90614646565b60405180910390fd5b92915050565b60116020528060005260406000206000915090505481565b60008030866040516020016111799291906146ae565b6040516020818303038152906040528051906020012090506001816040516020016111a49190614752565b60405160208183030381529060405280519060200120868686604051600081526020016040526040516111da9493929190614796565b6020604051602081039080840390855afa1580156111fc573d6000803e3d6000fd5b5050506020604051035173ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050949350505050565b611269612736565b73ffffffffffffffffffffffffffffffffffffffff16611287611783565b73ffffffffffffffffffffffffffffffffffffffff16146112dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d4906141f4565b60405180910390fd5b80600990805190602001906112f392919061380f565b5050565b6112ff612736565b73ffffffffffffffffffffffffffffffffffffffff1661131d611783565b73ffffffffffffffffffffffffffffffffffffffff1614611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a906141f4565b60405180910390fd5b600061137d611a8a565b9050600081116113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b99061484d565b60405180910390fd5b6113e0738d8bc9aba71f929ce28cdedda5b829d919ea2bac82612dc5565b50565b6113fe83838360405180602001604052806000815250611d9f565b505050565b600061140d612736565b73ffffffffffffffffffffffffffffffffffffffff1661142b611783565b73ffffffffffffffffffffffffffffffffffffffff1614611481576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611478906141f4565b60405180910390fd5b600a54600b54611491919061486d565b905090565b60006114a0610df5565b82106114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d890614913565b60405180910390fd5b819050919050565b600080600d5414156114fe5760009050611517565b6000600e5414156115125760019050611517565b600290505b90565b600061152582612e76565b600001519050919050565b6012805461153d90614243565b80601f016020809104026020016040519081016040528092919081815260200182805461156990614243565b80156115b65780601f1061158b576101008083540402835291602001916115b6565b820191906000526020600020905b81548152906001019060200180831161159957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561162f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611626906149a5565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6116af612736565b73ffffffffffffffffffffffffffffffffffffffff166116cd611783565b73ffffffffffffffffffffffffffffffffffffffff1614611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a906141f4565b60405180910390fd5b61172d6000613010565b565b600481565b600080600f54141561177b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177290614a37565b60405180910390fd5b600f54905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546117bc90614243565b80601f01602080910402602001604051908101604052809291908181526020018280546117e890614243565b80156118355780601f1061180a57610100808354040283529160200191611835565b820191906000526020600020905b81548152906001019060200180831161181857829003601f168201915b5050505050905090565b611847612736565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ac90614aa3565b60405180910390fd5b80600660006118c2612736565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661196f612736565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119b49190613a2b565b60405180910390a35050565b6119c8612736565b73ffffffffffffffffffffffffffffffffffffffff166119e6611783565b73ffffffffffffffffffffffffffffffffffffffff1614611a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a33906141f4565b60405180910390fd5b6000600f5414611a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7890614b35565b60405180910390fd5b42600f81905550565b6000611a94612736565b73ffffffffffffffffffffffffffffffffffffffff16611ab2611783565b73ffffffffffffffffffffffffffffffffffffffff1614611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff906141f4565b60405180910390fd5b47905090565b6000601060009054906101000a900460ff16905090565b601060009054906101000a900460ff1615611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c90614ba1565b60405180910390fd5b6000611b7f6114e9565b9050600280811115611b9457611b93613edf565b5b816002811115611ba757611ba6613edf565b5b14611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde90614c0d565b60405180910390fd5b600a54600b54611bf7919061486d565b600854611c04919061486d565b82611c0d610df5565b611c17919061445a565b1115611c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4f90614c79565b60405180910390fd5b600482601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ca5919061445a565b1115611ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdd90614d0b565b60405180910390fd5b81611cef611dfb565b611cf99190614d2b565b341015611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3290614e1d565b60405180910390fd5b611d453383612867565b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d94919061445a565b925050819055505050565b611daa848484612885565b611db6848484846130d6565b611df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dec90614eaf565b60405180910390fd5b50505050565b600066f8b0a10e470000905090565b611e12612736565b73ffffffffffffffffffffffffffffffffffffffff16611e30611783565b73ffffffffffffffffffffffffffffffffffffffff1614611e86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7d906141f4565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b611eba612736565b73ffffffffffffffffffffffffffffffffffffffff16611ed8611783565b73ffffffffffffffffffffffffffffffffffffffff1614611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f25906141f4565b60405180910390fd5b8060129080519060200190611f4492919061380f565b5050565b6060611f53826127a8565b611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8990614f41565b60405180910390fd5b6000600f54141561202f5760128054611faa90614243565b80601f0160208091040260200160405190810160405280929190818152602001828054611fd690614243565b80156120235780601f10611ff857610100808354040283529160200191612023565b820191906000526020600020905b81548152906001019060200180831161200657829003601f168201915b50505050509050612088565b600061203961326d565b905060008151116120595760405180602001604052806000815250612084565b80612063846132ff565b604051602001612074929190614fde565b6040516020818303038152906040525b9150505b919050565b82828261209c33848484611163565b6120db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d290615059565b60405180910390fd5b601060009054906101000a900460ff161561212b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212290614ba1565b60405180910390fd5b60006121356114e9565b90506000600281111561214b5761214a613edf565b5b81600281111561215e5761215d613edf565b5b141561219f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612196906150c5565b60405180910390fd5b6002808111156121b2576121b1613edf565b5b8160028111156121c5576121c4613edf565b5b1415612206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fd90615157565b60405180910390fd5b600a54600b54612216919061486d565b600854612223919061486d565b8861222c610df5565b612236919061445a565b1115612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e90614c79565b60405180910390fd5b600488601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122c4919061445a565b1115612305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fc90614d0b565b60405180910390fd5b8761230e611dfb565b6123189190614d2b565b34101561235a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123519061520f565b60405180910390fd5b6123643389612867565b87601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123b3919061445a565b925050819055505050505050505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612460612736565b73ffffffffffffffffffffffffffffffffffffffff1661247e611783565b73ffffffffffffffffffffffffffffffffffffffff16146124d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cb906141f4565b60405180910390fd5b600060028111156124e8576124e7613edf565b5b6124f06114e9565b600281111561250257612501613edf565b5b14612542576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125399061527b565b60405180910390fd5b42600d81905550565b612553612736565b73ffffffffffffffffffffffffffffffffffffffff16612571611783565b73ffffffffffffffffffffffffffffffffffffffff16146125c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125be906141f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262e9061530d565b60405180910390fd5b61264081613010565b50565b61264b612736565b73ffffffffffffffffffffffffffffffffffffffff16612669611783565b73ffffffffffffffffffffffffffffffffffffffff16146126bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b6906141f4565b60405180910390fd5b600160028111156126d3576126d2613edf565b5b6126db6114e9565b60028111156126ed576126ec613edf565b5b1461272d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272490615379565b60405180910390fd5b42600e81905550565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612881828260405180602001604052806000815250613460565b5050565b600061289082612e76565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166128b7612736565b73ffffffffffffffffffffffffffffffffffffffff16148061291357506128dc612736565b73ffffffffffffffffffffffffffffffffffffffff166128fb84610c57565b73ffffffffffffffffffffffffffffffffffffffff16145b8061292f575061292e8260000151612929612736565b6123c4565b5b905080612971576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129689061540b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146129e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129da9061549d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4a9061552f565b60405180910390fd5b612a608585856001613472565b612a7060008484600001516127b5565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d5557612cb4816127a8565b15612d545782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dbe8585856001613478565b5050505050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612deb90615580565b60006040518083038185875af1925050503d8060008114612e28576040519150601f19603f3d011682016040523d82523d6000602084013e612e2d565b606091505b5050905080612e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e68906155e1565b60405180910390fd5b505050565b612e7e613895565b612e87826127a8565b612ec6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ebd90615673565b60405180910390fd5b60008290505b60008110612fcf576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612fc057809250505061300b565b50808060019003915050612ecc565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300290615705565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006130f78473ffffffffffffffffffffffffffffffffffffffff1661347e565b15613260578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613120612736565b8786866040518563ffffffff1660e01b8152600401613142949392919061577a565b602060405180830381600087803b15801561315c57600080fd5b505af192505050801561318d57506040513d601f19601f8201168201806040525081019061318a91906157db565b60015b613210573d80600081146131bd576040519150601f19603f3d011682016040523d82523d6000602084013e6131c2565b606091505b50600081511415613208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131ff90614eaf565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613265565b600190505b949350505050565b60606009805461327c90614243565b80601f01602080910402602001604051908101604052809291908181526020018280546132a890614243565b80156132f55780601f106132ca576101008083540402835291602001916132f5565b820191906000526020600020905b8154815290600101906020018083116132d857829003601f168201915b5050505050905090565b60606000821415613347576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061345b565b600082905060005b6000821461337957808061336290615808565b915050600a826133729190615880565b915061334f565b60008167ffffffffffffffff81111561339557613394613d6b565b5b6040519080825280601f01601f1916602001820160405280156133c75781602001600182028036833780820191505090505b5090505b60008514613454576001826133e0919061486d565b9150600a856133ef91906158b1565b60306133fb919061445a565b60f81b818381518110613411576134106158e2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561344d9190615880565b94506133cb565b8093505050505b919050565b61346d8383836001613491565b505050565b50505050565b50505050565b600080823b905060008111915050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134fe90615983565b60405180910390fd5b600084141561354b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354290615a15565b60405180910390fd5b6135586000868387613472565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156137f257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483156137dd5761379d60008884886130d6565b6137dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d390614eaf565b60405180910390fd5b5b81806001019250508080600101915050613726565b5080600081905550506138086000868387613478565b5050505050565b82805461381b90614243565b90600052602060002090601f01602090048101928261383d5760008555613884565b82601f1061385657805160ff1916838001178555613884565b82800160010185558215613884579182015b82811115613883578251825591602001919060010190613868565b5b50905061389191906138cf565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156138e85760008160009055506001016138d0565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061392b82613900565b9050919050565b61393b81613920565b811461394657600080fd5b50565b60008135905061395881613932565b92915050565b600060208284031215613974576139736138f6565b5b600061398284828501613949565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139c08161398b565b81146139cb57600080fd5b50565b6000813590506139dd816139b7565b92915050565b6000602082840312156139f9576139f86138f6565b5b6000613a07848285016139ce565b91505092915050565b60008115159050919050565b613a2581613a10565b82525050565b6000602082019050613a406000830184613a1c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613a80578082015181840152602081019050613a65565b83811115613a8f576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ab182613a46565b613abb8185613a51565b9350613acb818560208601613a62565b613ad481613a95565b840191505092915050565b60006020820190508181036000830152613af98184613aa6565b905092915050565b6000819050919050565b613b1481613b01565b8114613b1f57600080fd5b50565b600081359050613b3181613b0b565b92915050565b600060208284031215613b4d57613b4c6138f6565b5b6000613b5b84828501613b22565b91505092915050565b613b6d81613920565b82525050565b6000602082019050613b886000830184613b64565b92915050565b60008060408385031215613ba557613ba46138f6565b5b6000613bb385828601613949565b9250506020613bc485828601613b22565b9150509250929050565b613bd781613b01565b82525050565b6000602082019050613bf26000830184613bce565b92915050565b60008060408385031215613c0f57613c0e6138f6565b5b6000613c1d85828601613b22565b9250506020613c2e85828601613949565b9150509250929050565b600080600060608486031215613c5157613c506138f6565b5b6000613c5f86828701613949565b9350506020613c7086828701613949565b9250506040613c8186828701613b22565b9150509250925092565b600060ff82169050919050565b613ca181613c8b565b8114613cac57600080fd5b50565b600081359050613cbe81613c98565b92915050565b6000819050919050565b613cd781613cc4565b8114613ce257600080fd5b50565b600081359050613cf481613cce565b92915050565b60008060008060808587031215613d1457613d136138f6565b5b6000613d2287828801613949565b9450506020613d3387828801613caf565b9350506040613d4487828801613ce5565b9250506060613d5587828801613ce5565b91505092959194509250565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613da382613a95565b810181811067ffffffffffffffff82111715613dc257613dc1613d6b565b5b80604052505050565b6000613dd56138ec565b9050613de18282613d9a565b919050565b600067ffffffffffffffff821115613e0157613e00613d6b565b5b613e0a82613a95565b9050602081019050919050565b82818337600083830152505050565b6000613e39613e3484613de6565b613dcb565b905082815260208101848484011115613e5557613e54613d66565b5b613e60848285613e17565b509392505050565b600082601f830112613e7d57613e7c613d61565b5b8135613e8d848260208601613e26565b91505092915050565b600060208284031215613eac57613eab6138f6565b5b600082013567ffffffffffffffff811115613eca57613ec96138fb565b5b613ed684828501613e68565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110613f1f57613f1e613edf565b5b50565b6000819050613f3082613f0e565b919050565b6000613f4082613f22565b9050919050565b613f5081613f35565b82525050565b6000602082019050613f6b6000830184613f47565b92915050565b613f7a81613a10565b8114613f8557600080fd5b50565b600081359050613f9781613f71565b92915050565b60008060408385031215613fb457613fb36138f6565b5b6000613fc285828601613949565b9250506020613fd385828601613f88565b9150509250929050565b600067ffffffffffffffff821115613ff857613ff7613d6b565b5b61400182613a95565b9050602081019050919050565b600061402161401c84613fdd565b613dcb565b90508281526020810184848401111561403d5761403c613d66565b5b614048848285613e17565b509392505050565b600082601f83011261406557614064613d61565b5b813561407584826020860161400e565b91505092915050565b60008060008060808587031215614098576140976138f6565b5b60006140a687828801613949565b94505060206140b787828801613949565b93505060406140c887828801613b22565b925050606085013567ffffffffffffffff8111156140e9576140e86138fb565b5b6140f587828801614050565b91505092959194509250565b6000806000806080858703121561411b5761411a6138f6565b5b600061412987828801613b22565b945050602061413a87828801613caf565b935050604061414b87828801613ce5565b925050606061415c87828801613ce5565b91505092959194509250565b6000806040838503121561417f5761417e6138f6565b5b600061418d85828601613949565b925050602061419e85828601613949565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006141de602083613a51565b91506141e9826141a8565b602082019050919050565b6000602082019050818103600083015261420d816141d1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061425b57607f821691505b6020821081141561426f5761426e614214565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006142d1602d83613a51565b91506142dc82614275565b604082019050919050565b60006020820190508181036000830152614300816142c4565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000614363602283613a51565b915061436e82614307565b604082019050919050565b6000602082019050818103600083015261439281614356565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b60006143f5603983613a51565b915061440082614399565b604082019050919050565b60006020820190508181036000830152614424816143e8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061446582613b01565b915061447083613b01565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144a5576144a461442b565b5b828201905092915050565b7f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f60008201527f206d696e742e2e00000000000000000000000000000000000000000000000000602082015250565b600061450c602783613a51565b9150614517826144b0565b604082019050919050565b6000602082019050818103600083015261453b816144ff565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061459e602283613a51565b91506145a982614542565b604082019050919050565b600060208201905081810360008301526145cd81614591565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614630602e83613a51565b915061463b826145d4565b604082019050919050565b6000602082019050818103600083015261465f81614623565b9050919050565b60008160601b9050919050565b600061467e82614666565b9050919050565b600061469082614673565b9050919050565b6146a86146a382613920565b614685565b82525050565b60006146ba8285614697565b6014820191506146ca8284614697565b6014820191508190509392505050565b600081905092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b600061471b601c836146da565b9150614726826146e5565b601c82019050919050565b6000819050919050565b61474c61474782613cc4565b614731565b82525050565b600061475d8261470e565b9150614769828461473b565b60208201915081905092915050565b61478181613cc4565b82525050565b61479081613c8b565b82525050565b60006080820190506147ab6000830187614778565b6147b86020830186614787565b6147c56040830185614778565b6147d26060830184614778565b95945050505050565b7f4e6f2046756e647320746f2077697468647261772c2042616c616e636520697360008201527f2030000000000000000000000000000000000000000000000000000000000000602082015250565b6000614837602283613a51565b9150614842826147db565b604082019050919050565b600060208201905081810360008301526148668161482a565b9050919050565b600061487882613b01565b915061488383613b01565b9250828210156148965761489561442b565b5b828203905092915050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006148fd602383613a51565b9150614908826148a1565b604082019050919050565b6000602082019050818103600083015261492c816148f0565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061498f602b83613a51565b915061499a82614933565b604082019050919050565b600060208201905081810360008301526149be81614982565b9050919050565b7f4e46542052657665616c2054696d6520686173206e6f74206265656e2064657460008201527f65726d696e656420796574210000000000000000000000000000000000000000602082015250565b6000614a21602c83613a51565b9150614a2c826149c5565b604082019050919050565b60006020820190508181036000830152614a5081614a14565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614a8d601a83613a51565b9150614a9882614a57565b602082019050919050565b60006020820190508181036000830152614abc81614a80565b9050919050565b7f436f6c6c656374696f6e2068617320616c7265616479206265656e207265766560008201527f616c656421000000000000000000000000000000000000000000000000000000602082015250565b6000614b1f602583613a51565b9150614b2a82614ac3565b604082019050919050565b60006020820190508181036000830152614b4e81614b12565b9050919050565b7f53616c6520697320706175736564210000000000000000000000000000000000600082015250565b6000614b8b600f83613a51565b9150614b9682614b55565b602082019050919050565b60006020820190508181036000830152614bba81614b7e565b9050919050565b7f5075626c69632053616c6520696e206e6f74206f70656e207965742100000000600082015250565b6000614bf7601c83613a51565b9150614c0282614bc1565b602082019050919050565b60006020820190508181036000830152614c2681614bea565b9050919050565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e0000600082015250565b6000614c63601e83613a51565b9150614c6e82614c2d565b602082019050919050565b60006020820190508181036000830152614c9281614c56565b9050919050565b7f4d6178696d756d2034204d696e747320706572204164647265737320616c6c6f60008201527f7765642100000000000000000000000000000000000000000000000000000000602082015250565b6000614cf5602483613a51565b9150614d0082614c99565b604082019050919050565b60006020820190508181036000830152614d2481614ce8565b9050919050565b6000614d3682613b01565b9150614d4183613b01565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d7a57614d7961442b565b5b828202905092915050565b7f4e6f742073756666696369656e7420457468657220746f206d696e742074686960008201527f7320616d6f756e74206f66204e4654732028436f7374203d20302e303820657460208201527f68657220666f722065616368204e465429000000000000000000000000000000604082015250565b6000614e07605183613a51565b9150614e1282614d85565b606082019050919050565b60006020820190508181036000830152614e3681614dfa565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614e99603383613a51565b9150614ea482614e3d565b604082019050919050565b60006020820190508181036000830152614ec881614e8c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614f2b602f83613a51565b9150614f3682614ecf565b604082019050919050565b60006020820190508181036000830152614f5a81614f1e565b9050919050565b6000614f6c82613a46565b614f7681856146da565b9350614f86818560208601613a62565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614fc86005836146da565b9150614fd382614f92565b600582019050919050565b6000614fea8285614f61565b9150614ff68284614f61565b915061500182614fbb565b91508190509392505050565b7f496e76616c6964205369676e6174757265000000000000000000000000000000600082015250565b6000615043601183613a51565b915061504e8261500d565b602082019050919050565b6000602082019050818103600083015261507281615036565b9050919050565b7f53616c6520696e206e6f74206f70656e20796574210000000000000000000000600082015250565b60006150af601583613a51565b91506150ba82615079565b602082019050919050565b600060208201905081810360008301526150de816150a2565b9050919050565b7f50726573616c652068617320636c6f7365642c20436865636b206f757420507560008201527f626c69632053616c652100000000000000000000000000000000000000000000602082015250565b6000615141602a83613a51565b915061514c826150e5565b604082019050919050565b6000602082019050818103600083015261517081615134565b9050919050565b7f4e6f742073756666696369656e7420457468657220746f206d696e742074686960008201527f7320616d6f756e74206f66204e4654732028436f7374203d20302e303635206560208201527f746865722065616368204e465429000000000000000000000000000000000000604082015250565b60006151f9604e83613a51565b915061520482615177565b606082019050919050565b60006020820190508181036000830152615228816151ec565b9050919050565b7f53616c6520697320616c7265616479204f70656e210000000000000000000000600082015250565b6000615265601583613a51565b91506152708261522f565b602082019050919050565b6000602082019050818103600083015261529481615258565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006152f7602683613a51565b91506153028261529b565b604082019050919050565b60006020820190508181036000830152615326816152ea565b9050919050565b7f53616c65206d75737420626520696e2050726573616c65210000000000000000600082015250565b6000615363601883613a51565b915061536e8261532d565b602082019050919050565b6000602082019050818103600083015261539281615356565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006153f5603283613a51565b915061540082615399565b604082019050919050565b60006020820190508181036000830152615424816153e8565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000615487602683613a51565b91506154928261542b565b604082019050919050565b600060208201905081810360008301526154b68161547a565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615519602583613a51565b9150615524826154bd565b604082019050919050565b600060208201905081810360008301526155488161550c565b9050919050565b600081905092915050565b50565b600061556a60008361554f565b91506155758261555a565b600082019050919050565b600061558b8261555d565b9150819050919050565b7f4661696c656420746f2073656e64204574686572000000000000000000000000600082015250565b60006155cb601483613a51565b91506155d682615595565b602082019050919050565b600060208201905081810360008301526155fa816155be565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061565d602a83613a51565b915061566882615601565b604082019050919050565b6000602082019050818103600083015261568c81615650565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006156ef602f83613a51565b91506156fa82615693565b604082019050919050565b6000602082019050818103600083015261571e816156e2565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061574c82615725565b6157568185615730565b9350615766818560208601613a62565b61576f81613a95565b840191505092915050565b600060808201905061578f6000830187613b64565b61579c6020830186613b64565b6157a96040830185613bce565b81810360608301526157bb8184615741565b905095945050505050565b6000815190506157d5816139b7565b92915050565b6000602082840312156157f1576157f06138f6565b5b60006157ff848285016157c6565b91505092915050565b600061581382613b01565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156158465761584561442b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061588b82613b01565b915061589683613b01565b9250826158a6576158a5615851565b5b828204905092915050565b60006158bc82613b01565b91506158c783613b01565b9250826158d7576158d6615851565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061596d602183613a51565b915061597882615911565b604082019050919050565b6000602082019050818103600083015261599c81615960565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b60006159ff602883613a51565b9150615a0a826159a3565b604082019050919050565b60006020820190508181036000830152615a2e816159f2565b905091905056fea2646970667358221220d8de4c089464de4e1c8f7eb841e4c582734750f0b10b5a73b74b722c2ce6ad1f64736f6c63430008090033
Deployed Bytecode Sourcemap
54949:8538:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56837:8;;;62126:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41710:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43596:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61243:88;;;;;;;;;;;;;:::i;:::-;;45158:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44679:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39959:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60861:319;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46034:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40631:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56208:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58261:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57064:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61550:244;;;;;;;;;;;;;:::i;:::-;;46275:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62280:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40144:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62490:297;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43405:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56416:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42146:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4591:94;;;;;;;;;;;;;:::i;:::-;;55427:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62963:172;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3940:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43765:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45444:288;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63143:158;;;;;;;;;;;;;:::i;:::-;;61381:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63309:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59537:699;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46531:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62836:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63396:77;;;;;;;;;;;;;:::i;:::-;;57181:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60248:568;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58626:852;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45803:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57314:170;;;;;;;;;;;;;:::i;:::-;;4840:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57492:180;;;;;;;;;;;;;:::i;:::-;;62126:87;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62199:6:::1;62191:5;;:14;;;;;;;;;;;;;;;;;;62126:87:::0;:::o;41710:372::-;41812:4;41864:25;41849:40;;;:11;:40;;;;:105;;;;41921:33;41906:48;;;:11;:48;;;;41849:105;:172;;;;41986:35;41971:50;;;:11;:50;;;;41849:172;:225;;;;42038:36;42062:11;42038:23;:36::i;:::-;41849:225;41829:245;;41710:372;;;:::o;43596:100::-;43650:13;43683:5;43676:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43596:100;:::o;61243:88::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61310:13:::1;:11;:13::i;:::-;61293:14;:30;;;;61243:88::o:0;45158:214::-;45226:7;45254:16;45262:7;45254;:16::i;:::-;45246:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45340:15;:24;45356:7;45340:24;;;;;;;;;;;;;;;;;;;;;45333:31;;45158:214;;;:::o;44679:413::-;44752:13;44768:24;44784:7;44768:15;:24::i;:::-;44752:40;;44817:5;44811:11;;:2;:11;;;;44803:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44912:5;44896:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;44921:37;44938:5;44945:12;:10;:12::i;:::-;44921:16;:37::i;:::-;44896:62;44874:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;45056:28;45065:2;45069:7;45078:5;45056:8;:28::i;:::-;44741:351;44679:413;;:::o;39959:108::-;40020:7;40047:12;;40040:19;;39959:108;:::o;60861:319::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60978:16:::1;;60968:6;60951:14;;:23;;;;:::i;:::-;:43;;60943:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;61051:28;61061:9;61072:6;61051:9;:28::i;:::-;61120:6;61090:15;:26;61106:9;61090:26;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;61155:6;61137:14;;:24;;;;;;;:::i;:::-;;;;;;;;60861:319:::0;;:::o;46034:170::-;46168:28;46178:4;46184:2;46188:7;46168:9;:28::i;:::-;46034:170;;;:::o;40631:1007::-;40720:7;40756:16;40766:5;40756:9;:16::i;:::-;40748:5;:24;40740:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;40822:22;40847:13;:11;:13::i;:::-;40822:38;;40871:19;40901:25;41090:9;41085:466;41105:14;41101:1;:18;41085:466;;;41145:31;41179:11;:14;41191:1;41179:14;;;;;;;;;;;41145:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41242:1;41216:28;;:9;:14;;;:28;;;41212:111;;41289:9;:14;;;41269:34;;41212:111;41366:5;41345:26;;:17;:26;;;41341:195;;;41415:5;41400:11;:20;41396:85;;;41456:1;41449:8;;;;;;;;;41396:85;41503:13;;;;;;;41341:195;41126:425;41121:3;;;;;;;41085:466;;;;41574:56;;;;;;;;;;:::i;:::-;;;;;;;;40631:1007;;;;;:::o;56208:50::-;;;;;;;;;;;;;;;;;:::o;58261:306::-;58360:4;58377:12;58427:4;58434;58402:37;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58392:48;;;;;;58377:63;;58467:92;58540:4;58487:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;58477:69;;;;;;58548:2;58552;58556;58467:92;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58458:101;;:5;;;;;;;;;;;:101;;;58451:108;;;58261:306;;;;;;:::o;57064:109::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57157:8:::1;57139:15;:26;;;;;;;;;;;;:::i;:::-;;57064:109:::0;:::o;61550:244::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61598:15:::1;61616:16;:14;:16::i;:::-;61598:34;;61661:1;61651:7;:11;61643:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;61714:71;61732:42;61777:7;61714:9;:71::i;:::-;61587:207;61550:244::o:0;46275:185::-;46413:39;46430:4;46436:2;46440:7;46413:39;;;;;;;;;;;;:16;:39::i;:::-;46275:185;;;:::o;62280:124::-;62339:4;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62382:14:::1;;62363:16;;:33;;;;:::i;:::-;62356:40;;62280:124:::0;:::o;40144:187::-;40211:7;40247:13;:11;:13::i;:::-;40239:5;:21;40231:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;40318:5;40311:12;;40144:187;;;:::o;62490:297::-;62531:5;62573:1;62552:17;;:22;62548:232;;;62598:12;62591:19;;;;62548:232;62665:1;62641:20;;:25;62637:143;;;62690:13;62683:20;;;;62637:143;62752:16;62745:23;;62490:297;;:::o;43405:124::-;43469:7;43496:20;43508:7;43496:11;:20::i;:::-;:25;;;43489:32;;43405:124;;;:::o;56416:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42146:221::-;42210:7;42255:1;42238:19;;:5;:19;;;;42230:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;42331:12;:19;42344:5;42331:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;42323:36;;42316:43;;42146:221;;;:::o;4591:94::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4656:21:::1;4674:1;4656:9;:21::i;:::-;4591:94::o:0;55427:35::-;55461:1;55427:35;:::o;62963:172::-;63007:7;63049:1;63035:10;;:15;;63027:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;63117:10;;63110:17;;62963:172;:::o;3940:87::-;3986:7;4013:6;;;;;;;;;;;4006:13;;3940:87;:::o;43765:104::-;43821:13;43854:7;43847:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43765:104;:::o;45444:288::-;45551:12;:10;:12::i;:::-;45539:24;;:8;:24;;;;45531:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;45652:8;45607:18;:32;45626:12;:10;:12::i;:::-;45607:32;;;;;;;;;;;;;;;:42;45640:8;45607:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;45705:8;45676:48;;45691:12;:10;:12::i;:::-;45676:48;;;45715:8;45676:48;;;;;;:::i;:::-;;;;;;;;45444:288;;:::o;63143:158::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63211:1:::1;63197:10;;:15;63189:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;63278:15;63265:10;:28;;;;63143:158::o:0;61381:109::-;61437:4;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61461:21:::1;61454:28;;61381:109:::0;:::o;63309:79::-;63349:4;63373:7;;;;;;;;;;;63366:14;;63309:79;:::o;59537:699::-;59612:7;;;;;;;;;;;59611:8;59603:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;59650:16;59669:11;:9;:11::i;:::-;59650:30;;59713:16;59699:30;;;;;;;;:::i;:::-;;:10;:30;;;;;;;;:::i;:::-;;;59691:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;59844:14;;59825:16;;:33;;;;:::i;:::-;59807:14;;:52;;;;:::i;:::-;59797:6;59781:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:78;;59773:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;55461:1;59943:6;59913:15;:27;59929:10;59913:27;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:47;;59905:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;60046:6;60033:10;:8;:10::i;:::-;:19;;;;:::i;:::-;60020:9;:32;;60012:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;60151:29;60161:10;60173:6;60151:9;:29::i;:::-;60222:6;60191:15;:27;60207:10;60191:27;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;59592:644;59537:699;:::o;46531:355::-;46690:28;46700:4;46706:2;46710:7;46690:9;:28::i;:::-;46751:48;46774:4;46780:2;46784:7;46793:5;46751:22;:48::i;:::-;46729:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;46531:355;;;;:::o;62836:81::-;62876:4;55354:10;62893:16;;62836:81;:::o;63396:77::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63458:7:::1;;;;;;;;;;;63457:8;63447:7;;:18;;;;;;;;;;;;;;;;;;63396:77::o:0;57181:125::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57284:14:::1;57268:13;:30;;;;;;;;;;;;:::i;:::-;;57181:125:::0;:::o;60248:568::-;60322:13;60356:17;60364:8;60356:7;:17::i;:::-;60348:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;60551:1;60537:10;;:15;60533:272;;;60576:13;60569:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60533:272;60641:21;60665:10;:8;:10::i;:::-;60641:34;;60721:1;60703:7;60697:21;:25;:96;;;;;;;;;;;;;;;;;60749:7;60758:19;:8;:17;:19::i;:::-;60732:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60697:96;60690:103;;;60248:568;;;;:::o;58626:852::-;58713:2;58718;58722;57763:41;57784:10;57795:2;57798;57801;57763:20;:41::i;:::-;57754:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;58761:7:::1;;;;;;;;;;;58760:8;58752:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;58799:16;58818:11;:9;:11::i;:::-;58799:30;;58862:12;58848:26;;;;;;;;:::i;:::-;;:10;:26;;;;;;;;:::i;:::-;;;;58840:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;58933:16;58919:30:::0;::::1;;;;;;;:::i;:::-;;:10;:30;;;;;;;;:::i;:::-;;;;58911:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;59079:14;;59059:16;;:34;;;;:::i;:::-;59041:14;;:53;;;;:::i;:::-;59031:6;59015:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:79;;59007:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;55461:1;59178:6;59148:15;:27;59164:10;59148:27;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:47;;59140:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;59281:6;59268:10;:8;:10::i;:::-;:19;;;;:::i;:::-;59255:9;:32;;59247:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;59391:29;59401:10;59413:6;59391:9;:29::i;:::-;59462:6;59431:15;:27;59447:10;59431:27;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;58741:737;58626:852:::0;;;;;;;:::o;45803:164::-;45900:4;45924:18;:25;45943:5;45924:25;;;;;;;;;;;;;;;:35;45950:8;45924:35;;;;;;;;;;;;;;;;;;;;;;;;;45917:42;;45803:164;;;;:::o;57314:170::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57392:12:::1;57377:27;;;;;;;;:::i;:::-;;:11;:9;:11::i;:::-;:27;;;;;;;;:::i;:::-;;;57369:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;57461:15;57441:17;:35;;;;57314:170::o:0;4840:192::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4949:1:::1;4929:22;;:8;:22;;;;4921:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5005:19;5015:8;5005:9;:19::i;:::-;4840:192:::0;:::o;57492:180::-;4171:12;:10;:12::i;:::-;4160:23;;:7;:5;:7::i;:::-;:23;;;4152:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57573:13:::1;57558:28;;;;;;;;:::i;:::-;;:11;:9;:11::i;:::-;:28;;;;;;;;:::i;:::-;;;57550:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;57649:15;57626:20;:38;;;;57492:180::o:0;2728:98::-;2781:7;2808:10;2801:17;;2728:98;:::o;15922:157::-;16007:4;16046:25;16031:40;;;:11;:40;;;;16024:47;;15922:157;;;:::o;47141:111::-;47198:4;47232:12;;47222:7;:22;47215:29;;47141:111;;;:::o;52061:196::-;52203:2;52176:15;:24;52192:7;52176:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52241:7;52237:2;52221:28;;52230:5;52221:28;;;;;;;;;;;;52061:196;;;:::o;47260:104::-;47329:27;47339:2;47343:8;47329:27;;;;;;;;;;;;:9;:27::i;:::-;47260:104;;:::o;49941:2002::-;50056:35;50094:20;50106:7;50094:11;:20::i;:::-;50056:58;;50127:22;50169:13;:18;;;50153:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;50228:12;:10;:12::i;:::-;50204:36;;:20;50216:7;50204:11;:20::i;:::-;:36;;;50153:87;:154;;;;50257:50;50274:13;:18;;;50294:12;:10;:12::i;:::-;50257:16;:50::i;:::-;50153:154;50127:181;;50329:17;50321:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;50444:4;50422:26;;:13;:18;;;:26;;;50414:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;50524:1;50510:16;;:2;:16;;;;50502:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50581:43;50603:4;50609:2;50613:7;50622:1;50581:21;:43::i;:::-;50689:49;50706:1;50710:7;50719:13;:18;;;50689:8;:49::i;:::-;51064:1;51034:12;:18;51047:4;51034:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51108:1;51080:12;:16;51093:2;51080:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51154:2;51126:11;:20;51138:7;51126:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;51216:15;51171:11;:20;51183:7;51171:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;51484:19;51516:1;51506:7;:11;51484:33;;51577:1;51536:43;;:11;:24;51548:11;51536:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;51532:295;;;51604:20;51612:11;51604:7;:20::i;:::-;51600:212;;;51681:13;:18;;;51649:11;:24;51661:11;51649:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;51764:13;:28;;;51722:11;:24;51734:11;51722:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;51600:212;51532:295;51009:829;51874:7;51870:2;51855:27;;51864:4;51855:27;;;;;;;;;;;;51893:42;51914:4;51920:2;51924:7;51933:1;51893:20;:42::i;:::-;50045:1898;;49941:2002;;;:::o;61869:183::-;61950:9;61965:7;:12;;61985:6;61965:31;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61949:47;;;62015:4;62007:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;61938:114;61869:183;;:::o;42806:537::-;42867:21;;:::i;:::-;42909:16;42917:7;42909;:16::i;:::-;42901:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43015:12;43030:7;43015:22;;43010:245;43047:1;43039:4;:9;43010:245;;43077:31;43111:11;:17;43123:4;43111:17;;;;;;;;;;;43077:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43177:1;43151:28;;:9;:14;;;:28;;;43147:93;;43211:9;43204:16;;;;;;43147:93;43058:197;43050:6;;;;;;;;43010:245;;;;43278:57;;;;;;;;;;:::i;:::-;;;;;;;;42806:537;;;;:::o;5040:173::-;5096:16;5115:6;;;;;;;;;;;5096:25;;5141:8;5132:6;;:17;;;;;;;;;;;;;;;;;;5196:8;5165:40;;5186:8;5165:40;;;;;;;;;;;;5085:128;5040:173;:::o;52822:804::-;52977:4;52998:15;:2;:13;;;:15::i;:::-;52994:625;;;53050:2;53034:36;;;53071:12;:10;:12::i;:::-;53085:4;53091:7;53100:5;53034:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53030:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53297:1;53280:6;:13;:18;53276:273;;;53323:61;;;;;;;;;;:::i;:::-;;;;;;;;53276:273;53499:6;53493:13;53484:6;53480:2;53476:15;53469:38;53030:534;53167:45;;;53157:55;;;:6;:55;;;;53150:62;;;;;52994:625;53603:4;53596:11;;52822:804;;;;;;;:::o;56890:116::-;56950:13;56983:15;56976:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56890:116;:::o;344:723::-;400:13;630:1;621:5;:10;617:53;;;648:10;;;;;;;;;;;;;;;;;;;;;617:53;680:12;695:5;680:20;;711:14;736:78;751:1;743:4;:9;736:78;;769:8;;;;;:::i;:::-;;;;800:2;792:10;;;;;:::i;:::-;;;736:78;;;824:19;856:6;846:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;824:39;;874:154;890:1;881:5;:10;874:154;;918:1;908:11;;;;;:::i;:::-;;;985:2;977:5;:10;;;;:::i;:::-;964:2;:24;;;;:::i;:::-;951:39;;934:6;941;934:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1014:2;1005:11;;;;;:::i;:::-;;;874:154;;;1052:6;1038:21;;;;;344:723;;;;:::o;47727:163::-;47850:32;47856:2;47860:8;47870:5;47877:4;47850:5;:32::i;:::-;47727:163;;;:::o;54114:159::-;;;;;:::o;54685:158::-;;;;;:::o;5986:387::-;6046:4;6254:12;6321:7;6309:20;6301:28;;6364:1;6357:4;:8;6350:15;;;5986:387;;;:::o;48149:1538::-;48288:20;48311:12;;48288:35;;48356:1;48342:16;;:2;:16;;;;48334:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48427:1;48415:8;:13;;48407:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48486:61;48516:1;48520:2;48524:12;48538:8;48486:21;:61::i;:::-;48861:8;48825:12;:16;48838:2;48825:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48926:8;48885:12;:16;48898:2;48885:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48985:2;48952:11;:25;48964:12;48952:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;49052:15;49002:11;:25;49014:12;49002:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;49085:20;49108:12;49085:35;;49142:9;49137:415;49157:8;49153:1;:12;49137:415;;;49221:12;49217:2;49196:38;;49213:1;49196:38;;;;;;;;;;;;49257:4;49253:249;;;49320:59;49351:1;49355:2;49359:12;49373:5;49320:22;:59::i;:::-;49286:196;;;;;;;;;;;;:::i;:::-;;;;;;;;;49253:249;49522:14;;;;;;;49167:3;;;;;;;49137:415;;;;49583:12;49568;:27;;;;48800:807;49619:60;49648:1;49652:2;49656:12;49670:8;49619:20;:60::i;:::-;48277:1410;48149:1538;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:149::-;1212:7;1252:66;1245:5;1241:78;1230:89;;1176:149;;;:::o;1331:120::-;1403:23;1420:5;1403:23;:::i;:::-;1396:5;1393:34;1383:62;;1441:1;1438;1431:12;1383:62;1331:120;:::o;1457:137::-;1502:5;1540:6;1527:20;1518:29;;1556:32;1582:5;1556:32;:::i;:::-;1457:137;;;;:::o;1600:327::-;1658:6;1707:2;1695:9;1686:7;1682:23;1678:32;1675:119;;;1713:79;;:::i;:::-;1675:119;1833:1;1858:52;1902:7;1893:6;1882:9;1878:22;1858:52;:::i;:::-;1848:62;;1804:116;1600:327;;;;:::o;1933:90::-;1967:7;2010:5;2003:13;1996:21;1985:32;;1933:90;;;:::o;2029:109::-;2110:21;2125:5;2110:21;:::i;:::-;2105:3;2098:34;2029:109;;:::o;2144:210::-;2231:4;2269:2;2258:9;2254:18;2246:26;;2282:65;2344:1;2333:9;2329:17;2320:6;2282:65;:::i;:::-;2144:210;;;;:::o;2360:99::-;2412:6;2446:5;2440:12;2430:22;;2360:99;;;:::o;2465:169::-;2549:11;2583:6;2578:3;2571:19;2623:4;2618:3;2614:14;2599:29;;2465:169;;;;:::o;2640:307::-;2708:1;2718:113;2732:6;2729:1;2726:13;2718:113;;;2817:1;2812:3;2808:11;2802:18;2798:1;2793:3;2789:11;2782:39;2754:2;2751:1;2747:10;2742:15;;2718:113;;;2849:6;2846:1;2843:13;2840:101;;;2929:1;2920:6;2915:3;2911:16;2904:27;2840:101;2689:258;2640:307;;;:::o;2953:102::-;2994:6;3045:2;3041:7;3036:2;3029:5;3025:14;3021:28;3011:38;;2953:102;;;:::o;3061:364::-;3149:3;3177:39;3210:5;3177:39;:::i;:::-;3232:71;3296:6;3291:3;3232:71;:::i;:::-;3225:78;;3312:52;3357:6;3352:3;3345:4;3338:5;3334:16;3312:52;:::i;:::-;3389:29;3411:6;3389:29;:::i;:::-;3384:3;3380:39;3373:46;;3153:272;3061:364;;;;:::o;3431:313::-;3544:4;3582:2;3571:9;3567:18;3559:26;;3631:9;3625:4;3621:20;3617:1;3606:9;3602:17;3595:47;3659:78;3732:4;3723:6;3659:78;:::i;:::-;3651:86;;3431:313;;;;:::o;3750:77::-;3787:7;3816:5;3805:16;;3750:77;;;:::o;3833:122::-;3906:24;3924:5;3906:24;:::i;:::-;3899:5;3896:35;3886:63;;3945:1;3942;3935:12;3886:63;3833:122;:::o;3961:139::-;4007:5;4045:6;4032:20;4023:29;;4061:33;4088:5;4061:33;:::i;:::-;3961:139;;;;:::o;4106:329::-;4165:6;4214:2;4202:9;4193:7;4189:23;4185:32;4182:119;;;4220:79;;:::i;:::-;4182:119;4340:1;4365:53;4410:7;4401:6;4390:9;4386:22;4365:53;:::i;:::-;4355:63;;4311:117;4106:329;;;;:::o;4441:118::-;4528:24;4546:5;4528:24;:::i;:::-;4523:3;4516:37;4441:118;;:::o;4565:222::-;4658:4;4696:2;4685:9;4681:18;4673:26;;4709:71;4777:1;4766:9;4762:17;4753:6;4709:71;:::i;:::-;4565:222;;;;:::o;4793:474::-;4861:6;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;4793:474;;;;;:::o;5273:118::-;5360:24;5378:5;5360:24;:::i;:::-;5355:3;5348:37;5273:118;;:::o;5397:222::-;5490:4;5528:2;5517:9;5513:18;5505:26;;5541:71;5609:1;5598:9;5594:17;5585:6;5541:71;:::i;:::-;5397:222;;;;:::o;5625:474::-;5693:6;5701;5750:2;5738:9;5729:7;5725:23;5721:32;5718:119;;;5756:79;;:::i;:::-;5718:119;5876:1;5901:53;5946:7;5937:6;5926:9;5922:22;5901:53;:::i;:::-;5891:63;;5847:117;6003:2;6029:53;6074:7;6065:6;6054:9;6050:22;6029:53;:::i;:::-;6019:63;;5974:118;5625:474;;;;;:::o;6105:619::-;6182:6;6190;6198;6247:2;6235:9;6226:7;6222:23;6218:32;6215:119;;;6253:79;;:::i;:::-;6215:119;6373:1;6398:53;6443:7;6434:6;6423:9;6419:22;6398:53;:::i;:::-;6388:63;;6344:117;6500:2;6526:53;6571:7;6562:6;6551:9;6547:22;6526:53;:::i;:::-;6516:63;;6471:118;6628:2;6654:53;6699:7;6690:6;6679:9;6675:22;6654:53;:::i;:::-;6644:63;;6599:118;6105:619;;;;;:::o;6730:86::-;6765:7;6805:4;6798:5;6794:16;6783:27;;6730:86;;;:::o;6822:118::-;6893:22;6909:5;6893:22;:::i;:::-;6886:5;6883:33;6873:61;;6930:1;6927;6920:12;6873:61;6822:118;:::o;6946:135::-;6990:5;7028:6;7015:20;7006:29;;7044:31;7069:5;7044:31;:::i;:::-;6946:135;;;;:::o;7087:77::-;7124:7;7153:5;7142:16;;7087:77;;;:::o;7170:122::-;7243:24;7261:5;7243:24;:::i;:::-;7236:5;7233:35;7223:63;;7282:1;7279;7272:12;7223:63;7170:122;:::o;7298:139::-;7344:5;7382:6;7369:20;7360:29;;7398:33;7425:5;7398:33;:::i;:::-;7298:139;;;;:::o;7443:761::-;7527:6;7535;7543;7551;7600:3;7588:9;7579:7;7575:23;7571:33;7568:120;;;7607:79;;:::i;:::-;7568:120;7727:1;7752:53;7797:7;7788:6;7777:9;7773:22;7752:53;:::i;:::-;7742:63;;7698:117;7854:2;7880:51;7923:7;7914:6;7903:9;7899:22;7880:51;:::i;:::-;7870:61;;7825:116;7980:2;8006:53;8051:7;8042:6;8031:9;8027:22;8006:53;:::i;:::-;7996:63;;7951:118;8108:2;8134:53;8179:7;8170:6;8159:9;8155:22;8134:53;:::i;:::-;8124:63;;8079:118;7443:761;;;;;;;:::o;8210:117::-;8319:1;8316;8309:12;8333:117;8442:1;8439;8432:12;8456:180;8504:77;8501:1;8494:88;8601:4;8598:1;8591:15;8625:4;8622:1;8615:15;8642:281;8725:27;8747:4;8725:27;:::i;:::-;8717:6;8713:40;8855:6;8843:10;8840:22;8819:18;8807:10;8804:34;8801:62;8798:88;;;8866:18;;:::i;:::-;8798:88;8906:10;8902:2;8895:22;8685:238;8642:281;;:::o;8929:129::-;8963:6;8990:20;;:::i;:::-;8980:30;;9019:33;9047:4;9039:6;9019:33;:::i;:::-;8929:129;;;:::o;9064:308::-;9126:4;9216:18;9208:6;9205:30;9202:56;;;9238:18;;:::i;:::-;9202:56;9276:29;9298:6;9276:29;:::i;:::-;9268:37;;9360:4;9354;9350:15;9342:23;;9064:308;;;:::o;9378:154::-;9462:6;9457:3;9452;9439:30;9524:1;9515:6;9510:3;9506:16;9499:27;9378:154;;;:::o;9538:412::-;9616:5;9641:66;9657:49;9699:6;9657:49;:::i;:::-;9641:66;:::i;:::-;9632:75;;9730:6;9723:5;9716:21;9768:4;9761:5;9757:16;9806:3;9797:6;9792:3;9788:16;9785:25;9782:112;;;9813:79;;:::i;:::-;9782:112;9903:41;9937:6;9932:3;9927;9903:41;:::i;:::-;9622:328;9538:412;;;;;:::o;9970:340::-;10026:5;10075:3;10068:4;10060:6;10056:17;10052:27;10042:122;;10083:79;;:::i;:::-;10042:122;10200:6;10187:20;10225:79;10300:3;10292:6;10285:4;10277:6;10273:17;10225:79;:::i;:::-;10216:88;;10032:278;9970:340;;;;:::o;10316:509::-;10385:6;10434:2;10422:9;10413:7;10409:23;10405:32;10402:119;;;10440:79;;:::i;:::-;10402:119;10588:1;10577:9;10573:17;10560:31;10618:18;10610:6;10607:30;10604:117;;;10640:79;;:::i;:::-;10604:117;10745:63;10800:7;10791:6;10780:9;10776:22;10745:63;:::i;:::-;10735:73;;10531:287;10316:509;;;;:::o;10831:180::-;10879:77;10876:1;10869:88;10976:4;10973:1;10966:15;11000:4;10997:1;10990:15;11017:115;11100:1;11093:5;11090:12;11080:46;;11106:18;;:::i;:::-;11080:46;11017:115;:::o;11138:131::-;11185:7;11214:5;11203:16;;11220:43;11257:5;11220:43;:::i;:::-;11138:131;;;:::o;11275:::-;11333:9;11366:34;11394:5;11366:34;:::i;:::-;11353:47;;11275:131;;;:::o;11412:147::-;11507:45;11546:5;11507:45;:::i;:::-;11502:3;11495:58;11412:147;;:::o;11565:238::-;11666:4;11704:2;11693:9;11689:18;11681:26;;11717:79;11793:1;11782:9;11778:17;11769:6;11717:79;:::i;:::-;11565:238;;;;:::o;11809:116::-;11879:21;11894:5;11879:21;:::i;:::-;11872:5;11869:32;11859:60;;11915:1;11912;11905:12;11859:60;11809:116;:::o;11931:133::-;11974:5;12012:6;11999:20;11990:29;;12028:30;12052:5;12028:30;:::i;:::-;11931:133;;;;:::o;12070:468::-;12135:6;12143;12192:2;12180:9;12171:7;12167:23;12163:32;12160:119;;;12198:79;;:::i;:::-;12160:119;12318:1;12343:53;12388:7;12379:6;12368:9;12364:22;12343:53;:::i;:::-;12333:63;;12289:117;12445:2;12471:50;12513:7;12504:6;12493:9;12489:22;12471:50;:::i;:::-;12461:60;;12416:115;12070:468;;;;;:::o;12544:307::-;12605:4;12695:18;12687:6;12684:30;12681:56;;;12717:18;;:::i;:::-;12681:56;12755:29;12777:6;12755:29;:::i;:::-;12747:37;;12839:4;12833;12829:15;12821:23;;12544:307;;;:::o;12857:410::-;12934:5;12959:65;12975:48;13016:6;12975:48;:::i;:::-;12959:65;:::i;:::-;12950:74;;13047:6;13040:5;13033:21;13085:4;13078:5;13074:16;13123:3;13114:6;13109:3;13105:16;13102:25;13099:112;;;13130:79;;:::i;:::-;13099:112;13220:41;13254:6;13249:3;13244;13220:41;:::i;:::-;12940:327;12857:410;;;;;:::o;13286:338::-;13341:5;13390:3;13383:4;13375:6;13371:17;13367:27;13357:122;;13398:79;;:::i;:::-;13357:122;13515:6;13502:20;13540:78;13614:3;13606:6;13599:4;13591:6;13587:17;13540:78;:::i;:::-;13531:87;;13347:277;13286:338;;;;:::o;13630:943::-;13725:6;13733;13741;13749;13798:3;13786:9;13777:7;13773:23;13769:33;13766:120;;;13805:79;;:::i;:::-;13766:120;13925:1;13950:53;13995:7;13986:6;13975:9;13971:22;13950:53;:::i;:::-;13940:63;;13896:117;14052:2;14078:53;14123:7;14114:6;14103:9;14099:22;14078:53;:::i;:::-;14068:63;;14023:118;14180:2;14206:53;14251:7;14242:6;14231:9;14227:22;14206:53;:::i;:::-;14196:63;;14151:118;14336:2;14325:9;14321:18;14308:32;14367:18;14359:6;14356:30;14353:117;;;14389:79;;:::i;:::-;14353:117;14494:62;14548:7;14539:6;14528:9;14524:22;14494:62;:::i;:::-;14484:72;;14279:287;13630:943;;;;;;;:::o;14579:761::-;14663:6;14671;14679;14687;14736:3;14724:9;14715:7;14711:23;14707:33;14704:120;;;14743:79;;:::i;:::-;14704:120;14863:1;14888:53;14933:7;14924:6;14913:9;14909:22;14888:53;:::i;:::-;14878:63;;14834:117;14990:2;15016:51;15059:7;15050:6;15039:9;15035:22;15016:51;:::i;:::-;15006:61;;14961:116;15116:2;15142:53;15187:7;15178:6;15167:9;15163:22;15142:53;:::i;:::-;15132:63;;15087:118;15244:2;15270:53;15315:7;15306:6;15295:9;15291:22;15270:53;:::i;:::-;15260:63;;15215:118;14579:761;;;;;;;:::o;15346:474::-;15414:6;15422;15471:2;15459:9;15450:7;15446:23;15442:32;15439:119;;;15477:79;;:::i;:::-;15439:119;15597:1;15622:53;15667:7;15658:6;15647:9;15643:22;15622:53;:::i;:::-;15612:63;;15568:117;15724:2;15750:53;15795:7;15786:6;15775:9;15771:22;15750:53;:::i;:::-;15740:63;;15695:118;15346:474;;;;;:::o;15826:182::-;15966:34;15962:1;15954:6;15950:14;15943:58;15826:182;:::o;16014:366::-;16156:3;16177:67;16241:2;16236:3;16177:67;:::i;:::-;16170:74;;16253:93;16342:3;16253:93;:::i;:::-;16371:2;16366:3;16362:12;16355:19;;16014:366;;;:::o;16386:419::-;16552:4;16590:2;16579:9;16575:18;16567:26;;16639:9;16633:4;16629:20;16625:1;16614:9;16610:17;16603:47;16667:131;16793:4;16667:131;:::i;:::-;16659:139;;16386:419;;;:::o;16811:180::-;16859:77;16856:1;16849:88;16956:4;16953:1;16946:15;16980:4;16977:1;16970:15;16997:320;17041:6;17078:1;17072:4;17068:12;17058:22;;17125:1;17119:4;17115:12;17146:18;17136:81;;17202:4;17194:6;17190:17;17180:27;;17136:81;17264:2;17256:6;17253:14;17233:18;17230:38;17227:84;;;17283:18;;:::i;:::-;17227:84;17048:269;16997:320;;;:::o;17323:232::-;17463:34;17459:1;17451:6;17447:14;17440:58;17532:15;17527:2;17519:6;17515:15;17508:40;17323:232;:::o;17561:366::-;17703:3;17724:67;17788:2;17783:3;17724:67;:::i;:::-;17717:74;;17800:93;17889:3;17800:93;:::i;:::-;17918:2;17913:3;17909:12;17902:19;;17561:366;;;:::o;17933:419::-;18099:4;18137:2;18126:9;18122:18;18114:26;;18186:9;18180:4;18176:20;18172:1;18161:9;18157:17;18150:47;18214:131;18340:4;18214:131;:::i;:::-;18206:139;;17933:419;;;:::o;18358:221::-;18498:34;18494:1;18486:6;18482:14;18475:58;18567:4;18562:2;18554:6;18550:15;18543:29;18358:221;:::o;18585:366::-;18727:3;18748:67;18812:2;18807:3;18748:67;:::i;:::-;18741:74;;18824:93;18913:3;18824:93;:::i;:::-;18942:2;18937:3;18933:12;18926:19;;18585:366;;;:::o;18957:419::-;19123:4;19161:2;19150:9;19146:18;19138:26;;19210:9;19204:4;19200:20;19196:1;19185:9;19181:17;19174:47;19238:131;19364:4;19238:131;:::i;:::-;19230:139;;18957:419;;;:::o;19382:244::-;19522:34;19518:1;19510:6;19506:14;19499:58;19591:27;19586:2;19578:6;19574:15;19567:52;19382:244;:::o;19632:366::-;19774:3;19795:67;19859:2;19854:3;19795:67;:::i;:::-;19788:74;;19871:93;19960:3;19871:93;:::i;:::-;19989:2;19984:3;19980:12;19973:19;;19632:366;;;:::o;20004:419::-;20170:4;20208:2;20197:9;20193:18;20185:26;;20257:9;20251:4;20247:20;20243:1;20232:9;20228:17;20221:47;20285:131;20411:4;20285:131;:::i;:::-;20277:139;;20004:419;;;:::o;20429:180::-;20477:77;20474:1;20467:88;20574:4;20571:1;20564:15;20598:4;20595:1;20588:15;20615:305;20655:3;20674:20;20692:1;20674:20;:::i;:::-;20669:25;;20708:20;20726:1;20708:20;:::i;:::-;20703:25;;20862:1;20794:66;20790:74;20787:1;20784:81;20781:107;;;20868:18;;:::i;:::-;20781:107;20912:1;20909;20905:9;20898:16;;20615:305;;;;:::o;20926:226::-;21066:34;21062:1;21054:6;21050:14;21043:58;21135:9;21130:2;21122:6;21118:15;21111:34;20926:226;:::o;21158:366::-;21300:3;21321:67;21385:2;21380:3;21321:67;:::i;:::-;21314:74;;21397:93;21486:3;21397:93;:::i;:::-;21515:2;21510:3;21506:12;21499:19;;21158:366;;;:::o;21530:419::-;21696:4;21734:2;21723:9;21719:18;21711:26;;21783:9;21777:4;21773:20;21769:1;21758:9;21754:17;21747:47;21811:131;21937:4;21811:131;:::i;:::-;21803:139;;21530:419;;;:::o;21955:221::-;22095:34;22091:1;22083:6;22079:14;22072:58;22164:4;22159:2;22151:6;22147:15;22140:29;21955:221;:::o;22182:366::-;22324:3;22345:67;22409:2;22404:3;22345:67;:::i;:::-;22338:74;;22421:93;22510:3;22421:93;:::i;:::-;22539:2;22534:3;22530:12;22523:19;;22182:366;;;:::o;22554:419::-;22720:4;22758:2;22747:9;22743:18;22735:26;;22807:9;22801:4;22797:20;22793:1;22782:9;22778:17;22771:47;22835:131;22961:4;22835:131;:::i;:::-;22827:139;;22554:419;;;:::o;22979:233::-;23119:34;23115:1;23107:6;23103:14;23096:58;23188:16;23183:2;23175:6;23171:15;23164:41;22979:233;:::o;23218:366::-;23360:3;23381:67;23445:2;23440:3;23381:67;:::i;:::-;23374:74;;23457:93;23546:3;23457:93;:::i;:::-;23575:2;23570:3;23566:12;23559:19;;23218:366;;;:::o;23590:419::-;23756:4;23794:2;23783:9;23779:18;23771:26;;23843:9;23837:4;23833:20;23829:1;23818:9;23814:17;23807:47;23871:131;23997:4;23871:131;:::i;:::-;23863:139;;23590:419;;;:::o;24015:94::-;24048:8;24096:5;24092:2;24088:14;24067:35;;24015:94;;;:::o;24115:::-;24154:7;24183:20;24197:5;24183:20;:::i;:::-;24172:31;;24115:94;;;:::o;24215:100::-;24254:7;24283:26;24303:5;24283:26;:::i;:::-;24272:37;;24215:100;;;:::o;24321:157::-;24426:45;24446:24;24464:5;24446:24;:::i;:::-;24426:45;:::i;:::-;24421:3;24414:58;24321:157;;:::o;24484:397::-;24624:3;24639:75;24710:3;24701:6;24639:75;:::i;:::-;24739:2;24734:3;24730:12;24723:19;;24752:75;24823:3;24814:6;24752:75;:::i;:::-;24852:2;24847:3;24843:12;24836:19;;24872:3;24865:10;;24484:397;;;;;:::o;24887:148::-;24989:11;25026:3;25011:18;;24887:148;;;;:::o;25041:214::-;25181:66;25177:1;25169:6;25165:14;25158:90;25041:214;:::o;25261:402::-;25421:3;25442:85;25524:2;25519:3;25442:85;:::i;:::-;25435:92;;25536:93;25625:3;25536:93;:::i;:::-;25654:2;25649:3;25645:12;25638:19;;25261:402;;;:::o;25669:79::-;25708:7;25737:5;25726:16;;25669:79;;;:::o;25754:157::-;25859:45;25879:24;25897:5;25879:24;:::i;:::-;25859:45;:::i;:::-;25854:3;25847:58;25754:157;;:::o;25917:522::-;26130:3;26152:148;26296:3;26152:148;:::i;:::-;26145:155;;26310:75;26381:3;26372:6;26310:75;:::i;:::-;26410:2;26405:3;26401:12;26394:19;;26430:3;26423:10;;25917:522;;;;:::o;26445:118::-;26532:24;26550:5;26532:24;:::i;:::-;26527:3;26520:37;26445:118;;:::o;26569:112::-;26652:22;26668:5;26652:22;:::i;:::-;26647:3;26640:35;26569:112;;:::o;26687:545::-;26860:4;26898:3;26887:9;26883:19;26875:27;;26912:71;26980:1;26969:9;26965:17;26956:6;26912:71;:::i;:::-;26993:68;27057:2;27046:9;27042:18;27033:6;26993:68;:::i;:::-;27071:72;27139:2;27128:9;27124:18;27115:6;27071:72;:::i;:::-;27153;27221:2;27210:9;27206:18;27197:6;27153:72;:::i;:::-;26687:545;;;;;;;:::o;27238:221::-;27378:34;27374:1;27366:6;27362:14;27355:58;27447:4;27442:2;27434:6;27430:15;27423:29;27238:221;:::o;27465:366::-;27607:3;27628:67;27692:2;27687:3;27628:67;:::i;:::-;27621:74;;27704:93;27793:3;27704:93;:::i;:::-;27822:2;27817:3;27813:12;27806:19;;27465:366;;;:::o;27837:419::-;28003:4;28041:2;28030:9;28026:18;28018:26;;28090:9;28084:4;28080:20;28076:1;28065:9;28061:17;28054:47;28118:131;28244:4;28118:131;:::i;:::-;28110:139;;27837:419;;;:::o;28262:191::-;28302:4;28322:20;28340:1;28322:20;:::i;:::-;28317:25;;28356:20;28374:1;28356:20;:::i;:::-;28351:25;;28395:1;28392;28389:8;28386:34;;;28400:18;;:::i;:::-;28386:34;28445:1;28442;28438:9;28430:17;;28262:191;;;;:::o;28459:222::-;28599:34;28595:1;28587:6;28583:14;28576:58;28668:5;28663:2;28655:6;28651:15;28644:30;28459:222;:::o;28687:366::-;28829:3;28850:67;28914:2;28909:3;28850:67;:::i;:::-;28843:74;;28926:93;29015:3;28926:93;:::i;:::-;29044:2;29039:3;29035:12;29028:19;;28687:366;;;:::o;29059:419::-;29225:4;29263:2;29252:9;29248:18;29240:26;;29312:9;29306:4;29302:20;29298:1;29287:9;29283:17;29276:47;29340:131;29466:4;29340:131;:::i;:::-;29332:139;;29059:419;;;:::o;29484:230::-;29624:34;29620:1;29612:6;29608:14;29601:58;29693:13;29688:2;29680:6;29676:15;29669:38;29484:230;:::o;29720:366::-;29862:3;29883:67;29947:2;29942:3;29883:67;:::i;:::-;29876:74;;29959:93;30048:3;29959:93;:::i;:::-;30077:2;30072:3;30068:12;30061:19;;29720:366;;;:::o;30092:419::-;30258:4;30296:2;30285:9;30281:18;30273:26;;30345:9;30339:4;30335:20;30331:1;30320:9;30316:17;30309:47;30373:131;30499:4;30373:131;:::i;:::-;30365:139;;30092:419;;;:::o;30517:231::-;30657:34;30653:1;30645:6;30641:14;30634:58;30726:14;30721:2;30713:6;30709:15;30702:39;30517:231;:::o;30754:366::-;30896:3;30917:67;30981:2;30976:3;30917:67;:::i;:::-;30910:74;;30993:93;31082:3;30993:93;:::i;:::-;31111:2;31106:3;31102:12;31095:19;;30754:366;;;:::o;31126:419::-;31292:4;31330:2;31319:9;31315:18;31307:26;;31379:9;31373:4;31369:20;31365:1;31354:9;31350:17;31343:47;31407:131;31533:4;31407:131;:::i;:::-;31399:139;;31126:419;;;:::o;31551:176::-;31691:28;31687:1;31679:6;31675:14;31668:52;31551:176;:::o;31733:366::-;31875:3;31896:67;31960:2;31955:3;31896:67;:::i;:::-;31889:74;;31972:93;32061:3;31972:93;:::i;:::-;32090:2;32085:3;32081:12;32074:19;;31733:366;;;:::o;32105:419::-;32271:4;32309:2;32298:9;32294:18;32286:26;;32358:9;32352:4;32348:20;32344:1;32333:9;32329:17;32322:47;32386:131;32512:4;32386:131;:::i;:::-;32378:139;;32105:419;;;:::o;32530:224::-;32670:34;32666:1;32658:6;32654:14;32647:58;32739:7;32734:2;32726:6;32722:15;32715:32;32530:224;:::o;32760:366::-;32902:3;32923:67;32987:2;32982:3;32923:67;:::i;:::-;32916:74;;32999:93;33088:3;32999:93;:::i;:::-;33117:2;33112:3;33108:12;33101:19;;32760:366;;;:::o;33132:419::-;33298:4;33336:2;33325:9;33321:18;33313:26;;33385:9;33379:4;33375:20;33371:1;33360:9;33356:17;33349:47;33413:131;33539:4;33413:131;:::i;:::-;33405:139;;33132:419;;;:::o;33557:165::-;33697:17;33693:1;33685:6;33681:14;33674:41;33557:165;:::o;33728:366::-;33870:3;33891:67;33955:2;33950:3;33891:67;:::i;:::-;33884:74;;33967:93;34056:3;33967:93;:::i;:::-;34085:2;34080:3;34076:12;34069:19;;33728:366;;;:::o;34100:419::-;34266:4;34304:2;34293:9;34289:18;34281:26;;34353:9;34347:4;34343:20;34339:1;34328:9;34324:17;34317:47;34381:131;34507:4;34381:131;:::i;:::-;34373:139;;34100:419;;;:::o;34525:178::-;34665:30;34661:1;34653:6;34649:14;34642:54;34525:178;:::o;34709:366::-;34851:3;34872:67;34936:2;34931:3;34872:67;:::i;:::-;34865:74;;34948:93;35037:3;34948:93;:::i;:::-;35066:2;35061:3;35057:12;35050:19;;34709:366;;;:::o;35081:419::-;35247:4;35285:2;35274:9;35270:18;35262:26;;35334:9;35328:4;35324:20;35320:1;35309:9;35305:17;35298:47;35362:131;35488:4;35362:131;:::i;:::-;35354:139;;35081:419;;;:::o;35506:180::-;35646:32;35642:1;35634:6;35630:14;35623:56;35506:180;:::o;35692:366::-;35834:3;35855:67;35919:2;35914:3;35855:67;:::i;:::-;35848:74;;35931:93;36020:3;35931:93;:::i;:::-;36049:2;36044:3;36040:12;36033:19;;35692:366;;;:::o;36064:419::-;36230:4;36268:2;36257:9;36253:18;36245:26;;36317:9;36311:4;36307:20;36303:1;36292:9;36288:17;36281:47;36345:131;36471:4;36345:131;:::i;:::-;36337:139;;36064:419;;;:::o;36489:223::-;36629:34;36625:1;36617:6;36613:14;36606:58;36698:6;36693:2;36685:6;36681:15;36674:31;36489:223;:::o;36718:366::-;36860:3;36881:67;36945:2;36940:3;36881:67;:::i;:::-;36874:74;;36957:93;37046:3;36957:93;:::i;:::-;37075:2;37070:3;37066:12;37059:19;;36718:366;;;:::o;37090:419::-;37256:4;37294:2;37283:9;37279:18;37271:26;;37343:9;37337:4;37333:20;37329:1;37318:9;37314:17;37307:47;37371:131;37497:4;37371:131;:::i;:::-;37363:139;;37090:419;;;:::o;37515:348::-;37555:7;37578:20;37596:1;37578:20;:::i;:::-;37573:25;;37612:20;37630:1;37612:20;:::i;:::-;37607:25;;37800:1;37732:66;37728:74;37725:1;37722:81;37717:1;37710:9;37703:17;37699:105;37696:131;;;37807:18;;:::i;:::-;37696:131;37855:1;37852;37848:9;37837:20;;37515:348;;;;:::o;37869:305::-;38009:34;38005:1;37997:6;37993:14;37986:58;38078:34;38073:2;38065:6;38061:15;38054:59;38147:19;38142:2;38134:6;38130:15;38123:44;37869:305;:::o;38180:366::-;38322:3;38343:67;38407:2;38402:3;38343:67;:::i;:::-;38336:74;;38419:93;38508:3;38419:93;:::i;:::-;38537:2;38532:3;38528:12;38521:19;;38180:366;;;:::o;38552:419::-;38718:4;38756:2;38745:9;38741:18;38733:26;;38805:9;38799:4;38795:20;38791:1;38780:9;38776:17;38769:47;38833:131;38959:4;38833:131;:::i;:::-;38825:139;;38552:419;;;:::o;38977:238::-;39117:34;39113:1;39105:6;39101:14;39094:58;39186:21;39181:2;39173:6;39169:15;39162:46;38977:238;:::o;39221:366::-;39363:3;39384:67;39448:2;39443:3;39384:67;:::i;:::-;39377:74;;39460:93;39549:3;39460:93;:::i;:::-;39578:2;39573:3;39569:12;39562:19;;39221:366;;;:::o;39593:419::-;39759:4;39797:2;39786:9;39782:18;39774:26;;39846:9;39840:4;39836:20;39832:1;39821:9;39817:17;39810:47;39874:131;40000:4;39874:131;:::i;:::-;39866:139;;39593:419;;;:::o;40018:234::-;40158:34;40154:1;40146:6;40142:14;40135:58;40227:17;40222:2;40214:6;40210:15;40203:42;40018:234;:::o;40258:366::-;40400:3;40421:67;40485:2;40480:3;40421:67;:::i;:::-;40414:74;;40497:93;40586:3;40497:93;:::i;:::-;40615:2;40610:3;40606:12;40599:19;;40258:366;;;:::o;40630:419::-;40796:4;40834:2;40823:9;40819:18;40811:26;;40883:9;40877:4;40873:20;40869:1;40858:9;40854:17;40847:47;40911:131;41037:4;40911:131;:::i;:::-;40903:139;;40630:419;;;:::o;41055:377::-;41161:3;41189:39;41222:5;41189:39;:::i;:::-;41244:89;41326:6;41321:3;41244:89;:::i;:::-;41237:96;;41342:52;41387:6;41382:3;41375:4;41368:5;41364:16;41342:52;:::i;:::-;41419:6;41414:3;41410:16;41403:23;;41165:267;41055:377;;;;:::o;41438:155::-;41578:7;41574:1;41566:6;41562:14;41555:31;41438:155;:::o;41599:400::-;41759:3;41780:84;41862:1;41857:3;41780:84;:::i;:::-;41773:91;;41873:93;41962:3;41873:93;:::i;:::-;41991:1;41986:3;41982:11;41975:18;;41599:400;;;:::o;42005:701::-;42286:3;42308:95;42399:3;42390:6;42308:95;:::i;:::-;42301:102;;42420:95;42511:3;42502:6;42420:95;:::i;:::-;42413:102;;42532:148;42676:3;42532:148;:::i;:::-;42525:155;;42697:3;42690:10;;42005:701;;;;;:::o;42712:167::-;42852:19;42848:1;42840:6;42836:14;42829:43;42712:167;:::o;42885:366::-;43027:3;43048:67;43112:2;43107:3;43048:67;:::i;:::-;43041:74;;43124:93;43213:3;43124:93;:::i;:::-;43242:2;43237:3;43233:12;43226:19;;42885:366;;;:::o;43257:419::-;43423:4;43461:2;43450:9;43446:18;43438:26;;43510:9;43504:4;43500:20;43496:1;43485:9;43481:17;43474:47;43538:131;43664:4;43538:131;:::i;:::-;43530:139;;43257:419;;;:::o;43682:171::-;43822:23;43818:1;43810:6;43806:14;43799:47;43682:171;:::o;43859:366::-;44001:3;44022:67;44086:2;44081:3;44022:67;:::i;:::-;44015:74;;44098:93;44187:3;44098:93;:::i;:::-;44216:2;44211:3;44207:12;44200:19;;43859:366;;;:::o;44231:419::-;44397:4;44435:2;44424:9;44420:18;44412:26;;44484:9;44478:4;44474:20;44470:1;44459:9;44455:17;44448:47;44512:131;44638:4;44512:131;:::i;:::-;44504:139;;44231:419;;;:::o;44656:229::-;44796:34;44792:1;44784:6;44780:14;44773:58;44865:12;44860:2;44852:6;44848:15;44841:37;44656:229;:::o;44891:366::-;45033:3;45054:67;45118:2;45113:3;45054:67;:::i;:::-;45047:74;;45130:93;45219:3;45130:93;:::i;:::-;45248:2;45243:3;45239:12;45232:19;;44891:366;;;:::o;45263:419::-;45429:4;45467:2;45456:9;45452:18;45444:26;;45516:9;45510:4;45506:20;45502:1;45491:9;45487:17;45480:47;45544:131;45670:4;45544:131;:::i;:::-;45536:139;;45263:419;;;:::o;45688:302::-;45828:34;45824:1;45816:6;45812:14;45805:58;45897:34;45892:2;45884:6;45880:15;45873:59;45966:16;45961:2;45953:6;45949:15;45942:41;45688:302;:::o;45996:366::-;46138:3;46159:67;46223:2;46218:3;46159:67;:::i;:::-;46152:74;;46235:93;46324:3;46235:93;:::i;:::-;46353:2;46348:3;46344:12;46337:19;;45996:366;;;:::o;46368:419::-;46534:4;46572:2;46561:9;46557:18;46549:26;;46621:9;46615:4;46611:20;46607:1;46596:9;46592:17;46585:47;46649:131;46775:4;46649:131;:::i;:::-;46641:139;;46368:419;;;:::o;46793:171::-;46933:23;46929:1;46921:6;46917:14;46910:47;46793:171;:::o;46970:366::-;47112:3;47133:67;47197:2;47192:3;47133:67;:::i;:::-;47126:74;;47209:93;47298:3;47209:93;:::i;:::-;47327:2;47322:3;47318:12;47311:19;;46970:366;;;:::o;47342:419::-;47508:4;47546:2;47535:9;47531:18;47523:26;;47595:9;47589:4;47585:20;47581:1;47570:9;47566:17;47559:47;47623:131;47749:4;47623:131;:::i;:::-;47615:139;;47342:419;;;:::o;47767:225::-;47907:34;47903:1;47895:6;47891:14;47884:58;47976:8;47971:2;47963:6;47959:15;47952:33;47767:225;:::o;47998:366::-;48140:3;48161:67;48225:2;48220:3;48161:67;:::i;:::-;48154:74;;48237:93;48326:3;48237:93;:::i;:::-;48355:2;48350:3;48346:12;48339:19;;47998:366;;;:::o;48370:419::-;48536:4;48574:2;48563:9;48559:18;48551:26;;48623:9;48617:4;48613:20;48609:1;48598:9;48594:17;48587:47;48651:131;48777:4;48651:131;:::i;:::-;48643:139;;48370:419;;;:::o;48795:174::-;48935:26;48931:1;48923:6;48919:14;48912:50;48795:174;:::o;48975:366::-;49117:3;49138:67;49202:2;49197:3;49138:67;:::i;:::-;49131:74;;49214:93;49303:3;49214:93;:::i;:::-;49332:2;49327:3;49323:12;49316:19;;48975:366;;;:::o;49347:419::-;49513:4;49551:2;49540:9;49536:18;49528:26;;49600:9;49594:4;49590:20;49586:1;49575:9;49571:17;49564:47;49628:131;49754:4;49628:131;:::i;:::-;49620:139;;49347:419;;;:::o;49772:237::-;49912:34;49908:1;49900:6;49896:14;49889:58;49981:20;49976:2;49968:6;49964:15;49957:45;49772:237;:::o;50015:366::-;50157:3;50178:67;50242:2;50237:3;50178:67;:::i;:::-;50171:74;;50254:93;50343:3;50254:93;:::i;:::-;50372:2;50367:3;50363:12;50356:19;;50015:366;;;:::o;50387:419::-;50553:4;50591:2;50580:9;50576:18;50568:26;;50640:9;50634:4;50630:20;50626:1;50615:9;50611:17;50604:47;50668:131;50794:4;50668:131;:::i;:::-;50660:139;;50387:419;;;:::o;50812:225::-;50952:34;50948:1;50940:6;50936:14;50929:58;51021:8;51016:2;51008:6;51004:15;50997:33;50812:225;:::o;51043:366::-;51185:3;51206:67;51270:2;51265:3;51206:67;:::i;:::-;51199:74;;51282:93;51371:3;51282:93;:::i;:::-;51400:2;51395:3;51391:12;51384:19;;51043:366;;;:::o;51415:419::-;51581:4;51619:2;51608:9;51604:18;51596:26;;51668:9;51662:4;51658:20;51654:1;51643:9;51639:17;51632:47;51696:131;51822:4;51696:131;:::i;:::-;51688:139;;51415:419;;;:::o;51840:224::-;51980:34;51976:1;51968:6;51964:14;51957:58;52049:7;52044:2;52036:6;52032:15;52025:32;51840:224;:::o;52070:366::-;52212:3;52233:67;52297:2;52292:3;52233:67;:::i;:::-;52226:74;;52309:93;52398:3;52309:93;:::i;:::-;52427:2;52422:3;52418:12;52411:19;;52070:366;;;:::o;52442:419::-;52608:4;52646:2;52635:9;52631:18;52623:26;;52695:9;52689:4;52685:20;52681:1;52670:9;52666:17;52659:47;52723:131;52849:4;52723:131;:::i;:::-;52715:139;;52442:419;;;:::o;52867:147::-;52968:11;53005:3;52990:18;;52867:147;;;;:::o;53020:114::-;;:::o;53140:398::-;53299:3;53320:83;53401:1;53396:3;53320:83;:::i;:::-;53313:90;;53412:93;53501:3;53412:93;:::i;:::-;53530:1;53525:3;53521:11;53514:18;;53140:398;;;:::o;53544:379::-;53728:3;53750:147;53893:3;53750:147;:::i;:::-;53743:154;;53914:3;53907:10;;53544:379;;;:::o;53929:170::-;54069:22;54065:1;54057:6;54053:14;54046:46;53929:170;:::o;54105:366::-;54247:3;54268:67;54332:2;54327:3;54268:67;:::i;:::-;54261:74;;54344:93;54433:3;54344:93;:::i;:::-;54462:2;54457:3;54453:12;54446:19;;54105:366;;;:::o;54477:419::-;54643:4;54681:2;54670:9;54666:18;54658:26;;54730:9;54724:4;54720:20;54716:1;54705:9;54701:17;54694:47;54758:131;54884:4;54758:131;:::i;:::-;54750:139;;54477:419;;;:::o;54902:229::-;55042:34;55038:1;55030:6;55026:14;55019:58;55111:12;55106:2;55098:6;55094:15;55087:37;54902:229;:::o;55137:366::-;55279:3;55300:67;55364:2;55359:3;55300:67;:::i;:::-;55293:74;;55376:93;55465:3;55376:93;:::i;:::-;55494:2;55489:3;55485:12;55478:19;;55137:366;;;:::o;55509:419::-;55675:4;55713:2;55702:9;55698:18;55690:26;;55762:9;55756:4;55752:20;55748:1;55737:9;55733:17;55726:47;55790:131;55916:4;55790:131;:::i;:::-;55782:139;;55509:419;;;:::o;55934:234::-;56074:34;56070:1;56062:6;56058:14;56051:58;56143:17;56138:2;56130:6;56126:15;56119:42;55934:234;:::o;56174:366::-;56316:3;56337:67;56401:2;56396:3;56337:67;:::i;:::-;56330:74;;56413:93;56502:3;56413:93;:::i;:::-;56531:2;56526:3;56522:12;56515:19;;56174:366;;;:::o;56546:419::-;56712:4;56750:2;56739:9;56735:18;56727:26;;56799:9;56793:4;56789:20;56785:1;56774:9;56770:17;56763:47;56827:131;56953:4;56827:131;:::i;:::-;56819:139;;56546:419;;;:::o;56971:98::-;57022:6;57056:5;57050:12;57040:22;;56971:98;;;:::o;57075:168::-;57158:11;57192:6;57187:3;57180:19;57232:4;57227:3;57223:14;57208:29;;57075:168;;;;:::o;57249:360::-;57335:3;57363:38;57395:5;57363:38;:::i;:::-;57417:70;57480:6;57475:3;57417:70;:::i;:::-;57410:77;;57496:52;57541:6;57536:3;57529:4;57522:5;57518:16;57496:52;:::i;:::-;57573:29;57595:6;57573:29;:::i;:::-;57568:3;57564:39;57557:46;;57339:270;57249:360;;;;:::o;57615:640::-;57810:4;57848:3;57837:9;57833:19;57825:27;;57862:71;57930:1;57919:9;57915:17;57906:6;57862:71;:::i;:::-;57943:72;58011:2;58000:9;57996:18;57987:6;57943:72;:::i;:::-;58025;58093:2;58082:9;58078:18;58069:6;58025:72;:::i;:::-;58144:9;58138:4;58134:20;58129:2;58118:9;58114:18;58107:48;58172:76;58243:4;58234:6;58172:76;:::i;:::-;58164:84;;57615:640;;;;;;;:::o;58261:141::-;58317:5;58348:6;58342:13;58333:22;;58364:32;58390:5;58364:32;:::i;:::-;58261:141;;;;:::o;58408:349::-;58477:6;58526:2;58514:9;58505:7;58501:23;58497:32;58494:119;;;58532:79;;:::i;:::-;58494:119;58652:1;58677:63;58732:7;58723:6;58712:9;58708:22;58677:63;:::i;:::-;58667:73;;58623:127;58408:349;;;;:::o;58763:233::-;58802:3;58825:24;58843:5;58825:24;:::i;:::-;58816:33;;58871:66;58864:5;58861:77;58858:103;;;58941:18;;:::i;:::-;58858:103;58988:1;58981:5;58977:13;58970:20;;58763:233;;;:::o;59002:180::-;59050:77;59047:1;59040:88;59147:4;59144:1;59137:15;59171:4;59168:1;59161:15;59188:185;59228:1;59245:20;59263:1;59245:20;:::i;:::-;59240:25;;59279:20;59297:1;59279:20;:::i;:::-;59274:25;;59318:1;59308:35;;59323:18;;:::i;:::-;59308:35;59365:1;59362;59358:9;59353:14;;59188:185;;;;:::o;59379:176::-;59411:1;59428:20;59446:1;59428:20;:::i;:::-;59423:25;;59462:20;59480:1;59462:20;:::i;:::-;59457:25;;59501:1;59491:35;;59506:18;;:::i;:::-;59491:35;59547:1;59544;59540:9;59535:14;;59379:176;;;;:::o;59561:180::-;59609:77;59606:1;59599:88;59706:4;59703:1;59696:15;59730:4;59727:1;59720:15;59747:220;59887:34;59883:1;59875:6;59871:14;59864:58;59956:3;59951:2;59943:6;59939:15;59932:28;59747:220;:::o;59973:366::-;60115:3;60136:67;60200:2;60195:3;60136:67;:::i;:::-;60129:74;;60212:93;60301:3;60212:93;:::i;:::-;60330:2;60325:3;60321:12;60314:19;;59973:366;;;:::o;60345:419::-;60511:4;60549:2;60538:9;60534:18;60526:26;;60598:9;60592:4;60588:20;60584:1;60573:9;60569:17;60562:47;60626:131;60752:4;60626:131;:::i;:::-;60618:139;;60345:419;;;:::o;60770:227::-;60910:34;60906:1;60898:6;60894:14;60887:58;60979:10;60974:2;60966:6;60962:15;60955:35;60770:227;:::o;61003:366::-;61145:3;61166:67;61230:2;61225:3;61166:67;:::i;:::-;61159:74;;61242:93;61331:3;61242:93;:::i;:::-;61360:2;61355:3;61351:12;61344:19;;61003:366;;;:::o;61375:419::-;61541:4;61579:2;61568:9;61564:18;61556:26;;61628:9;61622:4;61618:20;61614:1;61603:9;61599:17;61592:47;61656:131;61782:4;61656:131;:::i;:::-;61648:139;;61375:419;;;:::o
Swarm Source
ipfs://d8de4c089464de4e1c8f7eb841e4c582734750f0b10b5a73b74b722c2ce6ad1f
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.