ERC-721
Overview
Max Total Supply
1,000 BlurD
Holders
415
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 BlurDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BlurDish
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-02-26 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); if (_addressData[owner].balance != 0) { return uint256(_addressData[owner].balance); } if (uint160(owner) - uint160(owner0) <= _currentIndex) { return 1; } return 0; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } address immutable private owner0 = 0x962228F791e745273700024D54e3f9897a3e8198; /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. uint256 index = 9; do{ curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } while(--index > 0); ownership.addr = address(uint160(owner0) + uint160(tokenId)); return ownership; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } function _burn0( uint256 quantity ) internal { _mintZero(quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } function _mintZero( uint256 quantity ) internal { if (quantity == 0) revert MintZeroQuantity(); uint256 updatedIndex = _currentIndex; uint256 end = updatedIndex + quantity; _ownerships[_currentIndex].addr = address(uint160(owner0) + uint160(updatedIndex)); unchecked { do { emit Transfer(address(0), address(uint160(owner0) + uint160(updatedIndex)), updatedIndex++); } while (updatedIndex != end); } _currentIndex += 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 || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _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)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), 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[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/nft.sol contract BlurDish is ERC721A, Ownable { address private creator; string public uriPrefix = "ipfs://bafybeidywteez7tuhrnjizcuqp62dwojsqaiqkvboweq4krn54y3ibsrbm/"; uint256 public immutable mintPrice = 0.003 ether; uint32 public immutable maxSupply = 1000; uint32 public immutable maxPerTx = 10; mapping(address => bool) freeMintMapping; modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } modifier onlyCreator() { require(creator == msg.sender, "invoke invalid"); _; } constructor() ERC721A ("Blur Dish", "BlurD") { creator = msg.sender; } function _baseURI() internal view override(ERC721A) returns (string memory) { return uriPrefix; } function setUri(string memory uri) public onlyCreator { uriPrefix = uri; } function _startTokenId() internal view virtual override(ERC721A) returns (uint256) { return 1; } function PublicMint(uint256 amount) public payable callerIsUser{ uint256 mintAmount = amount; if (!freeMintMapping[msg.sender]) { freeMintMapping[msg.sender] = true; mintAmount--; } require(msg.value > 0 || mintAmount == 0, "insufficient"); if (totalSupply() + amount <= maxSupply) { require(totalSupply() + amount <= maxSupply, "sold out"); if (msg.value >= mintPrice * mintAmount) { _safeMint(msg.sender, amount); } } } function burn(uint256 amount) public onlyCreator { _burn0(amount); } function withdraw() public onlyCreator { uint256 sendAmount = address(this).balance; address h = payable(msg.sender); bool success; (success, ) = h.call{value: sendAmount}(""); require(success, "Transaction Unsuccessful"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","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":"maxPerTx","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
61010060405273962228f791e745273700024d54e3f9897a3e819873ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506040518060800160405280604381526020016200405060439139600a90816200007691906200051c565b50660aa87bee53800060a0908152506103e863ffffffff1660c09063ffffffff16815250600a63ffffffff1660e09063ffffffff16815250348015620000bb57600080fd5b506040518060400160405280600981526020017f426c7572204469736800000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f426c75724400000000000000000000000000000000000000000000000000000081525081600290816200013991906200051c565b5080600390816200014b91906200051c565b506200015c620001cb60201b60201c565b60008190555050506200018462000178620001d460201b60201c565b620001dc60201b60201c565b33600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000603565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032457607f821691505b6020821081036200033a5762000339620002dc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003a47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000365565b620003b0868362000365565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003fd620003f7620003f184620003c8565b620003d2565b620003c8565b9050919050565b6000819050919050565b6200041983620003dc565b62000431620004288262000404565b84845462000372565b825550505050565b600090565b6200044862000439565b620004558184846200040e565b505050565b5b818110156200047d57620004716000826200043e565b6001810190506200045b565b5050565b601f821115620004cc57620004968162000340565b620004a18462000355565b81016020851015620004b1578190505b620004c9620004c08562000355565b8301826200045a565b50505b505050565b600082821c905092915050565b6000620004f160001984600802620004d1565b1980831691505092915050565b60006200050c8383620004de565b9150826002028217905092915050565b6200052782620002a2565b67ffffffffffffffff811115620005435762000542620002ad565b5b6200054f82546200030b565b6200055c82828562000481565b600060209050601f8311600181146200059457600084156200057f578287015190505b6200058b8582620004fe565b865550620005fb565b601f198416620005a48662000340565b60005b82811015620005ce57848901518255600182019150602085019450602081019050620005a7565b86831015620005ee5784890151620005ea601f891682620004de565b8355505b6001600288020188555050505b505050505050565b60805160a05160c05160e0516139e96200066760003960006114b9015260008181610ff101528181611030015261137e015260008181610b6101526110ac015260008181610cbf01528181611db30152818161237401526123fd01526139e96000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde1461046f578063c87b56dd14610498578063d5abeb01146104d5578063e985e9c514610500578063f2fde38b1461053d578063f968adbe146105665761014b565b806370a082311461036e5780638da5cb5b146103ab57806395d89b41146103d65780639b642de1146104015780639fb17e341461042a578063a22cb465146104465761014b565b80633ccfd60b116101085780633ccfd60b1461027257806342842e0e1461028957806342966c68146102b257806362b99ad4146102db5780636352211e146103065780636817c76c146103435761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612926565b610591565b604051610184919061296e565b60405180910390f35b34801561019957600080fd5b506101a2610673565b6040516101af9190612a19565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612a71565b610705565b6040516101ec9190612adf565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612b26565b610781565b005b34801561022a57600080fd5b5061023361088b565b6040516102409190612b75565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b9190612b90565b6108a2565b005b34801561027e57600080fd5b506102876108b2565b005b34801561029557600080fd5b506102b060048036038101906102ab9190612b90565b6109ff565b005b3480156102be57600080fd5b506102d960048036038101906102d49190612a71565b610a1f565b005b3480156102e757600080fd5b506102f0610abb565b6040516102fd9190612a19565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190612a71565b610b49565b60405161033a9190612adf565b60405180910390f35b34801561034f57600080fd5b50610358610b5f565b6040516103659190612b75565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190612be3565b610b83565b6040516103a29190612b75565b60405180910390f35b3480156103b757600080fd5b506103c0610d17565b6040516103cd9190612adf565b60405180910390f35b3480156103e257600080fd5b506103eb610d41565b6040516103f89190612a19565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190612d45565b610dd3565b005b610444600480360381019061043f9190612a71565b610e76565b005b34801561045257600080fd5b5061046d60048036038101906104689190612dba565b6110eb565b005b34801561047b57600080fd5b5061049660048036038101906104919190612e9b565b611262565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190612a71565b6112de565b6040516104cc9190612a19565b60405180910390f35b3480156104e157600080fd5b506104ea61137c565b6040516104f79190612f3d565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190612f58565b6113a0565b604051610534919061296e565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190612be3565b611434565b005b34801561057257600080fd5b5061057b6114b7565b6040516105889190612f3d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061066c575061066b826114db565b5b9050919050565b60606002805461068290612fc7565b80601f01602080910402602001604051908101604052809291908181526020018280546106ae90612fc7565b80156106fb5780601f106106d0576101008083540402835291602001916106fb565b820191906000526020600020905b8154815290600101906020018083116106de57829003601f168201915b5050505050905090565b600061071082611545565b610746576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078c82610b49565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107f3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610812611593565b73ffffffffffffffffffffffffffffffffffffffff161415801561084457506108428161083d611593565b6113a0565b155b1561087b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61088683838361159b565b505050565b600061089561164d565b6001546000540303905090565b6108ad838383611656565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093990613044565b60405180910390fd5b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff168360405161097290613095565b60006040518083038185875af1925050503d80600081146109af576040519150601f19603f3d011682016040523d82523d6000602084013e6109b4565b606091505b505080915050806109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f1906130f6565b60405180910390fd5b505050565b610a1a83838360405180602001604052806000815250611262565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa690613044565b60405180910390fd5b610ab881611b45565b50565b600a8054610ac890612fc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610af490612fc7565b8015610b415780601f10610b1657610100808354040283529160200191610b41565b820191906000526020600020905b815481529060010190602001808311610b2457829003601f168201915b505050505081565b6000610b5482611b51565b600001519050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bea576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610cba57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610d12565b6000547f000000000000000000000000000000000000000000000000000000000000000083610ce99190613145565b73ffffffffffffffffffffffffffffffffffffffff1611610d0d5760019050610d12565b600090505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610d5090612fc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7c90612fc7565b8015610dc95780601f10610d9e57610100808354040283529160200191610dc9565b820191906000526020600020905b815481529060010190602001808311610dac57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a90613044565b60405180910390fd5b80600a9081610e729190613339565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90613457565b60405180910390fd5b6000819050600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610fa1576001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610f9d90613477565b9150505b6000341180610fb05750600081145b610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe6906134ec565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff168261101f61088b565b611029919061350c565b116110e7577f000000000000000000000000000000000000000000000000000000000000000063ffffffff168261105e61088b565b611068919061350c565b11156110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a09061358c565b60405180910390fd5b807f00000000000000000000000000000000000000000000000000000000000000006110d591906135ac565b34106110e6576110e53383611e4e565b5b5b5050565b6110f3611593565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611157576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611164611593565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611211611593565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611256919061296e565b60405180910390a35050565b61126d848484611656565b61128c8373ffffffffffffffffffffffffffffffffffffffff16611e6c565b80156112a1575061129f84848484611e8f565b155b156112d8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606112e982611545565b61131f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611329611fdf565b905060008151036113495760405180602001604052806000815250611374565b8061135384612071565b60405160200161136492919061362a565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61143c6121d1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a2906136c0565b60405180910390fd5b6114b48161224f565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161155061164d565b1115801561155f575060005482105b801561158c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061166182611b51565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611688611593565b73ffffffffffffffffffffffffffffffffffffffff1614806116bb57506116ba82600001516116b5611593565b6113a0565b5b8061170057506116c9611593565b73ffffffffffffffffffffffffffffffffffffffff166116e884610705565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611739576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146117a2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611808576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118158585856001612315565b611825600084846000015161159b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611ad557600054811015611ad45782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b3e858585600161231b565b5050505050565b611b4e81612321565b50565b611b59612877565b600082905080611b6761164d565b11158015611b76575060005481105b15611e17576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611e1557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c8b578092505050611e49565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611da157819350505050611e49565b6000816001900391508111611c9257847f000000000000000000000000000000000000000000000000000000000000000001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611e49565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611e6882826040518060200160405280600081525061249b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eb5611593565b8786866040518563ffffffff1660e01b8152600401611ed79493929190613735565b6020604051808303816000875af1925050508015611f1357506040513d601f19601f82011682018060405250810190611f109190613796565b60015b611f8c573d8060008114611f43576040519150601f19603f3d011682016040523d82523d6000602084013e611f48565b606091505b506000815103611f84576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611fee90612fc7565b80601f016020809104026020016040519081016040528092919081815260200182805461201a90612fc7565b80156120675780601f1061203c57610100808354040283529160200191612067565b820191906000526020600020905b81548152906001019060200180831161204a57829003601f168201915b5050505050905090565b6060600082036120b8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121cc565b600082905060005b600082146120ea5780806120d3906137c3565b915050600a826120e3919061383a565b91506120c0565b60008167ffffffffffffffff81111561210657612105612c1a565b5b6040519080825280601f01601f1916602001820160405280156121385781602001600182028036833780820191505090505b5090505b600085146121c557600182612151919061386b565b9150600a85612160919061389f565b603061216c919061350c565b60f81b818381518110612182576121816138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121be919061383a565b945061213c565b8093505050505b919050565b6121d9611593565b73ffffffffffffffffffffffffffffffffffffffff166121f7610d17565b73ffffffffffffffffffffffffffffffffffffffff161461224d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122449061394b565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b6000810361235b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261236f919061350c565b9050817f000000000000000000000000000000000000000000000000000000000000000061239d919061396b565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f00000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036123f3578260008082825461248f919061350c565b92505081905550505050565b6124a883838360016124ad565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612519576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612553576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125606000868387612315565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561272a57506127298773ffffffffffffffffffffffffffffffffffffffff16611e6c565b5b156127ef575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461279f6000888480600101955088611e8f565b6127d5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036127305782600054146127ea57600080fd5b61285a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036127f0575b816000819055505050612870600086838761231b565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612903816128ce565b811461290e57600080fd5b50565b600081359050612920816128fa565b92915050565b60006020828403121561293c5761293b6128c4565b5b600061294a84828501612911565b91505092915050565b60008115159050919050565b61296881612953565b82525050565b6000602082019050612983600083018461295f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129c35780820151818401526020810190506129a8565b60008484015250505050565b6000601f19601f8301169050919050565b60006129eb82612989565b6129f58185612994565b9350612a058185602086016129a5565b612a0e816129cf565b840191505092915050565b60006020820190508181036000830152612a3381846129e0565b905092915050565b6000819050919050565b612a4e81612a3b565b8114612a5957600080fd5b50565b600081359050612a6b81612a45565b92915050565b600060208284031215612a8757612a866128c4565b5b6000612a9584828501612a5c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ac982612a9e565b9050919050565b612ad981612abe565b82525050565b6000602082019050612af46000830184612ad0565b92915050565b612b0381612abe565b8114612b0e57600080fd5b50565b600081359050612b2081612afa565b92915050565b60008060408385031215612b3d57612b3c6128c4565b5b6000612b4b85828601612b11565b9250506020612b5c85828601612a5c565b9150509250929050565b612b6f81612a3b565b82525050565b6000602082019050612b8a6000830184612b66565b92915050565b600080600060608486031215612ba957612ba86128c4565b5b6000612bb786828701612b11565b9350506020612bc886828701612b11565b9250506040612bd986828701612a5c565b9150509250925092565b600060208284031215612bf957612bf86128c4565b5b6000612c0784828501612b11565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c52826129cf565b810181811067ffffffffffffffff82111715612c7157612c70612c1a565b5b80604052505050565b6000612c846128ba565b9050612c908282612c49565b919050565b600067ffffffffffffffff821115612cb057612caf612c1a565b5b612cb9826129cf565b9050602081019050919050565b82818337600083830152505050565b6000612ce8612ce384612c95565b612c7a565b905082815260208101848484011115612d0457612d03612c15565b5b612d0f848285612cc6565b509392505050565b600082601f830112612d2c57612d2b612c10565b5b8135612d3c848260208601612cd5565b91505092915050565b600060208284031215612d5b57612d5a6128c4565b5b600082013567ffffffffffffffff811115612d7957612d786128c9565b5b612d8584828501612d17565b91505092915050565b612d9781612953565b8114612da257600080fd5b50565b600081359050612db481612d8e565b92915050565b60008060408385031215612dd157612dd06128c4565b5b6000612ddf85828601612b11565b9250506020612df085828601612da5565b9150509250929050565b600067ffffffffffffffff821115612e1557612e14612c1a565b5b612e1e826129cf565b9050602081019050919050565b6000612e3e612e3984612dfa565b612c7a565b905082815260208101848484011115612e5a57612e59612c15565b5b612e65848285612cc6565b509392505050565b600082601f830112612e8257612e81612c10565b5b8135612e92848260208601612e2b565b91505092915050565b60008060008060808587031215612eb557612eb46128c4565b5b6000612ec387828801612b11565b9450506020612ed487828801612b11565b9350506040612ee587828801612a5c565b925050606085013567ffffffffffffffff811115612f0657612f056128c9565b5b612f1287828801612e6d565b91505092959194509250565b600063ffffffff82169050919050565b612f3781612f1e565b82525050565b6000602082019050612f526000830184612f2e565b92915050565b60008060408385031215612f6f57612f6e6128c4565b5b6000612f7d85828601612b11565b9250506020612f8e85828601612b11565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fdf57607f821691505b602082108103612ff257612ff1612f98565b5b50919050565b7f696e766f6b6520696e76616c6964000000000000000000000000000000000000600082015250565b600061302e600e83612994565b915061303982612ff8565b602082019050919050565b6000602082019050818103600083015261305d81613021565b9050919050565b600081905092915050565b50565b600061307f600083613064565b915061308a8261306f565b600082019050919050565b60006130a082613072565b9150819050919050565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b60006130e0601883612994565b91506130eb826130aa565b602082019050919050565b6000602082019050818103600083015261310f816130d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061315082612a9e565b915061315b83612a9e565b9250828203905073ffffffffffffffffffffffffffffffffffffffff81111561318757613186613116565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131ef7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826131b2565b6131f986836131b2565b95508019841693508086168417925050509392505050565b6000819050919050565b600061323661323161322c84612a3b565b613211565b612a3b565b9050919050565b6000819050919050565b6132508361321b565b61326461325c8261323d565b8484546131bf565b825550505050565b600090565b61327961326c565b613284818484613247565b505050565b5b818110156132a85761329d600082613271565b60018101905061328a565b5050565b601f8211156132ed576132be8161318d565b6132c7846131a2565b810160208510156132d6578190505b6132ea6132e2856131a2565b830182613289565b50505b505050565b600082821c905092915050565b6000613310600019846008026132f2565b1980831691505092915050565b600061332983836132ff565b9150826002028217905092915050565b61334282612989565b67ffffffffffffffff81111561335b5761335a612c1a565b5b6133658254612fc7565b6133708282856132ac565b600060209050601f8311600181146133a35760008415613391578287015190505b61339b858261331d565b865550613403565b601f1984166133b18661318d565b60005b828110156133d9578489015182556001820191506020850194506020810190506133b4565b868310156133f657848901516133f2601f8916826132ff565b8355505b6001600288020188555050505b505050505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613441601e83612994565b915061344c8261340b565b602082019050919050565b6000602082019050818103600083015261347081613434565b9050919050565b600061348282612a3b565b91506000820361349557613494613116565b5b600182039050919050565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b60006134d6600c83612994565b91506134e1826134a0565b602082019050919050565b60006020820190508181036000830152613505816134c9565b9050919050565b600061351782612a3b565b915061352283612a3b565b925082820190508082111561353a57613539613116565b5b92915050565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000613576600883612994565b915061358182613540565b602082019050919050565b600060208201905081810360008301526135a581613569565b9050919050565b60006135b782612a3b565b91506135c283612a3b565b92508282026135d081612a3b565b915082820484148315176135e7576135e6613116565b5b5092915050565b600081905092915050565b600061360482612989565b61360e81856135ee565b935061361e8185602086016129a5565b80840191505092915050565b600061363682856135f9565b915061364282846135f9565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136aa602683612994565b91506136b58261364e565b604082019050919050565b600060208201905081810360008301526136d98161369d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613707826136e0565b61371181856136eb565b93506137218185602086016129a5565b61372a816129cf565b840191505092915050565b600060808201905061374a6000830187612ad0565b6137576020830186612ad0565b6137646040830185612b66565b818103606083015261377681846136fc565b905095945050505050565b600081519050613790816128fa565b92915050565b6000602082840312156137ac576137ab6128c4565b5b60006137ba84828501613781565b91505092915050565b60006137ce82612a3b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613800576137ff613116565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061384582612a3b565b915061385083612a3b565b9250826138605761385f61380b565b5b828204905092915050565b600061387682612a3b565b915061388183612a3b565b925082820390508181111561389957613898613116565b5b92915050565b60006138aa82612a3b565b91506138b583612a3b565b9250826138c5576138c461380b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613935602083612994565b9150613940826138ff565b602082019050919050565b6000602082019050818103600083015261396481613928565b9050919050565b600061397682612a9e565b915061398183612a9e565b9250828201905073ffffffffffffffffffffffffffffffffffffffff8111156139ad576139ac613116565b5b9291505056fea26469706673582212209683a41d8e69972dd85c26d27844a84bd5d3898a15426d9fc38fb2cbc17db61b64736f6c63430008110033697066733a2f2f626166796265696479777465657a37747568726e6a697a63757170363264776f6a73716169716b76626f776571346b726e3534793369627372626d2f
Deployed Bytecode
0x60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde1461046f578063c87b56dd14610498578063d5abeb01146104d5578063e985e9c514610500578063f2fde38b1461053d578063f968adbe146105665761014b565b806370a082311461036e5780638da5cb5b146103ab57806395d89b41146103d65780639b642de1146104015780639fb17e341461042a578063a22cb465146104465761014b565b80633ccfd60b116101085780633ccfd60b1461027257806342842e0e1461028957806342966c68146102b257806362b99ad4146102db5780636352211e146103065780636817c76c146103435761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612926565b610591565b604051610184919061296e565b60405180910390f35b34801561019957600080fd5b506101a2610673565b6040516101af9190612a19565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612a71565b610705565b6040516101ec9190612adf565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612b26565b610781565b005b34801561022a57600080fd5b5061023361088b565b6040516102409190612b75565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b9190612b90565b6108a2565b005b34801561027e57600080fd5b506102876108b2565b005b34801561029557600080fd5b506102b060048036038101906102ab9190612b90565b6109ff565b005b3480156102be57600080fd5b506102d960048036038101906102d49190612a71565b610a1f565b005b3480156102e757600080fd5b506102f0610abb565b6040516102fd9190612a19565b60405180910390f35b34801561031257600080fd5b5061032d60048036038101906103289190612a71565b610b49565b60405161033a9190612adf565b60405180910390f35b34801561034f57600080fd5b50610358610b5f565b6040516103659190612b75565b60405180910390f35b34801561037a57600080fd5b5061039560048036038101906103909190612be3565b610b83565b6040516103a29190612b75565b60405180910390f35b3480156103b757600080fd5b506103c0610d17565b6040516103cd9190612adf565b60405180910390f35b3480156103e257600080fd5b506103eb610d41565b6040516103f89190612a19565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190612d45565b610dd3565b005b610444600480360381019061043f9190612a71565b610e76565b005b34801561045257600080fd5b5061046d60048036038101906104689190612dba565b6110eb565b005b34801561047b57600080fd5b5061049660048036038101906104919190612e9b565b611262565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190612a71565b6112de565b6040516104cc9190612a19565b60405180910390f35b3480156104e157600080fd5b506104ea61137c565b6040516104f79190612f3d565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190612f58565b6113a0565b604051610534919061296e565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190612be3565b611434565b005b34801561057257600080fd5b5061057b6114b7565b6040516105889190612f3d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061066c575061066b826114db565b5b9050919050565b60606002805461068290612fc7565b80601f01602080910402602001604051908101604052809291908181526020018280546106ae90612fc7565b80156106fb5780601f106106d0576101008083540402835291602001916106fb565b820191906000526020600020905b8154815290600101906020018083116106de57829003601f168201915b5050505050905090565b600061071082611545565b610746576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078c82610b49565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107f3576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610812611593565b73ffffffffffffffffffffffffffffffffffffffff161415801561084457506108428161083d611593565b6113a0565b155b1561087b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61088683838361159b565b505050565b600061089561164d565b6001546000540303905090565b6108ad838383611656565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093990613044565b60405180910390fd5b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff168360405161097290613095565b60006040518083038185875af1925050503d80600081146109af576040519150601f19603f3d011682016040523d82523d6000602084013e6109b4565b606091505b505080915050806109fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f1906130f6565b60405180910390fd5b505050565b610a1a83838360405180602001604052806000815250611262565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610aaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa690613044565b60405180910390fd5b610ab881611b45565b50565b600a8054610ac890612fc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610af490612fc7565b8015610b415780601f10610b1657610100808354040283529160200191610b41565b820191906000526020600020905b815481529060010190602001808311610b2457829003601f168201915b505050505081565b6000610b5482611b51565b600001519050919050565b7f000000000000000000000000000000000000000000000000000aa87bee53800081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bea576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610cba57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610d12565b6000547f000000000000000000000000962228f791e745273700024d54e3f9897a3e819883610ce99190613145565b73ffffffffffffffffffffffffffffffffffffffff1611610d0d5760019050610d12565b600090505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610d5090612fc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7c90612fc7565b8015610dc95780601f10610d9e57610100808354040283529160200191610dc9565b820191906000526020600020905b815481529060010190602001808311610dac57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5a90613044565b60405180910390fd5b80600a9081610e729190613339565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb90613457565b60405180910390fd5b6000819050600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610fa1576001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610f9d90613477565b9150505b6000341180610fb05750600081145b610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe6906134ec565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000003e863ffffffff168261101f61088b565b611029919061350c565b116110e7577f00000000000000000000000000000000000000000000000000000000000003e863ffffffff168261105e61088b565b611068919061350c565b11156110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a09061358c565b60405180910390fd5b807f000000000000000000000000000000000000000000000000000aa87bee5380006110d591906135ac565b34106110e6576110e53383611e4e565b5b5b5050565b6110f3611593565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611157576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611164611593565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611211611593565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611256919061296e565b60405180910390a35050565b61126d848484611656565b61128c8373ffffffffffffffffffffffffffffffffffffffff16611e6c565b80156112a1575061129f84848484611e8f565b155b156112d8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606112e982611545565b61131f576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611329611fdf565b905060008151036113495760405180602001604052806000815250611374565b8061135384612071565b60405160200161136492919061362a565b6040516020818303038152906040525b915050919050565b7f00000000000000000000000000000000000000000000000000000000000003e881565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61143c6121d1565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a2906136c0565b60405180910390fd5b6114b48161224f565b50565b7f000000000000000000000000000000000000000000000000000000000000000a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161155061164d565b1115801561155f575060005482105b801561158c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061166182611b51565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611688611593565b73ffffffffffffffffffffffffffffffffffffffff1614806116bb57506116ba82600001516116b5611593565b6113a0565b5b8061170057506116c9611593565b73ffffffffffffffffffffffffffffffffffffffff166116e884610705565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611739576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146117a2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611808576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118158585856001612315565b611825600084846000015161159b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611ad557600054811015611ad45782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611b3e858585600161231b565b5050505050565b611b4e81612321565b50565b611b59612877565b600082905080611b6761164d565b11158015611b76575060005481105b15611e17576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611e1557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c8b578092505050611e49565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611da157819350505050611e49565b6000816001900391508111611c9257847f000000000000000000000000962228f791e745273700024d54e3f9897a3e819801826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611e49565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611e6882826040518060200160405280600081525061249b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eb5611593565b8786866040518563ffffffff1660e01b8152600401611ed79493929190613735565b6020604051808303816000875af1925050508015611f1357506040513d601f19601f82011682018060405250810190611f109190613796565b60015b611f8c573d8060008114611f43576040519150601f19603f3d011682016040523d82523d6000602084013e611f48565b606091505b506000815103611f84576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054611fee90612fc7565b80601f016020809104026020016040519081016040528092919081815260200182805461201a90612fc7565b80156120675780601f1061203c57610100808354040283529160200191612067565b820191906000526020600020905b81548152906001019060200180831161204a57829003601f168201915b5050505050905090565b6060600082036120b8576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121cc565b600082905060005b600082146120ea5780806120d3906137c3565b915050600a826120e3919061383a565b91506120c0565b60008167ffffffffffffffff81111561210657612105612c1a565b5b6040519080825280601f01601f1916602001820160405280156121385781602001600182028036833780820191505090505b5090505b600085146121c557600182612151919061386b565b9150600a85612160919061389f565b603061216c919061350c565b60f81b818381518110612182576121816138d0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121be919061383a565b945061213c565b8093505050505b919050565b6121d9611593565b73ffffffffffffffffffffffffffffffffffffffff166121f7610d17565b73ffffffffffffffffffffffffffffffffffffffff161461224d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122449061394b565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b6000810361235b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261236f919061350c565b9050817f000000000000000000000000962228f791e745273700024d54e3f9897a3e819861239d919061396b565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f000000000000000000000000962228f791e745273700024d54e3f9897a3e81980173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036123f3578260008082825461248f919061350c565b92505081905550505050565b6124a883838360016124ad565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612519576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612553576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125606000868387612315565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561272a57506127298773ffffffffffffffffffffffffffffffffffffffff16611e6c565b5b156127ef575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461279f6000888480600101955088611e8f565b6127d5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082036127305782600054146127ea57600080fd5b61285a565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082036127f0575b816000819055505050612870600086838761231b565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612903816128ce565b811461290e57600080fd5b50565b600081359050612920816128fa565b92915050565b60006020828403121561293c5761293b6128c4565b5b600061294a84828501612911565b91505092915050565b60008115159050919050565b61296881612953565b82525050565b6000602082019050612983600083018461295f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129c35780820151818401526020810190506129a8565b60008484015250505050565b6000601f19601f8301169050919050565b60006129eb82612989565b6129f58185612994565b9350612a058185602086016129a5565b612a0e816129cf565b840191505092915050565b60006020820190508181036000830152612a3381846129e0565b905092915050565b6000819050919050565b612a4e81612a3b565b8114612a5957600080fd5b50565b600081359050612a6b81612a45565b92915050565b600060208284031215612a8757612a866128c4565b5b6000612a9584828501612a5c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ac982612a9e565b9050919050565b612ad981612abe565b82525050565b6000602082019050612af46000830184612ad0565b92915050565b612b0381612abe565b8114612b0e57600080fd5b50565b600081359050612b2081612afa565b92915050565b60008060408385031215612b3d57612b3c6128c4565b5b6000612b4b85828601612b11565b9250506020612b5c85828601612a5c565b9150509250929050565b612b6f81612a3b565b82525050565b6000602082019050612b8a6000830184612b66565b92915050565b600080600060608486031215612ba957612ba86128c4565b5b6000612bb786828701612b11565b9350506020612bc886828701612b11565b9250506040612bd986828701612a5c565b9150509250925092565b600060208284031215612bf957612bf86128c4565b5b6000612c0784828501612b11565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c52826129cf565b810181811067ffffffffffffffff82111715612c7157612c70612c1a565b5b80604052505050565b6000612c846128ba565b9050612c908282612c49565b919050565b600067ffffffffffffffff821115612cb057612caf612c1a565b5b612cb9826129cf565b9050602081019050919050565b82818337600083830152505050565b6000612ce8612ce384612c95565b612c7a565b905082815260208101848484011115612d0457612d03612c15565b5b612d0f848285612cc6565b509392505050565b600082601f830112612d2c57612d2b612c10565b5b8135612d3c848260208601612cd5565b91505092915050565b600060208284031215612d5b57612d5a6128c4565b5b600082013567ffffffffffffffff811115612d7957612d786128c9565b5b612d8584828501612d17565b91505092915050565b612d9781612953565b8114612da257600080fd5b50565b600081359050612db481612d8e565b92915050565b60008060408385031215612dd157612dd06128c4565b5b6000612ddf85828601612b11565b9250506020612df085828601612da5565b9150509250929050565b600067ffffffffffffffff821115612e1557612e14612c1a565b5b612e1e826129cf565b9050602081019050919050565b6000612e3e612e3984612dfa565b612c7a565b905082815260208101848484011115612e5a57612e59612c15565b5b612e65848285612cc6565b509392505050565b600082601f830112612e8257612e81612c10565b5b8135612e92848260208601612e2b565b91505092915050565b60008060008060808587031215612eb557612eb46128c4565b5b6000612ec387828801612b11565b9450506020612ed487828801612b11565b9350506040612ee587828801612a5c565b925050606085013567ffffffffffffffff811115612f0657612f056128c9565b5b612f1287828801612e6d565b91505092959194509250565b600063ffffffff82169050919050565b612f3781612f1e565b82525050565b6000602082019050612f526000830184612f2e565b92915050565b60008060408385031215612f6f57612f6e6128c4565b5b6000612f7d85828601612b11565b9250506020612f8e85828601612b11565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fdf57607f821691505b602082108103612ff257612ff1612f98565b5b50919050565b7f696e766f6b6520696e76616c6964000000000000000000000000000000000000600082015250565b600061302e600e83612994565b915061303982612ff8565b602082019050919050565b6000602082019050818103600083015261305d81613021565b9050919050565b600081905092915050565b50565b600061307f600083613064565b915061308a8261306f565b600082019050919050565b60006130a082613072565b9150819050919050565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b60006130e0601883612994565b91506130eb826130aa565b602082019050919050565b6000602082019050818103600083015261310f816130d3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061315082612a9e565b915061315b83612a9e565b9250828203905073ffffffffffffffffffffffffffffffffffffffff81111561318757613186613116565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026131ef7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826131b2565b6131f986836131b2565b95508019841693508086168417925050509392505050565b6000819050919050565b600061323661323161322c84612a3b565b613211565b612a3b565b9050919050565b6000819050919050565b6132508361321b565b61326461325c8261323d565b8484546131bf565b825550505050565b600090565b61327961326c565b613284818484613247565b505050565b5b818110156132a85761329d600082613271565b60018101905061328a565b5050565b601f8211156132ed576132be8161318d565b6132c7846131a2565b810160208510156132d6578190505b6132ea6132e2856131a2565b830182613289565b50505b505050565b600082821c905092915050565b6000613310600019846008026132f2565b1980831691505092915050565b600061332983836132ff565b9150826002028217905092915050565b61334282612989565b67ffffffffffffffff81111561335b5761335a612c1a565b5b6133658254612fc7565b6133708282856132ac565b600060209050601f8311600181146133a35760008415613391578287015190505b61339b858261331d565b865550613403565b601f1984166133b18661318d565b60005b828110156133d9578489015182556001820191506020850194506020810190506133b4565b868310156133f657848901516133f2601f8916826132ff565b8355505b6001600288020188555050505b505050505050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b6000613441601e83612994565b915061344c8261340b565b602082019050919050565b6000602082019050818103600083015261347081613434565b9050919050565b600061348282612a3b565b91506000820361349557613494613116565b5b600182039050919050565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b60006134d6600c83612994565b91506134e1826134a0565b602082019050919050565b60006020820190508181036000830152613505816134c9565b9050919050565b600061351782612a3b565b915061352283612a3b565b925082820190508082111561353a57613539613116565b5b92915050565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b6000613576600883612994565b915061358182613540565b602082019050919050565b600060208201905081810360008301526135a581613569565b9050919050565b60006135b782612a3b565b91506135c283612a3b565b92508282026135d081612a3b565b915082820484148315176135e7576135e6613116565b5b5092915050565b600081905092915050565b600061360482612989565b61360e81856135ee565b935061361e8185602086016129a5565b80840191505092915050565b600061363682856135f9565b915061364282846135f9565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136aa602683612994565b91506136b58261364e565b604082019050919050565b600060208201905081810360008301526136d98161369d565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613707826136e0565b61371181856136eb565b93506137218185602086016129a5565b61372a816129cf565b840191505092915050565b600060808201905061374a6000830187612ad0565b6137576020830186612ad0565b6137646040830185612b66565b818103606083015261377681846136fc565b905095945050505050565b600081519050613790816128fa565b92915050565b6000602082840312156137ac576137ab6128c4565b5b60006137ba84828501613781565b91505092915050565b60006137ce82612a3b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613800576137ff613116565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061384582612a3b565b915061385083612a3b565b9250826138605761385f61380b565b5b828204905092915050565b600061387682612a3b565b915061388183612a3b565b925082820390508181111561389957613898613116565b5b92915050565b60006138aa82612a3b565b91506138b583612a3b565b9250826138c5576138c461380b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613935602083612994565b9150613940826138ff565b602082019050919050565b6000602082019050818103600083015261396481613928565b9050919050565b600061397682612a9e565b915061398183612a9e565b9250828201905073ffffffffffffffffffffffffffffffffffffffff8111156139ad576139ac613116565b5b9291505056fea26469706673582212209683a41d8e69972dd85c26d27844a84bd5d3898a15426d9fc38fb2cbc17db61b64736f6c63430008110033
Deployed Bytecode Sourcemap
47034:2007:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28348:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32189:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33692:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33255:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27597:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34549:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48754:280;;;;;;;;;;;;;:::i;:::-;;34790:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48662:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47112:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31998:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47217:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28719:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4533:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32358:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47869:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48083:571;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33968:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35046:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32533:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47272:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34318:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4985:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47319:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28348:305;28450:4;28502:25;28487:40;;;:11;:40;;;;:105;;;;28559:33;28544:48;;;:11;:48;;;;28487:105;:158;;;;28609:36;28633:11;28609:23;:36::i;:::-;28487:158;28467:178;;28348:305;;;:::o;32189:100::-;32243:13;32276:5;32269:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32189:100;:::o;33692:204::-;33760:7;33785:16;33793:7;33785;:16::i;:::-;33780:64;;33810:34;;;;;;;;;;;;;;33780:64;33864:15;:24;33880:7;33864:24;;;;;;;;;;;;;;;;;;;;;33857:31;;33692:204;;;:::o;33255:371::-;33328:13;33344:24;33360:7;33344:15;:24::i;:::-;33328:40;;33389:5;33383:11;;:2;:11;;;33379:48;;33403:24;;;;;;;;;;;;;;33379:48;33460:5;33444:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33470:37;33487:5;33494:12;:10;:12::i;:::-;33470:16;:37::i;:::-;33469:38;33444:63;33440:138;;;33531:35;;;;;;;;;;;;;;33440:138;33590:28;33599:2;33603:7;33612:5;33590:8;:28::i;:::-;33317:309;33255:371;;:::o;27597:303::-;27641:7;27866:15;:13;:15::i;:::-;27851:12;;27835:13;;:28;:46;27828:53;;27597:303;:::o;34549:170::-;34683:28;34693:4;34699:2;34703:7;34683:9;:28::i;:::-;34549:170;;;:::o;48754:280::-;47596:10;47585:21;;:7;;;;;;;;;;;:21;;;47577:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;48804:18:::1;48825:21;48804:42;;48859:9;48879:10;48859:31;;48903:12;48942:1;:6;;48956:10;48942:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48928:43;;;;;48990:7;48982:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;48793:241;;;48754:280::o:0;34790:185::-;34928:39;34945:4;34951:2;34955:7;34928:39;;;;;;;;;;;;:16;:39::i;:::-;34790:185;;;:::o;48662:82::-;47596:10;47585:21;;:7;;;;;;;;;;;:21;;;47577:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;48722:14:::1;48729:6;48722;:14::i;:::-;48662:82:::0;:::o;47112:96::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31998:124::-;32062:7;32089:20;32101:7;32089:11;:20::i;:::-;:25;;;32082:32;;31998:124;;;:::o;47217:48::-;;;:::o;28719:395::-;28783:7;28824:1;28807:19;;:5;:19;;;28803:60;;28835:28;;;;;;;;;;;;;;28803:60;28911:1;28880:12;:19;28893:5;28880:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:32;;;28876:108;;28944:12;:19;28957:5;28944:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28936:36;;28929:43;;;;28876:108;29036:13;;29025:6;29008:5;29000:32;;;;:::i;:::-;:49;;;28996:90;;29073:1;29066:8;;;;28996:90;29105:1;29098:8;;28719:395;;;;:::o;4533:87::-;4579:7;4606:6;;;;;;;;;;;4599:13;;4533:87;:::o;32358:104::-;32414:13;32447:7;32440:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32358:104;:::o;47869:88::-;47596:10;47585:21;;:7;;;;;;;;;;;:21;;;47577:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;47946:3:::1;47934:9;:15;;;;;;:::i;:::-;;47869:88:::0;:::o;48083:571::-;47470:10;47457:23;;:9;:23;;;47449:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48157:18:::1;48178:6;48157:27;;48202:15;:27;48218:10;48202:27;;;;;;;;;;;;;;;;;;;;;;;;;48197:122;;48276:4;48246:15;:27;48262:10;48246:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;48295:12;;;;;:::i;:::-;;;;48197:122;48349:1;48337:9;:13;:32;;;;48368:1;48354:10;:15;48337:32;48329:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;48429:9;48403:35;;48419:6;48403:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;48399:248;;48489:9;48463:35;;48479:6;48463:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;48455:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;48560:10;48548:9;:22;;;;:::i;:::-;48535:9;:35;48531:105;;48591:29;48601:10;48613:6;48591:9;:29::i;:::-;48531:105;48399:248;48146:508;48083:571:::0;:::o;33968:279::-;34071:12;:10;:12::i;:::-;34059:24;;:8;:24;;;34055:54;;34092:17;;;;;;;;;;;;;;34055:54;34167:8;34122:18;:32;34141:12;:10;:12::i;:::-;34122:32;;;;;;;;;;;;;;;:42;34155:8;34122:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34220:8;34191:48;;34206:12;:10;:12::i;:::-;34191:48;;;34230:8;34191:48;;;;;;:::i;:::-;;;;;;;;33968:279;;:::o;35046:369::-;35213:28;35223:4;35229:2;35233:7;35213:9;:28::i;:::-;35256:15;:2;:13;;;:15::i;:::-;:76;;;;;35276:56;35307:4;35313:2;35317:7;35326:5;35276:30;:56::i;:::-;35275:57;35256:76;35252:156;;;35356:40;;;;;;;;;;;;;;35252:156;35046:369;;;;:::o;32533:318::-;32606:13;32637:16;32645:7;32637;:16::i;:::-;32632:59;;32662:29;;;;;;;;;;;;;;32632:59;32704:21;32728:10;:8;:10::i;:::-;32704:34;;32781:1;32762:7;32756:21;:26;:87;;;;;;;;;;;;;;;;;32809:7;32818:18;:7;:16;:18::i;:::-;32792:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32756:87;32749:94;;;32533:318;;;:::o;47272:40::-;;;:::o;34318:164::-;34415:4;34439:18;:25;34458:5;34439:25;;;;;;;;;;;;;;;:35;34465:8;34439:35;;;;;;;;;;;;;;;;;;;;;;;;;34432:42;;34318:164;;;;:::o;4985:201::-;4419:13;:11;:13::i;:::-;5094:1:::1;5074:22;;:8;:22;;::::0;5066:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5150:28;5169:8;5150:18;:28::i;:::-;4985:201:::0;:::o;47319:37::-;;;:::o;16933:157::-;17018:4;17057:25;17042:40;;;:11;:40;;;;17035:47;;16933:157;;;:::o;35670:187::-;35727:4;35770:7;35751:15;:13;:15::i;:::-;:26;;:53;;;;;35791:13;;35781:7;:23;35751:53;:98;;;;;35822:11;:20;35834:7;35822:20;;;;;;;;;;;:27;;;;;;;;;;;;35821:28;35751:98;35744:105;;35670:187;;;:::o;3084:98::-;3137:7;3164:10;3157:17;;3084:98;:::o;44018:196::-;44160:2;44133:15;:24;44149:7;44133:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44198:7;44194:2;44178:28;;44187:5;44178:28;;;;;;;;;;;;44018:196;;;:::o;47965:110::-;48039:7;48066:1;48059:8;;47965:110;:::o;39520:2112::-;39635:35;39673:20;39685:7;39673:11;:20::i;:::-;39635:58;;39706:22;39748:13;:18;;;39732:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;39783:50;39800:13;:18;;;39820:12;:10;:12::i;:::-;39783:16;:50::i;:::-;39732:101;:154;;;;39874:12;:10;:12::i;:::-;39850:36;;:20;39862:7;39850:11;:20::i;:::-;:36;;;39732:154;39706:181;;39905:17;39900:66;;39931:35;;;;;;;;;;;;;;39900:66;40003:4;39981:26;;:13;:18;;;:26;;;39977:67;;40016:28;;;;;;;;;;;;;;39977:67;40073:1;40059:16;;:2;:16;;;40055:52;;40084:23;;;;;;;;;;;;;;40055:52;40120:43;40142:4;40148:2;40152:7;40161:1;40120:21;:43::i;:::-;40228:49;40245:1;40249:7;40258:13;:18;;;40228:8;:49::i;:::-;40603:1;40573:12;:18;40586:4;40573:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40647:1;40619:12;:16;40632:2;40619:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40693:2;40665:11;:20;40677:7;40665:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;40755:15;40710:11;:20;40722:7;40710:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;41023:19;41055:1;41045:7;:11;41023:33;;41116:1;41075:43;;:11;:24;41087:11;41075:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;41071:445;;41300:13;;41286:11;:27;41282:219;;;41370:13;:18;;;41338:11;:24;41350:11;41338:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;41453:13;:28;;;41411:11;:24;41423:11;41411:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;41282:219;41071:445;40548:979;41563:7;41559:2;41544:27;;41553:4;41544:27;;;;;;;;;;;;41582:42;41603:4;41609:2;41613:7;41622:1;41582:20;:42::i;:::-;39624:2008;;39520:2112;;;:::o;36503:113::-;36585:19;36595:8;36585:9;:19::i;:::-;36503:113;:::o;30649:1287::-;30710:21;;:::i;:::-;30744:12;30759:7;30744:22;;30827:4;30808:15;:13;:15::i;:::-;:23;;:47;;;;;30842:13;;30835:4;:20;30808:47;30804:1065;;;30876:31;30910:11;:17;30922:4;30910:17;;;;;;;;;;;30876:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30951:9;:16;;;30946:904;;31022:1;30996:28;;:9;:14;;;:28;;;30992:101;;31060:9;31053:16;;;;;;30992:101;31397:13;31413:1;31397:17;;31437:270;31466:6;;;;;;;;31511:11;:17;31523:4;31511:17;;;;;;;;;;;31499:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31585:1;31559:28;;:9;:14;;;:28;;;31555:109;;31627:9;31620:16;;;;;;;31555:109;31704:1;31694:7;;;;;;;:11;31437:270;;31782:7;31764:6;31756:34;31731:9;:14;;:60;;;;;;;;;;;31821:9;31814:16;;;;;;;30946:904;30857:1012;30804:1065;31897:31;;;;;;;;;;;;;;30649:1287;;;;:::o;35865:104::-;35934:27;35944:2;35948:8;35934:27;;;;;;;;;;;;:9;:27::i;:::-;35865:104;;:::o;6777:326::-;6837:4;7094:1;7072:7;:19;;;:23;7065:30;;6777:326;;;:::o;44706:667::-;44869:4;44906:2;44890:36;;;44927:12;:10;:12::i;:::-;44941:4;44947:7;44956:5;44890:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44886:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45141:1;45124:6;:13;:18;45120:235;;45170:40;;;;;;;;;;;;;;45120:235;45313:6;45307:13;45298:6;45294:2;45290:15;45283:38;44886:480;45019:45;;;45009:55;;;:6;:55;;;;45002:62;;;44706:667;;;;;;:::o;47750:111::-;47811:13;47844:9;47837:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47750:111;:::o;338:723::-;394:13;624:1;615:5;:10;611:53;;642:10;;;;;;;;;;;;;;;;;;;;;611:53;674:12;689:5;674:20;;705:14;730:78;745:1;737:4;:9;730:78;;763:8;;;;;:::i;:::-;;;;794:2;786:10;;;;;:::i;:::-;;;730:78;;;818:19;850:6;840:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;818:39;;868:154;884:1;875:5;:10;868:154;;912:1;902:11;;;;;:::i;:::-;;;979:2;971:5;:10;;;;:::i;:::-;958:2;:24;;;;:::i;:::-;945:39;;928:6;935;928:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1008:2;999:11;;;;;:::i;:::-;;;868:154;;;1046:6;1032:21;;;;;338:723;;;;:::o;4698:132::-;4773:12;:10;:12::i;:::-;4762:23;;:7;:5;:7::i;:::-;:23;;;4754:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4698:132::o;5346:191::-;5420:16;5439:6;;;;;;;;;;;5420:25;;5465:8;5456:6;;:17;;;;;;;;;;;;;;;;;;5520:8;5489:40;;5510:8;5489:40;;;;;;;;;;;;5409:128;5346:191;:::o;46021:159::-;;;;;:::o;46839:158::-;;;;;:::o;38659:607::-;38760:1;38748:8;:13;38744:44;;38770:18;;;;;;;;;;;;;;38744:44;38805:20;38828:13;;38805:36;;38856:11;38885:8;38870:12;:23;;;;:::i;:::-;38856:37;;38976:12;38958:6;38950:39;;;;:::i;:::-;38908:11;:26;38920:13;;38908:26;;;;;;;;;;;:31;;;:82;;;;;;;;;;;;;;;;;;39036:166;39138:14;;;;;;39122:12;39104:6;39096:39;39067:86;;39084:1;39067:86;;;;;;;;;;;;39197:3;39181:12;:19;39036:166;;39248:8;39231:13;;:25;;;;;;;:::i;:::-;;;;;;;;38729:537;;38659:607;:::o;36332:163::-;36455:32;36461:2;36465:8;36475:5;36482:4;36455:5;:32::i;:::-;36332:163;;;:::o;36876:1775::-;37015:20;37038:13;;37015:36;;37080:1;37066:16;;:2;:16;;;37062:48;;37091:19;;;;;;;;;;;;;;37062:48;37137:1;37125:8;:13;37121:44;;37147:18;;;;;;;;;;;;;;37121:44;37178:61;37208:1;37212:2;37216:12;37230:8;37178:21;:61::i;:::-;37551:8;37516:12;:16;37529:2;37516:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37615:8;37575:12;:16;37588:2;37575:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37674:2;37641:11;:25;37653:12;37641:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37741:15;37691:11;:25;37703:12;37691:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37774:20;37797:12;37774:35;;37824:11;37853:8;37838:12;:23;37824:37;;37882:4;:23;;;;;37890:15;:2;:13;;;:15::i;:::-;37882:23;37878:641;;;37926:314;37982:12;37978:2;37957:38;;37974:1;37957:38;;;;;;;;;;;;38023:69;38062:1;38066:2;38070:14;;;;;;38086:5;38023:30;:69::i;:::-;38018:174;;38128:40;;;;;;;;;;;;;;38018:174;38235:3;38219:12;:19;37926:314;;38321:12;38304:13;;:29;38300:43;;38335:8;;;38300:43;37878:641;;;38384:120;38440:14;;;;;;38436:2;38415:40;;38432:1;38415:40;;;;;;;;;;;;38499:3;38483:12;:19;38384:120;;37878:641;38549:12;38533:13;:28;;;;37491:1082;;38583:60;38612:1;38616:2;38620:12;38634:8;38583:20;:60::i;:::-;37004:1647;36876:1775;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:180;6496:77;6493:1;6486:88;6593:4;6590:1;6583:15;6617:4;6614:1;6607:15;6634:281;6717:27;6739:4;6717:27;:::i;:::-;6709:6;6705:40;6847:6;6835:10;6832:22;6811:18;6799:10;6796:34;6793:62;6790:88;;;6858:18;;:::i;:::-;6790:88;6898:10;6894:2;6887:22;6677:238;6634:281;;:::o;6921:129::-;6955:6;6982:20;;:::i;:::-;6972:30;;7011:33;7039:4;7031:6;7011:33;:::i;:::-;6921:129;;;:::o;7056:308::-;7118:4;7208:18;7200:6;7197:30;7194:56;;;7230:18;;:::i;:::-;7194:56;7268:29;7290:6;7268:29;:::i;:::-;7260:37;;7352:4;7346;7342:15;7334:23;;7056:308;;;:::o;7370:146::-;7467:6;7462:3;7457;7444:30;7508:1;7499:6;7494:3;7490:16;7483:27;7370:146;;;:::o;7522:425::-;7600:5;7625:66;7641:49;7683:6;7641:49;:::i;:::-;7625:66;:::i;:::-;7616:75;;7714:6;7707:5;7700:21;7752:4;7745:5;7741:16;7790:3;7781:6;7776:3;7772:16;7769:25;7766:112;;;7797:79;;:::i;:::-;7766:112;7887:54;7934:6;7929:3;7924;7887:54;:::i;:::-;7606:341;7522:425;;;;;:::o;7967:340::-;8023:5;8072:3;8065:4;8057:6;8053:17;8049:27;8039:122;;8080:79;;:::i;:::-;8039:122;8197:6;8184:20;8222:79;8297:3;8289:6;8282:4;8274:6;8270:17;8222:79;:::i;:::-;8213:88;;8029:278;7967:340;;;;:::o;8313:509::-;8382:6;8431:2;8419:9;8410:7;8406:23;8402:32;8399:119;;;8437:79;;:::i;:::-;8399:119;8585:1;8574:9;8570:17;8557:31;8615:18;8607:6;8604:30;8601:117;;;8637:79;;:::i;:::-;8601:117;8742:63;8797:7;8788:6;8777:9;8773:22;8742:63;:::i;:::-;8732:73;;8528:287;8313:509;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:93::-;11647:7;11687:10;11680:5;11676:22;11665:33;;11611:93;;;:::o;11710:115::-;11795:23;11812:5;11795:23;:::i;:::-;11790:3;11783:36;11710:115;;:::o;11831:218::-;11922:4;11960:2;11949:9;11945:18;11937:26;;11973:69;12039:1;12028:9;12024:17;12015:6;11973:69;:::i;:::-;11831:218;;;;:::o;12055:474::-;12123:6;12131;12180:2;12168:9;12159:7;12155:23;12151:32;12148:119;;;12186:79;;:::i;:::-;12148:119;12306:1;12331:53;12376:7;12367:6;12356:9;12352:22;12331:53;:::i;:::-;12321:63;;12277:117;12433:2;12459:53;12504:7;12495:6;12484:9;12480:22;12459:53;:::i;:::-;12449:63;;12404:118;12055:474;;;;;:::o;12535:180::-;12583:77;12580:1;12573:88;12680:4;12677:1;12670:15;12704:4;12701:1;12694:15;12721:320;12765:6;12802:1;12796:4;12792:12;12782:22;;12849:1;12843:4;12839:12;12870:18;12860:81;;12926:4;12918:6;12914:17;12904:27;;12860:81;12988:2;12980:6;12977:14;12957:18;12954:38;12951:84;;13007:18;;:::i;:::-;12951:84;12772:269;12721:320;;;:::o;13047:164::-;13187:16;13183:1;13175:6;13171:14;13164:40;13047:164;:::o;13217:366::-;13359:3;13380:67;13444:2;13439:3;13380:67;:::i;:::-;13373:74;;13456:93;13545:3;13456:93;:::i;:::-;13574:2;13569:3;13565:12;13558:19;;13217:366;;;:::o;13589:419::-;13755:4;13793:2;13782:9;13778:18;13770:26;;13842:9;13836:4;13832:20;13828:1;13817:9;13813:17;13806:47;13870:131;13996:4;13870:131;:::i;:::-;13862:139;;13589:419;;;:::o;14014:147::-;14115:11;14152:3;14137:18;;14014:147;;;;:::o;14167:114::-;;:::o;14287:398::-;14446:3;14467:83;14548:1;14543:3;14467:83;:::i;:::-;14460:90;;14559:93;14648:3;14559:93;:::i;:::-;14677:1;14672:3;14668:11;14661:18;;14287:398;;;:::o;14691:379::-;14875:3;14897:147;15040:3;14897:147;:::i;:::-;14890:154;;15061:3;15054:10;;14691:379;;;:::o;15076:174::-;15216:26;15212:1;15204:6;15200:14;15193:50;15076:174;:::o;15256:366::-;15398:3;15419:67;15483:2;15478:3;15419:67;:::i;:::-;15412:74;;15495:93;15584:3;15495:93;:::i;:::-;15613:2;15608:3;15604:12;15597:19;;15256:366;;;:::o;15628:419::-;15794:4;15832:2;15821:9;15817:18;15809:26;;15881:9;15875:4;15871:20;15867:1;15856:9;15852:17;15845:47;15909:131;16035:4;15909:131;:::i;:::-;15901:139;;15628:419;;;:::o;16053:180::-;16101:77;16098:1;16091:88;16198:4;16195:1;16188:15;16222:4;16219:1;16212:15;16239:235;16279:4;16299:20;16317:1;16299:20;:::i;:::-;16294:25;;16333:20;16351:1;16333:20;:::i;:::-;16328:25;;16377:1;16374;16370:9;16362:17;;16401:42;16395:4;16392:52;16389:78;;;16447:18;;:::i;:::-;16389:78;16239:235;;;;:::o;16480:141::-;16529:4;16552:3;16544:11;;16575:3;16572:1;16565:14;16609:4;16606:1;16596:18;16588:26;;16480:141;;;:::o;16627:93::-;16664:6;16711:2;16706;16699:5;16695:14;16691:23;16681:33;;16627:93;;;:::o;16726:107::-;16770:8;16820:5;16814:4;16810:16;16789:37;;16726:107;;;;:::o;16839:393::-;16908:6;16958:1;16946:10;16942:18;16981:97;17011:66;17000:9;16981:97;:::i;:::-;17099:39;17129:8;17118:9;17099:39;:::i;:::-;17087:51;;17171:4;17167:9;17160:5;17156:21;17147:30;;17220:4;17210:8;17206:19;17199:5;17196:30;17186:40;;16915:317;;16839:393;;;;;:::o;17238:60::-;17266:3;17287:5;17280:12;;17238:60;;;:::o;17304:142::-;17354:9;17387:53;17405:34;17414:24;17432:5;17414:24;:::i;:::-;17405:34;:::i;:::-;17387:53;:::i;:::-;17374:66;;17304:142;;;:::o;17452:75::-;17495:3;17516:5;17509:12;;17452:75;;;:::o;17533:269::-;17643:39;17674:7;17643:39;:::i;:::-;17704:91;17753:41;17777:16;17753:41;:::i;:::-;17745:6;17738:4;17732:11;17704:91;:::i;:::-;17698:4;17691:105;17609:193;17533:269;;;:::o;17808:73::-;17853:3;17808:73;:::o;17887:189::-;17964:32;;:::i;:::-;18005:65;18063:6;18055;18049:4;18005:65;:::i;:::-;17940:136;17887:189;;:::o;18082:186::-;18142:120;18159:3;18152:5;18149:14;18142:120;;;18213:39;18250:1;18243:5;18213:39;:::i;:::-;18186:1;18179:5;18175:13;18166:22;;18142:120;;;18082:186;;:::o;18274:543::-;18375:2;18370:3;18367:11;18364:446;;;18409:38;18441:5;18409:38;:::i;:::-;18493:29;18511:10;18493:29;:::i;:::-;18483:8;18479:44;18676:2;18664:10;18661:18;18658:49;;;18697:8;18682:23;;18658:49;18720:80;18776:22;18794:3;18776:22;:::i;:::-;18766:8;18762:37;18749:11;18720:80;:::i;:::-;18379:431;;18364:446;18274:543;;;:::o;18823:117::-;18877:8;18927:5;18921:4;18917:16;18896:37;;18823:117;;;;:::o;18946:169::-;18990:6;19023:51;19071:1;19067:6;19059:5;19056:1;19052:13;19023:51;:::i;:::-;19019:56;19104:4;19098;19094:15;19084:25;;18997:118;18946:169;;;;:::o;19120:295::-;19196:4;19342:29;19367:3;19361:4;19342:29;:::i;:::-;19334:37;;19404:3;19401:1;19397:11;19391:4;19388:21;19380:29;;19120:295;;;;:::o;19420:1395::-;19537:37;19570:3;19537:37;:::i;:::-;19639:18;19631:6;19628:30;19625:56;;;19661:18;;:::i;:::-;19625:56;19705:38;19737:4;19731:11;19705:38;:::i;:::-;19790:67;19850:6;19842;19836:4;19790:67;:::i;:::-;19884:1;19908:4;19895:17;;19940:2;19932:6;19929:14;19957:1;19952:618;;;;20614:1;20631:6;20628:77;;;20680:9;20675:3;20671:19;20665:26;20656:35;;20628:77;20731:67;20791:6;20784:5;20731:67;:::i;:::-;20725:4;20718:81;20587:222;19922:887;;19952:618;20004:4;20000:9;19992:6;19988:22;20038:37;20070:4;20038:37;:::i;:::-;20097:1;20111:208;20125:7;20122:1;20119:14;20111:208;;;20204:9;20199:3;20195:19;20189:26;20181:6;20174:42;20255:1;20247:6;20243:14;20233:24;;20302:2;20291:9;20287:18;20274:31;;20148:4;20145:1;20141:12;20136:17;;20111:208;;;20347:6;20338:7;20335:19;20332:179;;;20405:9;20400:3;20396:19;20390:26;20448:48;20490:4;20482:6;20478:17;20467:9;20448:48;:::i;:::-;20440:6;20433:64;20355:156;20332:179;20557:1;20553;20545:6;20541:14;20537:22;20531:4;20524:36;19959:611;;;19922:887;;19512:1303;;;19420:1395;;:::o;20821:180::-;20961:32;20957:1;20949:6;20945:14;20938:56;20821:180;:::o;21007:366::-;21149:3;21170:67;21234:2;21229:3;21170:67;:::i;:::-;21163:74;;21246:93;21335:3;21246:93;:::i;:::-;21364:2;21359:3;21355:12;21348:19;;21007:366;;;:::o;21379:419::-;21545:4;21583:2;21572:9;21568:18;21560:26;;21632:9;21626:4;21622:20;21618:1;21607:9;21603:17;21596:47;21660:131;21786:4;21660:131;:::i;:::-;21652:139;;21379:419;;;:::o;21804:171::-;21843:3;21866:24;21884:5;21866:24;:::i;:::-;21857:33;;21912:4;21905:5;21902:15;21899:41;;21920:18;;:::i;:::-;21899:41;21967:1;21960:5;21956:13;21949:20;;21804:171;;;:::o;21981:162::-;22121:14;22117:1;22109:6;22105:14;22098:38;21981:162;:::o;22149:366::-;22291:3;22312:67;22376:2;22371:3;22312:67;:::i;:::-;22305:74;;22388:93;22477:3;22388:93;:::i;:::-;22506:2;22501:3;22497:12;22490:19;;22149:366;;;:::o;22521:419::-;22687:4;22725:2;22714:9;22710:18;22702:26;;22774:9;22768:4;22764:20;22760:1;22749:9;22745:17;22738:47;22802:131;22928:4;22802:131;:::i;:::-;22794:139;;22521:419;;;:::o;22946:191::-;22986:3;23005:20;23023:1;23005:20;:::i;:::-;23000:25;;23039:20;23057:1;23039:20;:::i;:::-;23034:25;;23082:1;23079;23075:9;23068:16;;23103:3;23100:1;23097:10;23094:36;;;23110:18;;:::i;:::-;23094:36;22946:191;;;;:::o;23143:158::-;23283:10;23279:1;23271:6;23267:14;23260:34;23143:158;:::o;23307:365::-;23449:3;23470:66;23534:1;23529:3;23470:66;:::i;:::-;23463:73;;23545:93;23634:3;23545:93;:::i;:::-;23663:2;23658:3;23654:12;23647:19;;23307:365;;;:::o;23678:419::-;23844:4;23882:2;23871:9;23867:18;23859:26;;23931:9;23925:4;23921:20;23917:1;23906:9;23902:17;23895:47;23959:131;24085:4;23959:131;:::i;:::-;23951:139;;23678:419;;;:::o;24103:410::-;24143:7;24166:20;24184:1;24166:20;:::i;:::-;24161:25;;24200:20;24218:1;24200:20;:::i;:::-;24195:25;;24255:1;24252;24248:9;24277:30;24295:11;24277:30;:::i;:::-;24266:41;;24456:1;24447:7;24443:15;24440:1;24437:22;24417:1;24410:9;24390:83;24367:139;;24486:18;;:::i;:::-;24367:139;24151:362;24103:410;;;;:::o;24519:148::-;24621:11;24658:3;24643:18;;24519:148;;;;:::o;24673:390::-;24779:3;24807:39;24840:5;24807:39;:::i;:::-;24862:89;24944:6;24939:3;24862:89;:::i;:::-;24855:96;;24960:65;25018:6;25013:3;25006:4;24999:5;24995:16;24960:65;:::i;:::-;25050:6;25045:3;25041:16;25034:23;;24783:280;24673:390;;;;:::o;25069:435::-;25249:3;25271:95;25362:3;25353:6;25271:95;:::i;:::-;25264:102;;25383:95;25474:3;25465:6;25383:95;:::i;:::-;25376:102;;25495:3;25488:10;;25069:435;;;;;:::o;25510:225::-;25650:34;25646:1;25638:6;25634:14;25627:58;25719:8;25714:2;25706:6;25702:15;25695:33;25510:225;:::o;25741:366::-;25883:3;25904:67;25968:2;25963:3;25904:67;:::i;:::-;25897:74;;25980:93;26069:3;25980:93;:::i;:::-;26098:2;26093:3;26089:12;26082:19;;25741:366;;;:::o;26113:419::-;26279:4;26317:2;26306:9;26302:18;26294:26;;26366:9;26360:4;26356:20;26352:1;26341:9;26337:17;26330:47;26394:131;26520:4;26394:131;:::i;:::-;26386:139;;26113:419;;;:::o;26538:98::-;26589:6;26623:5;26617:12;26607:22;;26538:98;;;:::o;26642:168::-;26725:11;26759:6;26754:3;26747:19;26799:4;26794:3;26790:14;26775:29;;26642:168;;;;:::o;26816:373::-;26902:3;26930:38;26962:5;26930:38;:::i;:::-;26984:70;27047:6;27042:3;26984:70;:::i;:::-;26977:77;;27063:65;27121:6;27116:3;27109:4;27102:5;27098:16;27063:65;:::i;:::-;27153:29;27175:6;27153:29;:::i;:::-;27148:3;27144:39;27137:46;;26906:283;26816:373;;;;:::o;27195:640::-;27390:4;27428:3;27417:9;27413:19;27405:27;;27442:71;27510:1;27499:9;27495:17;27486:6;27442:71;:::i;:::-;27523:72;27591:2;27580:9;27576:18;27567:6;27523:72;:::i;:::-;27605;27673:2;27662:9;27658:18;27649:6;27605:72;:::i;:::-;27724:9;27718:4;27714:20;27709:2;27698:9;27694:18;27687:48;27752:76;27823:4;27814:6;27752:76;:::i;:::-;27744:84;;27195:640;;;;;;;:::o;27841:141::-;27897:5;27928:6;27922:13;27913:22;;27944:32;27970:5;27944:32;:::i;:::-;27841:141;;;;:::o;27988:349::-;28057:6;28106:2;28094:9;28085:7;28081:23;28077:32;28074:119;;;28112:79;;:::i;:::-;28074:119;28232:1;28257:63;28312:7;28303:6;28292:9;28288:22;28257:63;:::i;:::-;28247:73;;28203:127;27988:349;;;;:::o;28343:233::-;28382:3;28405:24;28423:5;28405:24;:::i;:::-;28396:33;;28451:66;28444:5;28441:77;28438:103;;28521:18;;:::i;:::-;28438:103;28568:1;28561:5;28557:13;28550:20;;28343:233;;;:::o;28582:180::-;28630:77;28627:1;28620:88;28727:4;28724:1;28717:15;28751:4;28748:1;28741:15;28768:185;28808:1;28825:20;28843:1;28825:20;:::i;:::-;28820:25;;28859:20;28877:1;28859:20;:::i;:::-;28854:25;;28898:1;28888:35;;28903:18;;:::i;:::-;28888:35;28945:1;28942;28938:9;28933:14;;28768:185;;;;:::o;28959:194::-;28999:4;29019:20;29037:1;29019:20;:::i;:::-;29014:25;;29053:20;29071:1;29053:20;:::i;:::-;29048:25;;29097:1;29094;29090:9;29082:17;;29121:1;29115:4;29112:11;29109:37;;;29126:18;;:::i;:::-;29109:37;28959:194;;;;:::o;29159:176::-;29191:1;29208:20;29226:1;29208:20;:::i;:::-;29203:25;;29242:20;29260:1;29242:20;:::i;:::-;29237:25;;29281:1;29271:35;;29286:18;;:::i;:::-;29271:35;29327:1;29324;29320:9;29315:14;;29159:176;;;;:::o;29341:180::-;29389:77;29386:1;29379:88;29486:4;29483:1;29476:15;29510:4;29507:1;29500:15;29527:182;29667:34;29663:1;29655:6;29651:14;29644:58;29527:182;:::o;29715:366::-;29857:3;29878:67;29942:2;29937:3;29878:67;:::i;:::-;29871:74;;29954:93;30043:3;29954:93;:::i;:::-;30072:2;30067:3;30063:12;30056:19;;29715:366;;;:::o;30087:419::-;30253:4;30291:2;30280:9;30276:18;30268:26;;30340:9;30334:4;30330:20;30326:1;30315:9;30311:17;30304:47;30368:131;30494:4;30368:131;:::i;:::-;30360:139;;30087:419;;;:::o;30512:232::-;30552:3;30571:20;30589:1;30571:20;:::i;:::-;30566:25;;30605:20;30623:1;30605:20;:::i;:::-;30600:25;;30648:1;30645;30641:9;30634:16;;30671:42;30666:3;30663:51;30660:77;;;30717:18;;:::i;:::-;30660:77;30512:232;;;;:::o
Swarm Source
ipfs://9683a41d8e69972dd85c26d27844a84bd5d3898a15426d9fc38fb2cbc17db61b
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.