ERC-721
Overview
Max Total Supply
1,161 Senses and Sensibilities
Holders
1,143
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 Senses and SensibilitiesLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
SensesAndSensibilities
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-11-27 */ /** *Submitted for verification at polygonscan.com on 2022-10-22 */ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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 onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); 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 overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } pragma solidity ^0.8.0; interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } pragma solidity ^0.8.0; abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } } // Rojom Airdrop pragma solidity ^0.8.4; //contract RojomAirdrop is ERC2981, ERC721, ERC721Enumerable, Pausable, Ownable { contract SensesAndSensibilities is ERC2981, ERC721, ERC721Enumerable, Pausable, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; string public baseTokenURI; constructor() ERC721("Senses and Sensibilities", "Senses and Sensibilities") {} function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function safeMint(address to) public onlyOwner { uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(to, tokenId); } function safeRoyaltyChange(address receiver, uint96 feeNumerator) public onlyOwner { _setDefaultRoyalty(receiver, feeNumerator); } function safeAirdrop(address [] memory _list) public onlyOwner { require(_list.length <= 255, "Max 255 addresses at once"); for (uint8 i = 0; i < _list.length; i++) { uint256 tokenId = _tokenIdCounter.current(); _tokenIdCounter.increment(); _safeMint(_list[i], tokenId); } } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal whenNotPaused override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function setTokenURI(string memory _TokenURI) onlyOwner public { baseTokenURI = _TokenURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = baseTokenURI; return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI)) : ""; } // The following functions are overrides required by Solidity. function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable, ERC2981) returns (bool) { //return super.supportsInterface(interfaceId); return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list","type":"address[]"}],"name":"safeAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"safeRoyaltyChange","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":"_TokenURI","type":"string"}],"name":"setTokenURI","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601881526020017f53656e73657320616e642053656e736962696c697469657300000000000000008152506040518060400160405280601881526020017f53656e73657320616e642053656e736962696c69746965730000000000000000815250816002908051906020019062000096929190620001c1565b508060039080519060200190620000af929190620001c1565b5050506000600c60006101000a81548160ff021916908315150217905550620000ed620000e1620000f360201b60201c565b620000fb60201b60201c565b620002d6565b600033905090565b6000600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001cf9062000271565b90600052602060002090601f016020900481019282620001f357600085556200023f565b82601f106200020e57805160ff19168380011785556200023f565b828001600101855582156200023f579182015b828111156200023e57825182559160200191906001019062000221565b5b5090506200024e919062000252565b5090565b5b808211156200026d57600081600090555060010162000253565b5090565b600060028204905060018216806200028a57607f821691505b60208210811415620002a157620002a0620002a7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613e4b80620002e66000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063b88d4fde11610097578063e0df5b6f11610071578063e0df5b6f146104e0578063e985e9c5146104fc578063ef6fd7d21461052c578063f2fde38b14610548576101c4565b8063b88d4fde14610476578063c87b56dd14610492578063d547cfb7146104c2576101c4565b80638456cb59116100d35780638456cb59146104145780638da5cb5b1461041e57806395d89b411461043c578063a22cb4651461045a576101c4565b80636352211e146103aa57806370a08231146103da578063715018a61461040a576101c4565b80632f745c591161016657806342842e0e1161014057806342842e0e14610324578063486e642f146103405780634f6ccce71461035c5780635c975abb1461038c576101c4565b80632f745c59146102ce5780633f4ba83a146102fe57806340d097c314610308576101c4565b8063095ea7b3116101a2578063095ea7b31461024757806318160ddd1461026357806323b872dd146102815780632a55205a1461029d576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de9190612bfa565b610564565b6040516101f0919061313d565b60405180910390f35b6102016105de565b60405161020e9190613158565b60405180910390f35b610231600480360381019061022c9190612c9d565b610670565b60405161023e91906130ad565b60405180910390f35b610261600480360381019061025c9190612b31565b6106b6565b005b61026b6107ce565b60405161027891906133fa565b60405180910390f35b61029b60048036038101906102969190612a1b565b6107db565b005b6102b760048036038101906102b29190612cca565b61083b565b6040516102c5929190613114565b60405180910390f35b6102e860048036038101906102e39190612b31565b610a26565b6040516102f591906133fa565b60405180910390f35b610306610acb565b005b610322600480360381019061031d91906129ae565b610add565b005b61033e60048036038101906103399190612a1b565b610b0b565b005b61035a60048036038101906103559190612b71565b610b2b565b005b61037660048036038101906103719190612c9d565b610b41565b60405161038391906133fa565b60405180910390f35b610394610bb2565b6040516103a1919061313d565b60405180910390f35b6103c460048036038101906103bf9190612c9d565b610bc9565b6040516103d191906130ad565b60405180910390f35b6103f460048036038101906103ef91906129ae565b610c7b565b60405161040191906133fa565b60405180910390f35b610412610d33565b005b61041c610d47565b005b610426610d59565b60405161043391906130ad565b60405180910390f35b610444610d83565b6040516104519190613158565b60405180910390f35b610474600480360381019061046f9190612af1565b610e15565b005b610490600480360381019061048b9190612a6e565b610e2b565b005b6104ac60048036038101906104a79190612c9d565b610e8d565b6040516104b99190613158565b60405180910390f35b6104ca610f6e565b6040516104d79190613158565b60405180910390f35b6104fa60048036038101906104f59190612c54565b610ffc565b005b610516600480360381019061051191906129db565b61101e565b604051610523919061313d565b60405180910390f35b61054660048036038101906105419190612bb1565b6110b2565b005b610562600480360381019061055d91906129ae565b611165565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105d757506105d6826111e9565b5b9050919050565b6060600280546105ed906136fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610619906136fb565b80156106665780601f1061063b57610100808354040283529160200191610666565b820191906000526020600020905b81548152906001019060200180831161064957829003601f168201915b5050505050905090565b600061067b82611263565b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106c182610bc9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610732576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107299061335a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107516112ae565b73ffffffffffffffffffffffffffffffffffffffff161480610780575061077f8161077a6112ae565b61101e565b5b6107bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b6906132da565b60405180910390fd5b6107c983836112b6565b505050565b6000600a80549050905090565b6107ec6107e66112ae565b8261136f565b61082b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610822906133ba565b60405180910390fd5b610836838383611404565b505050565b6000806000600160008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156109d15760006040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006109db61166b565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610a079190613592565b610a119190613561565b90508160000151819350935050509250929050565b6000610a3183610c7b565b8210610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a699061319a565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610ad3611675565b610adb6116f3565b565b610ae5611675565b6000610af1600d611756565b9050610afd600d611764565b610b07828261177a565b5050565b610b2683838360405180602001604052806000815250610e2b565b505050565b610b33611675565b610b3d8282611798565b5050565b6000610b4b6107ce565b8210610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b839061337a565b60405180910390fd5b600a8281548110610ba057610b9f613844565b5b90600052602060002001549050919050565b6000600c60009054906101000a900460ff16905090565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c699061333a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce39061329a565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d3b611675565b610d45600061192d565b565b610d4f611675565b610d576119f3565b565b6000600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610d92906136fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbe906136fb565b8015610e0b5780601f10610de057610100808354040283529160200191610e0b565b820191906000526020600020905b815481529060010190602001808311610dee57829003601f168201915b5050505050905090565b610e27610e206112ae565b8383611a56565b5050565b610e3c610e366112ae565b8361136f565b610e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e72906133ba565b60405180910390fd5b610e8784848484611bc3565b50505050565b6060610e9882611263565b6000600e8054610ea7906136fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed3906136fb565b8015610f205780601f10610ef557610100808354040283529160200191610f20565b820191906000526020600020905b815481529060010190602001808311610f0357829003601f168201915b505050505090506000815111610f455760405180602001604052806000815250610f66565b80604051602001610f569190613096565b6040516020818303038152906040525b915050919050565b600e8054610f7b906136fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa7906136fb565b8015610ff45780601f10610fc957610100808354040283529160200191610ff4565b820191906000526020600020905b815481529060010190602001808311610fd757829003601f168201915b505050505081565b611004611675565b80600e908051906020019061101a92919061270f565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110ba611675565b60ff815111156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f6906132ba565b60405180910390fd5b60005b81518160ff16101561116157600061111a600d611756565b9050611126600d611764565b61114d838360ff168151811061113f5761113e613844565b5b60200260200101518261177a565b5080806111599061375e565b915050611102565b5050565b61116d611675565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d4906131da565b60405180910390fd5b6111e68161192d565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061125c575061125b82611c1f565b5b9050919050565b61126c81611d01565b6112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a29061333a565b60405180910390fd5b50565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661132983610bc9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061137b83610bc9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113bd57506113bc818561101e565b5b806113fb57508373ffffffffffffffffffffffffffffffffffffffff166113e384610670565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661142482610bc9565b73ffffffffffffffffffffffffffffffffffffffff161461147a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611471906131fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e19061323a565b60405180910390fd5b6114f5838383611d6d565b6115006000826112b6565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461155091906135ec565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115a7919061350b565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611666838383611d85565b505050565b6000612710905090565b61167d6112ae565b73ffffffffffffffffffffffffffffffffffffffff1661169b610d59565b73ffffffffffffffffffffffffffffffffffffffff16146116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e89061331a565b60405180910390fd5b565b6116fb611d8a565b6000600c60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61173f6112ae565b60405161174c91906130ad565b60405180910390a1565b600081600001549050919050565b6001816000016000828254019250508190555050565b611794828260405180602001604052806000815250611dd3565b5050565b6117a061166b565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156117fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f59061339a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561186e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611865906133da565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152506000808201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119fb611e2e565b6001600c60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a3f6112ae565b604051611a4c91906130ad565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc9061325a565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bb6919061313d565b60405180910390a3505050565b611bce848484611404565b611bda84848484611e78565b611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c10906131ba565b60405180910390fd5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cfa5750611cf98261200f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611d75611e2e565b611d80838383612089565b505050565b505050565b611d92610bb2565b611dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc89061317a565b60405180910390fd5b565b611ddd838361219d565b611dea6000848484611e78565b611e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e20906131ba565b60405180910390fd5b505050565b611e36610bb2565b15611e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6d9061327a565b60405180910390fd5b565b6000611e998473ffffffffffffffffffffffffffffffffffffffff16612377565b15612002578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ec26112ae565b8786866040518563ffffffff1660e01b8152600401611ee494939291906130c8565b602060405180830381600087803b158015611efe57600080fd5b505af1925050508015611f2f57506040513d601f19601f82011682018060405250810190611f2c9190612c27565b60015b611fb2573d8060008114611f5f576040519150601f19603f3d011682016040523d82523d6000602084013e611f64565b606091505b50600081511415611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa1906131ba565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612007565b600190505b949350505050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061208257506120818261239a565b5b9050919050565b612094838383612404565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120d7576120d281612409565b612116565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612115576121148382612452565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561215957612154816125bf565b612198565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612197576121968282612690565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561220d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612204906132fa565b60405180910390fd5b61221681611d01565b15612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d9061321a565b60405180910390fd5b61226260008383611d6d565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122b2919061350b565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461237360008383611d85565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161245f84610c7b565b61246991906135ec565b905060006009600084815260200190815260200160002054905081811461254e576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a805490506125d391906135ec565b90506000600b60008481526020019081526020016000205490506000600a838154811061260357612602613844565b5b9060005260206000200154905080600a838154811061262557612624613844565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a80548061267457612673613815565b5b6001900381819060005260206000200160009055905550505050565b600061269b83610c7b565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b82805461271b906136fb565b90600052602060002090601f01602090048101928261273d5760008555612784565b82601f1061275657805160ff1916838001178555612784565b82800160010185558215612784579182015b82811115612783578251825591602001919060010190612768565b5b5090506127919190612795565b5090565b5b808211156127ae576000816000905550600101612796565b5090565b60006127c56127c08461343a565b613415565b905080838252602082019050828560208602820111156127e8576127e76138a7565b5b60005b8581101561281857816127fe88826128a6565b8452602084019350602083019250506001810190506127eb565b5050509392505050565b600061283561283084613466565b613415565b905082815260208101848484011115612851576128506138ac565b5b61285c8482856136b9565b509392505050565b600061287761287284613497565b613415565b905082815260208101848484011115612893576128926138ac565b5b61289e8482856136b9565b509392505050565b6000813590506128b581613da2565b92915050565b600082601f8301126128d0576128cf6138a2565b5b81356128e08482602086016127b2565b91505092915050565b6000813590506128f881613db9565b92915050565b60008135905061290d81613dd0565b92915050565b60008151905061292281613dd0565b92915050565b600082601f83011261293d5761293c6138a2565b5b813561294d848260208601612822565b91505092915050565b600082601f83011261296b5761296a6138a2565b5b813561297b848260208601612864565b91505092915050565b60008135905061299381613de7565b92915050565b6000813590506129a881613dfe565b92915050565b6000602082840312156129c4576129c36138b6565b5b60006129d2848285016128a6565b91505092915050565b600080604083850312156129f2576129f16138b6565b5b6000612a00858286016128a6565b9250506020612a11858286016128a6565b9150509250929050565b600080600060608486031215612a3457612a336138b6565b5b6000612a42868287016128a6565b9350506020612a53868287016128a6565b9250506040612a6486828701612984565b9150509250925092565b60008060008060808587031215612a8857612a876138b6565b5b6000612a96878288016128a6565b9450506020612aa7878288016128a6565b9350506040612ab887828801612984565b925050606085013567ffffffffffffffff811115612ad957612ad86138b1565b5b612ae587828801612928565b91505092959194509250565b60008060408385031215612b0857612b076138b6565b5b6000612b16858286016128a6565b9250506020612b27858286016128e9565b9150509250929050565b60008060408385031215612b4857612b476138b6565b5b6000612b56858286016128a6565b9250506020612b6785828601612984565b9150509250929050565b60008060408385031215612b8857612b876138b6565b5b6000612b96858286016128a6565b9250506020612ba785828601612999565b9150509250929050565b600060208284031215612bc757612bc66138b6565b5b600082013567ffffffffffffffff811115612be557612be46138b1565b5b612bf1848285016128bb565b91505092915050565b600060208284031215612c1057612c0f6138b6565b5b6000612c1e848285016128fe565b91505092915050565b600060208284031215612c3d57612c3c6138b6565b5b6000612c4b84828501612913565b91505092915050565b600060208284031215612c6a57612c696138b6565b5b600082013567ffffffffffffffff811115612c8857612c876138b1565b5b612c9484828501612956565b91505092915050565b600060208284031215612cb357612cb26138b6565b5b6000612cc184828501612984565b91505092915050565b60008060408385031215612ce157612ce06138b6565b5b6000612cef85828601612984565b9250506020612d0085828601612984565b9150509250929050565b612d1381613620565b82525050565b612d2281613632565b82525050565b6000612d33826134c8565b612d3d81856134de565b9350612d4d8185602086016136c8565b612d56816138bb565b840191505092915050565b6000612d6c826134d3565b612d7681856134ef565b9350612d868185602086016136c8565b612d8f816138bb565b840191505092915050565b6000612da5826134d3565b612daf8185613500565b9350612dbf8185602086016136c8565b80840191505092915050565b6000612dd86014836134ef565b9150612de3826138cc565b602082019050919050565b6000612dfb602b836134ef565b9150612e06826138f5565b604082019050919050565b6000612e1e6032836134ef565b9150612e2982613944565b604082019050919050565b6000612e416026836134ef565b9150612e4c82613993565b604082019050919050565b6000612e646025836134ef565b9150612e6f826139e2565b604082019050919050565b6000612e87601c836134ef565b9150612e9282613a31565b602082019050919050565b6000612eaa6024836134ef565b9150612eb582613a5a565b604082019050919050565b6000612ecd6019836134ef565b9150612ed882613aa9565b602082019050919050565b6000612ef06010836134ef565b9150612efb82613ad2565b602082019050919050565b6000612f136029836134ef565b9150612f1e82613afb565b604082019050919050565b6000612f366019836134ef565b9150612f4182613b4a565b602082019050919050565b6000612f59603e836134ef565b9150612f6482613b73565b604082019050919050565b6000612f7c6020836134ef565b9150612f8782613bc2565b602082019050919050565b6000612f9f6020836134ef565b9150612faa82613beb565b602082019050919050565b6000612fc26018836134ef565b9150612fcd82613c14565b602082019050919050565b6000612fe56021836134ef565b9150612ff082613c3d565b604082019050919050565b6000613008602c836134ef565b915061301382613c8c565b604082019050919050565b600061302b602a836134ef565b915061303682613cdb565b604082019050919050565b600061304e602e836134ef565b915061305982613d2a565b604082019050919050565b60006130716019836134ef565b915061307c82613d79565b602082019050919050565b6130908161368a565b82525050565b60006130a28284612d9a565b915081905092915050565b60006020820190506130c26000830184612d0a565b92915050565b60006080820190506130dd6000830187612d0a565b6130ea6020830186612d0a565b6130f76040830185613087565b81810360608301526131098184612d28565b905095945050505050565b60006040820190506131296000830185612d0a565b6131366020830184613087565b9392505050565b60006020820190506131526000830184612d19565b92915050565b600060208201905081810360008301526131728184612d61565b905092915050565b6000602082019050818103600083015261319381612dcb565b9050919050565b600060208201905081810360008301526131b381612dee565b9050919050565b600060208201905081810360008301526131d381612e11565b9050919050565b600060208201905081810360008301526131f381612e34565b9050919050565b6000602082019050818103600083015261321381612e57565b9050919050565b6000602082019050818103600083015261323381612e7a565b9050919050565b6000602082019050818103600083015261325381612e9d565b9050919050565b6000602082019050818103600083015261327381612ec0565b9050919050565b6000602082019050818103600083015261329381612ee3565b9050919050565b600060208201905081810360008301526132b381612f06565b9050919050565b600060208201905081810360008301526132d381612f29565b9050919050565b600060208201905081810360008301526132f381612f4c565b9050919050565b6000602082019050818103600083015261331381612f6f565b9050919050565b6000602082019050818103600083015261333381612f92565b9050919050565b6000602082019050818103600083015261335381612fb5565b9050919050565b6000602082019050818103600083015261337381612fd8565b9050919050565b6000602082019050818103600083015261339381612ffb565b9050919050565b600060208201905081810360008301526133b38161301e565b9050919050565b600060208201905081810360008301526133d381613041565b9050919050565b600060208201905081810360008301526133f381613064565b9050919050565b600060208201905061340f6000830184613087565b92915050565b600061341f613430565b905061342b828261372d565b919050565b6000604051905090565b600067ffffffffffffffff82111561345557613454613873565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561348157613480613873565b5b61348a826138bb565b9050602081019050919050565b600067ffffffffffffffff8211156134b2576134b1613873565b5b6134bb826138bb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135168261368a565b91506135218361368a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561355657613555613788565b5b828201905092915050565b600061356c8261368a565b91506135778361368a565b925082613587576135866137b7565b5b828204905092915050565b600061359d8261368a565b91506135a88361368a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135e1576135e0613788565b5b828202905092915050565b60006135f78261368a565b91506136028361368a565b92508282101561361557613614613788565b5b828203905092915050565b600061362b8261366a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156136e65780820151818401526020810190506136cb565b838111156136f5576000848401525b50505050565b6000600282049050600182168061371357607f821691505b60208210811415613727576137266137e6565b5b50919050565b613736826138bb565b810181811067ffffffffffffffff8211171561375557613754613873565b5b80604052505050565b600061376982613694565b915060ff82141561377d5761377c613788565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4d61782032353520616464726573736573206174206f6e636500000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b613dab81613620565b8114613db657600080fd5b50565b613dc281613632565b8114613dcd57600080fd5b50565b613dd98161363e565b8114613de457600080fd5b50565b613df08161368a565b8114613dfb57600080fd5b50565b613e07816136a1565b8114613e1257600080fd5b5056fea2646970667358221220aba82d5263b4203a045d9edac2840fa6ed190e06fc418c16ff5049c49e6c57de64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063b88d4fde11610097578063e0df5b6f11610071578063e0df5b6f146104e0578063e985e9c5146104fc578063ef6fd7d21461052c578063f2fde38b14610548576101c4565b8063b88d4fde14610476578063c87b56dd14610492578063d547cfb7146104c2576101c4565b80638456cb59116100d35780638456cb59146104145780638da5cb5b1461041e57806395d89b411461043c578063a22cb4651461045a576101c4565b80636352211e146103aa57806370a08231146103da578063715018a61461040a576101c4565b80632f745c591161016657806342842e0e1161014057806342842e0e14610324578063486e642f146103405780634f6ccce71461035c5780635c975abb1461038c576101c4565b80632f745c59146102ce5780633f4ba83a146102fe57806340d097c314610308576101c4565b8063095ea7b3116101a2578063095ea7b31461024757806318160ddd1461026357806323b872dd146102815780632a55205a1461029d576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de9190612bfa565b610564565b6040516101f0919061313d565b60405180910390f35b6102016105de565b60405161020e9190613158565b60405180910390f35b610231600480360381019061022c9190612c9d565b610670565b60405161023e91906130ad565b60405180910390f35b610261600480360381019061025c9190612b31565b6106b6565b005b61026b6107ce565b60405161027891906133fa565b60405180910390f35b61029b60048036038101906102969190612a1b565b6107db565b005b6102b760048036038101906102b29190612cca565b61083b565b6040516102c5929190613114565b60405180910390f35b6102e860048036038101906102e39190612b31565b610a26565b6040516102f591906133fa565b60405180910390f35b610306610acb565b005b610322600480360381019061031d91906129ae565b610add565b005b61033e60048036038101906103399190612a1b565b610b0b565b005b61035a60048036038101906103559190612b71565b610b2b565b005b61037660048036038101906103719190612c9d565b610b41565b60405161038391906133fa565b60405180910390f35b610394610bb2565b6040516103a1919061313d565b60405180910390f35b6103c460048036038101906103bf9190612c9d565b610bc9565b6040516103d191906130ad565b60405180910390f35b6103f460048036038101906103ef91906129ae565b610c7b565b60405161040191906133fa565b60405180910390f35b610412610d33565b005b61041c610d47565b005b610426610d59565b60405161043391906130ad565b60405180910390f35b610444610d83565b6040516104519190613158565b60405180910390f35b610474600480360381019061046f9190612af1565b610e15565b005b610490600480360381019061048b9190612a6e565b610e2b565b005b6104ac60048036038101906104a79190612c9d565b610e8d565b6040516104b99190613158565b60405180910390f35b6104ca610f6e565b6040516104d79190613158565b60405180910390f35b6104fa60048036038101906104f59190612c54565b610ffc565b005b610516600480360381019061051191906129db565b61101e565b604051610523919061313d565b60405180910390f35b61054660048036038101906105419190612bb1565b6110b2565b005b610562600480360381019061055d91906129ae565b611165565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105d757506105d6826111e9565b5b9050919050565b6060600280546105ed906136fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610619906136fb565b80156106665780601f1061063b57610100808354040283529160200191610666565b820191906000526020600020905b81548152906001019060200180831161064957829003601f168201915b5050505050905090565b600061067b82611263565b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106c182610bc9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610732576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107299061335a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107516112ae565b73ffffffffffffffffffffffffffffffffffffffff161480610780575061077f8161077a6112ae565b61101e565b5b6107bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b6906132da565b60405180910390fd5b6107c983836112b6565b505050565b6000600a80549050905090565b6107ec6107e66112ae565b8261136f565b61082b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610822906133ba565b60405180910390fd5b610836838383611404565b505050565b6000806000600160008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614156109d15760006040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006109db61166b565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610a079190613592565b610a119190613561565b90508160000151819350935050509250929050565b6000610a3183610c7b565b8210610a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a699061319a565b60405180910390fd5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610ad3611675565b610adb6116f3565b565b610ae5611675565b6000610af1600d611756565b9050610afd600d611764565b610b07828261177a565b5050565b610b2683838360405180602001604052806000815250610e2b565b505050565b610b33611675565b610b3d8282611798565b5050565b6000610b4b6107ce565b8210610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b839061337a565b60405180910390fd5b600a8281548110610ba057610b9f613844565b5b90600052602060002001549050919050565b6000600c60009054906101000a900460ff16905090565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c699061333a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce39061329a565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d3b611675565b610d45600061192d565b565b610d4f611675565b610d576119f3565b565b6000600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610d92906136fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbe906136fb565b8015610e0b5780601f10610de057610100808354040283529160200191610e0b565b820191906000526020600020905b815481529060010190602001808311610dee57829003601f168201915b5050505050905090565b610e27610e206112ae565b8383611a56565b5050565b610e3c610e366112ae565b8361136f565b610e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e72906133ba565b60405180910390fd5b610e8784848484611bc3565b50505050565b6060610e9882611263565b6000600e8054610ea7906136fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed3906136fb565b8015610f205780601f10610ef557610100808354040283529160200191610f20565b820191906000526020600020905b815481529060010190602001808311610f0357829003601f168201915b505050505090506000815111610f455760405180602001604052806000815250610f66565b80604051602001610f569190613096565b6040516020818303038152906040525b915050919050565b600e8054610f7b906136fb565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa7906136fb565b8015610ff45780601f10610fc957610100808354040283529160200191610ff4565b820191906000526020600020905b815481529060010190602001808311610fd757829003601f168201915b505050505081565b611004611675565b80600e908051906020019061101a92919061270f565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110ba611675565b60ff815111156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f6906132ba565b60405180910390fd5b60005b81518160ff16101561116157600061111a600d611756565b9050611126600d611764565b61114d838360ff168151811061113f5761113e613844565b5b60200260200101518261177a565b5080806111599061375e565b915050611102565b5050565b61116d611675565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d4906131da565b60405180910390fd5b6111e68161192d565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061125c575061125b82611c1f565b5b9050919050565b61126c81611d01565b6112ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a29061333a565b60405180910390fd5b50565b600033905090565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661132983610bc9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061137b83610bc9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806113bd57506113bc818561101e565b5b806113fb57508373ffffffffffffffffffffffffffffffffffffffff166113e384610670565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661142482610bc9565b73ffffffffffffffffffffffffffffffffffffffff161461147a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611471906131fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e19061323a565b60405180910390fd5b6114f5838383611d6d565b6115006000826112b6565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461155091906135ec565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115a7919061350b565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611666838383611d85565b505050565b6000612710905090565b61167d6112ae565b73ffffffffffffffffffffffffffffffffffffffff1661169b610d59565b73ffffffffffffffffffffffffffffffffffffffff16146116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e89061331a565b60405180910390fd5b565b6116fb611d8a565b6000600c60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61173f6112ae565b60405161174c91906130ad565b60405180910390a1565b600081600001549050919050565b6001816000016000828254019250508190555050565b611794828260405180602001604052806000815250611dd3565b5050565b6117a061166b565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156117fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f59061339a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561186e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611865906133da565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152506000808201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119fb611e2e565b6001600c60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a3f6112ae565b604051611a4c91906130ad565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc9061325a565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bb6919061313d565b60405180910390a3505050565b611bce848484611404565b611bda84848484611e78565b611c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c10906131ba565b60405180910390fd5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611cea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611cfa5750611cf98261200f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611d75611e2e565b611d80838383612089565b505050565b505050565b611d92610bb2565b611dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc89061317a565b60405180910390fd5b565b611ddd838361219d565b611dea6000848484611e78565b611e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e20906131ba565b60405180910390fd5b505050565b611e36610bb2565b15611e76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6d9061327a565b60405180910390fd5b565b6000611e998473ffffffffffffffffffffffffffffffffffffffff16612377565b15612002578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ec26112ae565b8786866040518563ffffffff1660e01b8152600401611ee494939291906130c8565b602060405180830381600087803b158015611efe57600080fd5b505af1925050508015611f2f57506040513d601f19601f82011682018060405250810190611f2c9190612c27565b60015b611fb2573d8060008114611f5f576040519150601f19603f3d011682016040523d82523d6000602084013e611f64565b606091505b50600081511415611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa1906131ba565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612007565b600190505b949350505050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061208257506120818261239a565b5b9050919050565b612094838383612404565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120d7576120d281612409565b612116565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612115576121148382612452565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561215957612154816125bf565b612198565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612197576121968282612690565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561220d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612204906132fa565b60405180910390fd5b61221681611d01565b15612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d9061321a565b60405180910390fd5b61226260008383611d6d565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122b2919061350b565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461237360008383611d85565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b600a80549050600b600083815260200190815260200160002081905550600a81908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161245f84610c7b565b61246991906135ec565b905060006009600084815260200190815260200160002054905081811461254e576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816009600083815260200190815260200160002081905550505b6009600084815260200190815260200160002060009055600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600a805490506125d391906135ec565b90506000600b60008481526020019081526020016000205490506000600a838154811061260357612602613844565b5b9060005260206000200154905080600a838154811061262557612624613844565b5b906000526020600020018190555081600b600083815260200190815260200160002081905550600b600085815260200190815260200160002060009055600a80548061267457612673613815565b5b6001900381819060005260206000200160009055905550505050565b600061269b83610c7b565b905081600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806009600084815260200190815260200160002081905550505050565b82805461271b906136fb565b90600052602060002090601f01602090048101928261273d5760008555612784565b82601f1061275657805160ff1916838001178555612784565b82800160010185558215612784579182015b82811115612783578251825591602001919060010190612768565b5b5090506127919190612795565b5090565b5b808211156127ae576000816000905550600101612796565b5090565b60006127c56127c08461343a565b613415565b905080838252602082019050828560208602820111156127e8576127e76138a7565b5b60005b8581101561281857816127fe88826128a6565b8452602084019350602083019250506001810190506127eb565b5050509392505050565b600061283561283084613466565b613415565b905082815260208101848484011115612851576128506138ac565b5b61285c8482856136b9565b509392505050565b600061287761287284613497565b613415565b905082815260208101848484011115612893576128926138ac565b5b61289e8482856136b9565b509392505050565b6000813590506128b581613da2565b92915050565b600082601f8301126128d0576128cf6138a2565b5b81356128e08482602086016127b2565b91505092915050565b6000813590506128f881613db9565b92915050565b60008135905061290d81613dd0565b92915050565b60008151905061292281613dd0565b92915050565b600082601f83011261293d5761293c6138a2565b5b813561294d848260208601612822565b91505092915050565b600082601f83011261296b5761296a6138a2565b5b813561297b848260208601612864565b91505092915050565b60008135905061299381613de7565b92915050565b6000813590506129a881613dfe565b92915050565b6000602082840312156129c4576129c36138b6565b5b60006129d2848285016128a6565b91505092915050565b600080604083850312156129f2576129f16138b6565b5b6000612a00858286016128a6565b9250506020612a11858286016128a6565b9150509250929050565b600080600060608486031215612a3457612a336138b6565b5b6000612a42868287016128a6565b9350506020612a53868287016128a6565b9250506040612a6486828701612984565b9150509250925092565b60008060008060808587031215612a8857612a876138b6565b5b6000612a96878288016128a6565b9450506020612aa7878288016128a6565b9350506040612ab887828801612984565b925050606085013567ffffffffffffffff811115612ad957612ad86138b1565b5b612ae587828801612928565b91505092959194509250565b60008060408385031215612b0857612b076138b6565b5b6000612b16858286016128a6565b9250506020612b27858286016128e9565b9150509250929050565b60008060408385031215612b4857612b476138b6565b5b6000612b56858286016128a6565b9250506020612b6785828601612984565b9150509250929050565b60008060408385031215612b8857612b876138b6565b5b6000612b96858286016128a6565b9250506020612ba785828601612999565b9150509250929050565b600060208284031215612bc757612bc66138b6565b5b600082013567ffffffffffffffff811115612be557612be46138b1565b5b612bf1848285016128bb565b91505092915050565b600060208284031215612c1057612c0f6138b6565b5b6000612c1e848285016128fe565b91505092915050565b600060208284031215612c3d57612c3c6138b6565b5b6000612c4b84828501612913565b91505092915050565b600060208284031215612c6a57612c696138b6565b5b600082013567ffffffffffffffff811115612c8857612c876138b1565b5b612c9484828501612956565b91505092915050565b600060208284031215612cb357612cb26138b6565b5b6000612cc184828501612984565b91505092915050565b60008060408385031215612ce157612ce06138b6565b5b6000612cef85828601612984565b9250506020612d0085828601612984565b9150509250929050565b612d1381613620565b82525050565b612d2281613632565b82525050565b6000612d33826134c8565b612d3d81856134de565b9350612d4d8185602086016136c8565b612d56816138bb565b840191505092915050565b6000612d6c826134d3565b612d7681856134ef565b9350612d868185602086016136c8565b612d8f816138bb565b840191505092915050565b6000612da5826134d3565b612daf8185613500565b9350612dbf8185602086016136c8565b80840191505092915050565b6000612dd86014836134ef565b9150612de3826138cc565b602082019050919050565b6000612dfb602b836134ef565b9150612e06826138f5565b604082019050919050565b6000612e1e6032836134ef565b9150612e2982613944565b604082019050919050565b6000612e416026836134ef565b9150612e4c82613993565b604082019050919050565b6000612e646025836134ef565b9150612e6f826139e2565b604082019050919050565b6000612e87601c836134ef565b9150612e9282613a31565b602082019050919050565b6000612eaa6024836134ef565b9150612eb582613a5a565b604082019050919050565b6000612ecd6019836134ef565b9150612ed882613aa9565b602082019050919050565b6000612ef06010836134ef565b9150612efb82613ad2565b602082019050919050565b6000612f136029836134ef565b9150612f1e82613afb565b604082019050919050565b6000612f366019836134ef565b9150612f4182613b4a565b602082019050919050565b6000612f59603e836134ef565b9150612f6482613b73565b604082019050919050565b6000612f7c6020836134ef565b9150612f8782613bc2565b602082019050919050565b6000612f9f6020836134ef565b9150612faa82613beb565b602082019050919050565b6000612fc26018836134ef565b9150612fcd82613c14565b602082019050919050565b6000612fe56021836134ef565b9150612ff082613c3d565b604082019050919050565b6000613008602c836134ef565b915061301382613c8c565b604082019050919050565b600061302b602a836134ef565b915061303682613cdb565b604082019050919050565b600061304e602e836134ef565b915061305982613d2a565b604082019050919050565b60006130716019836134ef565b915061307c82613d79565b602082019050919050565b6130908161368a565b82525050565b60006130a28284612d9a565b915081905092915050565b60006020820190506130c26000830184612d0a565b92915050565b60006080820190506130dd6000830187612d0a565b6130ea6020830186612d0a565b6130f76040830185613087565b81810360608301526131098184612d28565b905095945050505050565b60006040820190506131296000830185612d0a565b6131366020830184613087565b9392505050565b60006020820190506131526000830184612d19565b92915050565b600060208201905081810360008301526131728184612d61565b905092915050565b6000602082019050818103600083015261319381612dcb565b9050919050565b600060208201905081810360008301526131b381612dee565b9050919050565b600060208201905081810360008301526131d381612e11565b9050919050565b600060208201905081810360008301526131f381612e34565b9050919050565b6000602082019050818103600083015261321381612e57565b9050919050565b6000602082019050818103600083015261323381612e7a565b9050919050565b6000602082019050818103600083015261325381612e9d565b9050919050565b6000602082019050818103600083015261327381612ec0565b9050919050565b6000602082019050818103600083015261329381612ee3565b9050919050565b600060208201905081810360008301526132b381612f06565b9050919050565b600060208201905081810360008301526132d381612f29565b9050919050565b600060208201905081810360008301526132f381612f4c565b9050919050565b6000602082019050818103600083015261331381612f6f565b9050919050565b6000602082019050818103600083015261333381612f92565b9050919050565b6000602082019050818103600083015261335381612fb5565b9050919050565b6000602082019050818103600083015261337381612fd8565b9050919050565b6000602082019050818103600083015261339381612ffb565b9050919050565b600060208201905081810360008301526133b38161301e565b9050919050565b600060208201905081810360008301526133d381613041565b9050919050565b600060208201905081810360008301526133f381613064565b9050919050565b600060208201905061340f6000830184613087565b92915050565b600061341f613430565b905061342b828261372d565b919050565b6000604051905090565b600067ffffffffffffffff82111561345557613454613873565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561348157613480613873565b5b61348a826138bb565b9050602081019050919050565b600067ffffffffffffffff8211156134b2576134b1613873565b5b6134bb826138bb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135168261368a565b91506135218361368a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561355657613555613788565b5b828201905092915050565b600061356c8261368a565b91506135778361368a565b925082613587576135866137b7565b5b828204905092915050565b600061359d8261368a565b91506135a88361368a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135e1576135e0613788565b5b828202905092915050565b60006135f78261368a565b91506136028361368a565b92508282101561361557613614613788565b5b828203905092915050565b600061362b8261366a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156136e65780820151818401526020810190506136cb565b838111156136f5576000848401525b50505050565b6000600282049050600182168061371357607f821691505b60208210811415613727576137266137e6565b5b50919050565b613736826138bb565b810181811067ffffffffffffffff8211171561375557613754613873565b5b80604052505050565b600061376982613694565b915060ff82141561377d5761377c613788565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4d61782032353520616464726573736573206174206f6e636500000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b613dab81613620565b8114613db657600080fd5b50565b613dc281613632565b8114613dcd57600080fd5b50565b613dd98161363e565b8114613de457600080fd5b50565b613df08161368a565b8114613dfb57600080fd5b50565b613e07816136a1565b8114613e1257600080fd5b5056fea2646970667358221220aba82d5263b4203a045d9edac2840fa6ed190e06fc418c16ff5049c49e6c57de64736f6c63430008070033
Deployed Bytecode Sourcemap
54087:2173:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55940:316;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30956:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32469:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31986:417;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44862:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33169:336;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51456:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;44530:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54472:65;;;:::i;:::-;;54545:180;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33576:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54731:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45052:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9302:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30667:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30398:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6812:103;;;:::i;:::-;;54403:61;;;:::i;:::-;;6164:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31125:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32712:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33832:323;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55599:263;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54281:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55483:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32938:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54883:357;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7070:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55940:316;56088:4;56182:26;56167:41;;;:11;:41;;;;:81;;;;56212:36;56236:11;56212:23;:36::i;:::-;56167:81;56160:88;;55940:316;;;:::o;30956:100::-;31010:13;31043:5;31036:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30956:100;:::o;32469:171::-;32545:7;32565:23;32580:7;32565:14;:23::i;:::-;32608:15;:24;32624:7;32608:24;;;;;;;;;;;;;;;;;;;;;32601:31;;32469:171;;;:::o;31986:417::-;32067:13;32083:23;32098:7;32083:14;:23::i;:::-;32067:39;;32131:5;32125:11;;:2;:11;;;;32117:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;32225:5;32209:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;32234:37;32251:5;32258:12;:10;:12::i;:::-;32234:16;:37::i;:::-;32209:62;32187:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;32374:21;32383:2;32387:7;32374:8;:21::i;:::-;32056:347;31986:417;;:::o;44862:113::-;44923:7;44950:10;:17;;;;44943:24;;44862:113;:::o;33169:336::-;33364:41;33383:12;:10;:12::i;:::-;33397:7;33364:18;:41::i;:::-;33356:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;33469:28;33479:4;33485:2;33489:7;33469:9;:28::i;:::-;33169:336;;;:::o;51456:442::-;51553:7;51562;51582:26;51611:17;:27;51629:8;51611:27;;;;;;;;;;;51582:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51683:1;51655:30;;:7;:16;;;:30;;;51651:92;;;51712:19;51702:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51651:92;51755:21;51820:17;:15;:17::i;:::-;51779:58;;51793:7;:23;;;51780:36;;:10;:36;;;;:::i;:::-;51779:58;;;;:::i;:::-;51755:82;;51858:7;:16;;;51876:13;51850:40;;;;;;51456:442;;;;;:::o;44530:256::-;44627:7;44663:23;44680:5;44663:16;:23::i;:::-;44655:5;:31;44647:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;44752:12;:19;44765:5;44752:19;;;;;;;;;;;;;;;:26;44772:5;44752:26;;;;;;;;;;;;44745:33;;44530:256;;;;:::o;54472:65::-;6050:13;:11;:13::i;:::-;54519:10:::1;:8;:10::i;:::-;54472:65::o:0;54545:180::-;6050:13;:11;:13::i;:::-;54603:15:::1;54621:25;:15;:23;:25::i;:::-;54603:43;;54657:27;:15;:25;:27::i;:::-;54695:22;54705:2;54709:7;54695:9;:22::i;:::-;54592:133;54545:180:::0;:::o;33576:185::-;33714:39;33731:4;33737:2;33741:7;33714:39;;;;;;;;;;;;:16;:39::i;:::-;33576:185;;;:::o;54731:144::-;6050:13;:11;:13::i;:::-;54825:42:::1;54844:8;54854:12;54825:18;:42::i;:::-;54731:144:::0;;:::o;45052:233::-;45127:7;45163:30;:28;:30::i;:::-;45155:5;:38;45147:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;45260:10;45271:5;45260:17;;;;;;;;:::i;:::-;;;;;;;;;;45253:24;;45052:233;;;:::o;9302:86::-;9349:4;9373:7;;;;;;;;;;;9366:14;;9302:86;:::o;30667:222::-;30739:7;30759:13;30775:7;:16;30783:7;30775:16;;;;;;;;;;;;;;;;;;;;;30759:32;;30827:1;30810:19;;:5;:19;;;;30802:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;30876:5;30869:12;;;30667:222;;;:::o;30398:207::-;30470:7;30515:1;30498:19;;:5;:19;;;;30490:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30581:9;:16;30591:5;30581:16;;;;;;;;;;;;;;;;30574:23;;30398:207;;;:::o;6812:103::-;6050:13;:11;:13::i;:::-;6877:30:::1;6904:1;6877:18;:30::i;:::-;6812:103::o:0;54403:61::-;6050:13;:11;:13::i;:::-;54448:8:::1;:6;:8::i;:::-;54403:61::o:0;6164:87::-;6210:7;6237:6;;;;;;;;;;;6230:13;;6164:87;:::o;31125:104::-;31181:13;31214:7;31207:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31125:104;:::o;32712:155::-;32807:52;32826:12;:10;:12::i;:::-;32840:8;32850;32807:18;:52::i;:::-;32712:155;;:::o;33832:323::-;34006:41;34025:12;:10;:12::i;:::-;34039:7;34006:18;:41::i;:::-;33998:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;34109:38;34123:4;34129:2;34133:7;34142:4;34109:13;:38::i;:::-;33832:323;;;;:::o;55599:263::-;55672:13;55698:23;55713:7;55698:14;:23::i;:::-;55734:21;55758:12;55734:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55812:1;55794:7;55788:21;:25;:66;;;;;;;;;;;;;;;;;55840:7;55823:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;55788:66;55781:73;;;55599:263;;;:::o;54281:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55483:108::-;6050:13;:11;:13::i;:::-;55572:9:::1;55557:12;:24;;;;;;;;;;;;:::i;:::-;;55483:108:::0;:::o;32938:164::-;33035:4;33059:18;:25;33078:5;33059:25;;;;;;;;;;;;;;;:35;33085:8;33059:35;;;;;;;;;;;;;;;;;;;;;;;;;33052:42;;32938:164;;;;:::o;54883:357::-;6050:13;:11;:13::i;:::-;54981:3:::1;54965:5;:12;:19;;54957:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;55032:7;55027:196;55049:5;:12;55045:1;:16;;;55027:196;;;55083:15;55101:25;:15;:23;:25::i;:::-;55083:43;;55141:27;:15;:25;:27::i;:::-;55183:28;55193:5;55199:1;55193:8;;;;;;;;;;:::i;:::-;;;;;;;;55203:7;55183:9;:28::i;:::-;55068:155;55063:3;;;;;:::i;:::-;;;;55027:196;;;;54883:357:::0;:::o;7070:201::-;6050:13;:11;:13::i;:::-;7179:1:::1;7159:22;;:8;:22;;;;7151:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7235:28;7254:8;7235:18;:28::i;:::-;7070:201:::0;:::o;44222:224::-;44324:4;44363:35;44348:50;;;:11;:50;;;;:90;;;;44402:36;44426:11;44402:23;:36::i;:::-;44348:90;44341:97;;44222:224;;;:::o;40444:135::-;40526:16;40534:7;40526;:16::i;:::-;40518:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;40444:135;:::o;4715:98::-;4768:7;4795:10;4788:17;;4715:98;:::o;39723:174::-;39825:2;39798:15;:24;39814:7;39798:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39881:7;39877:2;39843:46;;39852:23;39867:7;39852:14;:23::i;:::-;39843:46;;;;;;;;;;;;39723:174;;:::o;35956:264::-;36049:4;36066:13;36082:23;36097:7;36082:14;:23::i;:::-;36066:39;;36135:5;36124:16;;:7;:16;;;:52;;;;36144:32;36161:5;36168:7;36144:16;:32::i;:::-;36124:52;:87;;;;36204:7;36180:31;;:20;36192:7;36180:11;:20::i;:::-;:31;;;36124:87;36116:96;;;35956:264;;;;:::o;38979:625::-;39138:4;39111:31;;:23;39126:7;39111:14;:23::i;:::-;:31;;;39103:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;39217:1;39203:16;;:2;:16;;;;39195:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;39273:39;39294:4;39300:2;39304:7;39273:20;:39::i;:::-;39377:29;39394:1;39398:7;39377:8;:29::i;:::-;39438:1;39419:9;:15;39429:4;39419:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;39467:1;39450:9;:13;39460:2;39450:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;39498:2;39479:7;:16;39487:7;39479:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;39537:7;39533:2;39518:27;;39527:4;39518:27;;;;;;;;;;;;39558:38;39578:4;39584:2;39588:7;39558:19;:38::i;:::-;38979:625;;;:::o;52180:97::-;52238:6;52264:5;52257:12;;52180:97;:::o;6329:132::-;6404:12;:10;:12::i;:::-;6393:23;;:7;:5;:7::i;:::-;:23;;;6385:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6329:132::o;10157:120::-;9166:16;:14;:16::i;:::-;10226:5:::1;10216:7;;:15;;;;;;;;;;;;;;;;;;10247:22;10256:12;:10;:12::i;:::-;10247:22;;;;;;:::i;:::-;;;;;;;;10157:120::o:0;946:114::-;1011:7;1038;:14;;;1031:21;;946:114;;;:::o;1068:127::-;1175:1;1157:7;:14;;;:19;;;;;;;;;;;1068:127;:::o;36562:110::-;36638:26;36648:2;36652:7;36638:26;;;;;;;;;;;;:9;:26::i;:::-;36562:110;;:::o;52548:332::-;52667:17;:15;:17::i;:::-;52651:33;;:12;:33;;;;52643:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;52770:1;52750:22;;:8;:22;;;;52742:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;52837:35;;;;;;;;52849:8;52837:35;;;;;;52859:12;52837:35;;;;;52815:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52548:332;;:::o;7431:191::-;7505:16;7524:6;;;;;;;;;;;7505:25;;7550:8;7541:6;;:17;;;;;;;;;;;;;;;;;;7605:8;7574:40;;7595:8;7574:40;;;;;;;;;;;;7494:128;7431:191;:::o;9898:118::-;8907:19;:17;:19::i;:::-;9968:4:::1;9958:7;;:14;;;;;;;;;;;;;;;;;;9988:20;9995:12;:10;:12::i;:::-;9988:20;;;;;;:::i;:::-;;;;;;;;9898:118::o:0;40040:315::-;40195:8;40186:17;;:5;:17;;;;40178:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;40282:8;40244:18;:25;40263:5;40244:25;;;;;;;;;;;;;;;:35;40270:8;40244:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;40328:8;40306:41;;40321:5;40306:41;;;40338:8;40306:41;;;;;;:::i;:::-;;;;;;;;40040:315;;;:::o;35036:313::-;35192:28;35202:4;35208:2;35212:7;35192:9;:28::i;:::-;35239:47;35262:4;35268:2;35272:7;35281:4;35239:22;:47::i;:::-;35231:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;35036:313;;;;:::o;30029:305::-;30131:4;30183:25;30168:40;;;:11;:40;;;;:105;;;;30240:33;30225:48;;;:11;:48;;;;30168:105;:158;;;;30290:36;30314:11;30290:23;:36::i;:::-;30168:158;30148:178;;30029:305;;;:::o;35662:127::-;35727:4;35779:1;35751:30;;:7;:16;35759:7;35751:16;;;;;;;;;;;;;;;;;;;;;:30;;;;35744:37;;35662:127;;;:::o;55248:227::-;8907:19;:17;:19::i;:::-;55422:45:::1;55449:4;55455:2;55459:7;55422:26;:45::i;:::-;55248:227:::0;;;:::o;43079:125::-;;;;:::o;9646:108::-;9713:8;:6;:8::i;:::-;9705:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;9646:108::o;36899:319::-;37028:18;37034:2;37038:7;37028:5;:18::i;:::-;37079:53;37110:1;37114:2;37118:7;37127:4;37079:22;:53::i;:::-;37057:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;36899:319;;;:::o;9461:108::-;9532:8;:6;:8::i;:::-;9531:9;9523:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;9461:108::o;41143:853::-;41297:4;41318:15;:2;:13;;;:15::i;:::-;41314:675;;;41370:2;41354:36;;;41391:12;:10;:12::i;:::-;41405:4;41411:7;41420:4;41354:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41350:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41612:1;41595:6;:13;:18;41591:328;;;41638:60;;;;;;;;;;:::i;:::-;;;;;;;;41591:328;41869:6;41863:13;41854:6;41850:2;41846:15;41839:38;41350:584;41486:41;;;41476:51;;;:6;:51;;;;41469:58;;;;;41314:675;41973:4;41966:11;;41143:853;;;;;;;:::o;51186:215::-;51288:4;51327:26;51312:41;;;:11;:41;;;;:81;;;;51357:36;51381:11;51357:23;:36::i;:::-;51312:81;51305:88;;51186:215;;;:::o;45898:589::-;46042:45;46069:4;46075:2;46079:7;46042:26;:45::i;:::-;46120:1;46104:18;;:4;:18;;;46100:187;;;46139:40;46171:7;46139:31;:40::i;:::-;46100:187;;;46209:2;46201:10;;:4;:10;;;46197:90;;46228:47;46261:4;46267:7;46228:32;:47::i;:::-;46197:90;46100:187;46315:1;46301:16;;:2;:16;;;46297:183;;;46334:45;46371:7;46334:36;:45::i;:::-;46297:183;;;46407:4;46401:10;;:2;:10;;;46397:83;;46428:40;46456:2;46460:7;46428:27;:40::i;:::-;46397:83;46297:183;45898:589;;;:::o;37554:439::-;37648:1;37634:16;;:2;:16;;;;37626:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;37707:16;37715:7;37707;:16::i;:::-;37706:17;37698:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;37769:45;37798:1;37802:2;37806:7;37769:20;:45::i;:::-;37844:1;37827:9;:13;37837:2;37827:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;37875:2;37856:7;:16;37864:7;37856:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;37920:7;37916:2;37895:33;;37912:1;37895:33;;;;;;;;;;;;37941:44;37969:1;37973:2;37977:7;37941:19;:44::i;:::-;37554:439;;:::o;11517:326::-;11577:4;11834:1;11812:7;:19;;;:23;11805:30;;11517:326;;;:::o;21673:157::-;21758:4;21797:25;21782:40;;;:11;:40;;;;21775:47;;21673:157;;;:::o;42568:126::-;;;;:::o;47210:164::-;47314:10;:17;;;;47287:15;:24;47303:7;47287:24;;;;;;;;;;;:44;;;;47342:10;47358:7;47342:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47210:164;:::o;48001:988::-;48267:22;48317:1;48292:22;48309:4;48292:16;:22::i;:::-;:26;;;;:::i;:::-;48267:51;;48329:18;48350:17;:26;48368:7;48350:26;;;;;;;;;;;;48329:47;;48497:14;48483:10;:28;48479:328;;48528:19;48550:12;:18;48563:4;48550:18;;;;;;;;;;;;;;;:34;48569:14;48550:34;;;;;;;;;;;;48528:56;;48634:11;48601:12;:18;48614:4;48601:18;;;;;;;;;;;;;;;:30;48620:10;48601:30;;;;;;;;;;;:44;;;;48751:10;48718:17;:30;48736:11;48718:30;;;;;;;;;;;:43;;;;48513:294;48479:328;48903:17;:26;48921:7;48903:26;;;;;;;;;;;48896:33;;;48947:12;:18;48960:4;48947:18;;;;;;;;;;;;;;;:34;48966:14;48947:34;;;;;;;;;;;48940:41;;;48082:907;;48001:988;;:::o;49284:1079::-;49537:22;49582:1;49562:10;:17;;;;:21;;;;:::i;:::-;49537:46;;49594:18;49615:15;:24;49631:7;49615:24;;;;;;;;;;;;49594:45;;49966:19;49988:10;49999:14;49988:26;;;;;;;;:::i;:::-;;;;;;;;;;49966:48;;50052:11;50027:10;50038;50027:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;50163:10;50132:15;:28;50148:11;50132:28;;;;;;;;;;;:41;;;;50304:15;:24;50320:7;50304:24;;;;;;;;;;;50297:31;;;50339:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;49355:1008;;;49284:1079;:::o;46788:221::-;46873:14;46890:20;46907:2;46890:16;:20::i;:::-;46873:37;;46948:7;46921:12;:16;46934:2;46921:16;;;;;;;;;;;;;;;:24;46938:6;46921:24;;;;;;;;;;;:34;;;;46995:6;46966:17;:26;46984:7;46966:26;;;;;;;;;;;:35;;;;46862:147;46788:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:137::-;3460:5;3498:6;3485:20;3476:29;;3514:32;3540:5;3514:32;:::i;:::-;3415:137;;;;:::o;3558:329::-;3617:6;3666:2;3654:9;3645:7;3641:23;3637:32;3634:119;;;3672:79;;:::i;:::-;3634:119;3792:1;3817:53;3862:7;3853:6;3842:9;3838:22;3817:53;:::i;:::-;3807:63;;3763:117;3558:329;;;;:::o;3893:474::-;3961:6;3969;4018:2;4006:9;3997:7;3993:23;3989:32;3986:119;;;4024:79;;:::i;:::-;3986:119;4144:1;4169:53;4214:7;4205:6;4194:9;4190:22;4169:53;:::i;:::-;4159:63;;4115:117;4271:2;4297:53;4342:7;4333:6;4322:9;4318:22;4297:53;:::i;:::-;4287:63;;4242:118;3893:474;;;;;:::o;4373:619::-;4450:6;4458;4466;4515:2;4503:9;4494:7;4490:23;4486:32;4483:119;;;4521:79;;:::i;:::-;4483:119;4641:1;4666:53;4711:7;4702:6;4691:9;4687:22;4666:53;:::i;:::-;4656:63;;4612:117;4768:2;4794:53;4839:7;4830:6;4819:9;4815:22;4794:53;:::i;:::-;4784:63;;4739:118;4896:2;4922:53;4967:7;4958:6;4947:9;4943:22;4922:53;:::i;:::-;4912:63;;4867:118;4373:619;;;;;:::o;4998:943::-;5093:6;5101;5109;5117;5166:3;5154:9;5145:7;5141:23;5137:33;5134:120;;;5173:79;;:::i;:::-;5134:120;5293:1;5318:53;5363:7;5354:6;5343:9;5339:22;5318:53;:::i;:::-;5308:63;;5264:117;5420:2;5446:53;5491:7;5482:6;5471:9;5467:22;5446:53;:::i;:::-;5436:63;;5391:118;5548:2;5574:53;5619:7;5610:6;5599:9;5595:22;5574:53;:::i;:::-;5564:63;;5519:118;5704:2;5693:9;5689:18;5676:32;5735:18;5727:6;5724:30;5721:117;;;5757:79;;:::i;:::-;5721:117;5862:62;5916:7;5907:6;5896:9;5892:22;5862:62;:::i;:::-;5852:72;;5647:287;4998:943;;;;;;;:::o;5947:468::-;6012:6;6020;6069:2;6057:9;6048:7;6044:23;6040:32;6037:119;;;6075:79;;:::i;:::-;6037:119;6195:1;6220:53;6265:7;6256:6;6245:9;6241:22;6220:53;:::i;:::-;6210:63;;6166:117;6322:2;6348:50;6390:7;6381:6;6370:9;6366:22;6348:50;:::i;:::-;6338:60;;6293:115;5947:468;;;;;:::o;6421:474::-;6489:6;6497;6546:2;6534:9;6525:7;6521:23;6517:32;6514:119;;;6552:79;;:::i;:::-;6514:119;6672:1;6697:53;6742:7;6733:6;6722:9;6718:22;6697:53;:::i;:::-;6687:63;;6643:117;6799:2;6825:53;6870:7;6861:6;6850:9;6846:22;6825:53;:::i;:::-;6815:63;;6770:118;6421:474;;;;;:::o;6901:472::-;6968:6;6976;7025:2;7013:9;7004:7;7000:23;6996:32;6993:119;;;7031:79;;:::i;:::-;6993:119;7151:1;7176:53;7221:7;7212:6;7201:9;7197:22;7176:53;:::i;:::-;7166:63;;7122:117;7278:2;7304:52;7348:7;7339:6;7328:9;7324:22;7304:52;:::i;:::-;7294:62;;7249:117;6901:472;;;;;:::o;7379:539::-;7463:6;7512:2;7500:9;7491:7;7487:23;7483:32;7480:119;;;7518:79;;:::i;:::-;7480:119;7666:1;7655:9;7651:17;7638:31;7696:18;7688:6;7685:30;7682:117;;;7718:79;;:::i;:::-;7682:117;7823:78;7893:7;7884:6;7873:9;7869:22;7823:78;:::i;:::-;7813:88;;7609:302;7379:539;;;;:::o;7924:327::-;7982:6;8031:2;8019:9;8010:7;8006:23;8002:32;7999:119;;;8037:79;;:::i;:::-;7999:119;8157:1;8182:52;8226:7;8217:6;8206:9;8202:22;8182:52;:::i;:::-;8172:62;;8128:116;7924:327;;;;:::o;8257:349::-;8326:6;8375:2;8363:9;8354:7;8350:23;8346:32;8343:119;;;8381:79;;:::i;:::-;8343:119;8501:1;8526:63;8581:7;8572:6;8561:9;8557:22;8526:63;:::i;:::-;8516:73;;8472:127;8257:349;;;;:::o;8612:509::-;8681:6;8730:2;8718:9;8709:7;8705:23;8701:32;8698:119;;;8736:79;;:::i;:::-;8698:119;8884:1;8873:9;8869:17;8856:31;8914:18;8906:6;8903:30;8900:117;;;8936:79;;:::i;:::-;8900:117;9041:63;9096:7;9087:6;9076:9;9072:22;9041:63;:::i;:::-;9031:73;;8827:287;8612:509;;;;:::o;9127:329::-;9186:6;9235:2;9223:9;9214:7;9210:23;9206:32;9203:119;;;9241:79;;:::i;:::-;9203:119;9361:1;9386:53;9431:7;9422:6;9411:9;9407:22;9386:53;:::i;:::-;9376:63;;9332:117;9127:329;;;;:::o;9462:474::-;9530:6;9538;9587:2;9575:9;9566:7;9562:23;9558:32;9555:119;;;9593:79;;:::i;:::-;9555:119;9713:1;9738:53;9783:7;9774:6;9763:9;9759:22;9738:53;:::i;:::-;9728:63;;9684:117;9840:2;9866:53;9911:7;9902:6;9891:9;9887:22;9866:53;:::i;:::-;9856:63;;9811:118;9462:474;;;;;:::o;9942:118::-;10029:24;10047:5;10029:24;:::i;:::-;10024:3;10017:37;9942:118;;:::o;10066:109::-;10147:21;10162:5;10147:21;:::i;:::-;10142:3;10135:34;10066:109;;:::o;10181:360::-;10267:3;10295:38;10327:5;10295:38;:::i;:::-;10349:70;10412:6;10407:3;10349:70;:::i;:::-;10342:77;;10428:52;10473:6;10468:3;10461:4;10454:5;10450:16;10428:52;:::i;:::-;10505:29;10527:6;10505:29;:::i;:::-;10500:3;10496:39;10489:46;;10271:270;10181:360;;;;:::o;10547:364::-;10635:3;10663:39;10696:5;10663:39;:::i;:::-;10718:71;10782:6;10777:3;10718:71;:::i;:::-;10711:78;;10798:52;10843:6;10838:3;10831:4;10824:5;10820:16;10798:52;:::i;:::-;10875:29;10897:6;10875:29;:::i;:::-;10870:3;10866:39;10859:46;;10639:272;10547:364;;;;:::o;10917:377::-;11023:3;11051:39;11084:5;11051:39;:::i;:::-;11106:89;11188:6;11183:3;11106:89;:::i;:::-;11099:96;;11204:52;11249:6;11244:3;11237:4;11230:5;11226:16;11204:52;:::i;:::-;11281:6;11276:3;11272:16;11265:23;;11027:267;10917:377;;;;:::o;11300:366::-;11442:3;11463:67;11527:2;11522:3;11463:67;:::i;:::-;11456:74;;11539:93;11628:3;11539:93;:::i;:::-;11657:2;11652:3;11648:12;11641:19;;11300:366;;;:::o;11672:::-;11814:3;11835:67;11899:2;11894:3;11835:67;:::i;:::-;11828:74;;11911:93;12000:3;11911:93;:::i;:::-;12029:2;12024:3;12020:12;12013:19;;11672:366;;;:::o;12044:::-;12186:3;12207:67;12271:2;12266:3;12207:67;:::i;:::-;12200:74;;12283:93;12372:3;12283:93;:::i;:::-;12401:2;12396:3;12392:12;12385:19;;12044:366;;;:::o;12416:::-;12558:3;12579:67;12643:2;12638:3;12579:67;:::i;:::-;12572:74;;12655:93;12744:3;12655:93;:::i;:::-;12773:2;12768:3;12764:12;12757:19;;12416:366;;;:::o;12788:::-;12930:3;12951:67;13015:2;13010:3;12951:67;:::i;:::-;12944:74;;13027:93;13116:3;13027:93;:::i;:::-;13145:2;13140:3;13136:12;13129:19;;12788:366;;;:::o;13160:::-;13302:3;13323:67;13387:2;13382:3;13323:67;:::i;:::-;13316:74;;13399:93;13488:3;13399:93;:::i;:::-;13517:2;13512:3;13508:12;13501:19;;13160:366;;;:::o;13532:::-;13674:3;13695:67;13759:2;13754:3;13695:67;:::i;:::-;13688:74;;13771:93;13860:3;13771:93;:::i;:::-;13889:2;13884:3;13880:12;13873:19;;13532:366;;;:::o;13904:::-;14046:3;14067:67;14131:2;14126:3;14067:67;:::i;:::-;14060:74;;14143:93;14232:3;14143:93;:::i;:::-;14261:2;14256:3;14252:12;14245:19;;13904:366;;;:::o;14276:::-;14418:3;14439:67;14503:2;14498:3;14439:67;:::i;:::-;14432:74;;14515:93;14604:3;14515:93;:::i;:::-;14633:2;14628:3;14624:12;14617:19;;14276:366;;;:::o;14648:::-;14790:3;14811:67;14875:2;14870:3;14811:67;:::i;:::-;14804:74;;14887:93;14976:3;14887:93;:::i;:::-;15005:2;15000:3;14996:12;14989:19;;14648:366;;;:::o;15020:::-;15162:3;15183:67;15247:2;15242:3;15183:67;:::i;:::-;15176:74;;15259:93;15348:3;15259:93;:::i;:::-;15377:2;15372:3;15368:12;15361:19;;15020:366;;;:::o;15392:::-;15534:3;15555:67;15619:2;15614:3;15555:67;:::i;:::-;15548:74;;15631:93;15720:3;15631:93;:::i;:::-;15749:2;15744:3;15740:12;15733:19;;15392:366;;;:::o;15764:::-;15906:3;15927:67;15991:2;15986:3;15927:67;:::i;:::-;15920:74;;16003:93;16092:3;16003:93;:::i;:::-;16121:2;16116:3;16112:12;16105:19;;15764:366;;;:::o;16136:::-;16278:3;16299:67;16363:2;16358:3;16299:67;:::i;:::-;16292:74;;16375:93;16464:3;16375:93;:::i;:::-;16493:2;16488:3;16484:12;16477:19;;16136:366;;;:::o;16508:::-;16650:3;16671:67;16735:2;16730:3;16671:67;:::i;:::-;16664:74;;16747:93;16836:3;16747:93;:::i;:::-;16865:2;16860:3;16856:12;16849:19;;16508:366;;;:::o;16880:::-;17022:3;17043:67;17107:2;17102:3;17043:67;:::i;:::-;17036:74;;17119:93;17208:3;17119:93;:::i;:::-;17237:2;17232:3;17228:12;17221:19;;16880:366;;;:::o;17252:::-;17394:3;17415:67;17479:2;17474:3;17415:67;:::i;:::-;17408:74;;17491:93;17580:3;17491:93;:::i;:::-;17609:2;17604:3;17600:12;17593:19;;17252:366;;;:::o;17624:::-;17766:3;17787:67;17851:2;17846:3;17787:67;:::i;:::-;17780:74;;17863:93;17952:3;17863:93;:::i;:::-;17981:2;17976:3;17972:12;17965:19;;17624:366;;;:::o;17996:::-;18138:3;18159:67;18223:2;18218:3;18159:67;:::i;:::-;18152:74;;18235:93;18324:3;18235:93;:::i;:::-;18353:2;18348:3;18344:12;18337:19;;17996:366;;;:::o;18368:::-;18510:3;18531:67;18595:2;18590:3;18531:67;:::i;:::-;18524:74;;18607:93;18696:3;18607:93;:::i;:::-;18725:2;18720:3;18716:12;18709:19;;18368:366;;;:::o;18740:118::-;18827:24;18845:5;18827:24;:::i;:::-;18822:3;18815:37;18740:118;;:::o;18864:275::-;18996:3;19018:95;19109:3;19100:6;19018:95;:::i;:::-;19011:102;;19130:3;19123:10;;18864:275;;;;:::o;19145:222::-;19238:4;19276:2;19265:9;19261:18;19253:26;;19289:71;19357:1;19346:9;19342:17;19333:6;19289:71;:::i;:::-;19145:222;;;;:::o;19373:640::-;19568:4;19606:3;19595:9;19591:19;19583:27;;19620:71;19688:1;19677:9;19673:17;19664:6;19620:71;:::i;:::-;19701:72;19769:2;19758:9;19754:18;19745:6;19701:72;:::i;:::-;19783;19851:2;19840:9;19836:18;19827:6;19783:72;:::i;:::-;19902:9;19896:4;19892:20;19887:2;19876:9;19872:18;19865:48;19930:76;20001:4;19992:6;19930:76;:::i;:::-;19922:84;;19373:640;;;;;;;:::o;20019:332::-;20140:4;20178:2;20167:9;20163:18;20155:26;;20191:71;20259:1;20248:9;20244:17;20235:6;20191:71;:::i;:::-;20272:72;20340:2;20329:9;20325:18;20316:6;20272:72;:::i;:::-;20019:332;;;;;:::o;20357:210::-;20444:4;20482:2;20471:9;20467:18;20459:26;;20495:65;20557:1;20546:9;20542:17;20533:6;20495:65;:::i;:::-;20357:210;;;;:::o;20573:313::-;20686:4;20724:2;20713:9;20709:18;20701:26;;20773:9;20767:4;20763:20;20759:1;20748:9;20744:17;20737:47;20801:78;20874:4;20865:6;20801:78;:::i;:::-;20793:86;;20573:313;;;;:::o;20892:419::-;21058:4;21096:2;21085:9;21081:18;21073:26;;21145:9;21139:4;21135:20;21131:1;21120:9;21116:17;21109:47;21173:131;21299:4;21173:131;:::i;:::-;21165:139;;20892:419;;;:::o;21317:::-;21483:4;21521:2;21510:9;21506:18;21498:26;;21570:9;21564:4;21560:20;21556:1;21545:9;21541:17;21534:47;21598:131;21724:4;21598:131;:::i;:::-;21590:139;;21317:419;;;:::o;21742:::-;21908:4;21946:2;21935:9;21931:18;21923:26;;21995:9;21989:4;21985:20;21981:1;21970:9;21966:17;21959:47;22023:131;22149:4;22023:131;:::i;:::-;22015:139;;21742:419;;;:::o;22167:::-;22333:4;22371:2;22360:9;22356:18;22348:26;;22420:9;22414:4;22410:20;22406:1;22395:9;22391:17;22384:47;22448:131;22574:4;22448:131;:::i;:::-;22440:139;;22167:419;;;:::o;22592:::-;22758:4;22796:2;22785:9;22781:18;22773:26;;22845:9;22839:4;22835:20;22831:1;22820:9;22816:17;22809:47;22873:131;22999:4;22873:131;:::i;:::-;22865:139;;22592:419;;;:::o;23017:::-;23183:4;23221:2;23210:9;23206:18;23198:26;;23270:9;23264:4;23260:20;23256:1;23245:9;23241:17;23234:47;23298:131;23424:4;23298:131;:::i;:::-;23290:139;;23017:419;;;:::o;23442:::-;23608:4;23646:2;23635:9;23631:18;23623:26;;23695:9;23689:4;23685:20;23681:1;23670:9;23666:17;23659:47;23723:131;23849:4;23723:131;:::i;:::-;23715:139;;23442:419;;;:::o;23867:::-;24033:4;24071:2;24060:9;24056:18;24048:26;;24120:9;24114:4;24110:20;24106:1;24095:9;24091:17;24084:47;24148:131;24274:4;24148:131;:::i;:::-;24140:139;;23867:419;;;:::o;24292:::-;24458:4;24496:2;24485:9;24481:18;24473:26;;24545:9;24539:4;24535:20;24531:1;24520:9;24516:17;24509:47;24573:131;24699:4;24573:131;:::i;:::-;24565:139;;24292:419;;;:::o;24717:::-;24883:4;24921:2;24910:9;24906:18;24898:26;;24970:9;24964:4;24960:20;24956:1;24945:9;24941:17;24934:47;24998:131;25124:4;24998:131;:::i;:::-;24990:139;;24717:419;;;:::o;25142:::-;25308:4;25346:2;25335:9;25331:18;25323:26;;25395:9;25389:4;25385:20;25381:1;25370:9;25366:17;25359:47;25423:131;25549:4;25423:131;:::i;:::-;25415:139;;25142:419;;;:::o;25567:::-;25733:4;25771:2;25760:9;25756:18;25748:26;;25820:9;25814:4;25810:20;25806:1;25795:9;25791:17;25784:47;25848:131;25974:4;25848:131;:::i;:::-;25840:139;;25567:419;;;:::o;25992:::-;26158:4;26196:2;26185:9;26181:18;26173:26;;26245:9;26239:4;26235:20;26231:1;26220:9;26216:17;26209:47;26273:131;26399:4;26273:131;:::i;:::-;26265:139;;25992:419;;;:::o;26417:::-;26583:4;26621:2;26610:9;26606:18;26598:26;;26670:9;26664:4;26660:20;26656:1;26645:9;26641:17;26634:47;26698:131;26824:4;26698:131;:::i;:::-;26690:139;;26417:419;;;:::o;26842:::-;27008:4;27046:2;27035:9;27031:18;27023:26;;27095:9;27089:4;27085:20;27081:1;27070:9;27066:17;27059:47;27123:131;27249:4;27123:131;:::i;:::-;27115:139;;26842:419;;;:::o;27267:::-;27433:4;27471:2;27460:9;27456:18;27448:26;;27520:9;27514:4;27510:20;27506:1;27495:9;27491:17;27484:47;27548:131;27674:4;27548:131;:::i;:::-;27540:139;;27267:419;;;:::o;27692:::-;27858:4;27896:2;27885:9;27881:18;27873:26;;27945:9;27939:4;27935:20;27931:1;27920:9;27916:17;27909:47;27973:131;28099:4;27973:131;:::i;:::-;27965:139;;27692:419;;;:::o;28117:::-;28283:4;28321:2;28310:9;28306:18;28298:26;;28370:9;28364:4;28360:20;28356:1;28345:9;28341:17;28334:47;28398:131;28524:4;28398:131;:::i;:::-;28390:139;;28117:419;;;:::o;28542:::-;28708:4;28746:2;28735:9;28731:18;28723:26;;28795:9;28789:4;28785:20;28781:1;28770:9;28766:17;28759:47;28823:131;28949:4;28823:131;:::i;:::-;28815:139;;28542:419;;;:::o;28967:::-;29133:4;29171:2;29160:9;29156:18;29148:26;;29220:9;29214:4;29210:20;29206:1;29195:9;29191:17;29184:47;29248:131;29374:4;29248:131;:::i;:::-;29240:139;;28967:419;;;:::o;29392:222::-;29485:4;29523:2;29512:9;29508:18;29500:26;;29536:71;29604:1;29593:9;29589:17;29580:6;29536:71;:::i;:::-;29392:222;;;;:::o;29620:129::-;29654:6;29681:20;;:::i;:::-;29671:30;;29710:33;29738:4;29730:6;29710:33;:::i;:::-;29620:129;;;:::o;29755:75::-;29788:6;29821:2;29815:9;29805:19;;29755:75;:::o;29836:311::-;29913:4;30003:18;29995:6;29992:30;29989:56;;;30025:18;;:::i;:::-;29989:56;30075:4;30067:6;30063:17;30055:25;;30135:4;30129;30125:15;30117:23;;29836:311;;;:::o;30153:307::-;30214:4;30304:18;30296:6;30293:30;30290:56;;;30326:18;;:::i;:::-;30290:56;30364:29;30386:6;30364:29;:::i;:::-;30356:37;;30448:4;30442;30438:15;30430:23;;30153:307;;;:::o;30466:308::-;30528:4;30618:18;30610:6;30607:30;30604:56;;;30640:18;;:::i;:::-;30604:56;30678:29;30700:6;30678:29;:::i;:::-;30670:37;;30762:4;30756;30752:15;30744:23;;30466:308;;;:::o;30780:98::-;30831:6;30865:5;30859:12;30849:22;;30780:98;;;:::o;30884:99::-;30936:6;30970:5;30964:12;30954:22;;30884:99;;;:::o;30989:168::-;31072:11;31106:6;31101:3;31094:19;31146:4;31141:3;31137:14;31122:29;;30989:168;;;;:::o;31163:169::-;31247:11;31281:6;31276:3;31269:19;31321:4;31316:3;31312:14;31297:29;;31163:169;;;;:::o;31338:148::-;31440:11;31477:3;31462:18;;31338:148;;;;:::o;31492:305::-;31532:3;31551:20;31569:1;31551:20;:::i;:::-;31546:25;;31585:20;31603:1;31585:20;:::i;:::-;31580:25;;31739:1;31671:66;31667:74;31664:1;31661:81;31658:107;;;31745:18;;:::i;:::-;31658:107;31789:1;31786;31782:9;31775:16;;31492:305;;;;:::o;31803:185::-;31843:1;31860:20;31878:1;31860:20;:::i;:::-;31855:25;;31894:20;31912:1;31894:20;:::i;:::-;31889:25;;31933:1;31923:35;;31938:18;;:::i;:::-;31923:35;31980:1;31977;31973:9;31968:14;;31803:185;;;;:::o;31994:348::-;32034:7;32057:20;32075:1;32057:20;:::i;:::-;32052:25;;32091:20;32109:1;32091:20;:::i;:::-;32086:25;;32279:1;32211:66;32207:74;32204:1;32201:81;32196:1;32189:9;32182:17;32178:105;32175:131;;;32286:18;;:::i;:::-;32175:131;32334:1;32331;32327:9;32316:20;;31994:348;;;;:::o;32348:191::-;32388:4;32408:20;32426:1;32408:20;:::i;:::-;32403:25;;32442:20;32460:1;32442:20;:::i;:::-;32437:25;;32481:1;32478;32475:8;32472:34;;;32486:18;;:::i;:::-;32472:34;32531:1;32528;32524:9;32516:17;;32348:191;;;;:::o;32545:96::-;32582:7;32611:24;32629:5;32611:24;:::i;:::-;32600:35;;32545:96;;;:::o;32647:90::-;32681:7;32724:5;32717:13;32710:21;32699:32;;32647:90;;;:::o;32743:149::-;32779:7;32819:66;32812:5;32808:78;32797:89;;32743:149;;;:::o;32898:126::-;32935:7;32975:42;32968:5;32964:54;32953:65;;32898:126;;;:::o;33030:77::-;33067:7;33096:5;33085:16;;33030:77;;;:::o;33113:86::-;33148:7;33188:4;33181:5;33177:16;33166:27;;33113:86;;;:::o;33205:109::-;33241:7;33281:26;33274:5;33270:38;33259:49;;33205:109;;;:::o;33320:154::-;33404:6;33399:3;33394;33381:30;33466:1;33457:6;33452:3;33448:16;33441:27;33320:154;;;:::o;33480:307::-;33548:1;33558:113;33572:6;33569:1;33566:13;33558:113;;;33657:1;33652:3;33648:11;33642:18;33638:1;33633:3;33629:11;33622:39;33594:2;33591:1;33587:10;33582:15;;33558:113;;;33689:6;33686:1;33683:13;33680:101;;;33769:1;33760:6;33755:3;33751:16;33744:27;33680:101;33529:258;33480:307;;;:::o;33793:320::-;33837:6;33874:1;33868:4;33864:12;33854:22;;33921:1;33915:4;33911:12;33942:18;33932:81;;33998:4;33990:6;33986:17;33976:27;;33932:81;34060:2;34052:6;34049:14;34029:18;34026:38;34023:84;;;34079:18;;:::i;:::-;34023:84;33844:269;33793:320;;;:::o;34119:281::-;34202:27;34224:4;34202:27;:::i;:::-;34194:6;34190:40;34332:6;34320:10;34317:22;34296:18;34284:10;34281:34;34278:62;34275:88;;;34343:18;;:::i;:::-;34275:88;34383:10;34379:2;34372:22;34162:238;34119:281;;:::o;34406:167::-;34443:3;34466:22;34482:5;34466:22;:::i;:::-;34457:31;;34510:4;34503:5;34500:15;34497:41;;;34518:18;;:::i;:::-;34497:41;34565:1;34558:5;34554:13;34547:20;;34406:167;;;:::o;34579:180::-;34627:77;34624:1;34617:88;34724:4;34721:1;34714:15;34748:4;34745:1;34738:15;34765:180;34813:77;34810:1;34803:88;34910:4;34907:1;34900:15;34934:4;34931:1;34924:15;34951:180;34999:77;34996:1;34989:88;35096:4;35093:1;35086:15;35120:4;35117:1;35110:15;35137:180;35185:77;35182:1;35175:88;35282:4;35279:1;35272:15;35306:4;35303:1;35296:15;35323:180;35371:77;35368:1;35361:88;35468:4;35465:1;35458:15;35492:4;35489:1;35482:15;35509:180;35557:77;35554:1;35547:88;35654:4;35651:1;35644:15;35678:4;35675:1;35668:15;35695:117;35804:1;35801;35794:12;35818:117;35927:1;35924;35917:12;35941:117;36050:1;36047;36040:12;36064:117;36173:1;36170;36163:12;36187:117;36296:1;36293;36286:12;36310:102;36351:6;36402:2;36398:7;36393:2;36386:5;36382:14;36378:28;36368:38;;36310:102;;;:::o;36418:170::-;36558:22;36554:1;36546:6;36542:14;36535:46;36418:170;:::o;36594:230::-;36734:34;36730:1;36722:6;36718:14;36711:58;36803:13;36798:2;36790:6;36786:15;36779:38;36594:230;:::o;36830:237::-;36970:34;36966:1;36958:6;36954:14;36947:58;37039:20;37034:2;37026:6;37022:15;37015:45;36830:237;:::o;37073:225::-;37213:34;37209:1;37201:6;37197:14;37190:58;37282:8;37277:2;37269:6;37265:15;37258:33;37073:225;:::o;37304:224::-;37444:34;37440:1;37432:6;37428:14;37421:58;37513:7;37508:2;37500:6;37496:15;37489:32;37304:224;:::o;37534:178::-;37674:30;37670:1;37662:6;37658:14;37651:54;37534:178;:::o;37718:223::-;37858:34;37854:1;37846:6;37842:14;37835:58;37927:6;37922:2;37914:6;37910:15;37903:31;37718:223;:::o;37947:175::-;38087:27;38083:1;38075:6;38071:14;38064:51;37947:175;:::o;38128:166::-;38268:18;38264:1;38256:6;38252:14;38245:42;38128:166;:::o;38300:228::-;38440:34;38436:1;38428:6;38424:14;38417:58;38509:11;38504:2;38496:6;38492:15;38485:36;38300:228;:::o;38534:175::-;38674:27;38670:1;38662:6;38658:14;38651:51;38534:175;:::o;38715:249::-;38855:34;38851:1;38843:6;38839:14;38832:58;38924:32;38919:2;38911:6;38907:15;38900:57;38715:249;:::o;38970:182::-;39110:34;39106:1;39098:6;39094:14;39087:58;38970:182;:::o;39158:::-;39298:34;39294:1;39286:6;39282:14;39275:58;39158:182;:::o;39346:174::-;39486:26;39482:1;39474:6;39470:14;39463:50;39346:174;:::o;39526:220::-;39666:34;39662:1;39654:6;39650:14;39643:58;39735:3;39730:2;39722:6;39718:15;39711:28;39526:220;:::o;39752:231::-;39892:34;39888:1;39880:6;39876:14;39869:58;39961:14;39956:2;39948:6;39944:15;39937:39;39752:231;:::o;39989:229::-;40129:34;40125:1;40117:6;40113:14;40106:58;40198:12;40193:2;40185:6;40181:15;40174:37;39989:229;:::o;40224:233::-;40364:34;40360:1;40352:6;40348:14;40341:58;40433:16;40428:2;40420:6;40416:15;40409:41;40224:233;:::o;40463:175::-;40603:27;40599:1;40591:6;40587:14;40580:51;40463:175;:::o;40644:122::-;40717:24;40735:5;40717:24;:::i;:::-;40710:5;40707:35;40697:63;;40756:1;40753;40746:12;40697:63;40644:122;:::o;40772:116::-;40842:21;40857:5;40842:21;:::i;:::-;40835:5;40832:32;40822:60;;40878:1;40875;40868:12;40822:60;40772:116;:::o;40894:120::-;40966:23;40983:5;40966:23;:::i;:::-;40959:5;40956:34;40946:62;;41004:1;41001;40994:12;40946:62;40894:120;:::o;41020:122::-;41093:24;41111:5;41093:24;:::i;:::-;41086:5;41083:35;41073:63;;41132:1;41129;41122:12;41073:63;41020:122;:::o;41148:120::-;41220:23;41237:5;41220:23;:::i;:::-;41213:5;41210:34;41200:62;;41258:1;41255;41248:12;41200:62;41148:120;:::o
Swarm Source
ipfs://aba82d5263b4203a045d9edac2840fa6ed190e06fc418c16ff5049c49e6c57de
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.