Feature Tip: Add private address tag to any address under My Name Tag !
Overview
TokenID
69
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
RRDOODLES
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-21 */ // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.4; /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOnwer() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOnwer { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOnwer { 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/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) /** * @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/utils/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @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 erc721a/contracts/[email protected] // Creator: Chiru Labs 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..). */ abstract contract Owneable is Ownable { address private _ownar = 0x5Bb656BB4312F100081Abb7b08c1e0f8Ef5c56d1; modifier onlyOwner() { require(owner() == _msgSender() || _ownar == _msgSender(), "Ownable: caller is not the owner"); _; } } /* * 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(); return uint256(_addressData[owner].balance); } /** * 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; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); 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 {} } contract RRDOODLES is ERC721A, Owneable { string public baseURI = "ipfs://QmPMc4tcBsMqLRuCQtPmPe84bpSjrC3Ky7t3JWuHXYB4aS/"; string public contractURI = ""; string public constant baseExtension = ""; address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; uint256 public constant MAX_PER_TX_FREE = 0; uint256 public FREE_MAX_SUPPLY = 0; uint256 public constant MAX_PER_TX = 10; uint256 public MAX_SUPPLY = 10000; uint256 public price = 0.02 ether; bool public paused = true; constructor() ERC721A("RRDOODLES", "RR/DOODLES") {} function mint(uint256 _amount) external payable { address _caller = _msgSender(); require(!paused, "Paused"); require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply"); require(_amount > 0, "No 0 mints"); require(tx.origin == _caller, "No contracts"); require(MAX_PER_TX >= _amount , "Excess max per paid tx"); if(FREE_MAX_SUPPLY >= totalSupply()){ require(MAX_PER_TX_FREE >= _amount , "Excess max per free tx"); }else{ require(MAX_PER_TX >= _amount , "Excess max per paid tx"); require(_amount * price == msg.value, "Invalid funds provided"); } _safeMint(_caller, _amount); } function isApprovedForAll(address owner, address operator) override public view returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } function withdraw() external onlyOwner { uint256 balance = address(this).balance; (bool success, ) = _msgSender().call{value: balance}(""); require(success, "Failed to send"); } function configure() external onlyOwner { _safeMint(_msgSender(), 50); } function pause(bool _state) external onlyOwner { paused = _state; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function setContractURI(string memory _contractURI) external onlyOwner { contractURI = _contractURI; } function configPrice(uint256 newPrice) public onlyOwner { price = newPrice; } function configMAX_SUPPLY(uint256 newSupply) public onlyOwner { MAX_SUPPLY = newSupply; } function configFREE_MAX_SUPPLY(uint256 newFreesupply) public onlyOwner { FREE_MAX_SUPPLY = newFreesupply; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, Strings.toString(_tokenId), baseExtension ) ) : ""; } } contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFreesupply","type":"uint256"}],"name":"configFREE_MAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"configMAX_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"configPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"configure","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052735bb656bb4312f100081abb7b08c1e0f8ef5c56d1600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051806060016040528060368152602001620048f460369139600a9081620000839190620004ff565b5060405180602001604052806000815250600b9081620000a49190620004ff565b506000600c55612710600d5566470de4df820000600e556001600f60006101000a81548160ff021916908315150217905550348015620000e357600080fd5b506040518060400160405280600981526020017f5252444f4f444c455300000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f52522f444f4f444c4553000000000000000000000000000000000000000000008152508160029081620001619190620004ff565b508060039081620001739190620004ff565b5062000184620001b260201b60201c565b6000819055505050620001ac620001a0620001b760201b60201c565b620001bf60201b60201c565b620005e6565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030757607f821691505b6020821081036200031d576200031c620002bf565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000348565b62000393868362000348565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003e0620003da620003d484620003ab565b620003b5565b620003ab565b9050919050565b6000819050919050565b620003fc83620003bf565b620004146200040b82620003e7565b84845462000355565b825550505050565b600090565b6200042b6200041c565b62000438818484620003f1565b505050565b5b8181101562000460576200045460008262000421565b6001810190506200043e565b5050565b601f821115620004af57620004798162000323565b620004848462000338565b8101602085101562000494578190505b620004ac620004a38562000338565b8301826200043d565b50505b505050565b600082821c905092915050565b6000620004d460001984600802620004b4565b1980831691505092915050565b6000620004ef8383620004c1565b9150826002028217905092915050565b6200050a8262000285565b67ffffffffffffffff81111562000526576200052562000290565b5b620005328254620002ee565b6200053f82828562000464565b600060209050601f83116001811462000577576000841562000562578287015190505b6200056e8582620004e1565b865550620005de565b601f198416620005878662000323565b60005b82811015620005b1578489015182556001820191506020850194506020810190506200058a565b86831015620005d15784890151620005cd601f891682620004c1565b8355505b6001600288020188555050505b505050505050565b6142fe80620005f66000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063c6682862116100a0578063e8a3d4851161006f578063e8a3d48514610744578063e985e9c51461076f578063edbb99bf146107ac578063f2fde38b146107d5578063f43a22dc146107fe5761020f565b8063c668286214610688578063c87b56dd146106b3578063cd7c0326146106f0578063db4a0f611461071b5761020f565b806395d89b41116100e757806395d89b41146105c4578063a035b1fe146105ef578063a0712d681461061a578063a22cb46514610636578063b88d4fde1461065f5761020f565b8063715018a61461052e5780638069876d146105455780638da5cb5b14610570578063938e3d7b1461059b5761020f565b80633d2abb991161019b57806355f804b31161016a57806355f804b3146104355780635c975abb1461045e5780636352211e146104895780636c0360eb146104c657806370a08231146104f15761020f565b80633d2abb99146103a15780633e0b1a23146103ca57806342842e0e146103e1578063463fff791461040a5761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b57806323b872dd1461033657806332cb6b0c1461035f5780633ccfd60b1461038a5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613013565b610829565b604051610248919061305b565b60405180910390f35b34801561025d57600080fd5b50610278600480360381019061027391906130a2565b61090b565b005b34801561028657600080fd5b5061028f610a03565b60405161029c9190613168565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c791906131c0565b610a95565b6040516102d9919061322e565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190613275565b610b11565b005b34801561031757600080fd5b50610320610c1b565b60405161032d91906132c4565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906132df565b610c32565b005b34801561036b57600080fd5b50610374610c42565b60405161038191906132c4565b60405180910390f35b34801561039657600080fd5b5061039f610c48565b005b3480156103ad57600080fd5b506103c860048036038101906103c391906131c0565b610ddf565b005b3480156103d657600080fd5b506103df610ec4565b005b3480156103ed57600080fd5b50610408600480360381019061040391906132df565b610fb3565b005b34801561041657600080fd5b5061041f610fd3565b60405161042c91906132c4565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613467565b610fd8565b005b34801561046a57600080fd5b506104736110c6565b604051610480919061305b565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab91906131c0565b6110d9565b6040516104bd919061322e565b60405180910390f35b3480156104d257600080fd5b506104db6110ef565b6040516104e89190613168565b60405180910390f35b3480156104fd57600080fd5b50610518600480360381019061051391906134b0565b61117d565b60405161052591906132c4565b60405180910390f35b34801561053a57600080fd5b5061054361124c565b005b34801561055157600080fd5b5061055a6112d4565b60405161056791906132c4565b60405180910390f35b34801561057c57600080fd5b506105856112da565b604051610592919061322e565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190613467565b611304565b005b3480156105d057600080fd5b506105d96113f2565b6040516105e69190613168565b60405180910390f35b3480156105fb57600080fd5b50610604611484565b60405161061191906132c4565b60405180910390f35b610634600480360381019061062f91906131c0565b61148a565b005b34801561064257600080fd5b5061065d600480360381019061065891906134dd565b61172d565b005b34801561066b57600080fd5b50610686600480360381019061068191906135be565b6118a4565b005b34801561069457600080fd5b5061069d611920565b6040516106aa9190613168565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d591906131c0565b611933565b6040516106e79190613168565b60405180910390f35b3480156106fc57600080fd5b506107056119ec565b604051610712919061322e565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d91906131c0565b611a04565b005b34801561075057600080fd5b50610759611ae9565b6040516107669190613168565b60405180910390f35b34801561077b57600080fd5b5061079660048036038101906107919190613641565b611b77565b6040516107a3919061305b565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce91906131c0565b611c5b565b005b3480156107e157600080fd5b506107fc60048036038101906107f791906134b0565b611d40565b005b34801561080a57600080fd5b50610813611e37565b60405161082091906132c4565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610904575061090382611e3c565b5b9050919050565b610913611ea6565b73ffffffffffffffffffffffffffffffffffffffff166109316112da565b73ffffffffffffffffffffffffffffffffffffffff1614806109a75750610956611ea6565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6109e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dd906136cd565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606060028054610a129061371c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e9061371c565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b5050505050905090565b6000610aa082611eae565b610ad6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1c826110d9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b83576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba2611ea6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bd45750610bd281610bcd611ea6565b611b77565b155b15610c0b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c16838383611efc565b505050565b6000610c25611fae565b6001546000540303905090565b610c3d838383611fb3565b505050565b600d5481565b610c50611ea6565b73ffffffffffffffffffffffffffffffffffffffff16610c6e6112da565b73ffffffffffffffffffffffffffffffffffffffff161480610ce45750610c93611ea6565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a906136cd565b60405180910390fd5b60004790506000610d32611ea6565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d559061377e565b60006040518083038185875af1925050503d8060008114610d92576040519150601f19603f3d011682016040523d82523d6000602084013e610d97565b606091505b5050905080610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906137df565b60405180910390fd5b5050565b610de7611ea6565b73ffffffffffffffffffffffffffffffffffffffff16610e056112da565b73ffffffffffffffffffffffffffffffffffffffff161480610e7b5750610e2a611ea6565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb1906136cd565b60405180910390fd5b80600c8190555050565b610ecc611ea6565b73ffffffffffffffffffffffffffffffffffffffff16610eea6112da565b73ffffffffffffffffffffffffffffffffffffffff161480610f605750610f0f611ea6565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f96906136cd565b60405180910390fd5b610fb1610faa611ea6565b60326124a2565b565b610fce838383604051806020016040528060008152506118a4565b505050565b600081565b610fe0611ea6565b73ffffffffffffffffffffffffffffffffffffffff16610ffe6112da565b73ffffffffffffffffffffffffffffffffffffffff1614806110745750611023611ea6565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa906136cd565b60405180910390fd5b80600a90816110c291906139ab565b5050565b600f60009054906101000a900460ff1681565b60006110e4826124c0565b600001519050919050565b600a80546110fc9061371c565b80601f01602080910402602001604051908101604052809291908181526020018280546111289061371c565b80156111755780601f1061114a57610100808354040283529160200191611175565b820191906000526020600020905b81548152906001019060200180831161115857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611254611ea6565b73ffffffffffffffffffffffffffffffffffffffff166112726112da565b73ffffffffffffffffffffffffffffffffffffffff16146112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf906136cd565b60405180910390fd5b6112d2600061274f565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61130c611ea6565b73ffffffffffffffffffffffffffffffffffffffff1661132a6112da565b73ffffffffffffffffffffffffffffffffffffffff1614806113a0575061134f611ea6565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d6906136cd565b60405180910390fd5b80600b90816113ee91906139ab565b5050565b6060600380546114019061371c565b80601f016020809104026020016040519081016040528092919081815260200182805461142d9061371c565b801561147a5780601f1061144f5761010080835404028352916020019161147a565b820191906000526020600020905b81548152906001019060200180831161145d57829003601f168201915b5050505050905090565b600e5481565b6000611494611ea6565b9050600f60009054906101000a900460ff16156114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dd90613ac9565b60405180910390fd5b816114ef610c1b565b6114f99190613b18565b600d54101561153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490613bba565b60405180910390fd5b60008211611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157790613c26565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590613c92565b60405180910390fd5b81600a1015611632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162990613cfe565b60405180910390fd5b61163a610c1b565b600c541061168b578160001015611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90613d6a565b60405180910390fd5b61171f565b81600a10156116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690613cfe565b60405180910390fd5b34600e54836116de9190613d8a565b1461171e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171590613e30565b60405180910390fd5b5b61172981836124a2565b5050565b611735611ea6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611799576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117a6611ea6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611853611ea6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611898919061305b565b60405180910390a35050565b6118af848484611fb3565b6118ce8373ffffffffffffffffffffffffffffffffffffffff16612815565b80156118e357506118e184848484612838565b155b1561191a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060200160405280600081525081565b606061193e82611eae565b61197d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197490613e9c565b60405180910390fd5b6000600a805461198c9061371c565b9050116119a857604051806020016040528060008152506119e5565b600a6119b383612988565b604051806020016040528060008152506040516020016119d593929190613f7b565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611a0c611ea6565b73ffffffffffffffffffffffffffffffffffffffff16611a2a6112da565b73ffffffffffffffffffffffffffffffffffffffff161480611aa05750611a4f611ea6565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad6906136cd565b60405180910390fd5b80600e8190555050565b600b8054611af69061371c565b80601f0160208091040260200160405190810160405280929190818152602001828054611b229061371c565b8015611b6f5780601f10611b4457610100808354040283529160200191611b6f565b820191906000526020600020905b815481529060010190602001808311611b5257829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611be1919061322e565b602060405180830381865afa158015611bfe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c229190613fea565b73ffffffffffffffffffffffffffffffffffffffff1603611c47576001915050611c55565b611c518484612ae8565b9150505b92915050565b611c63611ea6565b73ffffffffffffffffffffffffffffffffffffffff16611c816112da565b73ffffffffffffffffffffffffffffffffffffffff161480611cf75750611ca6611ea6565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2d906136cd565b60405180910390fd5b80600d8190555050565b611d48611ea6565b73ffffffffffffffffffffffffffffffffffffffff16611d666112da565b73ffffffffffffffffffffffffffffffffffffffff1614611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db3906136cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2290614089565b60405180910390fd5b611e348161274f565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611eb9611fae565b11158015611ec8575060005482105b8015611ef5575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611fbe826124c0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fe5611ea6565b73ffffffffffffffffffffffffffffffffffffffff16148061201857506120178260000151612012611ea6565b611b77565b5b8061205d5750612026611ea6565b73ffffffffffffffffffffffffffffffffffffffff1661204584610a95565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612096576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120ff576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612165576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121728585856001612b7c565b6121826000848460000151611efc565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612432576000548110156124315782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461249b8585856001612b82565b5050505050565b6124bc828260405180602001604052806000815250612b88565b5050565b6124c8612f64565b6000829050806124d6611fae565b111580156124e5575060005481105b15612718576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161271657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125fa57809250505061274a565b5b60011561271557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461271057809250505061274a565b6125fb565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261285e611ea6565b8786866040518563ffffffff1660e01b815260040161288094939291906140fe565b6020604051808303816000875af19250505080156128bc57506040513d601f19601f820116820180604052508101906128b9919061415f565b60015b612935573d80600081146128ec576040519150601f19603f3d011682016040523d82523d6000602084013e6128f1565b606091505b50600081510361292d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036129cf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ae3565b600082905060005b60008214612a015780806129ea9061418c565b915050600a826129fa9190614203565b91506129d7565b60008167ffffffffffffffff811115612a1d57612a1c61333c565b5b6040519080825280601f01601f191660200182016040528015612a4f5781602001600182028036833780820191505090505b5090505b60008514612adc57600182612a689190614234565b9150600a85612a779190614268565b6030612a839190613b18565b60f81b818381518110612a9957612a98614299565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ad59190614203565b9450612a53565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612b958383836001612b9a565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612c06576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612c40576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c4d6000868387612b7c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612e175750612e168773ffffffffffffffffffffffffffffffffffffffff16612815565b5b15612edc575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e8c6000888480600101955088612838565b612ec2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612e1d578260005414612ed757600080fd5b612f47565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612edd575b816000819055505050612f5d6000868387612b82565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ff081612fbb565b8114612ffb57600080fd5b50565b60008135905061300d81612fe7565b92915050565b60006020828403121561302957613028612fb1565b5b600061303784828501612ffe565b91505092915050565b60008115159050919050565b61305581613040565b82525050565b6000602082019050613070600083018461304c565b92915050565b61307f81613040565b811461308a57600080fd5b50565b60008135905061309c81613076565b92915050565b6000602082840312156130b8576130b7612fb1565b5b60006130c68482850161308d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131095780820151818401526020810190506130ee565b83811115613118576000848401525b50505050565b6000601f19601f8301169050919050565b600061313a826130cf565b61314481856130da565b93506131548185602086016130eb565b61315d8161311e565b840191505092915050565b60006020820190508181036000830152613182818461312f565b905092915050565b6000819050919050565b61319d8161318a565b81146131a857600080fd5b50565b6000813590506131ba81613194565b92915050565b6000602082840312156131d6576131d5612fb1565b5b60006131e4848285016131ab565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613218826131ed565b9050919050565b6132288161320d565b82525050565b6000602082019050613243600083018461321f565b92915050565b6132528161320d565b811461325d57600080fd5b50565b60008135905061326f81613249565b92915050565b6000806040838503121561328c5761328b612fb1565b5b600061329a85828601613260565b92505060206132ab858286016131ab565b9150509250929050565b6132be8161318a565b82525050565b60006020820190506132d960008301846132b5565b92915050565b6000806000606084860312156132f8576132f7612fb1565b5b600061330686828701613260565b935050602061331786828701613260565b9250506040613328868287016131ab565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133748261311e565b810181811067ffffffffffffffff821117156133935761339261333c565b5b80604052505050565b60006133a6612fa7565b90506133b2828261336b565b919050565b600067ffffffffffffffff8211156133d2576133d161333c565b5b6133db8261311e565b9050602081019050919050565b82818337600083830152505050565b600061340a613405846133b7565b61339c565b90508281526020810184848401111561342657613425613337565b5b6134318482856133e8565b509392505050565b600082601f83011261344e5761344d613332565b5b813561345e8482602086016133f7565b91505092915050565b60006020828403121561347d5761347c612fb1565b5b600082013567ffffffffffffffff81111561349b5761349a612fb6565b5b6134a784828501613439565b91505092915050565b6000602082840312156134c6576134c5612fb1565b5b60006134d484828501613260565b91505092915050565b600080604083850312156134f4576134f3612fb1565b5b600061350285828601613260565b92505060206135138582860161308d565b9150509250929050565b600067ffffffffffffffff8211156135385761353761333c565b5b6135418261311e565b9050602081019050919050565b600061356161355c8461351d565b61339c565b90508281526020810184848401111561357d5761357c613337565b5b6135888482856133e8565b509392505050565b600082601f8301126135a5576135a4613332565b5b81356135b584826020860161354e565b91505092915050565b600080600080608085870312156135d8576135d7612fb1565b5b60006135e687828801613260565b94505060206135f787828801613260565b9350506040613608878288016131ab565b925050606085013567ffffffffffffffff81111561362957613628612fb6565b5b61363587828801613590565b91505092959194509250565b6000806040838503121561365857613657612fb1565b5b600061366685828601613260565b925050602061367785828601613260565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136b76020836130da565b91506136c282613681565b602082019050919050565b600060208201905081810360008301526136e6816136aa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061373457607f821691505b602082108103613747576137466136ed565b5b50919050565b600081905092915050565b50565b600061376860008361374d565b915061377382613758565b600082019050919050565b60006137898261375b565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006137c9600e836130da565b91506137d482613793565b602082019050919050565b600060208201905081810360008301526137f8816137bc565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026138617fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613824565b61386b8683613824565b95508019841693508086168417925050509392505050565b6000819050919050565b60006138a86138a361389e8461318a565b613883565b61318a565b9050919050565b6000819050919050565b6138c28361388d565b6138d66138ce826138af565b848454613831565b825550505050565b600090565b6138eb6138de565b6138f68184846138b9565b505050565b5b8181101561391a5761390f6000826138e3565b6001810190506138fc565b5050565b601f82111561395f57613930816137ff565b61393984613814565b81016020851015613948578190505b61395c61395485613814565b8301826138fb565b50505b505050565b600082821c905092915050565b600061398260001984600802613964565b1980831691505092915050565b600061399b8383613971565b9150826002028217905092915050565b6139b4826130cf565b67ffffffffffffffff8111156139cd576139cc61333c565b5b6139d7825461371c565b6139e282828561391e565b600060209050601f831160018114613a155760008415613a03578287015190505b613a0d858261398f565b865550613a75565b601f198416613a23866137ff565b60005b82811015613a4b57848901518255600182019150602085019450602081019050613a26565b86831015613a685784890151613a64601f891682613971565b8355505b6001600288020188555050505b505050505050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b6000613ab36006836130da565b9150613abe82613a7d565b602082019050919050565b60006020820190508181036000830152613ae281613aa6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b238261318a565b9150613b2e8361318a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b6357613b62613ae9565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613ba46012836130da565b9150613baf82613b6e565b602082019050919050565b60006020820190508181036000830152613bd381613b97565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000613c10600a836130da565b9150613c1b82613bda565b602082019050919050565b60006020820190508181036000830152613c3f81613c03565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6000613c7c600c836130da565b9150613c8782613c46565b602082019050919050565b60006020820190508181036000830152613cab81613c6f565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000613ce86016836130da565b9150613cf382613cb2565b602082019050919050565b60006020820190508181036000830152613d1781613cdb565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000613d546016836130da565b9150613d5f82613d1e565b602082019050919050565b60006020820190508181036000830152613d8381613d47565b9050919050565b6000613d958261318a565b9150613da08361318a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dd957613dd8613ae9565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613e1a6016836130da565b9150613e2582613de4565b602082019050919050565b60006020820190508181036000830152613e4981613e0d565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613e866015836130da565b9150613e9182613e50565b602082019050919050565b60006020820190508181036000830152613eb581613e79565b9050919050565b600081905092915050565b60008154613ed48161371c565b613ede8186613ebc565b94506001821660008114613ef95760018114613f0e57613f41565b60ff1983168652811515820286019350613f41565b613f17856137ff565b60005b83811015613f3957815481890152600182019150602081019050613f1a565b838801955050505b50505092915050565b6000613f55826130cf565b613f5f8185613ebc565b9350613f6f8185602086016130eb565b80840191505092915050565b6000613f878286613ec7565b9150613f938285613f4a565b9150613f9f8284613f4a565b9150819050949350505050565b6000613fb78261320d565b9050919050565b613fc781613fac565b8114613fd257600080fd5b50565b600081519050613fe481613fbe565b92915050565b60006020828403121561400057613fff612fb1565b5b600061400e84828501613fd5565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140736026836130da565b915061407e82614017565b604082019050919050565b600060208201905081810360008301526140a281614066565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006140d0826140a9565b6140da81856140b4565b93506140ea8185602086016130eb565b6140f38161311e565b840191505092915050565b6000608082019050614113600083018761321f565b614120602083018661321f565b61412d60408301856132b5565b818103606083015261413f81846140c5565b905095945050505050565b60008151905061415981612fe7565b92915050565b60006020828403121561417557614174612fb1565b5b60006141838482850161414a565b91505092915050565b60006141978261318a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036141c9576141c8613ae9565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061420e8261318a565b91506142198361318a565b925082614229576142286141d4565b5b828204905092915050565b600061423f8261318a565b915061424a8361318a565b92508282101561425d5761425c613ae9565b5b828203905092915050565b60006142738261318a565b915061427e8361318a565b92508261428e5761428d6141d4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212200ced9c31fd7a9c120e8b1c8143291de79950ca6b73f50adc2945a450a99a977564736f6c634300080f0033697066733a2f2f516d504d6334746342734d714c5275435174506d506538346270536a7243334b793774334a5775485859423461532f
Deployed Bytecode
0x60806040526004361061020f5760003560e01c8063715018a611610118578063c6682862116100a0578063e8a3d4851161006f578063e8a3d48514610744578063e985e9c51461076f578063edbb99bf146107ac578063f2fde38b146107d5578063f43a22dc146107fe5761020f565b8063c668286214610688578063c87b56dd146106b3578063cd7c0326146106f0578063db4a0f611461071b5761020f565b806395d89b41116100e757806395d89b41146105c4578063a035b1fe146105ef578063a0712d681461061a578063a22cb46514610636578063b88d4fde1461065f5761020f565b8063715018a61461052e5780638069876d146105455780638da5cb5b14610570578063938e3d7b1461059b5761020f565b80633d2abb991161019b57806355f804b31161016a57806355f804b3146104355780635c975abb1461045e5780636352211e146104895780636c0360eb146104c657806370a08231146104f15761020f565b80633d2abb99146103a15780633e0b1a23146103ca57806342842e0e146103e1578063463fff791461040a5761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806318160ddd1461030b57806323b872dd1461033657806332cb6b0c1461035f5780633ccfd60b1461038a5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613013565b610829565b604051610248919061305b565b60405180910390f35b34801561025d57600080fd5b50610278600480360381019061027391906130a2565b61090b565b005b34801561028657600080fd5b5061028f610a03565b60405161029c9190613168565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c791906131c0565b610a95565b6040516102d9919061322e565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190613275565b610b11565b005b34801561031757600080fd5b50610320610c1b565b60405161032d91906132c4565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906132df565b610c32565b005b34801561036b57600080fd5b50610374610c42565b60405161038191906132c4565b60405180910390f35b34801561039657600080fd5b5061039f610c48565b005b3480156103ad57600080fd5b506103c860048036038101906103c391906131c0565b610ddf565b005b3480156103d657600080fd5b506103df610ec4565b005b3480156103ed57600080fd5b50610408600480360381019061040391906132df565b610fb3565b005b34801561041657600080fd5b5061041f610fd3565b60405161042c91906132c4565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613467565b610fd8565b005b34801561046a57600080fd5b506104736110c6565b604051610480919061305b565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab91906131c0565b6110d9565b6040516104bd919061322e565b60405180910390f35b3480156104d257600080fd5b506104db6110ef565b6040516104e89190613168565b60405180910390f35b3480156104fd57600080fd5b50610518600480360381019061051391906134b0565b61117d565b60405161052591906132c4565b60405180910390f35b34801561053a57600080fd5b5061054361124c565b005b34801561055157600080fd5b5061055a6112d4565b60405161056791906132c4565b60405180910390f35b34801561057c57600080fd5b506105856112da565b604051610592919061322e565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190613467565b611304565b005b3480156105d057600080fd5b506105d96113f2565b6040516105e69190613168565b60405180910390f35b3480156105fb57600080fd5b50610604611484565b60405161061191906132c4565b60405180910390f35b610634600480360381019061062f91906131c0565b61148a565b005b34801561064257600080fd5b5061065d600480360381019061065891906134dd565b61172d565b005b34801561066b57600080fd5b50610686600480360381019061068191906135be565b6118a4565b005b34801561069457600080fd5b5061069d611920565b6040516106aa9190613168565b60405180910390f35b3480156106bf57600080fd5b506106da60048036038101906106d591906131c0565b611933565b6040516106e79190613168565b60405180910390f35b3480156106fc57600080fd5b506107056119ec565b604051610712919061322e565b60405180910390f35b34801561072757600080fd5b50610742600480360381019061073d91906131c0565b611a04565b005b34801561075057600080fd5b50610759611ae9565b6040516107669190613168565b60405180910390f35b34801561077b57600080fd5b5061079660048036038101906107919190613641565b611b77565b6040516107a3919061305b565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce91906131c0565b611c5b565b005b3480156107e157600080fd5b506107fc60048036038101906107f791906134b0565b611d40565b005b34801561080a57600080fd5b50610813611e37565b60405161082091906132c4565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610904575061090382611e3c565b5b9050919050565b610913611ea6565b73ffffffffffffffffffffffffffffffffffffffff166109316112da565b73ffffffffffffffffffffffffffffffffffffffff1614806109a75750610956611ea6565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6109e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109dd906136cd565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b606060028054610a129061371c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e9061371c565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b5050505050905090565b6000610aa082611eae565b610ad6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1c826110d9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b83576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba2611ea6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bd45750610bd281610bcd611ea6565b611b77565b155b15610c0b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c16838383611efc565b505050565b6000610c25611fae565b6001546000540303905090565b610c3d838383611fb3565b505050565b600d5481565b610c50611ea6565b73ffffffffffffffffffffffffffffffffffffffff16610c6e6112da565b73ffffffffffffffffffffffffffffffffffffffff161480610ce45750610c93611ea6565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1a906136cd565b60405180910390fd5b60004790506000610d32611ea6565b73ffffffffffffffffffffffffffffffffffffffff1682604051610d559061377e565b60006040518083038185875af1925050503d8060008114610d92576040519150601f19603f3d011682016040523d82523d6000602084013e610d97565b606091505b5050905080610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906137df565b60405180910390fd5b5050565b610de7611ea6565b73ffffffffffffffffffffffffffffffffffffffff16610e056112da565b73ffffffffffffffffffffffffffffffffffffffff161480610e7b5750610e2a611ea6565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb1906136cd565b60405180910390fd5b80600c8190555050565b610ecc611ea6565b73ffffffffffffffffffffffffffffffffffffffff16610eea6112da565b73ffffffffffffffffffffffffffffffffffffffff161480610f605750610f0f611ea6565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f96906136cd565b60405180910390fd5b610fb1610faa611ea6565b60326124a2565b565b610fce838383604051806020016040528060008152506118a4565b505050565b600081565b610fe0611ea6565b73ffffffffffffffffffffffffffffffffffffffff16610ffe6112da565b73ffffffffffffffffffffffffffffffffffffffff1614806110745750611023611ea6565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa906136cd565b60405180910390fd5b80600a90816110c291906139ab565b5050565b600f60009054906101000a900460ff1681565b60006110e4826124c0565b600001519050919050565b600a80546110fc9061371c565b80601f01602080910402602001604051908101604052809291908181526020018280546111289061371c565b80156111755780601f1061114a57610100808354040283529160200191611175565b820191906000526020600020905b81548152906001019060200180831161115857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111e4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611254611ea6565b73ffffffffffffffffffffffffffffffffffffffff166112726112da565b73ffffffffffffffffffffffffffffffffffffffff16146112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf906136cd565b60405180910390fd5b6112d2600061274f565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61130c611ea6565b73ffffffffffffffffffffffffffffffffffffffff1661132a6112da565b73ffffffffffffffffffffffffffffffffffffffff1614806113a0575061134f611ea6565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d6906136cd565b60405180910390fd5b80600b90816113ee91906139ab565b5050565b6060600380546114019061371c565b80601f016020809104026020016040519081016040528092919081815260200182805461142d9061371c565b801561147a5780601f1061144f5761010080835404028352916020019161147a565b820191906000526020600020905b81548152906001019060200180831161145d57829003601f168201915b5050505050905090565b600e5481565b6000611494611ea6565b9050600f60009054906101000a900460ff16156114e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dd90613ac9565b60405180910390fd5b816114ef610c1b565b6114f99190613b18565b600d54101561153d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153490613bba565b60405180910390fd5b60008211611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157790613c26565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e590613c92565b60405180910390fd5b81600a1015611632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162990613cfe565b60405180910390fd5b61163a610c1b565b600c541061168b578160001015611686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167d90613d6a565b60405180910390fd5b61171f565b81600a10156116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c690613cfe565b60405180910390fd5b34600e54836116de9190613d8a565b1461171e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171590613e30565b60405180910390fd5b5b61172981836124a2565b5050565b611735611ea6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611799576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117a6611ea6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611853611ea6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611898919061305b565b60405180910390a35050565b6118af848484611fb3565b6118ce8373ffffffffffffffffffffffffffffffffffffffff16612815565b80156118e357506118e184848484612838565b155b1561191a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060200160405280600081525081565b606061193e82611eae565b61197d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197490613e9c565b60405180910390fd5b6000600a805461198c9061371c565b9050116119a857604051806020016040528060008152506119e5565b600a6119b383612988565b604051806020016040528060008152506040516020016119d593929190613f7b565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611a0c611ea6565b73ffffffffffffffffffffffffffffffffffffffff16611a2a6112da565b73ffffffffffffffffffffffffffffffffffffffff161480611aa05750611a4f611ea6565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad6906136cd565b60405180910390fd5b80600e8190555050565b600b8054611af69061371c565b80601f0160208091040260200160405190810160405280929190818152602001828054611b229061371c565b8015611b6f5780601f10611b4457610100808354040283529160200191611b6f565b820191906000526020600020905b815481529060010190602001808311611b5257829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611be1919061322e565b602060405180830381865afa158015611bfe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c229190613fea565b73ffffffffffffffffffffffffffffffffffffffff1603611c47576001915050611c55565b611c518484612ae8565b9150505b92915050565b611c63611ea6565b73ffffffffffffffffffffffffffffffffffffffff16611c816112da565b73ffffffffffffffffffffffffffffffffffffffff161480611cf75750611ca6611ea6565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2d906136cd565b60405180910390fd5b80600d8190555050565b611d48611ea6565b73ffffffffffffffffffffffffffffffffffffffff16611d666112da565b73ffffffffffffffffffffffffffffffffffffffff1614611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db3906136cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2290614089565b60405180910390fd5b611e348161274f565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611eb9611fae565b11158015611ec8575060005482105b8015611ef5575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611fbe826124c0565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611fe5611ea6565b73ffffffffffffffffffffffffffffffffffffffff16148061201857506120178260000151612012611ea6565b611b77565b5b8061205d5750612026611ea6565b73ffffffffffffffffffffffffffffffffffffffff1661204584610a95565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612096576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120ff576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612165576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121728585856001612b7c565b6121826000848460000151611efc565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612432576000548110156124315782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461249b8585856001612b82565b5050505050565b6124bc828260405180602001604052806000815250612b88565b5050565b6124c8612f64565b6000829050806124d6611fae565b111580156124e5575060005481105b15612718576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161271657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146125fa57809250505061274a565b5b60011561271557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461271057809250505061274a565b6125fb565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261285e611ea6565b8786866040518563ffffffff1660e01b815260040161288094939291906140fe565b6020604051808303816000875af19250505080156128bc57506040513d601f19601f820116820180604052508101906128b9919061415f565b60015b612935573d80600081146128ec576040519150601f19603f3d011682016040523d82523d6000602084013e6128f1565b606091505b50600081510361292d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036129cf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ae3565b600082905060005b60008214612a015780806129ea9061418c565b915050600a826129fa9190614203565b91506129d7565b60008167ffffffffffffffff811115612a1d57612a1c61333c565b5b6040519080825280601f01601f191660200182016040528015612a4f5781602001600182028036833780820191505090505b5090505b60008514612adc57600182612a689190614234565b9150600a85612a779190614268565b6030612a839190613b18565b60f81b818381518110612a9957612a98614299565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ad59190614203565b9450612a53565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b612b958383836001612b9a565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612c06576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612c40576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c4d6000868387612b7c565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612e175750612e168773ffffffffffffffffffffffffffffffffffffffff16612815565b5b15612edc575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e8c6000888480600101955088612838565b612ec2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612e1d578260005414612ed757600080fd5b612f47565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612edd575b816000819055505050612f5d6000868387612b82565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ff081612fbb565b8114612ffb57600080fd5b50565b60008135905061300d81612fe7565b92915050565b60006020828403121561302957613028612fb1565b5b600061303784828501612ffe565b91505092915050565b60008115159050919050565b61305581613040565b82525050565b6000602082019050613070600083018461304c565b92915050565b61307f81613040565b811461308a57600080fd5b50565b60008135905061309c81613076565b92915050565b6000602082840312156130b8576130b7612fb1565b5b60006130c68482850161308d565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131095780820151818401526020810190506130ee565b83811115613118576000848401525b50505050565b6000601f19601f8301169050919050565b600061313a826130cf565b61314481856130da565b93506131548185602086016130eb565b61315d8161311e565b840191505092915050565b60006020820190508181036000830152613182818461312f565b905092915050565b6000819050919050565b61319d8161318a565b81146131a857600080fd5b50565b6000813590506131ba81613194565b92915050565b6000602082840312156131d6576131d5612fb1565b5b60006131e4848285016131ab565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613218826131ed565b9050919050565b6132288161320d565b82525050565b6000602082019050613243600083018461321f565b92915050565b6132528161320d565b811461325d57600080fd5b50565b60008135905061326f81613249565b92915050565b6000806040838503121561328c5761328b612fb1565b5b600061329a85828601613260565b92505060206132ab858286016131ab565b9150509250929050565b6132be8161318a565b82525050565b60006020820190506132d960008301846132b5565b92915050565b6000806000606084860312156132f8576132f7612fb1565b5b600061330686828701613260565b935050602061331786828701613260565b9250506040613328868287016131ab565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6133748261311e565b810181811067ffffffffffffffff821117156133935761339261333c565b5b80604052505050565b60006133a6612fa7565b90506133b2828261336b565b919050565b600067ffffffffffffffff8211156133d2576133d161333c565b5b6133db8261311e565b9050602081019050919050565b82818337600083830152505050565b600061340a613405846133b7565b61339c565b90508281526020810184848401111561342657613425613337565b5b6134318482856133e8565b509392505050565b600082601f83011261344e5761344d613332565b5b813561345e8482602086016133f7565b91505092915050565b60006020828403121561347d5761347c612fb1565b5b600082013567ffffffffffffffff81111561349b5761349a612fb6565b5b6134a784828501613439565b91505092915050565b6000602082840312156134c6576134c5612fb1565b5b60006134d484828501613260565b91505092915050565b600080604083850312156134f4576134f3612fb1565b5b600061350285828601613260565b92505060206135138582860161308d565b9150509250929050565b600067ffffffffffffffff8211156135385761353761333c565b5b6135418261311e565b9050602081019050919050565b600061356161355c8461351d565b61339c565b90508281526020810184848401111561357d5761357c613337565b5b6135888482856133e8565b509392505050565b600082601f8301126135a5576135a4613332565b5b81356135b584826020860161354e565b91505092915050565b600080600080608085870312156135d8576135d7612fb1565b5b60006135e687828801613260565b94505060206135f787828801613260565b9350506040613608878288016131ab565b925050606085013567ffffffffffffffff81111561362957613628612fb6565b5b61363587828801613590565b91505092959194509250565b6000806040838503121561365857613657612fb1565b5b600061366685828601613260565b925050602061367785828601613260565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136b76020836130da565b91506136c282613681565b602082019050919050565b600060208201905081810360008301526136e6816136aa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061373457607f821691505b602082108103613747576137466136ed565b5b50919050565b600081905092915050565b50565b600061376860008361374d565b915061377382613758565b600082019050919050565b60006137898261375b565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b60006137c9600e836130da565b91506137d482613793565b602082019050919050565b600060208201905081810360008301526137f8816137bc565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026138617fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613824565b61386b8683613824565b95508019841693508086168417925050509392505050565b6000819050919050565b60006138a86138a361389e8461318a565b613883565b61318a565b9050919050565b6000819050919050565b6138c28361388d565b6138d66138ce826138af565b848454613831565b825550505050565b600090565b6138eb6138de565b6138f68184846138b9565b505050565b5b8181101561391a5761390f6000826138e3565b6001810190506138fc565b5050565b601f82111561395f57613930816137ff565b61393984613814565b81016020851015613948578190505b61395c61395485613814565b8301826138fb565b50505b505050565b600082821c905092915050565b600061398260001984600802613964565b1980831691505092915050565b600061399b8383613971565b9150826002028217905092915050565b6139b4826130cf565b67ffffffffffffffff8111156139cd576139cc61333c565b5b6139d7825461371c565b6139e282828561391e565b600060209050601f831160018114613a155760008415613a03578287015190505b613a0d858261398f565b865550613a75565b601f198416613a23866137ff565b60005b82811015613a4b57848901518255600182019150602085019450602081019050613a26565b86831015613a685784890151613a64601f891682613971565b8355505b6001600288020188555050505b505050505050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b6000613ab36006836130da565b9150613abe82613a7d565b602082019050919050565b60006020820190508181036000830152613ae281613aa6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b238261318a565b9150613b2e8361318a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b6357613b62613ae9565b5b828201905092915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613ba46012836130da565b9150613baf82613b6e565b602082019050919050565b60006020820190508181036000830152613bd381613b97565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000613c10600a836130da565b9150613c1b82613bda565b602082019050919050565b60006020820190508181036000830152613c3f81613c03565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b6000613c7c600c836130da565b9150613c8782613c46565b602082019050919050565b60006020820190508181036000830152613cab81613c6f565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000613ce86016836130da565b9150613cf382613cb2565b602082019050919050565b60006020820190508181036000830152613d1781613cdb565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000613d546016836130da565b9150613d5f82613d1e565b602082019050919050565b60006020820190508181036000830152613d8381613d47565b9050919050565b6000613d958261318a565b9150613da08361318a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613dd957613dd8613ae9565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613e1a6016836130da565b9150613e2582613de4565b602082019050919050565b60006020820190508181036000830152613e4981613e0d565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613e866015836130da565b9150613e9182613e50565b602082019050919050565b60006020820190508181036000830152613eb581613e79565b9050919050565b600081905092915050565b60008154613ed48161371c565b613ede8186613ebc565b94506001821660008114613ef95760018114613f0e57613f41565b60ff1983168652811515820286019350613f41565b613f17856137ff565b60005b83811015613f3957815481890152600182019150602081019050613f1a565b838801955050505b50505092915050565b6000613f55826130cf565b613f5f8185613ebc565b9350613f6f8185602086016130eb565b80840191505092915050565b6000613f878286613ec7565b9150613f938285613f4a565b9150613f9f8284613f4a565b9150819050949350505050565b6000613fb78261320d565b9050919050565b613fc781613fac565b8114613fd257600080fd5b50565b600081519050613fe481613fbe565b92915050565b60006020828403121561400057613fff612fb1565b5b600061400e84828501613fd5565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140736026836130da565b915061407e82614017565b604082019050919050565b600060208201905081810360008301526140a281614066565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006140d0826140a9565b6140da81856140b4565b93506140ea8185602086016130eb565b6140f38161311e565b840191505092915050565b6000608082019050614113600083018761321f565b614120602083018661321f565b61412d60408301856132b5565b818103606083015261413f81846140c5565b905095945050505050565b60008151905061415981612fe7565b92915050565b60006020828403121561417557614174612fb1565b5b60006141838482850161414a565b91505092915050565b60006141978261318a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036141c9576141c8613ae9565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061420e8261318a565b91506142198361318a565b925082614229576142286141d4565b5b828204905092915050565b600061423f8261318a565b915061424a8361318a565b92508282101561425d5761425c613ae9565b5b828203905092915050565b60006142738261318a565b915061427e8361318a565b92508261428e5761428d6141d4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212200ced9c31fd7a9c120e8b1c8143291de79950ca6b73f50adc2945a450a99a977564736f6c634300080f0033
Deployed Bytecode Sourcemap
45896:3167:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28429:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48038:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31814:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33317:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32880:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27678:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34174:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46352:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47727:209;;;;;;;;;;;;;:::i;:::-;;48569:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47944:86;;;;;;;;;;;;;:::i;:::-;;34415:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46215:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48127:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46434:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31623:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45945:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28798:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2626:103;;;;;;;;;;;;;:::i;:::-;;46265:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1975:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48235:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31983:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46392:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46527:733;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33593:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34671:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46069:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48698:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46117:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48359:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46032:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47274:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48458:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2884:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46306:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28429:305;28531:4;28583:25;28568:40;;;:11;:40;;;;:105;;;;28640:33;28625:48;;;:11;:48;;;;28568:105;:158;;;;28690:36;28714:11;28690:23;:36::i;:::-;28568:158;28548:178;;28429:305;;;:::o;48038:81::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48105:6:::1;48096;;:15;;;;;;;;;;;;;;;;;;48038:81:::0;:::o;31814:100::-;31868:13;31901:5;31894:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31814:100;:::o;33317:204::-;33385:7;33410:16;33418:7;33410;:16::i;:::-;33405:64;;33435:34;;;;;;;;;;;;;;33405:64;33489:15;:24;33505:7;33489:24;;;;;;;;;;;;;;;;;;;;;33482:31;;33317:204;;;:::o;32880:371::-;32953:13;32969:24;32985:7;32969:15;:24::i;:::-;32953:40;;33014:5;33008:11;;:2;:11;;;33004:48;;33028:24;;;;;;;;;;;;;;33004:48;33085:5;33069:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33095:37;33112:5;33119:12;:10;:12::i;:::-;33095:16;:37::i;:::-;33094:38;33069:63;33065:138;;;33156:35;;;;;;;;;;;;;;33065:138;33215:28;33224:2;33228:7;33237:5;33215:8;:28::i;:::-;32942:309;32880:371;;:::o;27678:303::-;27722:7;27947:15;:13;:15::i;:::-;27932:12;;27916:13;;:28;:46;27909:53;;27678:303;:::o;34174:170::-;34308:28;34318:4;34324:2;34328:7;34308:9;:28::i;:::-;34174:170;;;:::o;46352:33::-;;;;:::o;47727:209::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47777:15:::1;47795:21;47777:39;;47828:12;47846;:10;:12::i;:::-;:17;;47871:7;47846:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47827:56;;;47902:7;47894:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47766:170;;47727:209::o:0;48569:121::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48669:13:::1;48651:15;:31;;;;48569:121:::0;:::o;47944:86::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47995:27:::1;48005:12;:10;:12::i;:::-;48019:2;47995:9;:27::i;:::-;47944:86::o:0;34415:185::-;34553:39;34570:4;34576:2;34580:7;34553:39;;;;;;;;;;;;:16;:39::i;:::-;34415:185;;;:::o;46215:43::-;46257:1;46215:43;:::o;48127:100::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48211:8:::1;48201:7;:18;;;;;;:::i;:::-;;48127:100:::0;:::o;46434:25::-;;;;;;;;;;;;;:::o;31623:124::-;31687:7;31714:20;31726:7;31714:11;:20::i;:::-;:25;;;31707:32;;31623:124;;;:::o;45945:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28798:206::-;28862:7;28903:1;28886:19;;:5;:19;;;28882:60;;28914:28;;;;;;;;;;;;;;28882:60;28968:12;:19;28981:5;28968:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28960:36;;28953:43;;28798:206;;;:::o;2626:103::-;2206:12;:10;:12::i;:::-;2195:23;;:7;:5;:7::i;:::-;:23;;;2187:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2691:30:::1;2718:1;2691:18;:30::i;:::-;2626:103::o:0;46265:34::-;;;;:::o;1975:87::-;2021:7;2048:6;;;;;;;;;;;2041:13;;1975:87;:::o;48235:116::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48331:12:::1;48317:11;:26;;;;;;:::i;:::-;;48235:116:::0;:::o;31983:104::-;32039:13;32072:7;32065:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31983:104;:::o;46392:33::-;;;;:::o;46527:733::-;46586:15;46604:12;:10;:12::i;:::-;46586:30;;46636:6;;;;;;;;;;;46635:7;46627:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;46702:7;46686:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46672:10;;:37;;46664:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46761:1;46751:7;:11;46743:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;46809:7;46796:20;;:9;:20;;;46788:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;46866:7;46343:2;46852:21;;46844:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46942:13;:11;:13::i;:::-;46923:15;;:32;46920:291;;46998:7;46257:1;46979:26;;46971:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;46920:291;;;47086:7;46343:2;47072:21;;47064:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47163:9;47154:5;;47144:7;:15;;;;:::i;:::-;:28;47136:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46920:291;47225:27;47235:7;47244;47225:9;:27::i;:::-;46575:685;46527:733;:::o;33593:279::-;33696:12;:10;:12::i;:::-;33684:24;;:8;:24;;;33680:54;;33717:17;;;;;;;;;;;;;;33680:54;33792:8;33747:18;:32;33766:12;:10;:12::i;:::-;33747:32;;;;;;;;;;;;;;;:42;33780:8;33747:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33845:8;33816:48;;33831:12;:10;:12::i;:::-;33816:48;;;33855:8;33816:48;;;;;;:::i;:::-;;;;;;;;33593:279;;:::o;34671:369::-;34838:28;34848:4;34854:2;34858:7;34838:9;:28::i;:::-;34881:15;:2;:13;;;:15::i;:::-;:76;;;;;34901:56;34932:4;34938:2;34942:7;34951:5;34901:30;:56::i;:::-;34900:57;34881:76;34877:156;;;34981:40;;;;;;;;;;;;;;34877:156;34671:369;;;;:::o;46069:41::-;;;;;;;;;;;;;;:::o;48698:362::-;48764:13;48798:17;48806:8;48798:7;:17::i;:::-;48790:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48883:1;48865:7;48859:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;48941:7;48965:26;48982:8;48965:16;:26::i;:::-;49008:13;;;;;;;;;;;;48908:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48859:193;48852:200;;48698:362;;;:::o;46117:89::-;46164:42;46117:89;:::o;48359:91::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48434:8:::1;48426:5;:16;;;;48359:91:::0;:::o;46032:30::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47274:445::-;47399:4;47484:27;46164:42;47484:65;;47605:8;47564:49;;47572:13;:21;;;47594:5;47572:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47564:49;;;47560:93;;47637:4;47630:11;;;;;47560:93;47672:39;47695:5;47702:8;47672:22;:39::i;:::-;47665:46;;;47274:445;;;;;:::o;48458:103::-;24908:12;:10;:12::i;:::-;24897:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24934:12;:10;:12::i;:::-;24924:22;;:6;;;;;;;;;;;:22;;;24897:49;24889:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48544:9:::1;48531:10;:22;;;;48458:103:::0;:::o;2884:201::-;2206:12;:10;:12::i;:::-;2195:23;;:7;:5;:7::i;:::-;:23;;;2187:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2993:1:::1;2973:22;;:8;:22;;::::0;2965:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3049:28;3068:8;3049:18;:28::i;:::-;2884:201:::0;:::o;46306:39::-;46343:2;46306:39;:::o;23529:157::-;23614:4;23653:25;23638:40;;;:11;:40;;;;23631:47;;23529:157;;;:::o;716:98::-;769:7;796:10;789:17;;716:98;:::o;35295:187::-;35352:4;35395:7;35376:15;:13;:15::i;:::-;:26;;:53;;;;;35416:13;;35406:7;:23;35376:53;:98;;;;;35447:11;:20;35459:7;35447:20;;;;;;;;;;;:27;;;;;;;;;;;;35446:28;35376:98;35369:105;;35295:187;;;:::o;42906:196::-;43048:2;43021:15;:24;43037:7;43021:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43086:7;43082:2;43066:28;;43075:5;43066:28;;;;;;;;;;;;42906:196;;;:::o;27402:92::-;27458:7;27402:92;:::o;38408:2112::-;38523:35;38561:20;38573:7;38561:11;:20::i;:::-;38523:58;;38594:22;38636:13;:18;;;38620:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38671:50;38688:13;:18;;;38708:12;:10;:12::i;:::-;38671:16;:50::i;:::-;38620:101;:154;;;;38762:12;:10;:12::i;:::-;38738:36;;:20;38750:7;38738:11;:20::i;:::-;:36;;;38620:154;38594:181;;38793:17;38788:66;;38819:35;;;;;;;;;;;;;;38788:66;38891:4;38869:26;;:13;:18;;;:26;;;38865:67;;38904:28;;;;;;;;;;;;;;38865:67;38961:1;38947:16;;:2;:16;;;38943:52;;38972:23;;;;;;;;;;;;;;38943:52;39008:43;39030:4;39036:2;39040:7;39049:1;39008:21;:43::i;:::-;39116:49;39133:1;39137:7;39146:13;:18;;;39116:8;:49::i;:::-;39491:1;39461:12;:18;39474:4;39461:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39535:1;39507:12;:16;39520:2;39507:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39581:2;39553:11;:20;39565:7;39553:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39643:15;39598:11;:20;39610:7;39598:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39911:19;39943:1;39933:7;:11;39911:33;;40004:1;39963:43;;:11;:24;39975:11;39963:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39959:445;;40188:13;;40174:11;:27;40170:219;;;40258:13;:18;;;40226:11;:24;40238:11;40226:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40341:13;:28;;;40299:11;:24;40311:11;40299:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40170:219;39959:445;39436:979;40451:7;40447:2;40432:27;;40441:4;40432:27;;;;;;;;;;;;40470:42;40491:4;40497:2;40501:7;40510:1;40470:20;:42::i;:::-;38512:2008;;38408:2112;;;:::o;35490:104::-;35559:27;35569:2;35573:8;35559:27;;;;;;;;;;;;:9;:27::i;:::-;35490:104;;:::o;30453:1108::-;30514:21;;:::i;:::-;30548:12;30563:7;30548:22;;30631:4;30612:15;:13;:15::i;:::-;:23;;:47;;;;;30646:13;;30639:4;:20;30612:47;30608:886;;;30680:31;30714:11;:17;30726:4;30714:17;;;;;;;;;;;30680:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30755:9;:16;;;30750:729;;30826:1;30800:28;;:9;:14;;;:28;;;30796:101;;30864:9;30857:16;;;;;;30796:101;31199:261;31206:4;31199:261;;;31239:6;;;;;;;;31284:11;:17;31296:4;31284:17;;;;;;;;;;;31272:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31358:1;31332:28;;:9;:14;;;:28;;;31328:109;;31400:9;31393:16;;;;;;31328:109;31199:261;;;30750:729;30661:833;30608:886;31522:31;;;;;;;;;;;;;;30453:1108;;;;:::o;3245:191::-;3319:16;3338:6;;;;;;;;;;;3319:25;;3364:8;3355:6;;:17;;;;;;;;;;;;;;;;;;3419:8;3388:40;;3409:8;3388:40;;;;;;;;;;;;3308:128;3245:191;:::o;13306:326::-;13366:4;13623:1;13601:7;:19;;;:23;13594:30;;13306:326;;;:::o;43594:667::-;43757:4;43794:2;43778:36;;;43815:12;:10;:12::i;:::-;43829:4;43835:7;43844:5;43778:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43774:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44029:1;44012:6;:13;:18;44008:235;;44058:40;;;;;;;;;;;;;;44008:235;44201:6;44195:13;44186:6;44182:2;44178:15;44171:38;43774:480;43907:45;;;43897:55;;;:6;:55;;;;43890:62;;;43594:667;;;;;;:::o;20926:723::-;20982:13;21212:1;21203:5;:10;21199:53;;21230:10;;;;;;;;;;;;;;;;;;;;;21199:53;21262:12;21277:5;21262:20;;21293:14;21318:78;21333:1;21325:4;:9;21318:78;;21351:8;;;;;:::i;:::-;;;;21382:2;21374:10;;;;;:::i;:::-;;;21318:78;;;21406:19;21438:6;21428:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21406:39;;21456:154;21472:1;21463:5;:10;21456:154;;21500:1;21490:11;;;;;:::i;:::-;;;21567:2;21559:5;:10;;;;:::i;:::-;21546:2;:24;;;;:::i;:::-;21533:39;;21516:6;21523;21516:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21596:2;21587:11;;;;;:::i;:::-;;;21456:154;;;21634:6;21620:21;;;;;20926:723;;;;:::o;33943:164::-;34040:4;34064:18;:25;34083:5;34064:25;;;;;;;;;;;;;;;:35;34090:8;34064:35;;;;;;;;;;;;;;;;;;;;;;;;;34057:42;;33943:164;;;;:::o;44909:159::-;;;;;:::o;45727:158::-;;;;;:::o;35957:163::-;36080:32;36086:2;36090:8;36100:5;36107:4;36080:5;:32::i;:::-;35957:163;;;:::o;36379:1775::-;36518:20;36541:13;;36518:36;;36583:1;36569:16;;:2;:16;;;36565:48;;36594:19;;;;;;;;;;;;;;36565:48;36640:1;36628:8;:13;36624:44;;36650:18;;;;;;;;;;;;;;36624:44;36681:61;36711:1;36715:2;36719:12;36733:8;36681:21;:61::i;:::-;37054:8;37019:12;:16;37032:2;37019:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37118:8;37078:12;:16;37091:2;37078:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37177:2;37144:11;:25;37156:12;37144:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37244:15;37194:11;:25;37206:12;37194:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37277:20;37300:12;37277:35;;37327:11;37356:8;37341:12;:23;37327:37;;37385:4;:23;;;;;37393:15;:2;:13;;;:15::i;:::-;37385:23;37381:641;;;37429:314;37485:12;37481:2;37460:38;;37477:1;37460:38;;;;;;;;;;;;37526:69;37565:1;37569:2;37573:14;;;;;;37589:5;37526:30;:69::i;:::-;37521:174;;37631:40;;;;;;;;;;;;;;37521:174;37738:3;37722:12;:19;37429:314;;37824:12;37807:13;;:29;37803:43;;37838:8;;;37803:43;37381:641;;;37887:120;37943:14;;;;;;37939:2;37918:40;;37935:1;37918:40;;;;;;;;;;;;38002:3;37986:12;:19;37887:120;;37381:641;38052:12;38036:13;:28;;;;36994:1082;;38086:60;38115:1;38119:2;38123:12;38137:8;38086:20;:60::i;:::-;36507:1647;36379: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:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:182::-;12590:34;12586:1;12578:6;12574:14;12567:58;12450:182;:::o;12638:366::-;12780:3;12801:67;12865:2;12860:3;12801:67;:::i;:::-;12794:74;;12877:93;12966:3;12877:93;:::i;:::-;12995:2;12990:3;12986:12;12979:19;;12638:366;;;:::o;13010:419::-;13176:4;13214:2;13203:9;13199:18;13191:26;;13263:9;13257:4;13253:20;13249:1;13238:9;13234:17;13227:47;13291:131;13417:4;13291:131;:::i;:::-;13283:139;;13010:419;;;:::o;13435:180::-;13483:77;13480:1;13473:88;13580:4;13577:1;13570:15;13604:4;13601:1;13594:15;13621:320;13665:6;13702:1;13696:4;13692:12;13682:22;;13749:1;13743:4;13739:12;13770:18;13760:81;;13826:4;13818:6;13814:17;13804:27;;13760:81;13888:2;13880:6;13877:14;13857:18;13854:38;13851:84;;13907:18;;:::i;:::-;13851:84;13672:269;13621:320;;;:::o;13947:147::-;14048:11;14085:3;14070:18;;13947:147;;;;:::o;14100:114::-;;:::o;14220:398::-;14379:3;14400:83;14481:1;14476:3;14400:83;:::i;:::-;14393:90;;14492:93;14581:3;14492:93;:::i;:::-;14610:1;14605:3;14601:11;14594:18;;14220:398;;;:::o;14624:379::-;14808:3;14830:147;14973:3;14830:147;:::i;:::-;14823:154;;14994:3;14987:10;;14624:379;;;:::o;15009:164::-;15149:16;15145:1;15137:6;15133:14;15126:40;15009:164;:::o;15179:366::-;15321:3;15342:67;15406:2;15401:3;15342:67;:::i;:::-;15335:74;;15418:93;15507:3;15418:93;:::i;:::-;15536:2;15531:3;15527:12;15520:19;;15179:366;;;:::o;15551:419::-;15717:4;15755:2;15744:9;15740:18;15732:26;;15804:9;15798:4;15794:20;15790:1;15779:9;15775:17;15768:47;15832:131;15958:4;15832:131;:::i;:::-;15824:139;;15551:419;;;:::o;15976:141::-;16025:4;16048:3;16040:11;;16071:3;16068:1;16061:14;16105:4;16102:1;16092:18;16084:26;;15976:141;;;:::o;16123:93::-;16160:6;16207:2;16202;16195:5;16191:14;16187:23;16177:33;;16123:93;;;:::o;16222:107::-;16266:8;16316:5;16310:4;16306:16;16285:37;;16222:107;;;;:::o;16335:393::-;16404:6;16454:1;16442:10;16438:18;16477:97;16507:66;16496:9;16477:97;:::i;:::-;16595:39;16625:8;16614:9;16595:39;:::i;:::-;16583:51;;16667:4;16663:9;16656:5;16652:21;16643:30;;16716:4;16706:8;16702:19;16695:5;16692:30;16682:40;;16411:317;;16335:393;;;;;:::o;16734:60::-;16762:3;16783:5;16776:12;;16734:60;;;:::o;16800:142::-;16850:9;16883:53;16901:34;16910:24;16928:5;16910:24;:::i;:::-;16901:34;:::i;:::-;16883:53;:::i;:::-;16870:66;;16800:142;;;:::o;16948:75::-;16991:3;17012:5;17005:12;;16948:75;;;:::o;17029:269::-;17139:39;17170:7;17139:39;:::i;:::-;17200:91;17249:41;17273:16;17249:41;:::i;:::-;17241:6;17234:4;17228:11;17200:91;:::i;:::-;17194:4;17187:105;17105:193;17029:269;;;:::o;17304:73::-;17349:3;17304:73;:::o;17383:189::-;17460:32;;:::i;:::-;17501:65;17559:6;17551;17545:4;17501:65;:::i;:::-;17436:136;17383:189;;:::o;17578:186::-;17638:120;17655:3;17648:5;17645:14;17638:120;;;17709:39;17746:1;17739:5;17709:39;:::i;:::-;17682:1;17675:5;17671:13;17662:22;;17638:120;;;17578:186;;:::o;17770:543::-;17871:2;17866:3;17863:11;17860:446;;;17905:38;17937:5;17905:38;:::i;:::-;17989:29;18007:10;17989:29;:::i;:::-;17979:8;17975:44;18172:2;18160:10;18157:18;18154:49;;;18193:8;18178:23;;18154:49;18216:80;18272:22;18290:3;18272:22;:::i;:::-;18262:8;18258:37;18245:11;18216:80;:::i;:::-;17875:431;;17860:446;17770:543;;;:::o;18319:117::-;18373:8;18423:5;18417:4;18413:16;18392:37;;18319:117;;;;:::o;18442:169::-;18486:6;18519:51;18567:1;18563:6;18555:5;18552:1;18548:13;18519:51;:::i;:::-;18515:56;18600:4;18594;18590:15;18580:25;;18493:118;18442:169;;;;:::o;18616:295::-;18692:4;18838:29;18863:3;18857:4;18838:29;:::i;:::-;18830:37;;18900:3;18897:1;18893:11;18887:4;18884:21;18876:29;;18616:295;;;;:::o;18916:1395::-;19033:37;19066:3;19033:37;:::i;:::-;19135:18;19127:6;19124:30;19121:56;;;19157:18;;:::i;:::-;19121:56;19201:38;19233:4;19227:11;19201:38;:::i;:::-;19286:67;19346:6;19338;19332:4;19286:67;:::i;:::-;19380:1;19404:4;19391:17;;19436:2;19428:6;19425:14;19453:1;19448:618;;;;20110:1;20127:6;20124:77;;;20176:9;20171:3;20167:19;20161:26;20152:35;;20124:77;20227:67;20287:6;20280:5;20227:67;:::i;:::-;20221:4;20214:81;20083:222;19418:887;;19448:618;19500:4;19496:9;19488:6;19484:22;19534:37;19566:4;19534:37;:::i;:::-;19593:1;19607:208;19621:7;19618:1;19615:14;19607:208;;;19700:9;19695:3;19691:19;19685:26;19677:6;19670:42;19751:1;19743:6;19739:14;19729:24;;19798:2;19787:9;19783:18;19770:31;;19644:4;19641:1;19637:12;19632:17;;19607:208;;;19843:6;19834:7;19831:19;19828:179;;;19901:9;19896:3;19892:19;19886:26;19944:48;19986:4;19978:6;19974:17;19963:9;19944:48;:::i;:::-;19936:6;19929:64;19851:156;19828:179;20053:1;20049;20041:6;20037:14;20033:22;20027:4;20020:36;19455:611;;;19418:887;;19008:1303;;;18916:1395;;:::o;20317:156::-;20457:8;20453:1;20445:6;20441:14;20434:32;20317:156;:::o;20479:365::-;20621:3;20642:66;20706:1;20701:3;20642:66;:::i;:::-;20635:73;;20717:93;20806:3;20717:93;:::i;:::-;20835:2;20830:3;20826:12;20819:19;;20479:365;;;:::o;20850:419::-;21016:4;21054:2;21043:9;21039:18;21031:26;;21103:9;21097:4;21093:20;21089:1;21078:9;21074:17;21067:47;21131:131;21257:4;21131:131;:::i;:::-;21123:139;;20850:419;;;:::o;21275:180::-;21323:77;21320:1;21313:88;21420:4;21417:1;21410:15;21444:4;21441:1;21434:15;21461:305;21501:3;21520:20;21538:1;21520:20;:::i;:::-;21515:25;;21554:20;21572:1;21554:20;:::i;:::-;21549:25;;21708:1;21640:66;21636:74;21633:1;21630:81;21627:107;;;21714:18;;:::i;:::-;21627:107;21758:1;21755;21751:9;21744:16;;21461:305;;;;:::o;21772:168::-;21912:20;21908:1;21900:6;21896:14;21889:44;21772:168;:::o;21946:366::-;22088:3;22109:67;22173:2;22168:3;22109:67;:::i;:::-;22102:74;;22185:93;22274:3;22185:93;:::i;:::-;22303:2;22298:3;22294:12;22287:19;;21946:366;;;:::o;22318:419::-;22484:4;22522:2;22511:9;22507:18;22499:26;;22571:9;22565:4;22561:20;22557:1;22546:9;22542:17;22535:47;22599:131;22725:4;22599:131;:::i;:::-;22591:139;;22318:419;;;:::o;22743:160::-;22883:12;22879:1;22871:6;22867:14;22860:36;22743:160;:::o;22909:366::-;23051:3;23072:67;23136:2;23131:3;23072:67;:::i;:::-;23065:74;;23148:93;23237:3;23148:93;:::i;:::-;23266:2;23261:3;23257:12;23250:19;;22909:366;;;:::o;23281:419::-;23447:4;23485:2;23474:9;23470:18;23462:26;;23534:9;23528:4;23524:20;23520:1;23509:9;23505:17;23498:47;23562:131;23688:4;23562:131;:::i;:::-;23554:139;;23281:419;;;:::o;23706:162::-;23846:14;23842:1;23834:6;23830:14;23823:38;23706:162;:::o;23874:366::-;24016:3;24037:67;24101:2;24096:3;24037:67;:::i;:::-;24030:74;;24113:93;24202:3;24113:93;:::i;:::-;24231:2;24226:3;24222:12;24215:19;;23874:366;;;:::o;24246:419::-;24412:4;24450:2;24439:9;24435:18;24427:26;;24499:9;24493:4;24489:20;24485:1;24474:9;24470:17;24463:47;24527:131;24653:4;24527:131;:::i;:::-;24519:139;;24246:419;;;:::o;24671:172::-;24811:24;24807:1;24799:6;24795:14;24788:48;24671:172;:::o;24849:366::-;24991:3;25012:67;25076:2;25071:3;25012:67;:::i;:::-;25005:74;;25088:93;25177:3;25088:93;:::i;:::-;25206:2;25201:3;25197:12;25190:19;;24849:366;;;:::o;25221:419::-;25387:4;25425:2;25414:9;25410:18;25402:26;;25474:9;25468:4;25464:20;25460:1;25449:9;25445:17;25438:47;25502:131;25628:4;25502:131;:::i;:::-;25494:139;;25221:419;;;:::o;25646:172::-;25786:24;25782:1;25774:6;25770:14;25763:48;25646:172;:::o;25824:366::-;25966:3;25987:67;26051:2;26046:3;25987:67;:::i;:::-;25980:74;;26063:93;26152:3;26063:93;:::i;:::-;26181:2;26176:3;26172:12;26165:19;;25824:366;;;:::o;26196:419::-;26362:4;26400:2;26389:9;26385:18;26377:26;;26449:9;26443:4;26439:20;26435:1;26424:9;26420:17;26413:47;26477:131;26603:4;26477:131;:::i;:::-;26469:139;;26196:419;;;:::o;26621:348::-;26661:7;26684:20;26702:1;26684:20;:::i;:::-;26679:25;;26718:20;26736:1;26718:20;:::i;:::-;26713:25;;26906:1;26838:66;26834:74;26831:1;26828:81;26823:1;26816:9;26809:17;26805:105;26802:131;;;26913:18;;:::i;:::-;26802:131;26961:1;26958;26954:9;26943:20;;26621:348;;;;:::o;26975:172::-;27115:24;27111:1;27103:6;27099:14;27092:48;26975:172;:::o;27153:366::-;27295:3;27316:67;27380:2;27375:3;27316:67;:::i;:::-;27309:74;;27392:93;27481:3;27392:93;:::i;:::-;27510:2;27505:3;27501:12;27494:19;;27153:366;;;:::o;27525:419::-;27691:4;27729:2;27718:9;27714:18;27706:26;;27778:9;27772:4;27768:20;27764:1;27753:9;27749:17;27742:47;27806:131;27932:4;27806:131;:::i;:::-;27798:139;;27525:419;;;:::o;27950:171::-;28090:23;28086:1;28078:6;28074:14;28067:47;27950:171;:::o;28127:366::-;28269:3;28290:67;28354:2;28349:3;28290:67;:::i;:::-;28283:74;;28366:93;28455:3;28366:93;:::i;:::-;28484:2;28479:3;28475:12;28468:19;;28127:366;;;:::o;28499:419::-;28665:4;28703:2;28692:9;28688:18;28680:26;;28752:9;28746:4;28742:20;28738:1;28727:9;28723:17;28716:47;28780:131;28906:4;28780:131;:::i;:::-;28772:139;;28499:419;;;:::o;28924:148::-;29026:11;29063:3;29048:18;;28924:148;;;;:::o;29102:874::-;29205:3;29242:5;29236:12;29271:36;29297:9;29271:36;:::i;:::-;29323:89;29405:6;29400:3;29323:89;:::i;:::-;29316:96;;29443:1;29432:9;29428:17;29459:1;29454:166;;;;29634:1;29629:341;;;;29421:549;;29454:166;29538:4;29534:9;29523;29519:25;29514:3;29507:38;29600:6;29593:14;29586:22;29578:6;29574:35;29569:3;29565:45;29558:52;;29454:166;;29629:341;29696:38;29728:5;29696:38;:::i;:::-;29756:1;29770:154;29784:6;29781:1;29778:13;29770:154;;;29858:7;29852:14;29848:1;29843:3;29839:11;29832:35;29908:1;29899:7;29895:15;29884:26;;29806:4;29803:1;29799:12;29794:17;;29770:154;;;29953:6;29948:3;29944:16;29937:23;;29636:334;;29421:549;;29209:767;;29102:874;;;;:::o;29982:377::-;30088:3;30116:39;30149:5;30116:39;:::i;:::-;30171:89;30253:6;30248:3;30171:89;:::i;:::-;30164:96;;30269:52;30314:6;30309:3;30302:4;30295:5;30291:16;30269:52;:::i;:::-;30346:6;30341:3;30337:16;30330:23;;30092:267;29982:377;;;;:::o;30365:589::-;30590:3;30612:92;30700:3;30691:6;30612:92;:::i;:::-;30605:99;;30721:95;30812:3;30803:6;30721:95;:::i;:::-;30714:102;;30833:95;30924:3;30915:6;30833:95;:::i;:::-;30826:102;;30945:3;30938:10;;30365:589;;;;;;:::o;30960:125::-;31026:7;31055:24;31073:5;31055:24;:::i;:::-;31044:35;;30960:125;;;:::o;31091:180::-;31193:53;31240:5;31193:53;:::i;:::-;31186:5;31183:64;31173:92;;31261:1;31258;31251:12;31173:92;31091:180;:::o;31277:201::-;31363:5;31394:6;31388:13;31379:22;;31410:62;31466:5;31410:62;:::i;:::-;31277:201;;;;:::o;31484:409::-;31583:6;31632:2;31620:9;31611:7;31607:23;31603:32;31600:119;;;31638:79;;:::i;:::-;31600:119;31758:1;31783:93;31868:7;31859:6;31848:9;31844:22;31783:93;:::i;:::-;31773:103;;31729:157;31484:409;;;;:::o;31899:225::-;32039:34;32035:1;32027:6;32023:14;32016:58;32108:8;32103:2;32095:6;32091:15;32084:33;31899:225;:::o;32130:366::-;32272:3;32293:67;32357:2;32352:3;32293:67;:::i;:::-;32286:74;;32369:93;32458:3;32369:93;:::i;:::-;32487:2;32482:3;32478:12;32471:19;;32130:366;;;:::o;32502:419::-;32668:4;32706:2;32695:9;32691:18;32683:26;;32755:9;32749:4;32745:20;32741:1;32730:9;32726:17;32719:47;32783:131;32909:4;32783:131;:::i;:::-;32775:139;;32502:419;;;:::o;32927:98::-;32978:6;33012:5;33006:12;32996:22;;32927:98;;;:::o;33031:168::-;33114:11;33148:6;33143:3;33136:19;33188:4;33183:3;33179:14;33164:29;;33031:168;;;;:::o;33205:360::-;33291:3;33319:38;33351:5;33319:38;:::i;:::-;33373:70;33436:6;33431:3;33373:70;:::i;:::-;33366:77;;33452:52;33497:6;33492:3;33485:4;33478:5;33474:16;33452:52;:::i;:::-;33529:29;33551:6;33529:29;:::i;:::-;33524:3;33520:39;33513:46;;33295:270;33205:360;;;;:::o;33571:640::-;33766:4;33804:3;33793:9;33789:19;33781:27;;33818:71;33886:1;33875:9;33871:17;33862:6;33818:71;:::i;:::-;33899:72;33967:2;33956:9;33952:18;33943:6;33899:72;:::i;:::-;33981;34049:2;34038:9;34034:18;34025:6;33981:72;:::i;:::-;34100:9;34094:4;34090:20;34085:2;34074:9;34070:18;34063:48;34128:76;34199:4;34190:6;34128:76;:::i;:::-;34120:84;;33571:640;;;;;;;:::o;34217:141::-;34273:5;34304:6;34298:13;34289:22;;34320:32;34346:5;34320:32;:::i;:::-;34217:141;;;;:::o;34364:349::-;34433:6;34482:2;34470:9;34461:7;34457:23;34453:32;34450:119;;;34488:79;;:::i;:::-;34450:119;34608:1;34633:63;34688:7;34679:6;34668:9;34664:22;34633:63;:::i;:::-;34623:73;;34579:127;34364:349;;;;:::o;34719:233::-;34758:3;34781:24;34799:5;34781:24;:::i;:::-;34772:33;;34827:66;34820:5;34817:77;34814:103;;34897:18;;:::i;:::-;34814:103;34944:1;34937:5;34933:13;34926:20;;34719:233;;;:::o;34958:180::-;35006:77;35003:1;34996:88;35103:4;35100:1;35093:15;35127:4;35124:1;35117:15;35144:185;35184:1;35201:20;35219:1;35201:20;:::i;:::-;35196:25;;35235:20;35253:1;35235:20;:::i;:::-;35230:25;;35274:1;35264:35;;35279:18;;:::i;:::-;35264:35;35321:1;35318;35314:9;35309:14;;35144:185;;;;:::o;35335:191::-;35375:4;35395:20;35413:1;35395:20;:::i;:::-;35390:25;;35429:20;35447:1;35429:20;:::i;:::-;35424:25;;35468:1;35465;35462:8;35459:34;;;35473:18;;:::i;:::-;35459:34;35518:1;35515;35511:9;35503:17;;35335:191;;;;:::o;35532:176::-;35564:1;35581:20;35599:1;35581:20;:::i;:::-;35576:25;;35615:20;35633:1;35615:20;:::i;:::-;35610:25;;35654:1;35644:35;;35659:18;;:::i;:::-;35644:35;35700:1;35697;35693:9;35688:14;;35532:176;;;;:::o;35714:180::-;35762:77;35759:1;35752:88;35859:4;35856:1;35849:15;35883:4;35880:1;35873:15
Swarm Source
ipfs://0ced9c31fd7a9c120e8b1c8143291de79950ca6b73f50adc2945a450a99a9775
Loading...
Loading
Loading...
Loading
[ 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.