ERC-721
Overview
Max Total Supply
666 ETH
Holders
262
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 ETHLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
nonXCOPY
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-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. */ //join 3gm 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 nonXCOPY is ERC721A, Owneable { string public baseURI = "ipfs:///"; string public contractURI = "ipfs://Qmb4jNBS3akoSZz6WDJYRYRXi8xZzooiMhwcQhGgKQoBV3"; string public baseExtension = ".json"; address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; uint256 public MAX_PER_TX_FREE = 2; uint256 public free_max_supply = 100; uint256 public constant MAX_PER_TX = 5; uint256 public max_supply = 666; uint256 public price = 0.005 ether; //badpie + chandog = cutebaby //3gm bool public paused = true; constructor() ERC721A("NonXCOPY", "ETH") {} function PublicMint(uint256 _amount) external payable { address _caller = _msgSender(); require(!paused, "Paused"); require(max_supply >= totalSupply() + _amount, "All Gone"); require(_amount > 0, "No 0 mints"); require(tx.origin == _caller, "No Contract minting."); 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. //badpie = king? 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 TeamMint(uint256 quantity) external onlyOwner { _safeMint(_msgSender(), quantity); } 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_PER_TX_FREE(uint256 newFREE) public onlyOwner { MAX_PER_TX_FREE = newFREE; } function configmax_supply(uint256 newSupply) public onlyOwner { max_supply = newSupply; } function configfree_max_supply(uint256 newFreesupply) public onlyOwner { free_max_supply = newFreesupply; } function newbaseExtension(string memory newex) public onlyOwner { baseExtension = newex; } //Future Use function cry(uint256[] memory tokenids) external onlyOwner { uint256 len = tokenids.length; for (uint256 i; i < len; i++) { uint256 tokenid = tokenids[i]; _burn(tokenid); } } 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":"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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"TeamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"newFREE","type":"uint256"}],"name":"configMAX_PER_TX_FREE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"configPrice","outputs":[],"stateMutability":"nonpayable","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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenids","type":"uint256[]"}],"name":"cry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"free_max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newex","type":"string"}],"name":"newbaseExtension","outputs":[],"stateMutability":"nonpayable","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"}]
Contract Creation Code
6080604052735bb656bb4312f100081abb7b08c1e0f8ef5c56d1600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280600881526020017f697066733a2f2f2f000000000000000000000000000000000000000000000000815250600a9080519060200190620000a69291906200031a565b5060405180606001604052806035815260200162004e8e60359139600b9080519060200190620000d89291906200031a565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620001269291906200031a565b506002600d556064600e5561029a600f556611c37937e080006010556001601160006101000a81548160ff0219169083151502179055503480156200016a57600080fd5b506040518060400160405280600881526020017f4e6f6e58434f50590000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f45544800000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001ef9291906200031a565b508060039080519060200190620002089291906200031a565b50620002196200024760201b60201c565b600081905550505062000241620002356200024c60201b60201c565b6200025460201b60201c565b6200042f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200032890620003ca565b90600052602060002090601f0160209004810192826200034c576000855562000398565b82601f106200036757805160ff191683800117855562000398565b8280016001018555821562000398579182015b82811115620003975782518255916020019190600101906200037a565b5b509050620003a79190620003ab565b5090565b5b80821115620003c6576000816000905550600101620003ac565b5090565b60006002820490506001821680620003e357607f821691505b60208210811415620003fa57620003f962000400565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614a4f806200043f6000396000f3fe6080604052600436106102305760003560e01c806370a082311161012e578063b88d4fde116100ab578063db4a0f611161006f578063db4a0f61146107f2578063e8a3d4851461081b578063e985e9c514610846578063f2fde38b14610883578063f43a22dc146108ac57610230565b8063b88d4fde1461070d578063c668286214610736578063c87b56dd14610761578063cd7c03261461079e578063d476de1b146107c957610230565b8063938e3d7b116100f2578063938e3d7b1461064957806395d89b41146106725780639fb17e341461069d578063a035b1fe146106b9578063a22cb465146106e457610230565b806370a0823114610576578063715018a6146105b35780637e0c7fc5146105ca5780638a333b50146105f35780638da5cb5b1461061e57610230565b806326e987d7116101bc57806355f804b31161018057806355f804b3146104a357806357ea89b6146104cc5780635c975abb146104e35780636352211e1461050e5780636c0360eb1461054b57610230565b806326e987d7146103d25780632aa80807146103fd57806342842e0e14610426578063463fff791461044f5780635312e5cf1461047a57610230565b8063095ea7b311610203578063095ea7b31461030357806318160ddd1461032c57806318e223dd1461035757806320f6402f1461038057806323b872dd146103a957610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613c80565b6108d7565b604051610269919061411d565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613c53565b6109b9565b005b3480156102a757600080fd5b506102b0610ab1565b6040516102bd9190614138565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190613d50565b610b43565b6040516102fa91906140b6565b60405180910390f35b34801561030f57600080fd5b5061032a60048036038101906103259190613bca565b610bbf565b005b34801561033857600080fd5b50610341610cca565b60405161034e91906142ba565b60405180910390f35b34801561036357600080fd5b5061037e60048036038101906103799190613d50565b610ce1565b005b34801561038c57600080fd5b506103a760048036038101906103a29190613c0a565b610dc6565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190613ab4565b610ef3565b005b3480156103de57600080fd5b506103e7610f03565b6040516103f491906142ba565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613d07565b610f09565b005b34801561043257600080fd5b5061044d60048036038101906104489190613ab4565b610ffe565b005b34801561045b57600080fd5b5061046461101e565b60405161047191906142ba565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190613d50565b611024565b005b3480156104af57600080fd5b506104ca60048036038101906104c59190613d07565b611109565b005b3480156104d857600080fd5b506104e16111fe565b005b3480156104ef57600080fd5b506104f8611395565b604051610505919061411d565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190613d50565b6113a8565b60405161054291906140b6565b60405180910390f35b34801561055757600080fd5b506105606113be565b60405161056d9190614138565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190613a47565b61144c565b6040516105aa91906142ba565b60405180910390f35b3480156105bf57600080fd5b506105c861151c565b005b3480156105d657600080fd5b506105f160048036038101906105ec9190613d50565b6115a4565b005b3480156105ff57600080fd5b50610608611693565b60405161061591906142ba565b60405180910390f35b34801561062a57600080fd5b50610633611699565b60405161064091906140b6565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b9190613d07565b6116c3565b005b34801561067e57600080fd5b506106876117b8565b6040516106949190614138565b60405180910390f35b6106b760048036038101906106b29190613d50565b61184a565b005b3480156106c557600080fd5b506106ce611aee565b6040516106db91906142ba565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190613b8a565b611af4565b005b34801561071957600080fd5b50610734600480360381019061072f9190613b07565b611c6c565b005b34801561074257600080fd5b5061074b611ce8565b6040516107589190614138565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190613d50565b611d76565b6040516107959190614138565b60405180910390f35b3480156107aa57600080fd5b506107b3611e21565b6040516107c091906140b6565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb9190613d50565b611e39565b005b3480156107fe57600080fd5b5061081960048036038101906108149190613d50565b611f1e565b005b34801561082757600080fd5b50610830612003565b60405161083d9190614138565b60405180910390f35b34801561085257600080fd5b5061086d60048036038101906108689190613a74565b612091565b60405161087a919061411d565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190613a47565b612185565b005b3480156108b857600080fd5b506108c161227d565b6040516108ce91906142ba565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b257506109b182612282565b5b9050919050565b6109c16122ec565b73ffffffffffffffffffffffffffffffffffffffff166109df611699565b73ffffffffffffffffffffffffffffffffffffffff161480610a555750610a046122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b9061423a565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060028054610ac0906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610aec906145c8565b8015610b395780601f10610b0e57610100808354040283529160200191610b39565b820191906000526020600020905b815481529060010190602001808311610b1c57829003601f168201915b5050505050905090565b6000610b4e826122f4565b610b84576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bca826113a8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c32576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c516122ec565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c835750610c8181610c7c6122ec565b612091565b155b15610cba576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cc5838383612342565b505050565b6000610cd46123f4565b6001546000540303905090565b610ce96122ec565b73ffffffffffffffffffffffffffffffffffffffff16610d07611699565b73ffffffffffffffffffffffffffffffffffffffff161480610d7d5750610d2c6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db39061423a565b60405180910390fd5b80600f8190555050565b610dce6122ec565b73ffffffffffffffffffffffffffffffffffffffff16610dec611699565b73ffffffffffffffffffffffffffffffffffffffff161480610e625750610e116122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e989061423a565b60405180910390fd5b60008151905060005b81811015610eee576000838281518110610ec757610ec6614732565b5b60200260200101519050610eda816123f9565b508080610ee69061462b565b915050610eaa565b505050565b610efe83838361279d565b505050565b600e5481565b610f116122ec565b73ffffffffffffffffffffffffffffffffffffffff16610f2f611699565b73ffffffffffffffffffffffffffffffffffffffff161480610fa55750610f546122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb9061423a565b60405180910390fd5b80600c9080519060200190610ffa929190613765565b5050565b61101983838360405180602001604052806000815250611c6c565b505050565b600d5481565b61102c6122ec565b73ffffffffffffffffffffffffffffffffffffffff1661104a611699565b73ffffffffffffffffffffffffffffffffffffffff1614806110c0575061106f6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f69061423a565b60405180910390fd5b80600d8190555050565b6111116122ec565b73ffffffffffffffffffffffffffffffffffffffff1661112f611699565b73ffffffffffffffffffffffffffffffffffffffff1614806111a557506111546122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db9061423a565b60405180910390fd5b80600a90805190602001906111fa929190613765565b5050565b6112066122ec565b73ffffffffffffffffffffffffffffffffffffffff16611224611699565b73ffffffffffffffffffffffffffffffffffffffff16148061129a57506112496122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d09061423a565b60405180910390fd5b600047905060006112e86122ec565b73ffffffffffffffffffffffffffffffffffffffff168260405161130b906140a1565b60006040518083038185875af1925050503d8060008114611348576040519150601f19603f3d011682016040523d82523d6000602084013e61134d565b606091505b5050905080611391576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113889061427a565b60405180910390fd5b5050565b601160009054906101000a900460ff1681565b60006113b382612c8e565b600001519050919050565b600a80546113cb906145c8565b80601f01602080910402602001604051908101604052809291908181526020018280546113f7906145c8565b80156114445780601f1061141957610100808354040283529160200191611444565b820191906000526020600020905b81548152906001019060200180831161142757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115246122ec565b73ffffffffffffffffffffffffffffffffffffffff16611542611699565b73ffffffffffffffffffffffffffffffffffffffff1614611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f9061423a565b60405180910390fd5b6115a26000612f1d565b565b6115ac6122ec565b73ffffffffffffffffffffffffffffffffffffffff166115ca611699565b73ffffffffffffffffffffffffffffffffffffffff16148061164057506115ef6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61167f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116769061423a565b60405180910390fd5b61169061168a6122ec565b82612fe3565b50565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116cb6122ec565b73ffffffffffffffffffffffffffffffffffffffff166116e9611699565b73ffffffffffffffffffffffffffffffffffffffff16148061175f575061170e6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61179e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117959061423a565b60405180910390fd5b80600b90805190602001906117b4929190613765565b5050565b6060600380546117c7906145c8565b80601f01602080910402602001604051908101604052809291908181526020018280546117f3906145c8565b80156118405780601f1061181557610100808354040283529160200191611840565b820191906000526020600020905b81548152906001019060200180831161182357829003601f168201915b5050505050905090565b60006118546122ec565b9050601160009054906101000a900460ff16156118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189d9061415a565b60405180910390fd5b816118af610cca565b6118b991906143eb565b600f5410156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f4906141da565b60405180910390fd5b60008211611940576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119379061419a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a59061429a565b60405180910390fd5b81600510156119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e9906141ba565b60405180910390fd5b6119fa610cca565b600e5410611a4c5781600d541015611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e906141fa565b60405180910390fd5b611ae0565b8160051015611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a87906141ba565b60405180910390fd5b3460105483611a9f9190614472565b14611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad69061425a565b60405180910390fd5b5b611aea8183612fe3565b5050565b60105481565b611afc6122ec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b61576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b6e6122ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c1b6122ec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c60919061411d565b60405180910390a35050565b611c7784848461279d565b611c968373ffffffffffffffffffffffffffffffffffffffff16613001565b8015611cab5750611ca984848484613024565b155b15611ce2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c8054611cf5906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611d21906145c8565b8015611d6e5780601f10611d4357610100808354040283529160200191611d6e565b820191906000526020600020905b815481529060010190602001808311611d5157829003601f168201915b505050505081565b6060611d81826122f4565b611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db79061421a565b60405180910390fd5b6000600a8054611dcf906145c8565b905011611deb5760405180602001604052806000815250611e1a565b600a611df683613184565b600c604051602001611e0a93929190614070565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611e416122ec565b73ffffffffffffffffffffffffffffffffffffffff16611e5f611699565b73ffffffffffffffffffffffffffffffffffffffff161480611ed55750611e846122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0b9061423a565b60405180910390fd5b80600e8190555050565b611f266122ec565b73ffffffffffffffffffffffffffffffffffffffff16611f44611699565b73ffffffffffffffffffffffffffffffffffffffff161480611fba5750611f696122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff09061423a565b60405180910390fd5b8060108190555050565b600b8054612010906145c8565b80601f016020809104026020016040519081016040528092919081815260200182805461203c906145c8565b80156120895780601f1061205e57610100808354040283529160200191612089565b820191906000526020600020905b81548152906001019060200180831161206c57829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016120fb91906140b6565b60206040518083038186803b15801561211357600080fd5b505afa158015612127573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214b9190613cda565b73ffffffffffffffffffffffffffffffffffffffff16141561217157600191505061217f565b61217b84846132e5565b9150505b92915050565b61218d6122ec565b73ffffffffffffffffffffffffffffffffffffffff166121ab611699565b73ffffffffffffffffffffffffffffffffffffffff1614612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f89061423a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612271576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122689061417a565b60405180910390fd5b61227a81612f1d565b50565b600581565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816122ff6123f4565b1115801561230e575060005482105b801561233b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061240482612c8e565b905061241881600001516000846001613379565b6124286000838360000151612342565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612714576000548110156127135781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127878160000151600084600161337f565b6001600081548092919060010191905055505050565b60006127a882612c8e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166127cf6122ec565b73ffffffffffffffffffffffffffffffffffffffff161480612802575061280182600001516127fc6122ec565b612091565b5b8061284757506128106122ec565b73ffffffffffffffffffffffffffffffffffffffff1661282f84610b43565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612880576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146128e9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612950576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61295d8585856001613379565b61296d6000848460000151612342565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c1e57600054811015612c1d5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c87858585600161337f565b5050505050565b612c966137eb565b600082905080612ca46123f4565b11158015612cb3575060005481105b15612ee6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612ee457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dc8578092505050612f18565b5b600115612ee357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ede578092505050612f18565b612dc9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ffd828260405180602001604052806000815250613385565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261304a6122ec565b8786866040518563ffffffff1660e01b815260040161306c94939291906140d1565b602060405180830381600087803b15801561308657600080fd5b505af19250505080156130b757506040513d601f19601f820116820180604052508101906130b49190613cad565b60015b613131573d80600081146130e7576040519150601f19603f3d011682016040523d82523d6000602084013e6130ec565b606091505b50600081511415613129576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156131cc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132e0565b600082905060005b600082146131fe5780806131e79061462b565b915050600a826131f79190614441565b91506131d4565b60008167ffffffffffffffff81111561321a57613219614761565b5b6040519080825280601f01601f19166020018201604052801561324c5781602001600182028036833780820191505090505b5090505b600085146132d95760018261326591906144cc565b9150600a856132749190614674565b603061328091906143eb565b60f81b81838151811061329657613295614732565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132d29190614441565b9450613250565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6133928383836001613397565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613404576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561343f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61344c6000868387613379565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561361657506136158773ffffffffffffffffffffffffffffffffffffffff16613001565b5b156136dc575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461368b6000888480600101955088613024565b6136c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561361c5782600054146136d757600080fd5b613748565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156136dd575b81600081905550505061375e600086838761337f565b5050505050565b828054613771906145c8565b90600052602060002090601f01602090048101928261379357600085556137da565b82601f106137ac57805160ff19168380011785556137da565b828001600101855582156137da579182015b828111156137d95782518255916020019190600101906137be565b5b5090506137e7919061382e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561384757600081600090555060010161382f565b5090565b600061385e613859846142fa565b6142d5565b9050808382526020820190508285602086028201111561388157613880614795565b5b60005b858110156138b157816138978882613a32565b845260208401935060208301925050600181019050613884565b5050509392505050565b60006138ce6138c984614326565b6142d5565b9050828152602081018484840111156138ea576138e961479a565b5b6138f5848285614586565b509392505050565b600061391061390b84614357565b6142d5565b90508281526020810184848401111561392c5761392b61479a565b5b613937848285614586565b509392505050565b60008135905061394e816149a6565b92915050565b600082601f83011261396957613968614790565b5b813561397984826020860161384b565b91505092915050565b600081359050613991816149bd565b92915050565b6000813590506139a6816149d4565b92915050565b6000815190506139bb816149d4565b92915050565b600082601f8301126139d6576139d5614790565b5b81356139e68482602086016138bb565b91505092915050565b6000815190506139fe816149eb565b92915050565b600082601f830112613a1957613a18614790565b5b8135613a298482602086016138fd565b91505092915050565b600081359050613a4181614a02565b92915050565b600060208284031215613a5d57613a5c6147a4565b5b6000613a6b8482850161393f565b91505092915050565b60008060408385031215613a8b57613a8a6147a4565b5b6000613a998582860161393f565b9250506020613aaa8582860161393f565b9150509250929050565b600080600060608486031215613acd57613acc6147a4565b5b6000613adb8682870161393f565b9350506020613aec8682870161393f565b9250506040613afd86828701613a32565b9150509250925092565b60008060008060808587031215613b2157613b206147a4565b5b6000613b2f8782880161393f565b9450506020613b408782880161393f565b9350506040613b5187828801613a32565b925050606085013567ffffffffffffffff811115613b7257613b7161479f565b5b613b7e878288016139c1565b91505092959194509250565b60008060408385031215613ba157613ba06147a4565b5b6000613baf8582860161393f565b9250506020613bc085828601613982565b9150509250929050565b60008060408385031215613be157613be06147a4565b5b6000613bef8582860161393f565b9250506020613c0085828601613a32565b9150509250929050565b600060208284031215613c2057613c1f6147a4565b5b600082013567ffffffffffffffff811115613c3e57613c3d61479f565b5b613c4a84828501613954565b91505092915050565b600060208284031215613c6957613c686147a4565b5b6000613c7784828501613982565b91505092915050565b600060208284031215613c9657613c956147a4565b5b6000613ca484828501613997565b91505092915050565b600060208284031215613cc357613cc26147a4565b5b6000613cd1848285016139ac565b91505092915050565b600060208284031215613cf057613cef6147a4565b5b6000613cfe848285016139ef565b91505092915050565b600060208284031215613d1d57613d1c6147a4565b5b600082013567ffffffffffffffff811115613d3b57613d3a61479f565b5b613d4784828501613a04565b91505092915050565b600060208284031215613d6657613d656147a4565b5b6000613d7484828501613a32565b91505092915050565b613d8681614500565b82525050565b613d9581614512565b82525050565b6000613da68261439d565b613db081856143b3565b9350613dc0818560208601614595565b613dc9816147a9565b840191505092915050565b6000613ddf826143a8565b613de981856143cf565b9350613df9818560208601614595565b613e02816147a9565b840191505092915050565b6000613e18826143a8565b613e2281856143e0565b9350613e32818560208601614595565b80840191505092915050565b60008154613e4b816145c8565b613e5581866143e0565b94506001821660008114613e705760018114613e8157613eb4565b60ff19831686528186019350613eb4565b613e8a85614388565b60005b83811015613eac57815481890152600182019150602081019050613e8d565b838801955050505b50505092915050565b6000613eca6006836143cf565b9150613ed5826147ba565b602082019050919050565b6000613eed6026836143cf565b9150613ef8826147e3565b604082019050919050565b6000613f10600a836143cf565b9150613f1b82614832565b602082019050919050565b6000613f336016836143cf565b9150613f3e8261485b565b602082019050919050565b6000613f566008836143cf565b9150613f6182614884565b602082019050919050565b6000613f796016836143cf565b9150613f84826148ad565b602082019050919050565b6000613f9c6015836143cf565b9150613fa7826148d6565b602082019050919050565b6000613fbf6020836143cf565b9150613fca826148ff565b602082019050919050565b6000613fe26016836143cf565b9150613fed82614928565b602082019050919050565b60006140056000836143c4565b915061401082614951565b600082019050919050565b6000614028600e836143cf565b915061403382614954565b602082019050919050565b600061404b6014836143cf565b91506140568261497d565b602082019050919050565b61406a8161457c565b82525050565b600061407c8286613e3e565b91506140888285613e0d565b91506140948284613e3e565b9150819050949350505050565b60006140ac82613ff8565b9150819050919050565b60006020820190506140cb6000830184613d7d565b92915050565b60006080820190506140e66000830187613d7d565b6140f36020830186613d7d565b6141006040830185614061565b81810360608301526141128184613d9b565b905095945050505050565b60006020820190506141326000830184613d8c565b92915050565b600060208201905081810360008301526141528184613dd4565b905092915050565b6000602082019050818103600083015261417381613ebd565b9050919050565b6000602082019050818103600083015261419381613ee0565b9050919050565b600060208201905081810360008301526141b381613f03565b9050919050565b600060208201905081810360008301526141d381613f26565b9050919050565b600060208201905081810360008301526141f381613f49565b9050919050565b6000602082019050818103600083015261421381613f6c565b9050919050565b6000602082019050818103600083015261423381613f8f565b9050919050565b6000602082019050818103600083015261425381613fb2565b9050919050565b6000602082019050818103600083015261427381613fd5565b9050919050565b600060208201905081810360008301526142938161401b565b9050919050565b600060208201905081810360008301526142b38161403e565b9050919050565b60006020820190506142cf6000830184614061565b92915050565b60006142df6142f0565b90506142eb82826145fa565b919050565b6000604051905090565b600067ffffffffffffffff82111561431557614314614761565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561434157614340614761565b5b61434a826147a9565b9050602081019050919050565b600067ffffffffffffffff82111561437257614371614761565b5b61437b826147a9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006143f68261457c565b91506144018361457c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614436576144356146a5565b5b828201905092915050565b600061444c8261457c565b91506144578361457c565b925082614467576144666146d4565b5b828204905092915050565b600061447d8261457c565b91506144888361457c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144c1576144c06146a5565b5b828202905092915050565b60006144d78261457c565b91506144e28361457c565b9250828210156144f5576144f46146a5565b5b828203905092915050565b600061450b8261455c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061455582614500565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145b3578082015181840152602081019050614598565b838111156145c2576000848401525b50505050565b600060028204905060018216806145e057607f821691505b602082108114156145f4576145f3614703565b5b50919050565b614603826147a9565b810181811067ffffffffffffffff8211171561462257614621614761565b5b80604052505050565b60006146368261457c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614669576146686146a5565b5b600182019050919050565b600061467f8261457c565b915061468a8361457c565b92508261469a576146996146d4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f416c6c20476f6e65000000000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20436f6e7472616374206d696e74696e672e000000000000000000000000600082015250565b6149af81614500565b81146149ba57600080fd5b50565b6149c681614512565b81146149d157600080fd5b50565b6149dd8161451e565b81146149e857600080fd5b50565b6149f48161454a565b81146149ff57600080fd5b50565b614a0b8161457c565b8114614a1657600080fd5b5056fea26469706673582212204b1aa52d28091abcd0a1e9f26ca3bd30647b1743bfc9097f61b3f965e014fa6164736f6c63430008070033697066733a2f2f516d62346a4e425333616b6f535a7a3657444a59525952586938785a7a6f6f694d687763516847674b516f425633
Deployed Bytecode
0x6080604052600436106102305760003560e01c806370a082311161012e578063b88d4fde116100ab578063db4a0f611161006f578063db4a0f61146107f2578063e8a3d4851461081b578063e985e9c514610846578063f2fde38b14610883578063f43a22dc146108ac57610230565b8063b88d4fde1461070d578063c668286214610736578063c87b56dd14610761578063cd7c03261461079e578063d476de1b146107c957610230565b8063938e3d7b116100f2578063938e3d7b1461064957806395d89b41146106725780639fb17e341461069d578063a035b1fe146106b9578063a22cb465146106e457610230565b806370a0823114610576578063715018a6146105b35780637e0c7fc5146105ca5780638a333b50146105f35780638da5cb5b1461061e57610230565b806326e987d7116101bc57806355f804b31161018057806355f804b3146104a357806357ea89b6146104cc5780635c975abb146104e35780636352211e1461050e5780636c0360eb1461054b57610230565b806326e987d7146103d25780632aa80807146103fd57806342842e0e14610426578063463fff791461044f5780635312e5cf1461047a57610230565b8063095ea7b311610203578063095ea7b31461030357806318160ddd1461032c57806318e223dd1461035757806320f6402f1461038057806323b872dd146103a957610230565b806301ffc9a71461023557806302329a291461027257806306fdde031461029b578063081812fc146102c6575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613c80565b6108d7565b604051610269919061411d565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190613c53565b6109b9565b005b3480156102a757600080fd5b506102b0610ab1565b6040516102bd9190614138565b60405180910390f35b3480156102d257600080fd5b506102ed60048036038101906102e89190613d50565b610b43565b6040516102fa91906140b6565b60405180910390f35b34801561030f57600080fd5b5061032a60048036038101906103259190613bca565b610bbf565b005b34801561033857600080fd5b50610341610cca565b60405161034e91906142ba565b60405180910390f35b34801561036357600080fd5b5061037e60048036038101906103799190613d50565b610ce1565b005b34801561038c57600080fd5b506103a760048036038101906103a29190613c0a565b610dc6565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190613ab4565b610ef3565b005b3480156103de57600080fd5b506103e7610f03565b6040516103f491906142ba565b60405180910390f35b34801561040957600080fd5b50610424600480360381019061041f9190613d07565b610f09565b005b34801561043257600080fd5b5061044d60048036038101906104489190613ab4565b610ffe565b005b34801561045b57600080fd5b5061046461101e565b60405161047191906142ba565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190613d50565b611024565b005b3480156104af57600080fd5b506104ca60048036038101906104c59190613d07565b611109565b005b3480156104d857600080fd5b506104e16111fe565b005b3480156104ef57600080fd5b506104f8611395565b604051610505919061411d565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190613d50565b6113a8565b60405161054291906140b6565b60405180910390f35b34801561055757600080fd5b506105606113be565b60405161056d9190614138565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190613a47565b61144c565b6040516105aa91906142ba565b60405180910390f35b3480156105bf57600080fd5b506105c861151c565b005b3480156105d657600080fd5b506105f160048036038101906105ec9190613d50565b6115a4565b005b3480156105ff57600080fd5b50610608611693565b60405161061591906142ba565b60405180910390f35b34801561062a57600080fd5b50610633611699565b60405161064091906140b6565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b9190613d07565b6116c3565b005b34801561067e57600080fd5b506106876117b8565b6040516106949190614138565b60405180910390f35b6106b760048036038101906106b29190613d50565b61184a565b005b3480156106c557600080fd5b506106ce611aee565b6040516106db91906142ba565b60405180910390f35b3480156106f057600080fd5b5061070b60048036038101906107069190613b8a565b611af4565b005b34801561071957600080fd5b50610734600480360381019061072f9190613b07565b611c6c565b005b34801561074257600080fd5b5061074b611ce8565b6040516107589190614138565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190613d50565b611d76565b6040516107959190614138565b60405180910390f35b3480156107aa57600080fd5b506107b3611e21565b6040516107c091906140b6565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb9190613d50565b611e39565b005b3480156107fe57600080fd5b5061081960048036038101906108149190613d50565b611f1e565b005b34801561082757600080fd5b50610830612003565b60405161083d9190614138565b60405180910390f35b34801561085257600080fd5b5061086d60048036038101906108689190613a74565b612091565b60405161087a919061411d565b60405180910390f35b34801561088f57600080fd5b506108aa60048036038101906108a59190613a47565b612185565b005b3480156108b857600080fd5b506108c161227d565b6040516108ce91906142ba565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b257506109b182612282565b5b9050919050565b6109c16122ec565b73ffffffffffffffffffffffffffffffffffffffff166109df611699565b73ffffffffffffffffffffffffffffffffffffffff161480610a555750610a046122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b9061423a565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060028054610ac0906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610aec906145c8565b8015610b395780601f10610b0e57610100808354040283529160200191610b39565b820191906000526020600020905b815481529060010190602001808311610b1c57829003601f168201915b5050505050905090565b6000610b4e826122f4565b610b84576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bca826113a8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c32576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c516122ec565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c835750610c8181610c7c6122ec565b612091565b155b15610cba576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cc5838383612342565b505050565b6000610cd46123f4565b6001546000540303905090565b610ce96122ec565b73ffffffffffffffffffffffffffffffffffffffff16610d07611699565b73ffffffffffffffffffffffffffffffffffffffff161480610d7d5750610d2c6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db39061423a565b60405180910390fd5b80600f8190555050565b610dce6122ec565b73ffffffffffffffffffffffffffffffffffffffff16610dec611699565b73ffffffffffffffffffffffffffffffffffffffff161480610e625750610e116122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e989061423a565b60405180910390fd5b60008151905060005b81811015610eee576000838281518110610ec757610ec6614732565b5b60200260200101519050610eda816123f9565b508080610ee69061462b565b915050610eaa565b505050565b610efe83838361279d565b505050565b600e5481565b610f116122ec565b73ffffffffffffffffffffffffffffffffffffffff16610f2f611699565b73ffffffffffffffffffffffffffffffffffffffff161480610fa55750610f546122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb9061423a565b60405180910390fd5b80600c9080519060200190610ffa929190613765565b5050565b61101983838360405180602001604052806000815250611c6c565b505050565b600d5481565b61102c6122ec565b73ffffffffffffffffffffffffffffffffffffffff1661104a611699565b73ffffffffffffffffffffffffffffffffffffffff1614806110c0575061106f6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f69061423a565b60405180910390fd5b80600d8190555050565b6111116122ec565b73ffffffffffffffffffffffffffffffffffffffff1661112f611699565b73ffffffffffffffffffffffffffffffffffffffff1614806111a557506111546122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db9061423a565b60405180910390fd5b80600a90805190602001906111fa929190613765565b5050565b6112066122ec565b73ffffffffffffffffffffffffffffffffffffffff16611224611699565b73ffffffffffffffffffffffffffffffffffffffff16148061129a57506112496122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d09061423a565b60405180910390fd5b600047905060006112e86122ec565b73ffffffffffffffffffffffffffffffffffffffff168260405161130b906140a1565b60006040518083038185875af1925050503d8060008114611348576040519150601f19603f3d011682016040523d82523d6000602084013e61134d565b606091505b5050905080611391576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113889061427a565b60405180910390fd5b5050565b601160009054906101000a900460ff1681565b60006113b382612c8e565b600001519050919050565b600a80546113cb906145c8565b80601f01602080910402602001604051908101604052809291908181526020018280546113f7906145c8565b80156114445780601f1061141957610100808354040283529160200191611444565b820191906000526020600020905b81548152906001019060200180831161142757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114b4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6115246122ec565b73ffffffffffffffffffffffffffffffffffffffff16611542611699565b73ffffffffffffffffffffffffffffffffffffffff1614611598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158f9061423a565b60405180910390fd5b6115a26000612f1d565b565b6115ac6122ec565b73ffffffffffffffffffffffffffffffffffffffff166115ca611699565b73ffffffffffffffffffffffffffffffffffffffff16148061164057506115ef6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61167f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116769061423a565b60405180910390fd5b61169061168a6122ec565b82612fe3565b50565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116cb6122ec565b73ffffffffffffffffffffffffffffffffffffffff166116e9611699565b73ffffffffffffffffffffffffffffffffffffffff16148061175f575061170e6122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61179e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117959061423a565b60405180910390fd5b80600b90805190602001906117b4929190613765565b5050565b6060600380546117c7906145c8565b80601f01602080910402602001604051908101604052809291908181526020018280546117f3906145c8565b80156118405780601f1061181557610100808354040283529160200191611840565b820191906000526020600020905b81548152906001019060200180831161182357829003601f168201915b5050505050905090565b60006118546122ec565b9050601160009054906101000a900460ff16156118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189d9061415a565b60405180910390fd5b816118af610cca565b6118b991906143eb565b600f5410156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f4906141da565b60405180910390fd5b60008211611940576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119379061419a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146119ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a59061429a565b60405180910390fd5b81600510156119f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e9906141ba565b60405180910390fd5b6119fa610cca565b600e5410611a4c5781600d541015611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e906141fa565b60405180910390fd5b611ae0565b8160051015611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a87906141ba565b60405180910390fd5b3460105483611a9f9190614472565b14611adf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad69061425a565b60405180910390fd5b5b611aea8183612fe3565b5050565b60105481565b611afc6122ec565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b61576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b6e6122ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c1b6122ec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c60919061411d565b60405180910390a35050565b611c7784848461279d565b611c968373ffffffffffffffffffffffffffffffffffffffff16613001565b8015611cab5750611ca984848484613024565b155b15611ce2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600c8054611cf5906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054611d21906145c8565b8015611d6e5780601f10611d4357610100808354040283529160200191611d6e565b820191906000526020600020905b815481529060010190602001808311611d5157829003601f168201915b505050505081565b6060611d81826122f4565b611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db79061421a565b60405180910390fd5b6000600a8054611dcf906145c8565b905011611deb5760405180602001604052806000815250611e1a565b600a611df683613184565b600c604051602001611e0a93929190614070565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611e416122ec565b73ffffffffffffffffffffffffffffffffffffffff16611e5f611699565b73ffffffffffffffffffffffffffffffffffffffff161480611ed55750611e846122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0b9061423a565b60405180910390fd5b80600e8190555050565b611f266122ec565b73ffffffffffffffffffffffffffffffffffffffff16611f44611699565b73ffffffffffffffffffffffffffffffffffffffff161480611fba5750611f696122ec565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff09061423a565b60405180910390fd5b8060108190555050565b600b8054612010906145c8565b80601f016020809104026020016040519081016040528092919081815260200182805461203c906145c8565b80156120895780601f1061205e57610100808354040283529160200191612089565b820191906000526020600020905b81548152906001019060200180831161206c57829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016120fb91906140b6565b60206040518083038186803b15801561211357600080fd5b505afa158015612127573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061214b9190613cda565b73ffffffffffffffffffffffffffffffffffffffff16141561217157600191505061217f565b61217b84846132e5565b9150505b92915050565b61218d6122ec565b73ffffffffffffffffffffffffffffffffffffffff166121ab611699565b73ffffffffffffffffffffffffffffffffffffffff1614612201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f89061423a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612271576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122689061417a565b60405180910390fd5b61227a81612f1d565b50565b600581565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816122ff6123f4565b1115801561230e575060005482105b801561233b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061240482612c8e565b905061241881600001516000846001613379565b6124286000838360000151612342565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612714576000548110156127135781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127878160000151600084600161337f565b6001600081548092919060010191905055505050565b60006127a882612c8e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166127cf6122ec565b73ffffffffffffffffffffffffffffffffffffffff161480612802575061280182600001516127fc6122ec565b612091565b5b8061284757506128106122ec565b73ffffffffffffffffffffffffffffffffffffffff1661282f84610b43565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612880576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146128e9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612950576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61295d8585856001613379565b61296d6000848460000151612342565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c1e57600054811015612c1d5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c87858585600161337f565b5050505050565b612c966137eb565b600082905080612ca46123f4565b11158015612cb3575060005481105b15612ee6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612ee457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dc8578092505050612f18565b5b600115612ee357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612ede578092505050612f18565b612dc9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612ffd828260405180602001604052806000815250613385565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261304a6122ec565b8786866040518563ffffffff1660e01b815260040161306c94939291906140d1565b602060405180830381600087803b15801561308657600080fd5b505af19250505080156130b757506040513d601f19601f820116820180604052508101906130b49190613cad565b60015b613131573d80600081146130e7576040519150601f19603f3d011682016040523d82523d6000602084013e6130ec565b606091505b50600081511415613129576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008214156131cc576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132e0565b600082905060005b600082146131fe5780806131e79061462b565b915050600a826131f79190614441565b91506131d4565b60008167ffffffffffffffff81111561321a57613219614761565b5b6040519080825280601f01601f19166020018201604052801561324c5781602001600182028036833780820191505090505b5090505b600085146132d95760018261326591906144cc565b9150600a856132749190614674565b603061328091906143eb565b60f81b81838151811061329657613295614732565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132d29190614441565b9450613250565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6133928383836001613397565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613404576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561343f576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61344c6000868387613379565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561361657506136158773ffffffffffffffffffffffffffffffffffffffff16613001565b5b156136dc575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461368b6000888480600101955088613024565b6136c1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561361c5782600054146136d757600080fd5b613748565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156136dd575b81600081905550505061375e600086838761337f565b5050505050565b828054613771906145c8565b90600052602060002090601f01602090048101928261379357600085556137da565b82601f106137ac57805160ff19168380011785556137da565b828001600101855582156137da579182015b828111156137d95782518255916020019190600101906137be565b5b5090506137e7919061382e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561384757600081600090555060010161382f565b5090565b600061385e613859846142fa565b6142d5565b9050808382526020820190508285602086028201111561388157613880614795565b5b60005b858110156138b157816138978882613a32565b845260208401935060208301925050600181019050613884565b5050509392505050565b60006138ce6138c984614326565b6142d5565b9050828152602081018484840111156138ea576138e961479a565b5b6138f5848285614586565b509392505050565b600061391061390b84614357565b6142d5565b90508281526020810184848401111561392c5761392b61479a565b5b613937848285614586565b509392505050565b60008135905061394e816149a6565b92915050565b600082601f83011261396957613968614790565b5b813561397984826020860161384b565b91505092915050565b600081359050613991816149bd565b92915050565b6000813590506139a6816149d4565b92915050565b6000815190506139bb816149d4565b92915050565b600082601f8301126139d6576139d5614790565b5b81356139e68482602086016138bb565b91505092915050565b6000815190506139fe816149eb565b92915050565b600082601f830112613a1957613a18614790565b5b8135613a298482602086016138fd565b91505092915050565b600081359050613a4181614a02565b92915050565b600060208284031215613a5d57613a5c6147a4565b5b6000613a6b8482850161393f565b91505092915050565b60008060408385031215613a8b57613a8a6147a4565b5b6000613a998582860161393f565b9250506020613aaa8582860161393f565b9150509250929050565b600080600060608486031215613acd57613acc6147a4565b5b6000613adb8682870161393f565b9350506020613aec8682870161393f565b9250506040613afd86828701613a32565b9150509250925092565b60008060008060808587031215613b2157613b206147a4565b5b6000613b2f8782880161393f565b9450506020613b408782880161393f565b9350506040613b5187828801613a32565b925050606085013567ffffffffffffffff811115613b7257613b7161479f565b5b613b7e878288016139c1565b91505092959194509250565b60008060408385031215613ba157613ba06147a4565b5b6000613baf8582860161393f565b9250506020613bc085828601613982565b9150509250929050565b60008060408385031215613be157613be06147a4565b5b6000613bef8582860161393f565b9250506020613c0085828601613a32565b9150509250929050565b600060208284031215613c2057613c1f6147a4565b5b600082013567ffffffffffffffff811115613c3e57613c3d61479f565b5b613c4a84828501613954565b91505092915050565b600060208284031215613c6957613c686147a4565b5b6000613c7784828501613982565b91505092915050565b600060208284031215613c9657613c956147a4565b5b6000613ca484828501613997565b91505092915050565b600060208284031215613cc357613cc26147a4565b5b6000613cd1848285016139ac565b91505092915050565b600060208284031215613cf057613cef6147a4565b5b6000613cfe848285016139ef565b91505092915050565b600060208284031215613d1d57613d1c6147a4565b5b600082013567ffffffffffffffff811115613d3b57613d3a61479f565b5b613d4784828501613a04565b91505092915050565b600060208284031215613d6657613d656147a4565b5b6000613d7484828501613a32565b91505092915050565b613d8681614500565b82525050565b613d9581614512565b82525050565b6000613da68261439d565b613db081856143b3565b9350613dc0818560208601614595565b613dc9816147a9565b840191505092915050565b6000613ddf826143a8565b613de981856143cf565b9350613df9818560208601614595565b613e02816147a9565b840191505092915050565b6000613e18826143a8565b613e2281856143e0565b9350613e32818560208601614595565b80840191505092915050565b60008154613e4b816145c8565b613e5581866143e0565b94506001821660008114613e705760018114613e8157613eb4565b60ff19831686528186019350613eb4565b613e8a85614388565b60005b83811015613eac57815481890152600182019150602081019050613e8d565b838801955050505b50505092915050565b6000613eca6006836143cf565b9150613ed5826147ba565b602082019050919050565b6000613eed6026836143cf565b9150613ef8826147e3565b604082019050919050565b6000613f10600a836143cf565b9150613f1b82614832565b602082019050919050565b6000613f336016836143cf565b9150613f3e8261485b565b602082019050919050565b6000613f566008836143cf565b9150613f6182614884565b602082019050919050565b6000613f796016836143cf565b9150613f84826148ad565b602082019050919050565b6000613f9c6015836143cf565b9150613fa7826148d6565b602082019050919050565b6000613fbf6020836143cf565b9150613fca826148ff565b602082019050919050565b6000613fe26016836143cf565b9150613fed82614928565b602082019050919050565b60006140056000836143c4565b915061401082614951565b600082019050919050565b6000614028600e836143cf565b915061403382614954565b602082019050919050565b600061404b6014836143cf565b91506140568261497d565b602082019050919050565b61406a8161457c565b82525050565b600061407c8286613e3e565b91506140888285613e0d565b91506140948284613e3e565b9150819050949350505050565b60006140ac82613ff8565b9150819050919050565b60006020820190506140cb6000830184613d7d565b92915050565b60006080820190506140e66000830187613d7d565b6140f36020830186613d7d565b6141006040830185614061565b81810360608301526141128184613d9b565b905095945050505050565b60006020820190506141326000830184613d8c565b92915050565b600060208201905081810360008301526141528184613dd4565b905092915050565b6000602082019050818103600083015261417381613ebd565b9050919050565b6000602082019050818103600083015261419381613ee0565b9050919050565b600060208201905081810360008301526141b381613f03565b9050919050565b600060208201905081810360008301526141d381613f26565b9050919050565b600060208201905081810360008301526141f381613f49565b9050919050565b6000602082019050818103600083015261421381613f6c565b9050919050565b6000602082019050818103600083015261423381613f8f565b9050919050565b6000602082019050818103600083015261425381613fb2565b9050919050565b6000602082019050818103600083015261427381613fd5565b9050919050565b600060208201905081810360008301526142938161401b565b9050919050565b600060208201905081810360008301526142b38161403e565b9050919050565b60006020820190506142cf6000830184614061565b92915050565b60006142df6142f0565b90506142eb82826145fa565b919050565b6000604051905090565b600067ffffffffffffffff82111561431557614314614761565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561434157614340614761565b5b61434a826147a9565b9050602081019050919050565b600067ffffffffffffffff82111561437257614371614761565b5b61437b826147a9565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006143f68261457c565b91506144018361457c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614436576144356146a5565b5b828201905092915050565b600061444c8261457c565b91506144578361457c565b925082614467576144666146d4565b5b828204905092915050565b600061447d8261457c565b91506144888361457c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144c1576144c06146a5565b5b828202905092915050565b60006144d78261457c565b91506144e28361457c565b9250828210156144f5576144f46146a5565b5b828203905092915050565b600061450b8261455c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061455582614500565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156145b3578082015181840152602081019050614598565b838111156145c2576000848401525b50505050565b600060028204905060018216806145e057607f821691505b602082108114156145f4576145f3614703565b5b50919050565b614603826147a9565b810181811067ffffffffffffffff8211171561462257614621614761565b5b80604052505050565b60006146368261457c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614669576146686146a5565b5b600182019050919050565b600061467f8261457c565b915061468a8361457c565b92508261469a576146996146d4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f416c6c20476f6e65000000000000000000000000000000000000000000000000600082015250565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20436f6e7472616374206d696e74696e672e000000000000000000000000600082015250565b6149af81614500565b81146149ba57600080fd5b50565b6149c681614512565b81146149d157600080fd5b50565b6149dd8161451e565b81146149e857600080fd5b50565b6149f48161454a565b81146149ff57600080fd5b50565b614a0b8161457c565b8114614a1657600080fd5b5056fea26469706673582212204b1aa52d28091abcd0a1e9f26ca3bd30647b1743bfc9097f61b3f965e014fa6164736f6c63430008070033
Deployed Bytecode Sourcemap
45910:3737:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28443:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48130:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31828:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33331:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32894:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27692:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48670:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49040:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34188:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46272:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48908:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34429:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46231:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48553:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48219:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47796:209;;;;;;;;;;;;;:::i;:::-;;46481:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31637:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45958:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28812:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2640:103;;;;;;;;;;;;;:::i;:::-;;48013:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46360:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1989:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48327:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31997:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46566:739;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46398:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33607:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34685:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46089:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49282:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46133:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48781:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48451:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45999:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47317:471;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2898:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46315:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28443:305;28545:4;28597:25;28582:40;;;:11;:40;;;;:105;;;;28654:33;28639:48;;;:11;:48;;;;28582:105;:158;;;;28704:36;28728:11;28704:23;:36::i;:::-;28582:158;28562:178;;28443:305;;;:::o;48130:81::-;24922:12;:10;:12::i;:::-;24911:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24948:12;:10;:12::i;:::-;24938:22;;:6;;;;;;;;;;;:22;;;24911:49;24903:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48197:6:::1;48188;;:15;;;;;;;;;;;;;;;;;;48130:81:::0;:::o;31828:100::-;31882:13;31915:5;31908:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31828:100;:::o;33331:204::-;33399:7;33424:16;33432:7;33424;:16::i;:::-;33419:64;;33449:34;;;;;;;;;;;;;;33419:64;33503:15;:24;33519:7;33503:24;;;;;;;;;;;;;;;;;;;;;33496:31;;33331:204;;;:::o;32894:371::-;32967:13;32983:24;32999:7;32983:15;:24::i;:::-;32967:40;;33028:5;33022:11;;:2;:11;;;33018:48;;;33042:24;;;;;;;;;;;;;;33018:48;33099:5;33083:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33109:37;33126:5;33133:12;:10;:12::i;:::-;33109:16;:37::i;:::-;33108:38;33083:63;33079:138;;;33170:35;;;;;;;;;;;;;;33079:138;33229:28;33238:2;33242:7;33251:5;33229:8;:28::i;:::-;32956:309;32894:371;;:::o;27692:303::-;27736:7;27961:15;:13;:15::i;:::-;27946:12;;27930:13;;:28;:46;27923:53;;27692:303;:::o;48670:103::-;24922:12;:10;:12::i;:::-;24911:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24948:12;:10;:12::i;:::-;24938:22;;:6;;;;;;;;;;;:22;;;24911:49;24903:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48756:9:::1;48743:10;:22;;;;48670:103:::0;:::o;49040:232::-;24922:12;:10;:12::i;:::-;24911:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24948:12;:10;:12::i;:::-;24938:22;;:6;;;;;;;;;;;:22;;;24911:49;24903:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;49110:11:::1;49124:8;:15;49110:29;;49155:9;49150:115;49170:3;49166:1;:7;49150:115;;;49195:15;49213:8;49222:1;49213:11;;;;;;;;:::i;:::-;;;;;;;;49195:29;;49239:14;49245:7;49239:5;:14::i;:::-;49180:85;49175:3;;;;;:::i;:::-;;;;49150:115;;;;49099:173;49040:232:::0;:::o;34188:170::-;34322:28;34332:4;34338:2;34342:7;34322:9;:28::i;:::-;34188:170;;;:::o;46272:36::-;;;;:::o;48908:104::-;24922:12;:10;:12::i;:::-;24911:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24948:12;:10;:12::i;:::-;24938:22;;:6;;;;;;;;;;;:22;;;24911:49;24903:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48999:5:::1;48983:13;:21;;;;;;;;;;;;:::i;:::-;;48908:104:::0;:::o;34429:185::-;34567:39;34584:4;34590:2;34594:7;34567:39;;;;;;;;;;;;:16;:39::i;:::-;34429:185;;;:::o;46231:34::-;;;;:::o;48553:109::-;24922:12;:10;:12::i;:::-;24911:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24948:12;:10;:12::i;:::-;24938:22;;:6;;;;;;;;;;;:22;;;24911:49;24903:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48647:7:::1;48629:15;:25;;;;48553:109:::0;:::o;48219:100::-;24922:12;:10;:12::i;:::-;24911:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24948:12;:10;:12::i;:::-;24938:22;;:6;;;;;;;;;;;:22;;;24911:49;24903:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48303:8:::1;48293:7;:18;;;;;;;;;;;;:::i;:::-;;48219:100:::0;:::o;47796:209::-;24922:12;:10;:12::i;:::-;24911:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24948:12;:10;:12::i;:::-;24938:22;;:6;;;;;;;;;;;:22;;;24911:49;24903:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;47846:15:::1;47864:21;47846:39;;47897:12;47915;:10;:12::i;:::-;:17;;47940:7;47915:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47896:56;;;47971:7;47963:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47835:170;;47796:209::o:0;46481:25::-;;;;;;;;;;;;;:::o;31637:124::-;31701:7;31728:20;31740:7;31728:11;:20::i;:::-;:25;;;31721:32;;31637:124;;;:::o;45958:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28812:206::-;28876:7;28917:1;28900:19;;:5;:19;;;28896:60;;;28928:28;;;;;;;;;;;;;;28896:60;28982:12;:19;28995:5;28982:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28974:36;;28967:43;;28812:206;;;:::o;2640:103::-;2220:12;:10;:12::i;:::-;2209:23;;:7;:5;:7::i;:::-;:23;;;2201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2705:30:::1;2732:1;2705:18;:30::i;:::-;2640:103::o:0;48013:107::-;24922:12;:10;:12::i;:::-;24911:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24948:12;:10;:12::i;:::-;24938:22;;:6;;;;;;;;;;;:22;;;24911:49;24903:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48079:33:::1;48089:12;:10;:12::i;:::-;48103:8;48079:9;:33::i;:::-;48013:107:::0;:::o;46360:31::-;;;;:::o;1989:87::-;2035:7;2062:6;;;;;;;;;;;2055:13;;1989:87;:::o;48327:116::-;24922:12;:10;:12::i;:::-;24911:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24948:12;:10;:12::i;:::-;24938:22;;:6;;;;;;;;;;;:22;;;24911:49;24903:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48423:12:::1;48409:11;:26;;;;;;;;;;;;:::i;:::-;;48327:116:::0;:::o;31997:104::-;32053:13;32086:7;32079:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31997:104;:::o;46566:739::-;46633:15;46651:12;:10;:12::i;:::-;46633:30;;46683:6;;;;;;;;;;;46682:7;46674:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;46749:7;46733:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46719:10;;:37;;46711:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46798:1;46788:7;:11;46780:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;46846:7;46833:20;;:9;:20;;;46825:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;46911:7;46352:1;46897:21;;46889:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46987:13;:11;:13::i;:::-;46968:15;;:32;46965:291;;47043:7;47024:15;;:26;;47016:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;46965:291;;;47131:7;46352:1;47117:21;;47109:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47208:9;47199:5;;47189:7;:15;;;;:::i;:::-;:28;47181:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46965:291;47270:27;47280:7;47289;47270:9;:27::i;:::-;46620:685;46566:739;:::o;46398:34::-;;;;:::o;33607:279::-;33710:12;:10;:12::i;:::-;33698:24;;:8;:24;;;33694:54;;;33731:17;;;;;;;;;;;;;;33694:54;33806:8;33761:18;:32;33780:12;:10;:12::i;:::-;33761:32;;;;;;;;;;;;;;;:42;33794:8;33761:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33859:8;33830:48;;33845:12;:10;:12::i;:::-;33830:48;;;33869:8;33830:48;;;;;;:::i;:::-;;;;;;;;33607:279;;:::o;34685:369::-;34852:28;34862:4;34868:2;34872:7;34852:9;:28::i;:::-;34895:15;:2;:13;;;:15::i;:::-;:76;;;;;34915:56;34946:4;34952:2;34956:7;34965:5;34915:30;:56::i;:::-;34914:57;34895:76;34891:156;;;34995:40;;;;;;;;;;;;;;34891:156;34685:369;;;;:::o;46089:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49282:362::-;49348:13;49382:17;49390:8;49382:7;:17::i;:::-;49374:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;49467:1;49449:7;49443:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;49525:7;49549:26;49566:8;49549:16;:26::i;:::-;49592:13;49492:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49443:193;49436:200;;49282:362;;;:::o;46133:89::-;46180:42;46133:89;:::o;48781:121::-;24922:12;:10;:12::i;:::-;24911:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24948:12;:10;:12::i;:::-;24938:22;;:6;;;;;;;;;;;:22;;;24911:49;24903:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48881:13:::1;48863:15;:31;;;;48781:121:::0;:::o;48451:91::-;24922:12;:10;:12::i;:::-;24911:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;24948:12;:10;:12::i;:::-;24938:22;;:6;;;;;;;;;;;:22;;;24911:49;24903:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;48526:8:::1;48518:5;:16;;;;48451:91:::0;:::o;45999:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47317:471::-;47442:4;47553:27;46180:42;47553:65;;47674:8;47633:49;;47641:13;:21;;;47663:5;47641:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47633:49;;;47629:93;;;47706:4;47699:11;;;;;47629:93;47741:39;47764:5;47771:8;47741:22;:39::i;:::-;47734:46;;;47317:471;;;;;:::o;2898:201::-;2220:12;:10;:12::i;:::-;2209:23;;:7;:5;:7::i;:::-;:23;;;2201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3007:1:::1;2987:22;;:8;:22;;;;2979:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3063:28;3082:8;3063:18;:28::i;:::-;2898:201:::0;:::o;46315:38::-;46352:1;46315:38;:::o;23543:157::-;23628:4;23667:25;23652:40;;;:11;:40;;;;23645:47;;23543:157;;;:::o;730:98::-;783:7;810:10;803:17;;730:98;:::o;35309:187::-;35366:4;35409:7;35390:15;:13;:15::i;:::-;:26;;:53;;;;;35430:13;;35420:7;:23;35390:53;:98;;;;;35461:11;:20;35473:7;35461:20;;;;;;;;;;;:27;;;;;;;;;;;;35460:28;35390:98;35383:105;;35309:187;;;:::o;42920:196::-;43062:2;43035:15;:24;43051:7;43035:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43100:7;43096:2;43080:28;;43089:5;43080:28;;;;;;;;;;;;42920:196;;;:::o;27416:92::-;27472:7;27416:92;:::o;40763:2039::-;40823:35;40861:20;40873:7;40861:11;:20::i;:::-;40823:58;;40894:65;40916:13;:18;;;40944:1;40948:7;40957:1;40894:21;:65::i;:::-;41024:49;41041:1;41045:7;41054:13;:18;;;41024:8;:49::i;:::-;41413:1;41369:12;:32;41382:13;:18;;;41369:32;;;;;;;;;;;;;;;:40;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41478:1;41429:12;:32;41442:13;:18;;;41429:32;;;;;;;;;;;;;;;:45;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41606:13;:18;;;41578:11;:20;41590:7;41578:20;;;;;;;;;;;:25;;;:46;;;;;;;;;;;;;;;;;;41684:15;41639:11;:20;41651:7;41639:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;41745:4;41715:11;:20;41727:7;41715:20;;;;;;;;;;;:27;;;:34;;;;;;;;;;;;;;;;;;41997:19;42029:1;42019:7;:11;41997:33;;42090:1;42049:43;;:11;:24;42061:11;42049:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42045:445;;;42274:13;;42260:11;:27;42256:219;;;42344:13;:18;;;42312:11;:24;42324:11;42312:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42427:13;:28;;;42385:11;:24;42397:11;42385:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42256:219;42045:445;41344:1157;42559:7;42555:1;42518:49;;42527:13;:18;;;42518:49;;;;;;;;;;;;42578:64;42599:13;:18;;;42627:1;42631:7;42640:1;42578:20;:64::i;:::-;42769:12;;:14;;;;;;;;;;;;;40812:1990;40763:2039;:::o;38422:2112::-;38537:35;38575:20;38587:7;38575:11;:20::i;:::-;38537:58;;38608:22;38650:13;:18;;;38634:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38685:50;38702:13;:18;;;38722:12;:10;:12::i;:::-;38685:16;:50::i;:::-;38634:101;:154;;;;38776:12;:10;:12::i;:::-;38752:36;;:20;38764:7;38752:11;:20::i;:::-;:36;;;38634:154;38608:181;;38807:17;38802:66;;38833:35;;;;;;;;;;;;;;38802:66;38905:4;38883:26;;:13;:18;;;:26;;;38879:67;;38918:28;;;;;;;;;;;;;;38879:67;38975:1;38961:16;;:2;:16;;;38957:52;;;38986:23;;;;;;;;;;;;;;38957:52;39022:43;39044:4;39050:2;39054:7;39063:1;39022:21;:43::i;:::-;39130:49;39147:1;39151:7;39160:13;:18;;;39130:8;:49::i;:::-;39505:1;39475:12;:18;39488:4;39475:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39549:1;39521:12;:16;39534:2;39521:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39595:2;39567:11;:20;39579:7;39567:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39657:15;39612:11;:20;39624:7;39612:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;39925:19;39957:1;39947:7;:11;39925:33;;40018:1;39977:43;;:11;:24;39989:11;39977:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;39973:445;;;40202:13;;40188:11;:27;40184:219;;;40272:13;:18;;;40240:11;:24;40252:11;40240:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40355:13;:28;;;40313:11;:24;40325:11;40313:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40184:219;39973:445;39450:979;40465:7;40461:2;40446:27;;40455:4;40446:27;;;;;;;;;;;;40484:42;40505:4;40511:2;40515:7;40524:1;40484:20;:42::i;:::-;38526:2008;;38422:2112;;;:::o;30467:1108::-;30528:21;;:::i;:::-;30562:12;30577:7;30562:22;;30645:4;30626:15;:13;:15::i;:::-;:23;;:47;;;;;30660:13;;30653:4;:20;30626:47;30622:886;;;30694:31;30728:11;:17;30740:4;30728:17;;;;;;;;;;;30694:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30769:9;:16;;;30764:729;;30840:1;30814:28;;:9;:14;;;:28;;;30810:101;;30878:9;30871:16;;;;;;30810:101;31213:261;31220:4;31213:261;;;31253:6;;;;;;;;31298:11;:17;31310:4;31298:17;;;;;;;;;;;31286:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31372:1;31346:28;;:9;:14;;;:28;;;31342:109;;31414:9;31407:16;;;;;;31342:109;31213:261;;;30764:729;30675:833;30622:886;31536:31;;;;;;;;;;;;;;30467:1108;;;;:::o;3259:191::-;3333:16;3352:6;;;;;;;;;;;3333:25;;3378:8;3369:6;;:17;;;;;;;;;;;;;;;;;;3433:8;3402:40;;3423:8;3402:40;;;;;;;;;;;;3322:128;3259:191;:::o;35504:104::-;35573:27;35583:2;35587:8;35573:27;;;;;;;;;;;;:9;:27::i;:::-;35504:104;;:::o;13320:326::-;13380:4;13637:1;13615:7;:19;;;:23;13608:30;;13320:326;;;:::o;43608:667::-;43771:4;43808:2;43792:36;;;43829:12;:10;:12::i;:::-;43843:4;43849:7;43858:5;43792:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43788:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44043:1;44026:6;:13;:18;44022:235;;;44072:40;;;;;;;;;;;;;;44022:235;44215:6;44209:13;44200:6;44196:2;44192:15;44185:38;43788:480;43921:45;;;43911:55;;;:6;:55;;;;43904:62;;;43608:667;;;;;;:::o;20940:723::-;20996:13;21226:1;21217:5;:10;21213:53;;;21244:10;;;;;;;;;;;;;;;;;;;;;21213:53;21276:12;21291:5;21276:20;;21307:14;21332:78;21347:1;21339:4;:9;21332:78;;21365:8;;;;;:::i;:::-;;;;21396:2;21388:10;;;;;:::i;:::-;;;21332:78;;;21420:19;21452:6;21442:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21420:39;;21470:154;21486:1;21477:5;:10;21470:154;;21514:1;21504:11;;;;;:::i;:::-;;;21581:2;21573:5;:10;;;;:::i;:::-;21560:2;:24;;;;:::i;:::-;21547:39;;21530:6;21537;21530:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21610:2;21601:11;;;;;:::i;:::-;;;21470:154;;;21648:6;21634:21;;;;;20940:723;;;;:::o;33957:164::-;34054:4;34078:18;:25;34097:5;34078:25;;;;;;;;;;;;;;;:35;34104:8;34078:35;;;;;;;;;;;;;;;;;;;;;;;;;34071:42;;33957:164;;;;:::o;44923:159::-;;;;;:::o;45741:158::-;;;;;:::o;35971:163::-;36094:32;36100:2;36104:8;36114:5;36121:4;36094:5;:32::i;:::-;35971:163;;;:::o;36393:1775::-;36532:20;36555:13;;36532:36;;36597:1;36583:16;;:2;:16;;;36579:48;;;36608:19;;;;;;;;;;;;;;36579:48;36654:1;36642:8;:13;36638:44;;;36664:18;;;;;;;;;;;;;;36638:44;36695:61;36725:1;36729:2;36733:12;36747:8;36695:21;:61::i;:::-;37068:8;37033:12;:16;37046:2;37033:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37132:8;37092:12;:16;37105:2;37092:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37191:2;37158:11;:25;37170:12;37158:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37258:15;37208:11;:25;37220:12;37208:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37291:20;37314:12;37291:35;;37341:11;37370:8;37355:12;:23;37341:37;;37399:4;:23;;;;;37407:15;:2;:13;;;:15::i;:::-;37399:23;37395:641;;;37443:314;37499:12;37495:2;37474:38;;37491:1;37474:38;;;;;;;;;;;;37540:69;37579:1;37583:2;37587:14;;;;;;37603:5;37540:30;:69::i;:::-;37535:174;;37645:40;;;;;;;;;;;;;;37535:174;37752:3;37736:12;:19;;37443:314;;37838:12;37821:13;;:29;37817:43;;37852:8;;;37817:43;37395:641;;;37901:120;37957:14;;;;;;37953:2;37932:40;;37949:1;37932:40;;;;;;;;;;;;38016:3;38000:12;:19;;37901:120;;37395:641;38066:12;38050:13;:28;;;;37008:1082;;38100:60;38129:1;38133:2;38137:12;38151:8;38100:20;:60::i;:::-;36521:1647;36393:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2910:201::-;2996:5;3027:6;3021:13;3012:22;;3043:62;3099:5;3043:62;:::i;:::-;2910:201;;;;:::o;3131:340::-;3187:5;3236:3;3229:4;3221:6;3217:17;3213:27;3203:122;;3244:79;;:::i;:::-;3203:122;3361:6;3348:20;3386:79;3461:3;3453:6;3446:4;3438:6;3434:17;3386:79;:::i;:::-;3377:88;;3193:278;3131:340;;;;:::o;3477:139::-;3523:5;3561:6;3548:20;3539:29;;3577:33;3604:5;3577:33;:::i;:::-;3477:139;;;;:::o;3622:329::-;3681:6;3730:2;3718:9;3709:7;3705:23;3701:32;3698:119;;;3736:79;;:::i;:::-;3698:119;3856:1;3881:53;3926:7;3917:6;3906:9;3902:22;3881:53;:::i;:::-;3871:63;;3827:117;3622:329;;;;:::o;3957:474::-;4025:6;4033;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;4335:2;4361:53;4406:7;4397:6;4386:9;4382:22;4361:53;:::i;:::-;4351:63;;4306:118;3957:474;;;;;:::o;4437:619::-;4514:6;4522;4530;4579:2;4567:9;4558:7;4554:23;4550:32;4547:119;;;4585:79;;:::i;:::-;4547:119;4705:1;4730:53;4775:7;4766:6;4755:9;4751:22;4730:53;:::i;:::-;4720:63;;4676:117;4832:2;4858:53;4903:7;4894:6;4883:9;4879:22;4858:53;:::i;:::-;4848:63;;4803:118;4960:2;4986:53;5031:7;5022:6;5011:9;5007:22;4986:53;:::i;:::-;4976:63;;4931:118;4437:619;;;;;:::o;5062:943::-;5157:6;5165;5173;5181;5230:3;5218:9;5209:7;5205:23;5201:33;5198:120;;;5237:79;;:::i;:::-;5198:120;5357:1;5382:53;5427:7;5418:6;5407:9;5403:22;5382:53;:::i;:::-;5372:63;;5328:117;5484:2;5510:53;5555:7;5546:6;5535:9;5531:22;5510:53;:::i;:::-;5500:63;;5455:118;5612:2;5638:53;5683:7;5674:6;5663:9;5659:22;5638:53;:::i;:::-;5628:63;;5583:118;5768:2;5757:9;5753:18;5740:32;5799:18;5791:6;5788:30;5785:117;;;5821:79;;:::i;:::-;5785:117;5926:62;5980:7;5971:6;5960:9;5956:22;5926:62;:::i;:::-;5916:72;;5711:287;5062:943;;;;;;;:::o;6011:468::-;6076:6;6084;6133:2;6121:9;6112:7;6108:23;6104:32;6101:119;;;6139:79;;:::i;:::-;6101:119;6259:1;6284:53;6329:7;6320:6;6309:9;6305:22;6284:53;:::i;:::-;6274:63;;6230:117;6386:2;6412:50;6454:7;6445:6;6434:9;6430:22;6412:50;:::i;:::-;6402:60;;6357:115;6011:468;;;;;:::o;6485:474::-;6553:6;6561;6610:2;6598:9;6589:7;6585:23;6581:32;6578:119;;;6616:79;;:::i;:::-;6578:119;6736:1;6761:53;6806:7;6797:6;6786:9;6782:22;6761:53;:::i;:::-;6751:63;;6707:117;6863:2;6889:53;6934:7;6925:6;6914:9;6910:22;6889:53;:::i;:::-;6879:63;;6834:118;6485:474;;;;;:::o;6965:539::-;7049:6;7098:2;7086:9;7077:7;7073:23;7069:32;7066:119;;;7104:79;;:::i;:::-;7066:119;7252:1;7241:9;7237:17;7224:31;7282:18;7274:6;7271:30;7268:117;;;7304:79;;:::i;:::-;7268:117;7409:78;7479:7;7470:6;7459:9;7455:22;7409:78;:::i;:::-;7399:88;;7195:302;6965:539;;;;:::o;7510:323::-;7566:6;7615:2;7603:9;7594:7;7590:23;7586:32;7583:119;;;7621:79;;:::i;:::-;7583:119;7741:1;7766:50;7808:7;7799:6;7788:9;7784:22;7766:50;:::i;:::-;7756:60;;7712:114;7510:323;;;;:::o;7839:327::-;7897:6;7946:2;7934:9;7925:7;7921:23;7917:32;7914:119;;;7952:79;;:::i;:::-;7914:119;8072:1;8097:52;8141:7;8132:6;8121:9;8117:22;8097:52;:::i;:::-;8087:62;;8043:116;7839:327;;;;:::o;8172:349::-;8241:6;8290:2;8278:9;8269:7;8265:23;8261:32;8258:119;;;8296:79;;:::i;:::-;8258:119;8416:1;8441:63;8496:7;8487:6;8476:9;8472:22;8441:63;:::i;:::-;8431:73;;8387:127;8172:349;;;;:::o;8527:409::-;8626:6;8675:2;8663:9;8654:7;8650:23;8646:32;8643:119;;;8681:79;;:::i;:::-;8643:119;8801:1;8826:93;8911:7;8902:6;8891:9;8887:22;8826:93;:::i;:::-;8816:103;;8772:157;8527:409;;;;:::o;8942:509::-;9011:6;9060:2;9048:9;9039:7;9035:23;9031:32;9028:119;;;9066:79;;:::i;:::-;9028:119;9214:1;9203:9;9199:17;9186:31;9244:18;9236:6;9233:30;9230:117;;;9266:79;;:::i;:::-;9230:117;9371:63;9426:7;9417:6;9406:9;9402:22;9371:63;:::i;:::-;9361:73;;9157:287;8942:509;;;;:::o;9457:329::-;9516:6;9565:2;9553:9;9544:7;9540:23;9536:32;9533:119;;;9571:79;;:::i;:::-;9533:119;9691:1;9716:53;9761:7;9752:6;9741:9;9737:22;9716:53;:::i;:::-;9706:63;;9662:117;9457:329;;;;:::o;9792:118::-;9879:24;9897:5;9879:24;:::i;:::-;9874:3;9867:37;9792:118;;:::o;9916:109::-;9997:21;10012:5;9997:21;:::i;:::-;9992:3;9985:34;9916:109;;:::o;10031:360::-;10117:3;10145:38;10177:5;10145:38;:::i;:::-;10199:70;10262:6;10257:3;10199:70;:::i;:::-;10192:77;;10278:52;10323:6;10318:3;10311:4;10304:5;10300:16;10278:52;:::i;:::-;10355:29;10377:6;10355:29;:::i;:::-;10350:3;10346:39;10339:46;;10121:270;10031:360;;;;:::o;10397:364::-;10485:3;10513:39;10546:5;10513:39;:::i;:::-;10568:71;10632:6;10627:3;10568:71;:::i;:::-;10561:78;;10648:52;10693:6;10688:3;10681:4;10674:5;10670:16;10648:52;:::i;:::-;10725:29;10747:6;10725:29;:::i;:::-;10720:3;10716:39;10709:46;;10489:272;10397:364;;;;:::o;10767:377::-;10873:3;10901:39;10934:5;10901:39;:::i;:::-;10956:89;11038:6;11033:3;10956:89;:::i;:::-;10949:96;;11054:52;11099:6;11094:3;11087:4;11080:5;11076:16;11054:52;:::i;:::-;11131:6;11126:3;11122:16;11115:23;;10877:267;10767:377;;;;:::o;11174:845::-;11277:3;11314:5;11308:12;11343:36;11369:9;11343:36;:::i;:::-;11395:89;11477:6;11472:3;11395:89;:::i;:::-;11388:96;;11515:1;11504:9;11500:17;11531:1;11526:137;;;;11677:1;11672:341;;;;11493:520;;11526:137;11610:4;11606:9;11595;11591:25;11586:3;11579:38;11646:6;11641:3;11637:16;11630:23;;11526:137;;11672:341;11739:38;11771:5;11739:38;:::i;:::-;11799:1;11813:154;11827:6;11824:1;11821:13;11813:154;;;11901:7;11895:14;11891:1;11886:3;11882:11;11875:35;11951:1;11942:7;11938:15;11927:26;;11849:4;11846:1;11842:12;11837:17;;11813:154;;;11996:6;11991:3;11987:16;11980:23;;11679:334;;11493:520;;11281:738;;11174:845;;;;:::o;12025:365::-;12167:3;12188:66;12252:1;12247:3;12188:66;:::i;:::-;12181:73;;12263:93;12352:3;12263:93;:::i;:::-;12381:2;12376:3;12372:12;12365:19;;12025:365;;;:::o;12396:366::-;12538:3;12559:67;12623:2;12618:3;12559:67;:::i;:::-;12552:74;;12635:93;12724:3;12635:93;:::i;:::-;12753:2;12748:3;12744:12;12737:19;;12396:366;;;:::o;12768:::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:::-;13282:3;13303:67;13367:2;13362:3;13303:67;:::i;:::-;13296:74;;13379:93;13468:3;13379:93;:::i;:::-;13497:2;13492:3;13488:12;13481:19;;13140:366;;;:::o;13512:365::-;13654:3;13675:66;13739:1;13734:3;13675:66;:::i;:::-;13668:73;;13750:93;13839:3;13750:93;:::i;:::-;13868:2;13863:3;13859:12;13852:19;;13512:365;;;:::o;13883:366::-;14025:3;14046:67;14110:2;14105:3;14046:67;:::i;:::-;14039:74;;14122:93;14211:3;14122:93;:::i;:::-;14240:2;14235:3;14231:12;14224:19;;13883:366;;;:::o;14255:::-;14397:3;14418:67;14482:2;14477:3;14418:67;:::i;:::-;14411:74;;14494:93;14583:3;14494:93;:::i;:::-;14612:2;14607:3;14603:12;14596:19;;14255:366;;;:::o;14627:::-;14769:3;14790:67;14854:2;14849:3;14790:67;:::i;:::-;14783:74;;14866:93;14955:3;14866:93;:::i;:::-;14984:2;14979:3;14975:12;14968:19;;14627:366;;;:::o;14999:::-;15141:3;15162:67;15226:2;15221:3;15162:67;:::i;:::-;15155:74;;15238:93;15327:3;15238:93;:::i;:::-;15356:2;15351:3;15347:12;15340:19;;14999:366;;;:::o;15371:398::-;15530:3;15551:83;15632:1;15627:3;15551:83;:::i;:::-;15544:90;;15643:93;15732:3;15643:93;:::i;:::-;15761:1;15756:3;15752:11;15745:18;;15371:398;;;:::o;15775:366::-;15917:3;15938:67;16002:2;15997:3;15938:67;:::i;:::-;15931:74;;16014:93;16103:3;16014:93;:::i;:::-;16132:2;16127:3;16123:12;16116:19;;15775:366;;;:::o;16147:::-;16289:3;16310:67;16374:2;16369:3;16310:67;:::i;:::-;16303:74;;16386:93;16475:3;16386:93;:::i;:::-;16504:2;16499:3;16495:12;16488:19;;16147:366;;;:::o;16519:118::-;16606:24;16624:5;16606:24;:::i;:::-;16601:3;16594:37;16519:118;;:::o;16643:583::-;16865:3;16887:92;16975:3;16966:6;16887:92;:::i;:::-;16880:99;;16996:95;17087:3;17078:6;16996:95;:::i;:::-;16989:102;;17108:92;17196:3;17187:6;17108:92;:::i;:::-;17101:99;;17217:3;17210:10;;16643:583;;;;;;:::o;17232:379::-;17416:3;17438:147;17581:3;17438:147;:::i;:::-;17431:154;;17602:3;17595:10;;17232:379;;;:::o;17617:222::-;17710:4;17748:2;17737:9;17733:18;17725:26;;17761:71;17829:1;17818:9;17814:17;17805:6;17761:71;:::i;:::-;17617:222;;;;:::o;17845:640::-;18040:4;18078:3;18067:9;18063:19;18055:27;;18092:71;18160:1;18149:9;18145:17;18136:6;18092:71;:::i;:::-;18173:72;18241:2;18230:9;18226:18;18217:6;18173:72;:::i;:::-;18255;18323:2;18312:9;18308:18;18299:6;18255:72;:::i;:::-;18374:9;18368:4;18364:20;18359:2;18348:9;18344:18;18337:48;18402:76;18473:4;18464:6;18402:76;:::i;:::-;18394:84;;17845:640;;;;;;;:::o;18491:210::-;18578:4;18616:2;18605:9;18601:18;18593:26;;18629:65;18691:1;18680:9;18676:17;18667:6;18629:65;:::i;:::-;18491:210;;;;:::o;18707:313::-;18820:4;18858:2;18847:9;18843:18;18835:26;;18907:9;18901:4;18897:20;18893:1;18882:9;18878:17;18871:47;18935:78;19008:4;18999:6;18935:78;:::i;:::-;18927:86;;18707:313;;;;:::o;19026:419::-;19192:4;19230:2;19219:9;19215:18;19207:26;;19279:9;19273:4;19269:20;19265:1;19254:9;19250:17;19243:47;19307:131;19433:4;19307:131;:::i;:::-;19299:139;;19026:419;;;:::o;19451:::-;19617:4;19655:2;19644:9;19640:18;19632:26;;19704:9;19698:4;19694:20;19690:1;19679:9;19675:17;19668:47;19732:131;19858:4;19732:131;:::i;:::-;19724:139;;19451:419;;;:::o;19876:::-;20042:4;20080:2;20069:9;20065:18;20057:26;;20129:9;20123:4;20119:20;20115:1;20104:9;20100:17;20093:47;20157:131;20283:4;20157:131;:::i;:::-;20149:139;;19876:419;;;:::o;20301:::-;20467:4;20505:2;20494:9;20490:18;20482:26;;20554:9;20548:4;20544:20;20540:1;20529:9;20525:17;20518:47;20582:131;20708:4;20582:131;:::i;:::-;20574:139;;20301:419;;;:::o;20726:::-;20892:4;20930:2;20919:9;20915:18;20907:26;;20979:9;20973:4;20969:20;20965:1;20954:9;20950:17;20943:47;21007:131;21133:4;21007:131;:::i;:::-;20999:139;;20726:419;;;:::o;21151:::-;21317:4;21355:2;21344:9;21340:18;21332:26;;21404:9;21398:4;21394:20;21390:1;21379:9;21375:17;21368:47;21432:131;21558:4;21432:131;:::i;:::-;21424:139;;21151:419;;;:::o;21576:::-;21742:4;21780:2;21769:9;21765:18;21757:26;;21829:9;21823:4;21819:20;21815:1;21804:9;21800:17;21793:47;21857:131;21983:4;21857:131;:::i;:::-;21849:139;;21576:419;;;:::o;22001:::-;22167:4;22205:2;22194:9;22190:18;22182:26;;22254:9;22248:4;22244:20;22240:1;22229:9;22225:17;22218:47;22282:131;22408:4;22282:131;:::i;:::-;22274:139;;22001:419;;;:::o;22426:::-;22592:4;22630:2;22619:9;22615:18;22607:26;;22679:9;22673:4;22669:20;22665:1;22654:9;22650:17;22643:47;22707:131;22833:4;22707:131;:::i;:::-;22699:139;;22426:419;;;:::o;22851:::-;23017:4;23055:2;23044:9;23040:18;23032:26;;23104:9;23098:4;23094:20;23090:1;23079:9;23075:17;23068:47;23132:131;23258:4;23132:131;:::i;:::-;23124:139;;22851:419;;;:::o;23276:::-;23442:4;23480:2;23469:9;23465:18;23457:26;;23529:9;23523:4;23519:20;23515:1;23504:9;23500:17;23493:47;23557:131;23683:4;23557:131;:::i;:::-;23549:139;;23276:419;;;:::o;23701:222::-;23794:4;23832:2;23821:9;23817:18;23809:26;;23845:71;23913:1;23902:9;23898:17;23889:6;23845:71;:::i;:::-;23701:222;;;;:::o;23929:129::-;23963:6;23990:20;;:::i;:::-;23980:30;;24019:33;24047:4;24039:6;24019:33;:::i;:::-;23929:129;;;:::o;24064:75::-;24097:6;24130:2;24124:9;24114:19;;24064:75;:::o;24145:311::-;24222:4;24312:18;24304:6;24301:30;24298:56;;;24334:18;;:::i;:::-;24298:56;24384:4;24376:6;24372:17;24364:25;;24444:4;24438;24434:15;24426:23;;24145:311;;;:::o;24462:307::-;24523:4;24613:18;24605:6;24602:30;24599:56;;;24635:18;;:::i;:::-;24599:56;24673:29;24695:6;24673:29;:::i;:::-;24665:37;;24757:4;24751;24747:15;24739:23;;24462:307;;;:::o;24775:308::-;24837:4;24927:18;24919:6;24916:30;24913:56;;;24949:18;;:::i;:::-;24913:56;24987:29;25009:6;24987:29;:::i;:::-;24979:37;;25071:4;25065;25061:15;25053:23;;24775:308;;;:::o;25089:141::-;25138:4;25161:3;25153:11;;25184:3;25181:1;25174:14;25218:4;25215:1;25205:18;25197:26;;25089:141;;;:::o;25236:98::-;25287:6;25321:5;25315:12;25305:22;;25236:98;;;:::o;25340:99::-;25392:6;25426:5;25420:12;25410:22;;25340:99;;;:::o;25445:168::-;25528:11;25562:6;25557:3;25550:19;25602:4;25597:3;25593:14;25578:29;;25445:168;;;;:::o;25619:147::-;25720:11;25757:3;25742:18;;25619:147;;;;:::o;25772:169::-;25856:11;25890:6;25885:3;25878:19;25930:4;25925:3;25921:14;25906:29;;25772:169;;;;:::o;25947:148::-;26049:11;26086:3;26071:18;;25947:148;;;;:::o;26101:305::-;26141:3;26160:20;26178:1;26160:20;:::i;:::-;26155:25;;26194:20;26212:1;26194:20;:::i;:::-;26189:25;;26348:1;26280:66;26276:74;26273:1;26270:81;26267:107;;;26354:18;;:::i;:::-;26267:107;26398:1;26395;26391:9;26384:16;;26101:305;;;;:::o;26412:185::-;26452:1;26469:20;26487:1;26469:20;:::i;:::-;26464:25;;26503:20;26521:1;26503:20;:::i;:::-;26498:25;;26542:1;26532:35;;26547:18;;:::i;:::-;26532:35;26589:1;26586;26582:9;26577:14;;26412:185;;;;:::o;26603:348::-;26643:7;26666:20;26684:1;26666:20;:::i;:::-;26661:25;;26700:20;26718:1;26700:20;:::i;:::-;26695:25;;26888:1;26820:66;26816:74;26813:1;26810:81;26805:1;26798:9;26791:17;26787:105;26784:131;;;26895:18;;:::i;:::-;26784:131;26943:1;26940;26936:9;26925:20;;26603:348;;;;:::o;26957:191::-;26997:4;27017:20;27035:1;27017:20;:::i;:::-;27012:25;;27051:20;27069:1;27051:20;:::i;:::-;27046:25;;27090:1;27087;27084:8;27081:34;;;27095:18;;:::i;:::-;27081:34;27140:1;27137;27133:9;27125:17;;26957:191;;;;:::o;27154:96::-;27191:7;27220:24;27238:5;27220:24;:::i;:::-;27209:35;;27154:96;;;:::o;27256:90::-;27290:7;27333:5;27326:13;27319:21;27308:32;;27256:90;;;:::o;27352:149::-;27388:7;27428:66;27421:5;27417:78;27406:89;;27352:149;;;:::o;27507:125::-;27573:7;27602:24;27620:5;27602:24;:::i;:::-;27591:35;;27507:125;;;:::o;27638:126::-;27675:7;27715:42;27708:5;27704:54;27693:65;;27638:126;;;:::o;27770:77::-;27807:7;27836:5;27825:16;;27770:77;;;:::o;27853:154::-;27937:6;27932:3;27927;27914:30;27999:1;27990:6;27985:3;27981:16;27974:27;27853:154;;;:::o;28013:307::-;28081:1;28091:113;28105:6;28102:1;28099:13;28091:113;;;28190:1;28185:3;28181:11;28175:18;28171:1;28166:3;28162:11;28155:39;28127:2;28124:1;28120:10;28115:15;;28091:113;;;28222:6;28219:1;28216:13;28213:101;;;28302:1;28293:6;28288:3;28284:16;28277:27;28213:101;28062:258;28013:307;;;:::o;28326:320::-;28370:6;28407:1;28401:4;28397:12;28387:22;;28454:1;28448:4;28444:12;28475:18;28465:81;;28531:4;28523:6;28519:17;28509:27;;28465:81;28593:2;28585:6;28582:14;28562:18;28559:38;28556:84;;;28612:18;;:::i;:::-;28556:84;28377:269;28326:320;;;:::o;28652:281::-;28735:27;28757:4;28735:27;:::i;:::-;28727:6;28723:40;28865:6;28853:10;28850:22;28829:18;28817:10;28814:34;28811:62;28808:88;;;28876:18;;:::i;:::-;28808:88;28916:10;28912:2;28905:22;28695:238;28652:281;;:::o;28939:233::-;28978:3;29001:24;29019:5;29001:24;:::i;:::-;28992:33;;29047:66;29040:5;29037:77;29034:103;;;29117:18;;:::i;:::-;29034:103;29164:1;29157:5;29153:13;29146:20;;28939:233;;;:::o;29178:176::-;29210:1;29227:20;29245:1;29227:20;:::i;:::-;29222:25;;29261:20;29279:1;29261:20;:::i;:::-;29256:25;;29300:1;29290:35;;29305:18;;:::i;:::-;29290:35;29346:1;29343;29339:9;29334:14;;29178:176;;;;:::o;29360:180::-;29408:77;29405:1;29398:88;29505:4;29502:1;29495:15;29529:4;29526:1;29519:15;29546:180;29594:77;29591:1;29584:88;29691:4;29688:1;29681:15;29715:4;29712:1;29705:15;29732:180;29780:77;29777:1;29770:88;29877:4;29874:1;29867:15;29901:4;29898:1;29891:15;29918:180;29966:77;29963:1;29956:88;30063:4;30060:1;30053:15;30087:4;30084:1;30077:15;30104:180;30152:77;30149:1;30142:88;30249:4;30246:1;30239:15;30273:4;30270:1;30263:15;30290:117;30399:1;30396;30389:12;30413:117;30522:1;30519;30512:12;30536:117;30645:1;30642;30635:12;30659:117;30768:1;30765;30758:12;30782:117;30891:1;30888;30881:12;30905:102;30946:6;30997:2;30993:7;30988:2;30981:5;30977:14;30973:28;30963:38;;30905:102;;;:::o;31013:156::-;31153:8;31149:1;31141:6;31137:14;31130:32;31013:156;:::o;31175:225::-;31315:34;31311:1;31303:6;31299:14;31292:58;31384:8;31379:2;31371:6;31367:15;31360:33;31175:225;:::o;31406:160::-;31546:12;31542:1;31534:6;31530:14;31523:36;31406:160;:::o;31572:172::-;31712:24;31708:1;31700:6;31696:14;31689:48;31572:172;:::o;31750:158::-;31890:10;31886:1;31878:6;31874:14;31867:34;31750:158;:::o;31914:172::-;32054:24;32050:1;32042:6;32038:14;32031:48;31914:172;:::o;32092:171::-;32232:23;32228:1;32220:6;32216:14;32209:47;32092:171;:::o;32269:182::-;32409:34;32405:1;32397:6;32393:14;32386:58;32269:182;:::o;32457:172::-;32597:24;32593:1;32585:6;32581:14;32574:48;32457:172;:::o;32635:114::-;;:::o;32755:164::-;32895:16;32891:1;32883:6;32879:14;32872:40;32755:164;:::o;32925:170::-;33065:22;33061:1;33053:6;33049:14;33042:46;32925:170;:::o;33101:122::-;33174:24;33192:5;33174:24;:::i;:::-;33167:5;33164:35;33154:63;;33213:1;33210;33203:12;33154:63;33101:122;:::o;33229:116::-;33299:21;33314:5;33299:21;:::i;:::-;33292:5;33289:32;33279:60;;33335:1;33332;33325:12;33279:60;33229:116;:::o;33351:120::-;33423:23;33440:5;33423:23;:::i;:::-;33416:5;33413:34;33403:62;;33461:1;33458;33451:12;33403:62;33351:120;:::o;33477:180::-;33579:53;33626:5;33579:53;:::i;:::-;33572:5;33569:64;33559:92;;33647:1;33644;33637:12;33559:92;33477:180;:::o;33663:122::-;33736:24;33754:5;33736:24;:::i;:::-;33729:5;33726:35;33716:63;;33775:1;33772;33765:12;33716:63;33663:122;:::o
Swarm Source
ipfs://4b1aa52d28091abcd0a1e9f26ca3bd30647b1743bfc9097f61b3f965e014fa61
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.