ERC-721
Overview
Max Total Supply
855 pxH
Holders
168
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
6 pxHLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
pxHarambe
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-01-28 */ //__ ____ ____ ___ //`M6MMMMb `MM( )P' // MM' `Mb `MM` ,P // MM MM `MM,P // MM MM `MM. // MM MM d`MM. // MM. ,M9 d' `MM. // MMYMMM9 _d_ _)MM_ // MM // MM //_MM_ //____ ____ ___ //`MM' `MM' MM // MM MM MM // MM MM ___ ___ __ ___ ___ __ __ MM____ ____ // MM MM 6MMMMb `MM 6MM 6MMMMb `MM 6MMb 6MMb MMMMMMb 6MMMMb // MMMMMMMMMM 8M' `Mb MM69 " 8M' `Mb MM69 `MM69 `Mb MM' `Mb 6M' `Mb // MM MM ,oMM MM' ,oMM MM' MM' MM MM MM MM MM // MM MM ,6MM9'MM MM ,6MM9'MM MM MM MM MM MM MMMMMMMM // MM MM MM' MM MM MM' MM MM MM MM MM MM MM // MM MM MM. ,MM MM MM. ,MM MM MM MM MM. ,M9 YM d9 //_MM_ _MM_`YMMM9'Yb_MM_ `YMMM9'Yb_MM_ _MM_ _MM_MYMMMM9 YMMMM9 // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.4; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOnwer() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOnwer { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOnwer { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } pragma solidity ^0.8.13; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } _; } } pragma solidity ^0.8.13; abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} } pragma solidity ^0.8.13; interface IMain { function balanceOf( address ) external view returns (uint); } 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, DefaultOperatorFilterer { 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 override onlyAllowedOperator(from) { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override onlyAllowedOperator(from) { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override onlyAllowedOperator(from) { _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 pxHarambe is ERC721A, Owneable { string public baseURI = "ipfs://QmdQCiY8hXzKeqMajT8PrCxAZCcpfyB4N8vrmohoAdTXXd/"; string public contractURI = "ipfs://"; string public baseExtension = ".json"; address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; uint256 public MAX_PER_TX_FREE = 3; uint256 public free_max_supply = 333; uint256 public constant MAX_PER_TX = 10; uint256 public max_supply = 2222; uint256 public price = 0.001 ether; bool public paused = true; constructor() ERC721A("pxHarambe", "pxH") {} 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 PublicMintTWO() external payable { address _caller = _msgSender(); require(!paused, "Paused"); require(max_supply >= totalSupply() + 2, "All Gone"); require(2 > 0, "No 0 mints"); require(tx.origin == _caller, "No Contract minting."); require(MAX_PER_TX >= 2 , "Excess max per paid tx"); if(free_max_supply >= totalSupply()){ require(MAX_PER_TX_FREE >= 2 , "Excess max per free tx"); }else{ require(MAX_PER_TX >= 2 , "Excess max per paid tx"); require(2 * price == msg.value, "Invalid funds provided"); } _safeMint(_caller, 2); } function isApprovedForAll(address owner, address operator) override public view returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } function Withdraw() external onlyOwner { uint256 balance = address(this).balance; (bool success, ) = _msgSender().call{value: balance}(""); require(success, "Failed to send"); } function Reserve(uint256 quantity, address) 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; } function burn(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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","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":[],"name":"PublicMintTWO","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"Reserve","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":"tokenids","type":"uint256[]"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[],"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
6080604052735bb656bb4312f100081abb7b08c1e0f8ef5c56d1600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060405180606001604052806036815260200162005a5260369139600a90805190602001906200008a92919062000529565b506040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250600b9080519060200190620000d892919062000529565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200012692919062000529565b506003600d5561014d600e556108ae600f5566038d7ea4c680006010556001601160006101000a81548160ff0219169083151502179055503480156200016b57600080fd5b506040518060400160405280600981526020017f7078486172616d626500000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f7078480000000000000000000000000000000000000000000000000000000000815250733cc6cdda760b79bafa08df41ecfa224f810dceb6600160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620003e4578015620002aa576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620002709291906200061e565b600060405180830381600087803b1580156200028b57600080fd5b505af1158015620002a0573d6000803e3d6000fd5b50505050620003e3565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000364576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200032a9291906200061e565b600060405180830381600087803b1580156200034557600080fd5b505af11580156200035a573d6000803e3d6000fd5b50505050620003e2565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620003ad91906200064b565b600060405180830381600087803b158015620003c857600080fd5b505af1158015620003dd573d6000803e3d6000fd5b505050505b5b5b50508160029080519060200190620003fe92919062000529565b5080600390805190602001906200041792919062000529565b50620004286200045660201b60201c565b600081905550505062000450620004446200045b60201b60201c565b6200046360201b60201c565b620006cc565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620005379062000697565b90600052602060002090601f0160209004810192826200055b5760008555620005a7565b82601f106200057657805160ff1916838001178555620005a7565b82800160010185558215620005a7579182015b82811115620005a657825182559160200191906001019062000589565b5b509050620005b69190620005ba565b5090565b5b80821115620005d5576000816000905550600101620005bb565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200060682620005d9565b9050919050565b6200061881620005f9565b82525050565b60006040820190506200063560008301856200060d565b6200064460208301846200060d565b9392505050565b60006020820190506200066260008301846200060d565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006b057607f821691505b602082108103620006c657620006c562000668565b5b50919050565b61537680620006dc6000396000f3fe60806040526004361061023b5760003560e01c80638a333b501161012e578063c87b56dd116100ab578063e8a3d4851161006f578063e8a3d48514610826578063e985e9c514610851578063f2fde38b1461088e578063f43a22dc146108b7578063f72a0902146108e25761023b565b8063c87b56dd14610743578063cd7c032614610780578063d476de1b146107ab578063db4a0f61146107d4578063e07b37f6146107fd5761023b565b8063a035b1fe116100f2578063a035b1fe14610672578063a22cb4651461069d578063b80f55c9146106c6578063b88d4fde146106ef578063c6682862146107185761023b565b80638a333b50146105ac5780638da5cb5b146105d7578063938e3d7b1461060257806395d89b411461062b5780639fb17e34146106565761023b565b806342842e0e116101bc5780635c975abb116101805780635c975abb146104c55780636352211e146104f05780636c0360eb1461052d57806370a0823114610558578063715018a6146105955761023b565b806342842e0e14610408578063463fff79146104315780635312e5cf1461045c57806355f804b31461048557806357ea89b6146104ae5761023b565b806318160ddd1161020357806318160ddd1461033757806318e223dd1461036257806323b872dd1461038b57806326e987d7146103b45780632aa80807146103df5761023b565b806301ffc9a71461024057806302329a291461027d57806306fdde03146102a6578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061413c565b6108ec565b6040516102749190614184565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f91906141cb565b6109ce565b005b3480156102b257600080fd5b506102bb610ac6565b6040516102c89190614291565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f391906142e9565b610b58565b6040516103059190614357565b60405180910390f35b34801561031a57600080fd5b506103356004803603810190610330919061439e565b610bd4565b005b34801561034357600080fd5b5061034c610cde565b60405161035991906143ed565b60405180910390f35b34801561036e57600080fd5b50610389600480360381019061038491906142e9565b610cf5565b005b34801561039757600080fd5b506103b260048036038101906103ad9190614408565b610dda565b005b3480156103c057600080fd5b506103c9610fbc565b6040516103d691906143ed565b60405180910390f35b3480156103eb57600080fd5b5061040660048036038101906104019190614590565b610fc2565b005b34801561041457600080fd5b5061042f600480360381019061042a9190614408565b6110b7565b005b34801561043d57600080fd5b506104466112b9565b60405161045391906143ed565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e91906142e9565b6112bf565b005b34801561049157600080fd5b506104ac60048036038101906104a79190614590565b6113a4565b005b3480156104ba57600080fd5b506104c3611499565b005b3480156104d157600080fd5b506104da611630565b6040516104e79190614184565b60405180910390f35b3480156104fc57600080fd5b50610517600480360381019061051291906142e9565b611643565b6040516105249190614357565b60405180910390f35b34801561053957600080fd5b50610542611659565b60405161054f9190614291565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a91906145d9565b6116e7565b60405161058c91906143ed565b60405180910390f35b3480156105a157600080fd5b506105aa6117b6565b005b3480156105b857600080fd5b506105c161183e565b6040516105ce91906143ed565b60405180910390f35b3480156105e357600080fd5b506105ec611844565b6040516105f99190614357565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190614590565b61186e565b005b34801561063757600080fd5b50610640611963565b60405161064d9190614291565b60405180910390f35b610670600480360381019061066b91906142e9565b6119f5565b005b34801561067e57600080fd5b50610687611c99565b60405161069491906143ed565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190614606565b611c9f565b005b3480156106d257600080fd5b506106ed60048036038101906106e8919061470e565b611e16565b005b3480156106fb57600080fd5b50610716600480360381019061071191906147f8565b611f43565b005b34801561072457600080fd5b5061072d6121fc565b60405161073a9190614291565b60405180910390f35b34801561074f57600080fd5b5061076a600480360381019061076591906142e9565b61228a565b6040516107779190614291565b60405180910390f35b34801561078c57600080fd5b50610795612335565b6040516107a29190614357565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd91906142e9565b61234d565b005b3480156107e057600080fd5b506107fb60048036038101906107f691906142e9565b612432565b005b34801561080957600080fd5b50610824600480360381019061081f919061487b565b612517565b005b34801561083257600080fd5b5061083b612607565b6040516108489190614291565b60405180910390f35b34801561085d57600080fd5b50610878600480360381019061087391906148bb565b612695565b6040516108859190614184565b60405180910390f35b34801561089a57600080fd5b506108b560048036038101906108b091906145d9565b612779565b005b3480156108c357600080fd5b506108cc612870565b6040516108d991906143ed565b60405180910390f35b6108ea612875565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109b757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c757506109c682612b1f565b5b9050919050565b6109d6612b89565b73ffffffffffffffffffffffffffffffffffffffff166109f4611844565b73ffffffffffffffffffffffffffffffffffffffff161480610a6a5750610a19612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa090614947565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060028054610ad590614996565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0190614996565b8015610b4e5780601f10610b2357610100808354040283529160200191610b4e565b820191906000526020600020905b815481529060010190602001808311610b3157829003601f168201915b5050505050905090565b6000610b6382612b91565b610b99576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bdf82611643565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c46576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c65612b89565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c975750610c9581610c90612b89565b612695565b155b15610cce576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cd9838383612bdf565b505050565b6000610ce8612c91565b6001546000540303905090565b610cfd612b89565b73ffffffffffffffffffffffffffffffffffffffff16610d1b611844565b73ffffffffffffffffffffffffffffffffffffffff161480610d915750610d40612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790614947565b60405180910390fd5b80600f8190555050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610faa573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e4c57610e47848484612c96565b610fb6565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e959291906149c7565b602060405180830381865afa158015610eb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed69190614a05565b8015610f6857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f269291906149c7565b602060405180830381865afa158015610f43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f679190614a05565b5b610fa957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610fa09190614357565b60405180910390fd5b5b610fb5848484612c96565b5b50505050565b600e5481565b610fca612b89565b73ffffffffffffffffffffffffffffffffffffffff16610fe8611844565b73ffffffffffffffffffffffffffffffffffffffff16148061105e575061100d612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490614947565b60405180910390fd5b80600c90805190602001906110b3929190613fea565b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611297573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111395761113484848460405180602001604052806000815250611f43565b6112b3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016111829291906149c7565b602060405180830381865afa15801561119f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c39190614a05565b801561125557506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016112139291906149c7565b602060405180830381865afa158015611230573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112549190614a05565b5b61129657336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161128d9190614357565b60405180910390fd5b5b6112b284848460405180602001604052806000815250611f43565b5b50505050565b600d5481565b6112c7612b89565b73ffffffffffffffffffffffffffffffffffffffff166112e5611844565b73ffffffffffffffffffffffffffffffffffffffff16148061135b575061130a612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61139a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139190614947565b60405180910390fd5b80600d8190555050565b6113ac612b89565b73ffffffffffffffffffffffffffffffffffffffff166113ca611844565b73ffffffffffffffffffffffffffffffffffffffff16148061144057506113ef612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61147f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147690614947565b60405180910390fd5b80600a9080519060200190611495929190613fea565b5050565b6114a1612b89565b73ffffffffffffffffffffffffffffffffffffffff166114bf611844565b73ffffffffffffffffffffffffffffffffffffffff16148061153557506114e4612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90614947565b60405180910390fd5b60004790506000611583612b89565b73ffffffffffffffffffffffffffffffffffffffff16826040516115a690614a63565b60006040518083038185875af1925050503d80600081146115e3576040519150601f19603f3d011682016040523d82523d6000602084013e6115e8565b606091505b505090508061162c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162390614ac4565b60405180910390fd5b5050565b601160009054906101000a900460ff1681565b600061164e82613185565b600001519050919050565b600a805461166690614996565b80601f016020809104026020016040519081016040528092919081815260200182805461169290614996565b80156116df5780601f106116b4576101008083540402835291602001916116df565b820191906000526020600020905b8154815290600101906020018083116116c257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361174e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6117be612b89565b73ffffffffffffffffffffffffffffffffffffffff166117dc611844565b73ffffffffffffffffffffffffffffffffffffffff1614611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990614947565b60405180910390fd5b61183c6000613414565b565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611876612b89565b73ffffffffffffffffffffffffffffffffffffffff16611894611844565b73ffffffffffffffffffffffffffffffffffffffff16148061190a57506118b9612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194090614947565b60405180910390fd5b80600b908051906020019061195f929190613fea565b5050565b60606003805461197290614996565b80601f016020809104026020016040519081016040528092919081815260200182805461199e90614996565b80156119eb5780601f106119c0576101008083540402835291602001916119eb565b820191906000526020600020905b8154815290600101906020018083116119ce57829003601f168201915b5050505050905090565b60006119ff612b89565b9050601160009054906101000a900460ff1615611a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4890614b30565b60405180910390fd5b81611a5a610cde565b611a649190614b7f565b600f541015611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f90614c21565b60405180910390fd5b60008211611aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae290614c8d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5090614cf9565b60405180910390fd5b81600a1015611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9490614d65565b60405180910390fd5b611ba5610cde565b600e5410611bf75781600d541015611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990614dd1565b60405180910390fd5b611c8b565b81600a1015611c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3290614d65565b60405180910390fd5b3460105483611c4a9190614df1565b14611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8190614e97565b60405180910390fd5b5b611c9581836134da565b5050565b60105481565b611ca7612b89565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d0b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611d18612b89565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dc5612b89565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e0a9190614184565b60405180910390a35050565b611e1e612b89565b73ffffffffffffffffffffffffffffffffffffffff16611e3c611844565b73ffffffffffffffffffffffffffffffffffffffff161480611eb25750611e61612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee890614947565b60405180910390fd5b60008151905060005b81811015611f3e576000838281518110611f1757611f16614eb7565b5b60200260200101519050611f2a816134f8565b508080611f3690614ee6565b915050611efa565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561217e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361202057611fb0858585612c96565b611fcf8473ffffffffffffffffffffffffffffffffffffffff1661389b565b8015611fe45750611fe2858585856138be565b155b1561201b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121f5565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016120699291906149c7565b602060405180830381865afa158015612086573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120aa9190614a05565b801561213c57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016120fa9291906149c7565b602060405180830381865afa158015612117573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061213b9190614a05565b5b61217d57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016121749190614357565b60405180910390fd5b5b612189858585612c96565b6121a88473ffffffffffffffffffffffffffffffffffffffff1661389b565b80156121bd57506121bb858585856138be565b155b156121f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5050505050565b600c805461220990614996565b80601f016020809104026020016040519081016040528092919081815260200182805461223590614996565b80156122825780601f1061225757610100808354040283529160200191612282565b820191906000526020600020905b81548152906001019060200180831161226557829003601f168201915b505050505081565b606061229582612b91565b6122d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cb90614f7a565b60405180910390fd5b6000600a80546122e390614996565b9050116122ff576040518060200160405280600081525061232e565b600a61230a83613a0e565b600c60405160200161231e9392919061506a565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b612355612b89565b73ffffffffffffffffffffffffffffffffffffffff16612373611844565b73ffffffffffffffffffffffffffffffffffffffff1614806123e95750612398612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f90614947565b60405180910390fd5b80600e8190555050565b61243a612b89565b73ffffffffffffffffffffffffffffffffffffffff16612458611844565b73ffffffffffffffffffffffffffffffffffffffff1614806124ce575061247d612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61250d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250490614947565b60405180910390fd5b8060108190555050565b61251f612b89565b73ffffffffffffffffffffffffffffffffffffffff1661253d611844565b73ffffffffffffffffffffffffffffffffffffffff1614806125b35750612562612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e990614947565b60405180910390fd5b6126036125fd612b89565b836134da565b5050565b600b805461261490614996565b80601f016020809104026020016040519081016040528092919081815260200182805461264090614996565b801561268d5780601f106126625761010080835404028352916020019161268d565b820191906000526020600020905b81548152906001019060200180831161267057829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016126ff9190614357565b602060405180830381865afa15801561271c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061274091906150d9565b73ffffffffffffffffffffffffffffffffffffffff1603612765576001915050612773565b61276f8484613b6e565b9150505b92915050565b612781612b89565b73ffffffffffffffffffffffffffffffffffffffff1661279f611844565b73ffffffffffffffffffffffffffffffffffffffff16146127f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ec90614947565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285b90615178565b60405180910390fd5b61286d81613414565b50565b600a81565b600061287f612b89565b9050601160009054906101000a900460ff16156128d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c890614b30565b60405180910390fd5b60026128db610cde565b6128e59190614b7f565b600f541015612929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292090614c21565b60405180910390fd5b600060021161296d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296490614c8d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146129db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d290614cf9565b60405180910390fd5b6002600a1015612a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1790614d65565b60405180910390fd5b612a28610cde565b600e5410612a7b576002600d541015612a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6d90614dd1565b60405180910390fd5b612b11565b6002600a1015612ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab790614d65565b60405180910390fd5b346010546002612ad09190614df1565b14612b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0790614e97565b60405180910390fd5b5b612b1c8160026134da565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081612b9c612c91565b11158015612bab575060005482105b8015612bd8575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000612ca182613185565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612cc8612b89565b73ffffffffffffffffffffffffffffffffffffffff161480612cfb5750612cfa8260000151612cf5612b89565b612695565b5b80612d405750612d09612b89565b73ffffffffffffffffffffffffffffffffffffffff16612d2884610b58565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612d79576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612de2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612e48576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e558585856001613c02565b612e656000848460000151612bdf565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603613115576000548110156131145782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461317e8585856001613c08565b5050505050565b61318d614070565b60008290508061319b612c91565b111580156131aa575060005481105b156133dd576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516133db57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146132bf57809250505061340f565b5b6001156133da57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146133d557809250505061340f565b6132c0565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6134f4828260405180602001604052806000815250613c0e565b5050565b600061350382613185565b905061351781600001516000846001613c02565b6135276000838360000151612bdf565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603613812576000548110156138115781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461388581600001516000846001613c08565b6001600081548092919060010191905055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026138e4612b89565b8786866040518563ffffffff1660e01b815260040161390694939291906151ed565b6020604051808303816000875af192505050801561394257506040513d601f19601f8201168201806040525081019061393f919061524e565b60015b6139bb573d8060008114613972576040519150601f19603f3d011682016040523d82523d6000602084013e613977565b606091505b5060008151036139b3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203613a55576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613b69565b600082905060005b60008214613a87578080613a7090614ee6565b915050600a82613a8091906152aa565b9150613a5d565b60008167ffffffffffffffff811115613aa357613aa2614465565b5b6040519080825280601f01601f191660200182016040528015613ad55781602001600182028036833780820191505090505b5090505b60008514613b6257600182613aee91906152db565b9150600a85613afd919061530f565b6030613b099190614b7f565b60f81b818381518110613b1f57613b1e614eb7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613b5b91906152aa565b9450613ad9565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b613c1b8383836001613c20565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613c8c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613cc6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613cd36000868387613c02565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613e9d5750613e9c8773ffffffffffffffffffffffffffffffffffffffff1661389b565b5b15613f62575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613f1260008884806001019550886138be565b613f48576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203613ea3578260005414613f5d57600080fd5b613fcd565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613f63575b816000819055505050613fe36000868387613c08565b5050505050565b828054613ff690614996565b90600052602060002090601f016020900481019282614018576000855561405f565b82601f1061403157805160ff191683800117855561405f565b8280016001018555821561405f579182015b8281111561405e578251825591602001919060010190614043565b5b50905061406c91906140b3565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156140cc5760008160009055506001016140b4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b614119816140e4565b811461412457600080fd5b50565b60008135905061413681614110565b92915050565b600060208284031215614152576141516140da565b5b600061416084828501614127565b91505092915050565b60008115159050919050565b61417e81614169565b82525050565b60006020820190506141996000830184614175565b92915050565b6141a881614169565b81146141b357600080fd5b50565b6000813590506141c58161419f565b92915050565b6000602082840312156141e1576141e06140da565b5b60006141ef848285016141b6565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614232578082015181840152602081019050614217565b83811115614241576000848401525b50505050565b6000601f19601f8301169050919050565b6000614263826141f8565b61426d8185614203565b935061427d818560208601614214565b61428681614247565b840191505092915050565b600060208201905081810360008301526142ab8184614258565b905092915050565b6000819050919050565b6142c6816142b3565b81146142d157600080fd5b50565b6000813590506142e3816142bd565b92915050565b6000602082840312156142ff576142fe6140da565b5b600061430d848285016142d4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061434182614316565b9050919050565b61435181614336565b82525050565b600060208201905061436c6000830184614348565b92915050565b61437b81614336565b811461438657600080fd5b50565b60008135905061439881614372565b92915050565b600080604083850312156143b5576143b46140da565b5b60006143c385828601614389565b92505060206143d4858286016142d4565b9150509250929050565b6143e7816142b3565b82525050565b600060208201905061440260008301846143de565b92915050565b600080600060608486031215614421576144206140da565b5b600061442f86828701614389565b935050602061444086828701614389565b9250506040614451868287016142d4565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61449d82614247565b810181811067ffffffffffffffff821117156144bc576144bb614465565b5b80604052505050565b60006144cf6140d0565b90506144db8282614494565b919050565b600067ffffffffffffffff8211156144fb576144fa614465565b5b61450482614247565b9050602081019050919050565b82818337600083830152505050565b600061453361452e846144e0565b6144c5565b90508281526020810184848401111561454f5761454e614460565b5b61455a848285614511565b509392505050565b600082601f8301126145775761457661445b565b5b8135614587848260208601614520565b91505092915050565b6000602082840312156145a6576145a56140da565b5b600082013567ffffffffffffffff8111156145c4576145c36140df565b5b6145d084828501614562565b91505092915050565b6000602082840312156145ef576145ee6140da565b5b60006145fd84828501614389565b91505092915050565b6000806040838503121561461d5761461c6140da565b5b600061462b85828601614389565b925050602061463c858286016141b6565b9150509250929050565b600067ffffffffffffffff82111561466157614660614465565b5b602082029050602081019050919050565b600080fd5b600061468a61468584614646565b6144c5565b905080838252602082019050602084028301858111156146ad576146ac614672565b5b835b818110156146d657806146c288826142d4565b8452602084019350506020810190506146af565b5050509392505050565b600082601f8301126146f5576146f461445b565b5b8135614705848260208601614677565b91505092915050565b600060208284031215614724576147236140da565b5b600082013567ffffffffffffffff811115614742576147416140df565b5b61474e848285016146e0565b91505092915050565b600067ffffffffffffffff82111561477257614771614465565b5b61477b82614247565b9050602081019050919050565b600061479b61479684614757565b6144c5565b9050828152602081018484840111156147b7576147b6614460565b5b6147c2848285614511565b509392505050565b600082601f8301126147df576147de61445b565b5b81356147ef848260208601614788565b91505092915050565b60008060008060808587031215614812576148116140da565b5b600061482087828801614389565b945050602061483187828801614389565b9350506040614842878288016142d4565b925050606085013567ffffffffffffffff811115614863576148626140df565b5b61486f878288016147ca565b91505092959194509250565b60008060408385031215614892576148916140da565b5b60006148a0858286016142d4565b92505060206148b185828601614389565b9150509250929050565b600080604083850312156148d2576148d16140da565b5b60006148e085828601614389565b92505060206148f185828601614389565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614931602083614203565b915061493c826148fb565b602082019050919050565b6000602082019050818103600083015261496081614924565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806149ae57607f821691505b6020821081036149c1576149c0614967565b5b50919050565b60006040820190506149dc6000830185614348565b6149e96020830184614348565b9392505050565b6000815190506149ff8161419f565b92915050565b600060208284031215614a1b57614a1a6140da565b5b6000614a29848285016149f0565b91505092915050565b600081905092915050565b50565b6000614a4d600083614a32565b9150614a5882614a3d565b600082019050919050565b6000614a6e82614a40565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b6000614aae600e83614203565b9150614ab982614a78565b602082019050919050565b60006020820190508181036000830152614add81614aa1565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b6000614b1a600683614203565b9150614b2582614ae4565b602082019050919050565b60006020820190508181036000830152614b4981614b0d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b8a826142b3565b9150614b95836142b3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614bca57614bc9614b50565b5b828201905092915050565b7f416c6c20476f6e65000000000000000000000000000000000000000000000000600082015250565b6000614c0b600883614203565b9150614c1682614bd5565b602082019050919050565b60006020820190508181036000830152614c3a81614bfe565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000614c77600a83614203565b9150614c8282614c41565b602082019050919050565b60006020820190508181036000830152614ca681614c6a565b9050919050565b7f4e6f20436f6e7472616374206d696e74696e672e000000000000000000000000600082015250565b6000614ce3601483614203565b9150614cee82614cad565b602082019050919050565b60006020820190508181036000830152614d1281614cd6565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000614d4f601683614203565b9150614d5a82614d19565b602082019050919050565b60006020820190508181036000830152614d7e81614d42565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000614dbb601683614203565b9150614dc682614d85565b602082019050919050565b60006020820190508181036000830152614dea81614dae565b9050919050565b6000614dfc826142b3565b9150614e07836142b3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e4057614e3f614b50565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000614e81601683614203565b9150614e8c82614e4b565b602082019050919050565b60006020820190508181036000830152614eb081614e74565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614ef1826142b3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614f2357614f22614b50565b5b600182019050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000614f64601583614203565b9150614f6f82614f2e565b602082019050919050565b60006020820190508181036000830152614f9381614f57565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614fc781614996565b614fd18186614f9a565b94506001821660008114614fec5760018114614ffd57615030565b60ff19831686528186019350615030565b61500685614fa5565b60005b8381101561502857815481890152600182019150602081019050615009565b838801955050505b50505092915050565b6000615044826141f8565b61504e8185614f9a565b935061505e818560208601614214565b80840191505092915050565b60006150768286614fba565b91506150828285615039565b915061508e8284614fba565b9150819050949350505050565b60006150a682614336565b9050919050565b6150b68161509b565b81146150c157600080fd5b50565b6000815190506150d3816150ad565b92915050565b6000602082840312156150ef576150ee6140da565b5b60006150fd848285016150c4565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615162602683614203565b915061516d82615106565b604082019050919050565b6000602082019050818103600083015261519181615155565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006151bf82615198565b6151c981856151a3565b93506151d9818560208601614214565b6151e281614247565b840191505092915050565b60006080820190506152026000830187614348565b61520f6020830186614348565b61521c60408301856143de565b818103606083015261522e81846151b4565b905095945050505050565b60008151905061524881614110565b92915050565b600060208284031215615264576152636140da565b5b600061527284828501615239565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006152b5826142b3565b91506152c0836142b3565b9250826152d0576152cf61527b565b5b828204905092915050565b60006152e6826142b3565b91506152f1836142b3565b92508282101561530457615303614b50565b5b828203905092915050565b600061531a826142b3565b9150615325836142b3565b9250826153355761533461527b565b5b82820690509291505056fea2646970667358221220213f1e124bd158e54f4f0b32b39641ad8c5b7b2839a4bd1f8dc3f950dc2a1c7664736f6c634300080d0033697066733a2f2f516d64514369593868587a4b65714d616a543850724378415a436370667942344e3876726d6f686f4164545858642f
Deployed Bytecode
0x60806040526004361061023b5760003560e01c80638a333b501161012e578063c87b56dd116100ab578063e8a3d4851161006f578063e8a3d48514610826578063e985e9c514610851578063f2fde38b1461088e578063f43a22dc146108b7578063f72a0902146108e25761023b565b8063c87b56dd14610743578063cd7c032614610780578063d476de1b146107ab578063db4a0f61146107d4578063e07b37f6146107fd5761023b565b8063a035b1fe116100f2578063a035b1fe14610672578063a22cb4651461069d578063b80f55c9146106c6578063b88d4fde146106ef578063c6682862146107185761023b565b80638a333b50146105ac5780638da5cb5b146105d7578063938e3d7b1461060257806395d89b411461062b5780639fb17e34146106565761023b565b806342842e0e116101bc5780635c975abb116101805780635c975abb146104c55780636352211e146104f05780636c0360eb1461052d57806370a0823114610558578063715018a6146105955761023b565b806342842e0e14610408578063463fff79146104315780635312e5cf1461045c57806355f804b31461048557806357ea89b6146104ae5761023b565b806318160ddd1161020357806318160ddd1461033757806318e223dd1461036257806323b872dd1461038b57806326e987d7146103b45780632aa80807146103df5761023b565b806301ffc9a71461024057806302329a291461027d57806306fdde03146102a6578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061413c565b6108ec565b6040516102749190614184565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f91906141cb565b6109ce565b005b3480156102b257600080fd5b506102bb610ac6565b6040516102c89190614291565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f391906142e9565b610b58565b6040516103059190614357565b60405180910390f35b34801561031a57600080fd5b506103356004803603810190610330919061439e565b610bd4565b005b34801561034357600080fd5b5061034c610cde565b60405161035991906143ed565b60405180910390f35b34801561036e57600080fd5b50610389600480360381019061038491906142e9565b610cf5565b005b34801561039757600080fd5b506103b260048036038101906103ad9190614408565b610dda565b005b3480156103c057600080fd5b506103c9610fbc565b6040516103d691906143ed565b60405180910390f35b3480156103eb57600080fd5b5061040660048036038101906104019190614590565b610fc2565b005b34801561041457600080fd5b5061042f600480360381019061042a9190614408565b6110b7565b005b34801561043d57600080fd5b506104466112b9565b60405161045391906143ed565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e91906142e9565b6112bf565b005b34801561049157600080fd5b506104ac60048036038101906104a79190614590565b6113a4565b005b3480156104ba57600080fd5b506104c3611499565b005b3480156104d157600080fd5b506104da611630565b6040516104e79190614184565b60405180910390f35b3480156104fc57600080fd5b50610517600480360381019061051291906142e9565b611643565b6040516105249190614357565b60405180910390f35b34801561053957600080fd5b50610542611659565b60405161054f9190614291565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a91906145d9565b6116e7565b60405161058c91906143ed565b60405180910390f35b3480156105a157600080fd5b506105aa6117b6565b005b3480156105b857600080fd5b506105c161183e565b6040516105ce91906143ed565b60405180910390f35b3480156105e357600080fd5b506105ec611844565b6040516105f99190614357565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190614590565b61186e565b005b34801561063757600080fd5b50610640611963565b60405161064d9190614291565b60405180910390f35b610670600480360381019061066b91906142e9565b6119f5565b005b34801561067e57600080fd5b50610687611c99565b60405161069491906143ed565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190614606565b611c9f565b005b3480156106d257600080fd5b506106ed60048036038101906106e8919061470e565b611e16565b005b3480156106fb57600080fd5b50610716600480360381019061071191906147f8565b611f43565b005b34801561072457600080fd5b5061072d6121fc565b60405161073a9190614291565b60405180910390f35b34801561074f57600080fd5b5061076a600480360381019061076591906142e9565b61228a565b6040516107779190614291565b60405180910390f35b34801561078c57600080fd5b50610795612335565b6040516107a29190614357565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd91906142e9565b61234d565b005b3480156107e057600080fd5b506107fb60048036038101906107f691906142e9565b612432565b005b34801561080957600080fd5b50610824600480360381019061081f919061487b565b612517565b005b34801561083257600080fd5b5061083b612607565b6040516108489190614291565b60405180910390f35b34801561085d57600080fd5b50610878600480360381019061087391906148bb565b612695565b6040516108859190614184565b60405180910390f35b34801561089a57600080fd5b506108b560048036038101906108b091906145d9565b612779565b005b3480156108c357600080fd5b506108cc612870565b6040516108d991906143ed565b60405180910390f35b6108ea612875565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109b757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c757506109c682612b1f565b5b9050919050565b6109d6612b89565b73ffffffffffffffffffffffffffffffffffffffff166109f4611844565b73ffffffffffffffffffffffffffffffffffffffff161480610a6a5750610a19612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa090614947565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b606060028054610ad590614996565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0190614996565b8015610b4e5780601f10610b2357610100808354040283529160200191610b4e565b820191906000526020600020905b815481529060010190602001808311610b3157829003601f168201915b5050505050905090565b6000610b6382612b91565b610b99576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bdf82611643565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c46576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c65612b89565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c975750610c9581610c90612b89565b612695565b155b15610cce576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610cd9838383612bdf565b505050565b6000610ce8612c91565b6001546000540303905090565b610cfd612b89565b73ffffffffffffffffffffffffffffffffffffffff16610d1b611844565b73ffffffffffffffffffffffffffffffffffffffff161480610d915750610d40612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b610dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc790614947565b60405180910390fd5b80600f8190555050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610faa573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e4c57610e47848484612c96565b610fb6565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e959291906149c7565b602060405180830381865afa158015610eb2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed69190614a05565b8015610f6857506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610f269291906149c7565b602060405180830381865afa158015610f43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f679190614a05565b5b610fa957336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610fa09190614357565b60405180910390fd5b5b610fb5848484612c96565b5b50505050565b600e5481565b610fca612b89565b73ffffffffffffffffffffffffffffffffffffffff16610fe8611844565b73ffffffffffffffffffffffffffffffffffffffff16148061105e575061100d612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61109d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109490614947565b60405180910390fd5b80600c90805190602001906110b3929190613fea565b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611297573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111395761113484848460405180602001604052806000815250611f43565b6112b3565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016111829291906149c7565b602060405180830381865afa15801561119f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c39190614a05565b801561125557506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016112139291906149c7565b602060405180830381865afa158015611230573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112549190614a05565b5b61129657336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161128d9190614357565b60405180910390fd5b5b6112b284848460405180602001604052806000815250611f43565b5b50505050565b600d5481565b6112c7612b89565b73ffffffffffffffffffffffffffffffffffffffff166112e5611844565b73ffffffffffffffffffffffffffffffffffffffff16148061135b575061130a612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61139a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139190614947565b60405180910390fd5b80600d8190555050565b6113ac612b89565b73ffffffffffffffffffffffffffffffffffffffff166113ca611844565b73ffffffffffffffffffffffffffffffffffffffff16148061144057506113ef612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61147f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147690614947565b60405180910390fd5b80600a9080519060200190611495929190613fea565b5050565b6114a1612b89565b73ffffffffffffffffffffffffffffffffffffffff166114bf611844565b73ffffffffffffffffffffffffffffffffffffffff16148061153557506114e4612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90614947565b60405180910390fd5b60004790506000611583612b89565b73ffffffffffffffffffffffffffffffffffffffff16826040516115a690614a63565b60006040518083038185875af1925050503d80600081146115e3576040519150601f19603f3d011682016040523d82523d6000602084013e6115e8565b606091505b505090508061162c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162390614ac4565b60405180910390fd5b5050565b601160009054906101000a900460ff1681565b600061164e82613185565b600001519050919050565b600a805461166690614996565b80601f016020809104026020016040519081016040528092919081815260200182805461169290614996565b80156116df5780601f106116b4576101008083540402835291602001916116df565b820191906000526020600020905b8154815290600101906020018083116116c257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361174e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6117be612b89565b73ffffffffffffffffffffffffffffffffffffffff166117dc611844565b73ffffffffffffffffffffffffffffffffffffffff1614611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990614947565b60405180910390fd5b61183c6000613414565b565b600f5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611876612b89565b73ffffffffffffffffffffffffffffffffffffffff16611894611844565b73ffffffffffffffffffffffffffffffffffffffff16148061190a57506118b9612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194090614947565b60405180910390fd5b80600b908051906020019061195f929190613fea565b5050565b60606003805461197290614996565b80601f016020809104026020016040519081016040528092919081815260200182805461199e90614996565b80156119eb5780601f106119c0576101008083540402835291602001916119eb565b820191906000526020600020905b8154815290600101906020018083116119ce57829003601f168201915b5050505050905090565b60006119ff612b89565b9050601160009054906101000a900460ff1615611a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4890614b30565b60405180910390fd5b81611a5a610cde565b611a649190614b7f565b600f541015611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f90614c21565b60405180910390fd5b60008211611aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae290614c8d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5090614cf9565b60405180910390fd5b81600a1015611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9490614d65565b60405180910390fd5b611ba5610cde565b600e5410611bf75781600d541015611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990614dd1565b60405180910390fd5b611c8b565b81600a1015611c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3290614d65565b60405180910390fd5b3460105483611c4a9190614df1565b14611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8190614e97565b60405180910390fd5b5b611c9581836134da565b5050565b60105481565b611ca7612b89565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d0b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611d18612b89565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611dc5612b89565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e0a9190614184565b60405180910390a35050565b611e1e612b89565b73ffffffffffffffffffffffffffffffffffffffff16611e3c611844565b73ffffffffffffffffffffffffffffffffffffffff161480611eb25750611e61612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611ef1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee890614947565b60405180910390fd5b60008151905060005b81811015611f3e576000838281518110611f1757611f16614eb7565b5b60200260200101519050611f2a816134f8565b508080611f3690614ee6565b915050611efa565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561217e573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361202057611fb0858585612c96565b611fcf8473ffffffffffffffffffffffffffffffffffffffff1661389b565b8015611fe45750611fe2858585856138be565b155b1561201b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121f5565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016120699291906149c7565b602060405180830381865afa158015612086573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120aa9190614a05565b801561213c57506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016120fa9291906149c7565b602060405180830381865afa158015612117573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061213b9190614a05565b5b61217d57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016121749190614357565b60405180910390fd5b5b612189858585612c96565b6121a88473ffffffffffffffffffffffffffffffffffffffff1661389b565b80156121bd57506121bb858585856138be565b155b156121f4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5050505050565b600c805461220990614996565b80601f016020809104026020016040519081016040528092919081815260200182805461223590614996565b80156122825780601f1061225757610100808354040283529160200191612282565b820191906000526020600020905b81548152906001019060200180831161226557829003601f168201915b505050505081565b606061229582612b91565b6122d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cb90614f7a565b60405180910390fd5b6000600a80546122e390614996565b9050116122ff576040518060200160405280600081525061232e565b600a61230a83613a0e565b600c60405160200161231e9392919061506a565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b612355612b89565b73ffffffffffffffffffffffffffffffffffffffff16612373611844565b73ffffffffffffffffffffffffffffffffffffffff1614806123e95750612398612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f90614947565b60405180910390fd5b80600e8190555050565b61243a612b89565b73ffffffffffffffffffffffffffffffffffffffff16612458611844565b73ffffffffffffffffffffffffffffffffffffffff1614806124ce575061247d612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61250d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250490614947565b60405180910390fd5b8060108190555050565b61251f612b89565b73ffffffffffffffffffffffffffffffffffffffff1661253d611844565b73ffffffffffffffffffffffffffffffffffffffff1614806125b35750612562612b89565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6125f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e990614947565b60405180910390fd5b6126036125fd612b89565b836134da565b5050565b600b805461261490614996565b80601f016020809104026020016040519081016040528092919081815260200182805461264090614996565b801561268d5780601f106126625761010080835404028352916020019161268d565b820191906000526020600020905b81548152906001019060200180831161267057829003601f168201915b505050505081565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016126ff9190614357565b602060405180830381865afa15801561271c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061274091906150d9565b73ffffffffffffffffffffffffffffffffffffffff1603612765576001915050612773565b61276f8484613b6e565b9150505b92915050565b612781612b89565b73ffffffffffffffffffffffffffffffffffffffff1661279f611844565b73ffffffffffffffffffffffffffffffffffffffff16146127f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ec90614947565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285b90615178565b60405180910390fd5b61286d81613414565b50565b600a81565b600061287f612b89565b9050601160009054906101000a900460ff16156128d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c890614b30565b60405180910390fd5b60026128db610cde565b6128e59190614b7f565b600f541015612929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292090614c21565b60405180910390fd5b600060021161296d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296490614c8d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146129db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d290614cf9565b60405180910390fd5b6002600a1015612a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1790614d65565b60405180910390fd5b612a28610cde565b600e5410612a7b576002600d541015612a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6d90614dd1565b60405180910390fd5b612b11565b6002600a1015612ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab790614d65565b60405180910390fd5b346010546002612ad09190614df1565b14612b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0790614e97565b60405180910390fd5b5b612b1c8160026134da565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081612b9c612c91565b11158015612bab575060005482105b8015612bd8575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000612ca182613185565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612cc8612b89565b73ffffffffffffffffffffffffffffffffffffffff161480612cfb5750612cfa8260000151612cf5612b89565b612695565b5b80612d405750612d09612b89565b73ffffffffffffffffffffffffffffffffffffffff16612d2884610b58565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612d79576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612de2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612e48576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e558585856001613c02565b612e656000848460000151612bdf565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603613115576000548110156131145782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461317e8585856001613c08565b5050505050565b61318d614070565b60008290508061319b612c91565b111580156131aa575060005481105b156133dd576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516133db57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146132bf57809250505061340f565b5b6001156133da57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146133d557809250505061340f565b6132c0565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6134f4828260405180602001604052806000815250613c0e565b5050565b600061350382613185565b905061351781600001516000846001613c02565b6135276000838360000151612bdf565b600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160056000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516004600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603613812576000548110156138115781600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461388581600001516000846001613c08565b6001600081548092919060010191905055505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026138e4612b89565b8786866040518563ffffffff1660e01b815260040161390694939291906151ed565b6020604051808303816000875af192505050801561394257506040513d601f19601f8201168201806040525081019061393f919061524e565b60015b6139bb573d8060008114613972576040519150601f19603f3d011682016040523d82523d6000602084013e613977565b606091505b5060008151036139b3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203613a55576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613b69565b600082905060005b60008214613a87578080613a7090614ee6565b915050600a82613a8091906152aa565b9150613a5d565b60008167ffffffffffffffff811115613aa357613aa2614465565b5b6040519080825280601f01601f191660200182016040528015613ad55781602001600182028036833780820191505090505b5090505b60008514613b6257600182613aee91906152db565b9150600a85613afd919061530f565b6030613b099190614b7f565b60f81b818381518110613b1f57613b1e614eb7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613b5b91906152aa565b9450613ad9565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b613c1b8383836001613c20565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613c8c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613cc6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613cd36000868387613c02565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613e9d5750613e9c8773ffffffffffffffffffffffffffffffffffffffff1661389b565b5b15613f62575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613f1260008884806001019550886138be565b613f48576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203613ea3578260005414613f5d57600080fd5b613fcd565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203613f63575b816000819055505050613fe36000868387613c08565b5050505050565b828054613ff690614996565b90600052602060002090601f016020900481019282614018576000855561405f565b82601f1061403157805160ff191683800117855561405f565b8280016001018555821561405f579182015b8281111561405e578251825591602001919060010190614043565b5b50905061406c91906140b3565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156140cc5760008160009055506001016140b4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b614119816140e4565b811461412457600080fd5b50565b60008135905061413681614110565b92915050565b600060208284031215614152576141516140da565b5b600061416084828501614127565b91505092915050565b60008115159050919050565b61417e81614169565b82525050565b60006020820190506141996000830184614175565b92915050565b6141a881614169565b81146141b357600080fd5b50565b6000813590506141c58161419f565b92915050565b6000602082840312156141e1576141e06140da565b5b60006141ef848285016141b6565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015614232578082015181840152602081019050614217565b83811115614241576000848401525b50505050565b6000601f19601f8301169050919050565b6000614263826141f8565b61426d8185614203565b935061427d818560208601614214565b61428681614247565b840191505092915050565b600060208201905081810360008301526142ab8184614258565b905092915050565b6000819050919050565b6142c6816142b3565b81146142d157600080fd5b50565b6000813590506142e3816142bd565b92915050565b6000602082840312156142ff576142fe6140da565b5b600061430d848285016142d4565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061434182614316565b9050919050565b61435181614336565b82525050565b600060208201905061436c6000830184614348565b92915050565b61437b81614336565b811461438657600080fd5b50565b60008135905061439881614372565b92915050565b600080604083850312156143b5576143b46140da565b5b60006143c385828601614389565b92505060206143d4858286016142d4565b9150509250929050565b6143e7816142b3565b82525050565b600060208201905061440260008301846143de565b92915050565b600080600060608486031215614421576144206140da565b5b600061442f86828701614389565b935050602061444086828701614389565b9250506040614451868287016142d4565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61449d82614247565b810181811067ffffffffffffffff821117156144bc576144bb614465565b5b80604052505050565b60006144cf6140d0565b90506144db8282614494565b919050565b600067ffffffffffffffff8211156144fb576144fa614465565b5b61450482614247565b9050602081019050919050565b82818337600083830152505050565b600061453361452e846144e0565b6144c5565b90508281526020810184848401111561454f5761454e614460565b5b61455a848285614511565b509392505050565b600082601f8301126145775761457661445b565b5b8135614587848260208601614520565b91505092915050565b6000602082840312156145a6576145a56140da565b5b600082013567ffffffffffffffff8111156145c4576145c36140df565b5b6145d084828501614562565b91505092915050565b6000602082840312156145ef576145ee6140da565b5b60006145fd84828501614389565b91505092915050565b6000806040838503121561461d5761461c6140da565b5b600061462b85828601614389565b925050602061463c858286016141b6565b9150509250929050565b600067ffffffffffffffff82111561466157614660614465565b5b602082029050602081019050919050565b600080fd5b600061468a61468584614646565b6144c5565b905080838252602082019050602084028301858111156146ad576146ac614672565b5b835b818110156146d657806146c288826142d4565b8452602084019350506020810190506146af565b5050509392505050565b600082601f8301126146f5576146f461445b565b5b8135614705848260208601614677565b91505092915050565b600060208284031215614724576147236140da565b5b600082013567ffffffffffffffff811115614742576147416140df565b5b61474e848285016146e0565b91505092915050565b600067ffffffffffffffff82111561477257614771614465565b5b61477b82614247565b9050602081019050919050565b600061479b61479684614757565b6144c5565b9050828152602081018484840111156147b7576147b6614460565b5b6147c2848285614511565b509392505050565b600082601f8301126147df576147de61445b565b5b81356147ef848260208601614788565b91505092915050565b60008060008060808587031215614812576148116140da565b5b600061482087828801614389565b945050602061483187828801614389565b9350506040614842878288016142d4565b925050606085013567ffffffffffffffff811115614863576148626140df565b5b61486f878288016147ca565b91505092959194509250565b60008060408385031215614892576148916140da565b5b60006148a0858286016142d4565b92505060206148b185828601614389565b9150509250929050565b600080604083850312156148d2576148d16140da565b5b60006148e085828601614389565b92505060206148f185828601614389565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614931602083614203565b915061493c826148fb565b602082019050919050565b6000602082019050818103600083015261496081614924565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806149ae57607f821691505b6020821081036149c1576149c0614967565b5b50919050565b60006040820190506149dc6000830185614348565b6149e96020830184614348565b9392505050565b6000815190506149ff8161419f565b92915050565b600060208284031215614a1b57614a1a6140da565b5b6000614a29848285016149f0565b91505092915050565b600081905092915050565b50565b6000614a4d600083614a32565b9150614a5882614a3d565b600082019050919050565b6000614a6e82614a40565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b6000614aae600e83614203565b9150614ab982614a78565b602082019050919050565b60006020820190508181036000830152614add81614aa1565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b6000614b1a600683614203565b9150614b2582614ae4565b602082019050919050565b60006020820190508181036000830152614b4981614b0d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614b8a826142b3565b9150614b95836142b3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614bca57614bc9614b50565b5b828201905092915050565b7f416c6c20476f6e65000000000000000000000000000000000000000000000000600082015250565b6000614c0b600883614203565b9150614c1682614bd5565b602082019050919050565b60006020820190508181036000830152614c3a81614bfe565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b6000614c77600a83614203565b9150614c8282614c41565b602082019050919050565b60006020820190508181036000830152614ca681614c6a565b9050919050565b7f4e6f20436f6e7472616374206d696e74696e672e000000000000000000000000600082015250565b6000614ce3601483614203565b9150614cee82614cad565b602082019050919050565b60006020820190508181036000830152614d1281614cd6565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000614d4f601683614203565b9150614d5a82614d19565b602082019050919050565b60006020820190508181036000830152614d7e81614d42565b9050919050565b7f457863657373206d617820706572206672656520747800000000000000000000600082015250565b6000614dbb601683614203565b9150614dc682614d85565b602082019050919050565b60006020820190508181036000830152614dea81614dae565b9050919050565b6000614dfc826142b3565b9150614e07836142b3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e4057614e3f614b50565b5b828202905092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000614e81601683614203565b9150614e8c82614e4b565b602082019050919050565b60006020820190508181036000830152614eb081614e74565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614ef1826142b3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614f2357614f22614b50565b5b600182019050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000614f64601583614203565b9150614f6f82614f2e565b602082019050919050565b60006020820190508181036000830152614f9381614f57565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614fc781614996565b614fd18186614f9a565b94506001821660008114614fec5760018114614ffd57615030565b60ff19831686528186019350615030565b61500685614fa5565b60005b8381101561502857815481890152600182019150602081019050615009565b838801955050505b50505092915050565b6000615044826141f8565b61504e8185614f9a565b935061505e818560208601614214565b80840191505092915050565b60006150768286614fba565b91506150828285615039565b915061508e8284614fba565b9150819050949350505050565b60006150a682614336565b9050919050565b6150b68161509b565b81146150c157600080fd5b50565b6000815190506150d3816150ad565b92915050565b6000602082840312156150ef576150ee6140da565b5b60006150fd848285016150c4565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615162602683614203565b915061516d82615106565b604082019050919050565b6000602082019050818103600083015261519181615155565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006151bf82615198565b6151c981856151a3565b93506151d9818560208601614214565b6151e281614247565b840191505092915050565b60006080820190506152026000830187614348565b61520f6020830186614348565b61521c60408301856143de565b818103606083015261522e81846151b4565b905095945050505050565b60008151905061524881614110565b92915050565b600060208284031215615264576152636140da565b5b600061527284828501615239565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006152b5826142b3565b91506152c0836142b3565b9250826152d0576152cf61527b565b5b828204905092915050565b60006152e6826142b3565b91506152f1836142b3565b92508282101561530457615303614b50565b5b828203905092915050565b600061531a826142b3565b9150615325836142b3565b9250826153355761533461527b565b5b82820690509291505056fea2646970667358221220213f1e124bd158e54f4f0b32b39641ad8c5b7b2839a4bd1f8dc3f950dc2a1c7664736f6c634300080d0033
Deployed Bytecode Sourcemap
52362:4387:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34841:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55233:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38226:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39729:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39292:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34090:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55773:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40586:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52725:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56011:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40845:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52684:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55656:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55322:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54891:209;;;;;;;;;;;;;:::i;:::-;;52900:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38035:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52411:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35210:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4447:103;;;;;;;;;;;;;:::i;:::-;;52814:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3796:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55430:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38395:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52986:739;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52853:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40005:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56131:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41119:387;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52542:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56384:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52586:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55884:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55554:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55108:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52498:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54428:455;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4705:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52768:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53733:685;;;:::i;:::-;;34841:305;34943:4;34995:25;34980:40;;;:11;:40;;;;:105;;;;35052:33;35037:48;;;:11;:48;;;;34980:105;:158;;;;35102:36;35126:11;35102:23;:36::i;:::-;34980:158;34960:178;;34841:305;;;:::o;55233:81::-;31295:12;:10;:12::i;:::-;31284:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;31321:12;:10;:12::i;:::-;31311:22;;:6;;;;;;;;;;;:22;;;31284:49;31276:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55300:6:::1;55291;;:15;;;;;;;;;;;;;;;;;;55233:81:::0;:::o;38226:100::-;38280:13;38313:5;38306:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38226:100;:::o;39729:204::-;39797:7;39822:16;39830:7;39822;:16::i;:::-;39817:64;;39847:34;;;;;;;;;;;;;;39817:64;39901:15;:24;39917:7;39901:24;;;;;;;;;;;;;;;;;;;;;39894:31;;39729:204;;;:::o;39292:371::-;39365:13;39381:24;39397:7;39381:15;:24::i;:::-;39365:40;;39426:5;39420:11;;:2;:11;;;39416:48;;39440:24;;;;;;;;;;;;;;39416:48;39497:5;39481:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;39507:37;39524:5;39531:12;:10;:12::i;:::-;39507:16;:37::i;:::-;39506:38;39481:63;39477:138;;;39568:35;;;;;;;;;;;;;;39477:138;39627:28;39636:2;39640:7;39649:5;39627:8;:28::i;:::-;39354:309;39292:371;;:::o;34090:303::-;34134:7;34359:15;:13;:15::i;:::-;34344:12;;34328:13;;:28;:46;34321:53;;34090:303;:::o;55773:103::-;31295:12;:10;:12::i;:::-;31284:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;31321:12;:10;:12::i;:::-;31311:22;;:6;;;;;;;;;;;:22;;;31284:49;31276:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55859:9:::1;55846:10;:22;;;;55773:103:::0;:::o;40586:188::-;40721:4;17514:1;16328:42;17468:43;;;:47;17464:699;;;17755:10;17747:18;;:4;:18;;;17743:85;;40738:28:::1;40748:4;40754:2;40758:7;40738:9;:28::i;:::-;17806:7:::0;;17743:85;16328:42;17888:40;;;17937:4;17944:10;17888:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;16328:42;17984:40;;;18033:4;18040;17984:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17888:157;17842:310;;18125:10;18106:30;;;;;;;;;;;:::i;:::-;;;;;;;;17842:310;17464:699;40738:28:::1;40748:4;40754:2;40758:7;40738:9;:28::i;:::-;40586:188:::0;;;;;:::o;52725:36::-;;;;:::o;56011:104::-;31295:12;:10;:12::i;:::-;31284:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;31321:12;:10;:12::i;:::-;31311:22;;:6;;;;;;;;;;;:22;;;31284:49;31276:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;56102:5:::1;56086:13;:21;;;;;;;;;;;;:::i;:::-;;56011:104:::0;:::o;40845:203::-;40984:4;17514:1;16328:42;17468:43;;;:47;17464:699;;;17755:10;17747:18;;:4;:18;;;17743:85;;41001:39:::1;41018:4;41024:2;41028:7;41001:39;;;;;;;;;;;::::0;:16:::1;:39::i;:::-;17806:7:::0;;17743:85;16328:42;17888:40;;;17937:4;17944:10;17888:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;16328:42;17984:40;;;18033:4;18040;17984:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17888:157;17842:310;;18125:10;18106:30;;;;;;;;;;;:::i;:::-;;;;;;;;17842:310;17464:699;41001:39:::1;41018:4;41024:2;41028:7;41001:39;;;;;;;;;;;::::0;:16:::1;:39::i;:::-;40845:203:::0;;;;;:::o;52684:34::-;;;;:::o;55656:109::-;31295:12;:10;:12::i;:::-;31284:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;31321:12;:10;:12::i;:::-;31311:22;;:6;;;;;;;;;;;:22;;;31284:49;31276:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55750:7:::1;55732:15;:25;;;;55656:109:::0;:::o;55322:100::-;31295:12;:10;:12::i;:::-;31284:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;31321:12;:10;:12::i;:::-;31311:22;;:6;;;;;;;;;;;:22;;;31284:49;31276:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55406:8:::1;55396:7;:18;;;;;;;;;;;;:::i;:::-;;55322:100:::0;:::o;54891:209::-;31295:12;:10;:12::i;:::-;31284:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;31321:12;:10;:12::i;:::-;31311:22;;:6;;;;;;;;;;;:22;;;31284:49;31276:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;54941:15:::1;54959:21;54941:39;;54992:12;55010;:10;:12::i;:::-;:17;;55035:7;55010:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54991:56;;;55066:7;55058:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;54930:170;;54891:209::o:0;52900:25::-;;;;;;;;;;;;;:::o;38035:124::-;38099:7;38126:20;38138:7;38126:11;:20::i;:::-;:25;;;38119:32;;38035:124;;;:::o;52411:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35210:206::-;35274:7;35315:1;35298:19;;:5;:19;;;35294:60;;35326:28;;;;;;;;;;;;;;35294:60;35380:12;:19;35393:5;35380:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;35372:36;;35365:43;;35210:206;;;:::o;4447:103::-;4027:12;:10;:12::i;:::-;4016:23;;:7;:5;:7::i;:::-;:23;;;4008:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4512:30:::1;4539:1;4512:18;:30::i;:::-;4447:103::o:0;52814:32::-;;;;:::o;3796:87::-;3842:7;3869:6;;;;;;;;;;;3862:13;;3796:87;:::o;55430:116::-;31295:12;:10;:12::i;:::-;31284:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;31321:12;:10;:12::i;:::-;31311:22;;:6;;;;;;;;;;;:22;;;31284:49;31276:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55526:12:::1;55512:11;:26;;;;;;;;;;;;:::i;:::-;;55430:116:::0;:::o;38395:104::-;38451:13;38484:7;38477:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38395:104;:::o;52986:739::-;53053:15;53071:12;:10;:12::i;:::-;53053:30;;53103:6;;;;;;;;;;;53102:7;53094:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;53169:7;53153:13;:11;:13::i;:::-;:23;;;;:::i;:::-;53139:10;;:37;;53131:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;53218:1;53208:7;:11;53200:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;53266:7;53253:20;;:9;:20;;;53245:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;53331:7;52805:2;53317:21;;53309:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;53407:13;:11;:13::i;:::-;53388:15;;:32;53385:291;;53463:7;53444:15;;:26;;53436:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;53385:291;;;53551:7;52805:2;53537:21;;53529:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;53628:9;53619:5;;53609:7;:15;;;;:::i;:::-;:28;53601:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;53385:291;53690:27;53700:7;53709;53690:9;:27::i;:::-;53040:685;52986:739;:::o;52853:34::-;;;;:::o;40005:279::-;40108:12;:10;:12::i;:::-;40096:24;;:8;:24;;;40092:54;;40129:17;;;;;;;;;;;;;;40092:54;40204:8;40159:18;:32;40178:12;:10;:12::i;:::-;40159:32;;;;;;;;;;;;;;;:42;40192:8;40159:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;40257:8;40228:48;;40243:12;:10;:12::i;:::-;40228:48;;;40267:8;40228:48;;;;;;:::i;:::-;;;;;;;;40005:279;;:::o;56131:245::-;31295:12;:10;:12::i;:::-;31284:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;31321:12;:10;:12::i;:::-;31311:22;;:6;;;;;;;;;;;:22;;;31284:49;31276:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;56202:11:::1;56216:8;:15;56202:29;;56247:9;56242:127;56262:3;56258:1;:7;56242:127;;;56287:15;56305:8;56314:1;56305:11;;;;;;;;:::i;:::-;;;;;;;;56287:29;;56331:14;56337:7;56331:5;:14::i;:::-;56272:97;56267:3;;;;;:::i;:::-;;;;56242:127;;;;56191:185;56131:245:::0;:::o;41119:387::-;41287:4;17514:1;16328:42;17468:43;;;:47;17464:699;;;17755:10;17747:18;;:4;:18;;;17743:85;;41304:28:::1;41314:4;41320:2;41324:7;41304:9;:28::i;:::-;41347:15;:2;:13;;;:15::i;:::-;:76;;;;;41367:56;41398:4;41404:2;41408:7;41417:5;41367:30;:56::i;:::-;41366:57;41347:76;41343:156;;;41447:40;;;;;;;;;;;;;;41343:156;17806:7:::0;;17743:85;16328:42;17888:40;;;17937:4;17944:10;17888:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;16328:42;17984:40;;;18033:4;18040;17984:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17888:157;17842:310;;18125:10;18106:30;;;;;;;;;;;:::i;:::-;;;;;;;;17842:310;17464:699;41304:28:::1;41314:4;41320:2;41324:7;41304:9;:28::i;:::-;41347:15;:2;:13;;;:15::i;:::-;:76;;;;;41367:56;41398:4;41404:2;41408:7;41417:5;41367:30;:56::i;:::-;41366:57;41347:76;41343:156;;;41447:40;;;;;;;;;;;;;;41343:156;41119:387:::0;;;;;;:::o;52542:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56384:362::-;56450:13;56484:17;56492:8;56484:7;:17::i;:::-;56476:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;56569:1;56551:7;56545:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;56627:7;56651:26;56668:8;56651:16;:26::i;:::-;56694:13;56594:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56545:193;56538:200;;56384:362;;;:::o;52586:89::-;52633:42;52586:89;:::o;55884:121::-;31295:12;:10;:12::i;:::-;31284:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;31321:12;:10;:12::i;:::-;31311:22;;:6;;;;;;;;;;;:22;;;31284:49;31276:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55984:13:::1;55966:15;:31;;;;55884:121:::0;:::o;55554:91::-;31295:12;:10;:12::i;:::-;31284:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;31321:12;:10;:12::i;:::-;31311:22;;:6;;;;;;;;;;;:22;;;31284:49;31276:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55629:8:::1;55621:5;:16;;;;55554:91:::0;:::o;55108:115::-;31295:12;:10;:12::i;:::-;31284:23;;:7;:5;:7::i;:::-;:23;;;:49;;;;31321:12;:10;:12::i;:::-;31311:22;;:6;;;;;;;;;;;:22;;;31284:49;31276:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55182:33:::1;55192:12;:10;:12::i;:::-;55206:8;55182:9;:33::i;:::-;55108:115:::0;;:::o;52498:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54428:455::-;54553:4;54648:27;52633:42;54648:65;;54769:8;54728:49;;54736:13;:21;;;54758:5;54736:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54728:49;;;54724:93;;54801:4;54794:11;;;;;54724:93;54836:39;54859:5;54866:8;54836:22;:39::i;:::-;54829:46;;;54428:455;;;;;:::o;4705:201::-;4027:12;:10;:12::i;:::-;4016:23;;:7;:5;:7::i;:::-;:23;;;4008:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4814:1:::1;4794:22;;:8;:22;;::::0;4786:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4870:28;4889:8;4870:18;:28::i;:::-;4705:201:::0;:::o;52768:39::-;52805:2;52768:39;:::o;53733:685::-;53788:15;53806:12;:10;:12::i;:::-;53788:30;;53838:6;;;;;;;;;;;53837:7;53829:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;53904:1;53888:13;:11;:13::i;:::-;:17;;;;:::i;:::-;53874:10;;:31;;53866:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;53941:1;53937;:5;53929:28;;;;;;;;;;;;:::i;:::-;;;;;;;;;53989:7;53976:20;;:9;:20;;;53968:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;54054:1;52805:2;54040:15;;54032:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;54124:13;:11;:13::i;:::-;54105:15;;:32;54102:273;;54180:1;54161:15;;:20;;54153:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;54102:273;;;54262:1;52805:2;54248:15;;54240:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;54327:9;54318:5;;54314:1;:9;;;;:::i;:::-;:22;54306:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;54102:273;54389:21;54399:7;54408:1;54389:9;:21::i;:::-;53775:643;53733:685::o;29916:157::-;30001:4;30040:25;30025:40;;;:11;:40;;;;30018:47;;29916:157;;;:::o;2537:98::-;2590:7;2617:10;2610:17;;2537:98;:::o;41761:187::-;41818:4;41861:7;41842:15;:13;:15::i;:::-;:26;;:53;;;;;41882:13;;41872:7;:23;41842:53;:98;;;;;41913:11;:20;41925:7;41913:20;;;;;;;;;;;:27;;;;;;;;;;;;41912:28;41842:98;41835:105;;41761:187;;;:::o;49372:196::-;49514:2;49487:15;:24;49503:7;49487:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;49552:7;49548:2;49532:28;;49541:5;49532:28;;;;;;;;;;;;49372:196;;;:::o;33814:92::-;33870:7;33814:92;:::o;44874:2112::-;44989:35;45027:20;45039:7;45027:11;:20::i;:::-;44989:58;;45060:22;45102:13;:18;;;45086:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;45137:50;45154:13;:18;;;45174:12;:10;:12::i;:::-;45137:16;:50::i;:::-;45086:101;:154;;;;45228:12;:10;:12::i;:::-;45204:36;;:20;45216:7;45204:11;:20::i;:::-;:36;;;45086:154;45060:181;;45259:17;45254:66;;45285:35;;;;;;;;;;;;;;45254:66;45357:4;45335:26;;:13;:18;;;:26;;;45331:67;;45370:28;;;;;;;;;;;;;;45331:67;45427:1;45413:16;;:2;:16;;;45409:52;;45438:23;;;;;;;;;;;;;;45409:52;45474:43;45496:4;45502:2;45506:7;45515:1;45474:21;:43::i;:::-;45582:49;45599:1;45603:7;45612:13;:18;;;45582:8;:49::i;:::-;45957:1;45927:12;:18;45940:4;45927:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46001:1;45973:12;:16;45986:2;45973:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46047:2;46019:11;:20;46031:7;46019:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46109:15;46064:11;:20;46076:7;46064:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46377:19;46409:1;46399:7;:11;46377:33;;46470:1;46429:43;;:11;:24;46441:11;46429:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;46425:445;;46654:13;;46640:11;:27;46636:219;;;46724:13;:18;;;46692:11;:24;46704:11;46692:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;46807:13;:28;;;46765:11;:24;46777:11;46765:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;46636:219;46425:445;45902:979;46917:7;46913:2;46898:27;;46907:4;46898:27;;;;;;;;;;;;46936:42;46957:4;46963:2;46967:7;46976:1;46936:20;:42::i;:::-;44978:2008;;44874:2112;;;:::o;36865:1108::-;36926:21;;:::i;:::-;36960:12;36975:7;36960:22;;37043:4;37024:15;:13;:15::i;:::-;:23;;:47;;;;;37058:13;;37051:4;:20;37024:47;37020:886;;;37092:31;37126:11;:17;37138:4;37126:17;;;;;;;;;;;37092:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37167:9;:16;;;37162:729;;37238:1;37212:28;;:9;:14;;;:28;;;37208:101;;37276:9;37269:16;;;;;;37208:101;37611:261;37618:4;37611:261;;;37651:6;;;;;;;;37696:11;:17;37708:4;37696:17;;;;;;;;;;;37684:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37770:1;37744:28;;:9;:14;;;:28;;;37740:109;;37812:9;37805:16;;;;;;37740:109;37611:261;;;37162:729;37073:833;37020:886;37934:31;;;;;;;;;;;;;;36865:1108;;;;:::o;5066:191::-;5140:16;5159:6;;;;;;;;;;;5140:25;;5185:8;5176:6;;:17;;;;;;;;;;;;;;;;;;5240:8;5209:40;;5230:8;5209:40;;;;;;;;;;;;5129:128;5066:191;:::o;41956:104::-;42025:27;42035:2;42039:8;42025:27;;;;;;;;;;;;:9;:27::i;:::-;41956:104;;:::o;47215:2039::-;47275:35;47313:20;47325:7;47313:11;:20::i;:::-;47275:58;;47346:65;47368:13;:18;;;47396:1;47400:7;47409:1;47346:21;:65::i;:::-;47476:49;47493:1;47497:7;47506:13;:18;;;47476:8;:49::i;:::-;47865:1;47821:12;:32;47834:13;:18;;;47821:32;;;;;;;;;;;;;;;:40;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47930:1;47881:12;:32;47894:13;:18;;;47881:32;;;;;;;;;;;;;;;:45;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48058:13;:18;;;48030:11;:20;48042:7;48030:20;;;;;;;;;;;:25;;;:46;;;;;;;;;;;;;;;;;;48136:15;48091:11;:20;48103:7;48091:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;48197:4;48167:11;:20;48179:7;48167:20;;;;;;;;;;;:27;;;:34;;;;;;;;;;;;;;;;;;48449:19;48481:1;48471:7;:11;48449:33;;48542:1;48501:43;;:11;:24;48513:11;48501:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;48497:445;;48726:13;;48712:11;:27;48708:219;;;48796:13;:18;;;48764:11;:24;48776:11;48764:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;48879:13;:28;;;48837:11;:24;48849:11;48837:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;48708:219;48497:445;47796:1157;49011:7;49007:1;48970:49;;48979:13;:18;;;48970:49;;;;;;;;;;;;49030:64;49051:13;:18;;;49079:1;49083:7;49092:1;49030:20;:64::i;:::-;49221:12;;:14;;;;;;;;;;;;;47264:1990;47215:2039;:::o;19693:326::-;19753:4;20010:1;19988:7;:19;;;:23;19981:30;;19693:326;;;:::o;50060:667::-;50223:4;50260:2;50244:36;;;50281:12;:10;:12::i;:::-;50295:4;50301:7;50310:5;50244:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50240:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50495:1;50478:6;:13;:18;50474:235;;50524:40;;;;;;;;;;;;;;50474:235;50667:6;50661:13;50652:6;50648:2;50644:15;50637:38;50240:480;50373:45;;;50363:55;;;:6;:55;;;;50356:62;;;50060:667;;;;;;:::o;27313:723::-;27369:13;27599:1;27590:5;:10;27586:53;;27617:10;;;;;;;;;;;;;;;;;;;;;27586:53;27649:12;27664:5;27649:20;;27680:14;27705:78;27720:1;27712:4;:9;27705:78;;27738:8;;;;;:::i;:::-;;;;27769:2;27761:10;;;;;:::i;:::-;;;27705:78;;;27793:19;27825:6;27815:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27793:39;;27843:154;27859:1;27850:5;:10;27843:154;;27887:1;27877:11;;;;;:::i;:::-;;;27954:2;27946:5;:10;;;;:::i;:::-;27933:2;:24;;;;:::i;:::-;27920:39;;27903:6;27910;27903:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;27983:2;27974:11;;;;;:::i;:::-;;;27843:154;;;28021:6;28007:21;;;;;27313:723;;;;:::o;40355:164::-;40452:4;40476:18;:25;40495:5;40476:25;;;;;;;;;;;;;;;:35;40502:8;40476:35;;;;;;;;;;;;;;;;;;;;;;;;;40469:42;;40355:164;;;;:::o;51375:159::-;;;;;:::o;52193:158::-;;;;;:::o;42423:163::-;42546:32;42552:2;42556:8;42566:5;42573:4;42546:5;:32::i;:::-;42423:163;;;:::o;42845:1775::-;42984:20;43007:13;;42984:36;;43049:1;43035:16;;:2;:16;;;43031:48;;43060:19;;;;;;;;;;;;;;43031:48;43106:1;43094:8;:13;43090:44;;43116:18;;;;;;;;;;;;;;43090:44;43147:61;43177:1;43181:2;43185:12;43199:8;43147:21;:61::i;:::-;43520:8;43485:12;:16;43498:2;43485:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43584:8;43544:12;:16;43557:2;43544:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43643:2;43610:11;:25;43622:12;43610:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;43710:15;43660:11;:25;43672:12;43660:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;43743:20;43766:12;43743:35;;43793:11;43822:8;43807:12;:23;43793:37;;43851:4;:23;;;;;43859:15;:2;:13;;;:15::i;:::-;43851:23;43847:641;;;43895:314;43951:12;43947:2;43926:38;;43943:1;43926:38;;;;;;;;;;;;43992:69;44031:1;44035:2;44039:14;;;;;;44055:5;43992:30;:69::i;:::-;43987:174;;44097:40;;;;;;;;;;;;;;43987:174;44204:3;44188:12;:19;43895:314;;44290:12;44273:13;;:29;44269:43;;44304:8;;;44269:43;43847:641;;;44353:120;44409:14;;;;;;44405:2;44384:40;;44401:1;44384:40;;;;;;;;;;;;44468:3;44452:12;:19;44353:120;;43847:641;44518:12;44502:13;:28;;;;43460:1082;;44552:60;44581:1;44585:2;44589:12;44603:8;44552:20;:60::i;:::-;42973:1647;42845:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:311::-;10012:4;10102:18;10094:6;10091:30;10088:56;;;10124:18;;:::i;:::-;10088:56;10174:4;10166:6;10162:17;10154:25;;10234:4;10228;10224:15;10216:23;;9935:311;;;:::o;10252:117::-;10361:1;10358;10351:12;10392:710;10488:5;10513:81;10529:64;10586:6;10529:64;:::i;:::-;10513:81;:::i;:::-;10504:90;;10614:5;10643:6;10636:5;10629:21;10677:4;10670:5;10666:16;10659:23;;10730:4;10722:6;10718:17;10710:6;10706:30;10759:3;10751:6;10748:15;10745:122;;;10778:79;;:::i;:::-;10745:122;10893:6;10876:220;10910:6;10905:3;10902:15;10876:220;;;10985:3;11014:37;11047:3;11035:10;11014:37;:::i;:::-;11009:3;11002:50;11081:4;11076:3;11072:14;11065:21;;10952:144;10936:4;10931:3;10927:14;10920:21;;10876:220;;;10880:21;10494:608;;10392:710;;;;;:::o;11125:370::-;11196:5;11245:3;11238:4;11230:6;11226:17;11222:27;11212:122;;11253:79;;:::i;:::-;11212:122;11370:6;11357:20;11395:94;11485:3;11477:6;11470:4;11462:6;11458:17;11395:94;:::i;:::-;11386:103;;11202:293;11125:370;;;;:::o;11501:539::-;11585:6;11634:2;11622:9;11613:7;11609:23;11605:32;11602:119;;;11640:79;;:::i;:::-;11602:119;11788:1;11777:9;11773:17;11760:31;11818:18;11810:6;11807:30;11804:117;;;11840:79;;:::i;:::-;11804:117;11945:78;12015:7;12006:6;11995:9;11991:22;11945:78;:::i;:::-;11935:88;;11731:302;11501:539;;;;:::o;12046:307::-;12107:4;12197:18;12189:6;12186:30;12183:56;;;12219:18;;:::i;:::-;12183:56;12257:29;12279:6;12257:29;:::i;:::-;12249:37;;12341:4;12335;12331:15;12323:23;;12046:307;;;:::o;12359:410::-;12436:5;12461:65;12477:48;12518:6;12477:48;:::i;:::-;12461:65;:::i;:::-;12452:74;;12549:6;12542:5;12535:21;12587:4;12580:5;12576:16;12625:3;12616:6;12611:3;12607:16;12604:25;12601:112;;;12632:79;;:::i;:::-;12601:112;12722:41;12756:6;12751:3;12746;12722:41;:::i;:::-;12442:327;12359:410;;;;;:::o;12788:338::-;12843:5;12892:3;12885:4;12877:6;12873:17;12869:27;12859:122;;12900:79;;:::i;:::-;12859:122;13017:6;13004:20;13042:78;13116:3;13108:6;13101:4;13093:6;13089:17;13042:78;:::i;:::-;13033:87;;12849:277;12788:338;;;;:::o;13132:943::-;13227:6;13235;13243;13251;13300:3;13288:9;13279:7;13275:23;13271:33;13268:120;;;13307:79;;:::i;:::-;13268:120;13427:1;13452:53;13497:7;13488:6;13477:9;13473:22;13452:53;:::i;:::-;13442:63;;13398:117;13554:2;13580:53;13625:7;13616:6;13605:9;13601:22;13580:53;:::i;:::-;13570:63;;13525:118;13682:2;13708:53;13753:7;13744:6;13733:9;13729:22;13708:53;:::i;:::-;13698:63;;13653:118;13838:2;13827:9;13823:18;13810:32;13869:18;13861:6;13858:30;13855:117;;;13891:79;;:::i;:::-;13855:117;13996:62;14050:7;14041:6;14030:9;14026:22;13996:62;:::i;:::-;13986:72;;13781:287;13132:943;;;;;;;:::o;14081:474::-;14149:6;14157;14206:2;14194:9;14185:7;14181:23;14177:32;14174:119;;;14212:79;;:::i;:::-;14174:119;14332:1;14357:53;14402:7;14393:6;14382:9;14378:22;14357:53;:::i;:::-;14347:63;;14303:117;14459:2;14485:53;14530:7;14521:6;14510:9;14506:22;14485:53;:::i;:::-;14475:63;;14430:118;14081:474;;;;;:::o;14561:::-;14629:6;14637;14686:2;14674:9;14665:7;14661:23;14657:32;14654:119;;;14692:79;;:::i;:::-;14654:119;14812:1;14837:53;14882:7;14873:6;14862:9;14858:22;14837:53;:::i;:::-;14827:63;;14783:117;14939:2;14965:53;15010:7;15001:6;14990:9;14986:22;14965:53;:::i;:::-;14955:63;;14910:118;14561:474;;;;;:::o;15041:182::-;15181:34;15177:1;15169:6;15165:14;15158:58;15041:182;:::o;15229:366::-;15371:3;15392:67;15456:2;15451:3;15392:67;:::i;:::-;15385:74;;15468:93;15557:3;15468:93;:::i;:::-;15586:2;15581:3;15577:12;15570:19;;15229:366;;;:::o;15601:419::-;15767:4;15805:2;15794:9;15790:18;15782:26;;15854:9;15848:4;15844:20;15840:1;15829:9;15825:17;15818:47;15882:131;16008:4;15882:131;:::i;:::-;15874:139;;15601:419;;;:::o;16026:180::-;16074:77;16071:1;16064:88;16171:4;16168:1;16161:15;16195:4;16192:1;16185:15;16212:320;16256:6;16293:1;16287:4;16283:12;16273:22;;16340:1;16334:4;16330:12;16361:18;16351:81;;16417:4;16409:6;16405:17;16395:27;;16351:81;16479:2;16471:6;16468:14;16448:18;16445:38;16442:84;;16498:18;;:::i;:::-;16442:84;16263:269;16212:320;;;:::o;16538:332::-;16659:4;16697:2;16686:9;16682:18;16674:26;;16710:71;16778:1;16767:9;16763:17;16754:6;16710:71;:::i;:::-;16791:72;16859:2;16848:9;16844:18;16835:6;16791:72;:::i;:::-;16538:332;;;;;:::o;16876:137::-;16930:5;16961:6;16955:13;16946:22;;16977:30;17001:5;16977:30;:::i;:::-;16876:137;;;;:::o;17019:345::-;17086:6;17135:2;17123:9;17114:7;17110:23;17106:32;17103:119;;;17141:79;;:::i;:::-;17103:119;17261:1;17286:61;17339:7;17330:6;17319:9;17315:22;17286:61;:::i;:::-;17276:71;;17232:125;17019:345;;;;:::o;17370:147::-;17471:11;17508:3;17493:18;;17370:147;;;;:::o;17523:114::-;;:::o;17643:398::-;17802:3;17823:83;17904:1;17899:3;17823:83;:::i;:::-;17816:90;;17915:93;18004:3;17915:93;:::i;:::-;18033:1;18028:3;18024:11;18017:18;;17643:398;;;:::o;18047:379::-;18231:3;18253:147;18396:3;18253:147;:::i;:::-;18246:154;;18417:3;18410:10;;18047:379;;;:::o;18432:164::-;18572:16;18568:1;18560:6;18556:14;18549:40;18432:164;:::o;18602:366::-;18744:3;18765:67;18829:2;18824:3;18765:67;:::i;:::-;18758:74;;18841:93;18930:3;18841:93;:::i;:::-;18959:2;18954:3;18950:12;18943:19;;18602:366;;;:::o;18974:419::-;19140:4;19178:2;19167:9;19163:18;19155:26;;19227:9;19221:4;19217:20;19213:1;19202:9;19198:17;19191:47;19255:131;19381:4;19255:131;:::i;:::-;19247:139;;18974:419;;;:::o;19399:156::-;19539:8;19535:1;19527:6;19523:14;19516:32;19399:156;:::o;19561:365::-;19703:3;19724:66;19788:1;19783:3;19724:66;:::i;:::-;19717:73;;19799:93;19888:3;19799:93;:::i;:::-;19917:2;19912:3;19908:12;19901:19;;19561:365;;;:::o;19932:419::-;20098:4;20136:2;20125:9;20121:18;20113:26;;20185:9;20179:4;20175:20;20171:1;20160:9;20156:17;20149:47;20213:131;20339:4;20213:131;:::i;:::-;20205:139;;19932:419;;;:::o;20357:180::-;20405:77;20402:1;20395:88;20502:4;20499:1;20492:15;20526:4;20523:1;20516:15;20543:305;20583:3;20602:20;20620:1;20602:20;:::i;:::-;20597:25;;20636:20;20654:1;20636:20;:::i;:::-;20631:25;;20790:1;20722:66;20718:74;20715:1;20712:81;20709:107;;;20796:18;;:::i;:::-;20709:107;20840:1;20837;20833:9;20826:16;;20543:305;;;;:::o;20854:158::-;20994:10;20990:1;20982:6;20978:14;20971:34;20854:158;:::o;21018:365::-;21160:3;21181:66;21245:1;21240:3;21181:66;:::i;:::-;21174:73;;21256:93;21345:3;21256:93;:::i;:::-;21374:2;21369:3;21365:12;21358:19;;21018:365;;;:::o;21389:419::-;21555:4;21593:2;21582:9;21578:18;21570:26;;21642:9;21636:4;21632:20;21628:1;21617:9;21613:17;21606:47;21670:131;21796:4;21670:131;:::i;:::-;21662:139;;21389:419;;;:::o;21814:160::-;21954:12;21950:1;21942:6;21938:14;21931:36;21814:160;:::o;21980:366::-;22122:3;22143:67;22207:2;22202:3;22143:67;:::i;:::-;22136:74;;22219:93;22308:3;22219:93;:::i;:::-;22337:2;22332:3;22328:12;22321:19;;21980:366;;;:::o;22352:419::-;22518:4;22556:2;22545:9;22541:18;22533:26;;22605:9;22599:4;22595:20;22591:1;22580:9;22576:17;22569:47;22633:131;22759:4;22633:131;:::i;:::-;22625:139;;22352:419;;;:::o;22777:170::-;22917:22;22913:1;22905:6;22901:14;22894:46;22777:170;:::o;22953:366::-;23095:3;23116:67;23180:2;23175:3;23116:67;:::i;:::-;23109:74;;23192:93;23281:3;23192:93;:::i;:::-;23310:2;23305:3;23301:12;23294:19;;22953:366;;;:::o;23325:419::-;23491:4;23529:2;23518:9;23514:18;23506:26;;23578:9;23572:4;23568:20;23564:1;23553:9;23549:17;23542:47;23606:131;23732:4;23606:131;:::i;:::-;23598:139;;23325:419;;;:::o;23750:172::-;23890:24;23886:1;23878:6;23874:14;23867:48;23750:172;:::o;23928:366::-;24070:3;24091:67;24155:2;24150:3;24091:67;:::i;:::-;24084:74;;24167:93;24256:3;24167:93;:::i;:::-;24285:2;24280:3;24276:12;24269:19;;23928:366;;;:::o;24300:419::-;24466:4;24504:2;24493:9;24489:18;24481:26;;24553:9;24547:4;24543:20;24539:1;24528:9;24524:17;24517:47;24581:131;24707:4;24581:131;:::i;:::-;24573:139;;24300:419;;;:::o;24725:172::-;24865:24;24861:1;24853:6;24849:14;24842:48;24725:172;:::o;24903:366::-;25045:3;25066:67;25130:2;25125:3;25066:67;:::i;:::-;25059:74;;25142:93;25231:3;25142:93;:::i;:::-;25260:2;25255:3;25251:12;25244:19;;24903:366;;;:::o;25275:419::-;25441:4;25479:2;25468:9;25464:18;25456:26;;25528:9;25522:4;25518:20;25514:1;25503:9;25499:17;25492:47;25556:131;25682:4;25556:131;:::i;:::-;25548:139;;25275:419;;;:::o;25700:348::-;25740:7;25763:20;25781:1;25763:20;:::i;:::-;25758:25;;25797:20;25815:1;25797:20;:::i;:::-;25792:25;;25985:1;25917:66;25913:74;25910:1;25907:81;25902:1;25895:9;25888:17;25884:105;25881:131;;;25992:18;;:::i;:::-;25881:131;26040:1;26037;26033:9;26022:20;;25700:348;;;;:::o;26054:172::-;26194:24;26190:1;26182:6;26178:14;26171:48;26054:172;:::o;26232:366::-;26374:3;26395:67;26459:2;26454:3;26395:67;:::i;:::-;26388:74;;26471:93;26560:3;26471:93;:::i;:::-;26589:2;26584:3;26580:12;26573:19;;26232:366;;;:::o;26604:419::-;26770:4;26808:2;26797:9;26793:18;26785:26;;26857:9;26851:4;26847:20;26843:1;26832:9;26828:17;26821:47;26885:131;27011:4;26885:131;:::i;:::-;26877:139;;26604:419;;;:::o;27029:180::-;27077:77;27074:1;27067:88;27174:4;27171:1;27164:15;27198:4;27195:1;27188:15;27215:233;27254:3;27277:24;27295:5;27277:24;:::i;:::-;27268:33;;27323:66;27316:5;27313:77;27310:103;;27393:18;;:::i;:::-;27310:103;27440:1;27433:5;27429:13;27422:20;;27215:233;;;:::o;27454:171::-;27594:23;27590:1;27582:6;27578:14;27571:47;27454:171;:::o;27631:366::-;27773:3;27794:67;27858:2;27853:3;27794:67;:::i;:::-;27787:74;;27870:93;27959:3;27870:93;:::i;:::-;27988:2;27983:3;27979:12;27972:19;;27631:366;;;:::o;28003:419::-;28169:4;28207:2;28196:9;28192:18;28184:26;;28256:9;28250:4;28246:20;28242:1;28231:9;28227:17;28220:47;28284:131;28410:4;28284:131;:::i;:::-;28276:139;;28003:419;;;:::o;28428:148::-;28530:11;28567:3;28552:18;;28428:148;;;;:::o;28582:141::-;28631:4;28654:3;28646:11;;28677:3;28674:1;28667:14;28711:4;28708:1;28698:18;28690:26;;28582:141;;;:::o;28753:845::-;28856:3;28893:5;28887:12;28922:36;28948:9;28922:36;:::i;:::-;28974:89;29056:6;29051:3;28974:89;:::i;:::-;28967:96;;29094:1;29083:9;29079:17;29110:1;29105:137;;;;29256:1;29251:341;;;;29072:520;;29105:137;29189:4;29185:9;29174;29170:25;29165:3;29158:38;29225:6;29220:3;29216:16;29209:23;;29105:137;;29251:341;29318:38;29350:5;29318:38;:::i;:::-;29378:1;29392:154;29406:6;29403:1;29400:13;29392:154;;;29480:7;29474:14;29470:1;29465:3;29461:11;29454:35;29530:1;29521:7;29517:15;29506:26;;29428:4;29425:1;29421:12;29416:17;;29392:154;;;29575:6;29570:3;29566:16;29559:23;;29258:334;;29072:520;;28860:738;;28753:845;;;;:::o;29604:377::-;29710:3;29738:39;29771:5;29738:39;:::i;:::-;29793:89;29875:6;29870:3;29793:89;:::i;:::-;29786:96;;29891:52;29936:6;29931:3;29924:4;29917:5;29913:16;29891:52;:::i;:::-;29968:6;29963:3;29959:16;29952:23;;29714:267;29604:377;;;;:::o;29987:583::-;30209:3;30231:92;30319:3;30310:6;30231:92;:::i;:::-;30224:99;;30340:95;30431:3;30422:6;30340:95;:::i;:::-;30333:102;;30452:92;30540:3;30531:6;30452:92;:::i;:::-;30445:99;;30561:3;30554:10;;29987:583;;;;;;:::o;30576:125::-;30642:7;30671:24;30689:5;30671:24;:::i;:::-;30660:35;;30576:125;;;:::o;30707:180::-;30809:53;30856:5;30809:53;:::i;:::-;30802:5;30799:64;30789:92;;30877:1;30874;30867:12;30789:92;30707:180;:::o;30893:201::-;30979:5;31010:6;31004:13;30995:22;;31026:62;31082:5;31026:62;:::i;:::-;30893:201;;;;:::o;31100:409::-;31199:6;31248:2;31236:9;31227:7;31223:23;31219:32;31216:119;;;31254:79;;:::i;:::-;31216:119;31374:1;31399:93;31484:7;31475:6;31464:9;31460:22;31399:93;:::i;:::-;31389:103;;31345:157;31100:409;;;;:::o;31515:225::-;31655:34;31651:1;31643:6;31639:14;31632:58;31724:8;31719:2;31711:6;31707:15;31700:33;31515:225;:::o;31746:366::-;31888:3;31909:67;31973:2;31968:3;31909:67;:::i;:::-;31902:74;;31985:93;32074:3;31985:93;:::i;:::-;32103:2;32098:3;32094:12;32087:19;;31746:366;;;:::o;32118:419::-;32284:4;32322:2;32311:9;32307:18;32299:26;;32371:9;32365:4;32361:20;32357:1;32346:9;32342:17;32335:47;32399:131;32525:4;32399:131;:::i;:::-;32391:139;;32118:419;;;:::o;32543:98::-;32594:6;32628:5;32622:12;32612:22;;32543:98;;;:::o;32647:168::-;32730:11;32764:6;32759:3;32752:19;32804:4;32799:3;32795:14;32780:29;;32647:168;;;;:::o;32821:360::-;32907:3;32935:38;32967:5;32935:38;:::i;:::-;32989:70;33052:6;33047:3;32989:70;:::i;:::-;32982:77;;33068:52;33113:6;33108:3;33101:4;33094:5;33090:16;33068:52;:::i;:::-;33145:29;33167:6;33145:29;:::i;:::-;33140:3;33136:39;33129:46;;32911:270;32821:360;;;;:::o;33187:640::-;33382:4;33420:3;33409:9;33405:19;33397:27;;33434:71;33502:1;33491:9;33487:17;33478:6;33434:71;:::i;:::-;33515:72;33583:2;33572:9;33568:18;33559:6;33515:72;:::i;:::-;33597;33665:2;33654:9;33650:18;33641:6;33597:72;:::i;:::-;33716:9;33710:4;33706:20;33701:2;33690:9;33686:18;33679:48;33744:76;33815:4;33806:6;33744:76;:::i;:::-;33736:84;;33187:640;;;;;;;:::o;33833:141::-;33889:5;33920:6;33914:13;33905:22;;33936:32;33962:5;33936:32;:::i;:::-;33833:141;;;;:::o;33980:349::-;34049:6;34098:2;34086:9;34077:7;34073:23;34069:32;34066:119;;;34104:79;;:::i;:::-;34066:119;34224:1;34249:63;34304:7;34295:6;34284:9;34280:22;34249:63;:::i;:::-;34239:73;;34195:127;33980:349;;;;:::o;34335:180::-;34383:77;34380:1;34373:88;34480:4;34477:1;34470:15;34504:4;34501:1;34494:15;34521:185;34561:1;34578:20;34596:1;34578:20;:::i;:::-;34573:25;;34612:20;34630:1;34612:20;:::i;:::-;34607:25;;34651:1;34641:35;;34656:18;;:::i;:::-;34641:35;34698:1;34695;34691:9;34686:14;;34521:185;;;;:::o;34712:191::-;34752:4;34772:20;34790:1;34772:20;:::i;:::-;34767:25;;34806:20;34824:1;34806:20;:::i;:::-;34801:25;;34845:1;34842;34839:8;34836:34;;;34850:18;;:::i;:::-;34836:34;34895:1;34892;34888:9;34880:17;;34712:191;;;;:::o;34909:176::-;34941:1;34958:20;34976:1;34958:20;:::i;:::-;34953:25;;34992:20;35010:1;34992:20;:::i;:::-;34987:25;;35031:1;35021:35;;35036:18;;:::i;:::-;35021:35;35077:1;35074;35070:9;35065:14;;34909:176;;;;:::o
Swarm Source
ipfs://213f1e124bd158e54f4f0b32b39641ad8c5b7b2839a4bd1f8dc3f950dc2a1c76
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.