ERC-721
Overview
Max Total Supply
888 Horizon
Holders
152
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 HorizonLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Horizon
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-02 */ // File: contracts/horizon.sol /** *Submitted for verification at Etherscan.io on 2022-02-28 */ // File: contracts/horizon.sol /** *Submitted for verification at Etherscan.io on 2022-02-25 */ // File: contracts/horizon.sol /** *Submitted for verification at Etherscan.io on 2022-02-23 */ /** *Submitted for verification at Etherscan.io on 2022-02-14 */ // File: contracts/horizon.sol /** *Submitted for verification at Etherscan.io on 2022-01-18 */ // File: contracts/horizon.sol /** *Submitted for verification at Etherscan.io on 2022-01-18 */ /** *Submitted for verification at Etherscan.io on 2022-01-18 */ // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // 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/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/interfaces/IERC20.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/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 v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (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 `IERC721.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/interfaces/IERC165.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // 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 v4.4.1 (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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (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 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: contracts/ERC721A.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); // require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/horizon.sol //SPDX-License-Identifier: MIT //Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) pragma solidity ^0.8.0; contract Horizon is ERC721A, IERC2981, Ownable, ReentrancyGuard { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private tokenCounter; string private baseURI = "ipfs://QmWW78vmtyNtKRzdMEfHpLLaXeDBT9xwz7MBV1jEShjXuu"; uint256 public constant MAX_MINTS_PER_TX = 5; uint256 public maxSupply = 888; uint256 public constant PUBLIC_SALE_PRICE = 0.08 ether; bool public isPublicSaleActive = false; // ============ ACCESS CONTROL/SANITY MODIFIERS ============ modifier publicSaleActive() { require(isPublicSaleActive, "Public sale is not open"); _; } modifier maxMintsPerTX(uint256 numberOfTokens) { require( numberOfTokens <= MAX_MINTS_PER_TX, "Max mints per transaction exceeded" ); _; } modifier canMintNFTs(uint256 numberOfTokens) { require( totalSupply() + numberOfTokens <= maxSupply, "Not enough mints remaining to mint" ); _; } constructor( ) ERC721A("Horizon by Elizabeth", "Horizon", 100, maxSupply) { } modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) { require( (price * numberOfTokens) == msg.value, "Incorrect ETH value sent" ); _; } // ============ PUBLIC FUNCTIONS FOR MINTING ============ function mint(uint256 numberOfTokens) external payable nonReentrant publicSaleActive isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens) canMintNFTs(numberOfTokens) maxMintsPerTX(numberOfTokens) { _safeMint(msg.sender, numberOfTokens); } // ============ PUBLIC READ-ONLY FUNCTIONS ============ function getBaseURI() external view returns (string memory) { return baseURI; } // ============ OWNER-ONLY ADMIN FUNCTIONS ============ function setBaseURI(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function withdrawTokens(IERC20 token) public onlyOwner { uint256 balance = token.balanceOf(address(this)); token.transfer(msg.sender, balance); } // ============ SUPPORTING FUNCTIONS ============ function nextTokenId() private returns (uint256) { tokenCounter.increment(); return tokenCounter.current(); } // ============ FUNCTION OVERRIDES ============ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, IERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Nonexistent token"); return string(abi.encodePacked(baseURI, "/", (tokenId+1).toString(), ".json")); } /** * @dev See {IERC165-royaltyInfo}. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view override returns (address receiver, uint256 royaltyAmount) { require(_exists(tokenId), "Nonexistent token"); return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100)); } } // These contract definitions are used to create a reference to the OpenSea // ProxyRegistry contract by using the registry's address (see isApprovedForAll). contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c060405260008055600060075560405180606001604052806035815260200162004cf560359139600b90805190602001906200003e929190620002ad565b50610378600c556000600d60006101000a81548160ff0219169083151502179055503480156200006d57600080fd5b506040518060400160405280601481526020017f486f72697a6f6e20627920456c697a61626574680000000000000000000000008152506040518060400160405280600781526020017f486f72697a6f6e000000000000000000000000000000000000000000000000008152506064600c546000811162000125576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011c90620003cd565b60405180910390fd5b600082116200016b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016290620003ab565b60405180910390fd5b836001908051906020019062000183929190620002ad565b5082600290805190602001906200019c929190620002ad565b508160a08181525050806080818152505050505050620001d1620001c5620001df60201b60201c565b620001e760201b60201c565b600160098190555062000503565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002bb9062000400565b90600052602060002090601f016020900481019282620002df57600085556200032b565b82601f10620002fa57805160ff19168380011785556200032b565b828001600101855582156200032b579182015b828111156200032a5782518255916020019190600101906200030d565b5b5090506200033a91906200033e565b5090565b5b80821115620003595760008160009055506001016200033f565b5090565b60006200036c602783620003ef565b9150620003798262000465565b604082019050919050565b600062000393602e83620003ef565b9150620003a082620004b4565b604082019050919050565b60006020820190508181036000830152620003c6816200035d565b9050919050565b60006020820190508181036000830152620003e88162000384565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200041957607f821691505b6020821081141562000430576200042f62000436565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516147c86200052d6000396000818161218b01526121b40152600050506147c86000f3fe6080604052600436106101d85760003560e01c806355f804b311610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106b0578063d7224ba0146106db578063e985e9c514610706578063f2fde38b14610743576101d8565b8063a22cb465146105f6578063b88d4fde1461061f578063c6a91b4214610648578063c87b56dd14610673576101d8565b8063715018a6116100d1578063715018a61461056d5780638da5cb5b1461058457806395d89b41146105af578063a0712d68146105da576101d8565b806355f804b31461049f5780636352211e146104c857806370a0823114610505578063714c539814610542576101d8565b806323b872dd1161017a5780633ccfd60b116101495780633ccfd60b146103f957806342842e0e1461041057806349df728c146104395780634f6ccce714610462576101d8565b806323b872dd1461032c57806328cad13d146103555780632a55205a1461037e5780632f745c59146103bc576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad57806318160ddd146102d65780631e84c41314610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a57806307e89ec014610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061309d565b61076c565b60405161021191906137ae565b60405180910390f35b34801561022657600080fd5b5061022f6107e6565b60405161023c91906137c9565b60405180910390f35b34801561025157600080fd5b5061025a610878565b6040516102679190613aeb565b60405180910390f35b34801561027c57600080fd5b506102976004803603810190610292919061316d565b610884565b6040516102a4919061371e565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190613003565b610909565b005b3480156102e257600080fd5b506102eb610a22565b6040516102f89190613aeb565b60405180910390f35b34801561030d57600080fd5b50610316610a2b565b60405161032391906137ae565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612eed565b610a3e565b005b34801561036157600080fd5b5061037c60048036038101906103779190613043565b610a4e565b005b34801561038a57600080fd5b506103a560048036038101906103a091906131c7565b610ae7565b6040516103b3929190613785565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190613003565b610b53565b6040516103f09190613aeb565b60405180910390f35b34801561040557600080fd5b5061040e610d51565b005b34801561041c57600080fd5b5061043760048036038101906104329190612eed565b610e1c565b005b34801561044557600080fd5b50610460600480360381019061045b91906130f7565b610e3c565b005b34801561046e57600080fd5b506104896004803603810190610484919061316d565b610fd7565b6040516104969190613aeb565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190613124565b61102a565b005b3480156104d457600080fd5b506104ef60048036038101906104ea919061316d565b6110c0565b6040516104fc919061371e565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190612e80565b6110d6565b6040516105399190613aeb565b60405180910390f35b34801561054e57600080fd5b506105576111bf565b60405161056491906137c9565b60405180910390f35b34801561057957600080fd5b50610582611251565b005b34801561059057600080fd5b506105996112d9565b6040516105a6919061371e565b60405180910390f35b3480156105bb57600080fd5b506105c4611303565b6040516105d191906137c9565b60405180910390f35b6105f460048036038101906105ef919061316d565b611395565b005b34801561060257600080fd5b5061061d60048036038101906106189190612fc3565b61153f565b005b34801561062b57600080fd5b5061064660048036038101906106419190612f40565b6116c0565b005b34801561065457600080fd5b5061065d61171c565b60405161066a9190613aeb565b60405180910390f35b34801561067f57600080fd5b5061069a6004803603810190610695919061316d565b611721565b6040516106a791906137c9565b60405180910390f35b3480156106bc57600080fd5b506106c56117a9565b6040516106d29190613aeb565b60405180910390f35b3480156106e757600080fd5b506106f06117af565b6040516106fd9190613aeb565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190612ead565b6117b5565b60405161073a91906137ae565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190612e80565b611849565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107df57506107de82611941565b5b9050919050565b6060600180546107f590613e82565b80601f016020809104026020016040519081016040528092919081815260200182805461082190613e82565b801561086e5780601f106108435761010080835404028352916020019161086e565b820191906000526020600020905b81548152906001019060200180831161085157829003601f168201915b5050505050905090565b67011c37937e08000081565b600061088f82611a8b565b6108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c590613acb565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610914826110c0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c906139ab565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a4611a98565b73ffffffffffffffffffffffffffffffffffffffff1614806109d357506109d2816109cd611a98565b6117b5565b5b610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a09906138eb565b60405180910390fd5b610a1d838383611aa0565b505050565b60008054905090565b600d60009054906101000a900460ff1681565b610a49838383611b52565b505050565b610a56611a98565b73ffffffffffffffffffffffffffffffffffffffff16610a746112d9565b73ffffffffffffffffffffffffffffffffffffffff1614610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac19061394b565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600080610af384611a8b565b610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b29906138cb565b60405180910390fd5b30610b48610b4185600561210b565b6064612121565b915091509250929050565b6000610b5e836110d6565b8210610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b96906137eb565b60405180910390fd5b6000610ba9610a22565b905060008060005b83811015610d0f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ca357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cfb5786841415610cec578195505050505050610d4b565b8380610cf790613ee5565b9450505b508080610d0790613ee5565b915050610bb1565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290613a4b565b60405180910390fd5b92915050565b610d59611a98565b73ffffffffffffffffffffffffffffffffffffffff16610d776112d9565b73ffffffffffffffffffffffffffffffffffffffff1614610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc49061394b565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e18573d6000803e3d6000fd5b5050565b610e37838383604051806020016040528060008152506116c0565b505050565b610e44611a98565b73ffffffffffffffffffffffffffffffffffffffff16610e626112d9565b73ffffffffffffffffffffffffffffffffffffffff1614610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf9061394b565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ef3919061371e565b60206040518083038186803b158015610f0b57600080fd5b505afa158015610f1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f43919061319a565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610f80929190613785565b602060405180830381600087803b158015610f9a57600080fd5b505af1158015610fae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd29190613070565b505050565b6000610fe1610a22565b8210611022576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110199061384b565b60405180910390fd5b819050919050565b611032611a98565b73ffffffffffffffffffffffffffffffffffffffff166110506112d9565b73ffffffffffffffffffffffffffffffffffffffff16146110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d9061394b565b60405180910390fd5b80600b90805190602001906110bc929190612c1b565b5050565b60006110cb82612137565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e9061390b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546111ce90613e82565b80601f01602080910402602001604051908101604052809291908181526020018280546111fa90613e82565b80156112475780601f1061121c57610100808354040283529160200191611247565b820191906000526020600020905b81548152906001019060200180831161122a57829003601f168201915b5050505050905090565b611259611a98565b73ffffffffffffffffffffffffffffffffffffffff166112776112d9565b73ffffffffffffffffffffffffffffffffffffffff16146112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c49061394b565b60405180910390fd5b6112d7600061233a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461131290613e82565b80601f016020809104026020016040519081016040528092919081815260200182805461133e90613e82565b801561138b5780601f106113605761010080835404028352916020019161138b565b820191906000526020600020905b81548152906001019060200180831161136e57829003601f168201915b5050505050905090565b600260095414156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290613a6b565b60405180910390fd5b6002600981905550600d60009054906101000a900460ff16611432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142990613aab565b60405180910390fd5b67011c37937e080000813481836114499190613cb2565b14611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090613a2b565b60405180910390fd5b82600c5481611496610a22565b6114a09190613c2b565b11156114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d89061386b565b60405180910390fd5b836005811115611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d906138ab565b60405180910390fd5b6115303386612400565b50505050600160098190555050565b611547611a98565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac9061396b565b60405180910390fd5b80600660006115c2611a98565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661166f611a98565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b491906137ae565b60405180910390a35050565b6116cb848484611b52565b6116d78484848461241e565b611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d906139cb565b60405180910390fd5b50505050565b600581565b606061172c82611a8b565b61176b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611762906138cb565b60405180910390fd5b600b61178260018461177d9190613c2b565b6125b5565b6040516020016117939291906136e4565b6040516020818303038152906040529050919050565b600c5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611851611a98565b73ffffffffffffffffffffffffffffffffffffffff1661186f6112d9565b73ffffffffffffffffffffffffffffffffffffffff16146118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc9061394b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c9061380b565b60405180910390fd5b61193e8161233a565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a0c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a7457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a845750611a8382612716565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b5d82612137565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b84611a98565b73ffffffffffffffffffffffffffffffffffffffff161480611be05750611ba9611a98565b73ffffffffffffffffffffffffffffffffffffffff16611bc884610884565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bfc5750611bfb8260000151611bf6611a98565b6117b5565b5b905080611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c359061398b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca79061392b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d179061388b565b60405180910390fd5b611d2d8585856001612780565b611d3d6000848460000151611aa0565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611dab9190613d0c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e4f9190613be5565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f559190613c2b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561209b57611fcb81611a8b565b1561209a576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121038686866001612786565b505050505050565b600081836121199190613cb2565b905092915050565b6000818361212f9190613c81565b905092915050565b61213f612ca1565b61214882611a8b565b612187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217e9061382b565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106121eb5760017f0000000000000000000000000000000000000000000000000000000000000000846121de9190613d40565b6121e89190613c2b565b90505b60008390505b8181106122f9576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122e557809350505050612335565b5080806122f190613e58565b9150506121f1565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232c90613a8b565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61241a82826040518060200160405280600081525061278c565b5050565b600061243f8473ffffffffffffffffffffffffffffffffffffffff16612c08565b156125a8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612468611a98565b8786866040518563ffffffff1660e01b815260040161248a9493929190613739565b602060405180830381600087803b1580156124a457600080fd5b505af19250505080156124d557506040513d601f19601f820116820180604052508101906124d291906130ca565b60015b612558573d8060008114612505576040519150601f19603f3d011682016040523d82523d6000602084013e61250a565b606091505b50600081511415612550576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612547906139cb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125ad565b600190505b949350505050565b606060008214156125fd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612711565b600082905060005b6000821461262f57808061261890613ee5565b915050600a826126289190613c81565b9150612605565b60008167ffffffffffffffff81111561264b5761264a61401b565b5b6040519080825280601f01601f19166020018201604052801561267d5781602001600182028036833780820191505090505b5090505b6000851461270a576001826126969190613d40565b9150600a856126a59190613f2e565b60306126b19190613c2b565b60f81b8183815181106126c7576126c6613fec565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127039190613c81565b9450612681565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f990613a0b565b60405180910390fd5b61280b81611a8b565b1561284b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612842906139eb565b60405180910390fd5b6128586000858386612780565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516129559190613be5565b6fffffffffffffffffffffffffffffffff16815260200185836020015161297c9190613be5565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612beb57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b8b600088848861241e565b612bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc1906139cb565b60405180910390fd5b8180612bd590613ee5565b9250508080612be390613ee5565b915050612b1a565b5080600081905550612c006000878588612786565b505050505050565b600080823b905060008111915050919050565b828054612c2790613e82565b90600052602060002090601f016020900481019282612c495760008555612c90565b82601f10612c6257805160ff1916838001178555612c90565b82800160010185558215612c90579182015b82811115612c8f578251825591602001919060010190612c74565b5b509050612c9d9190612cdb565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612cf4576000816000905550600101612cdc565b5090565b6000612d0b612d0684613b2b565b613b06565b905082815260208101848484011115612d2757612d2661404f565b5b612d32848285613e16565b509392505050565b6000612d4d612d4884613b5c565b613b06565b905082815260208101848484011115612d6957612d6861404f565b5b612d74848285613e16565b509392505050565b600081359050612d8b8161471f565b92915050565b600081359050612da081614736565b92915050565b600081519050612db581614736565b92915050565b600081359050612dca8161474d565b92915050565b600081519050612ddf8161474d565b92915050565b600082601f830112612dfa57612df961404a565b5b8135612e0a848260208601612cf8565b91505092915050565b600081359050612e2281614764565b92915050565b600082601f830112612e3d57612e3c61404a565b5b8135612e4d848260208601612d3a565b91505092915050565b600081359050612e658161477b565b92915050565b600081519050612e7a8161477b565b92915050565b600060208284031215612e9657612e95614059565b5b6000612ea484828501612d7c565b91505092915050565b60008060408385031215612ec457612ec3614059565b5b6000612ed285828601612d7c565b9250506020612ee385828601612d7c565b9150509250929050565b600080600060608486031215612f0657612f05614059565b5b6000612f1486828701612d7c565b9350506020612f2586828701612d7c565b9250506040612f3686828701612e56565b9150509250925092565b60008060008060808587031215612f5a57612f59614059565b5b6000612f6887828801612d7c565b9450506020612f7987828801612d7c565b9350506040612f8a87828801612e56565b925050606085013567ffffffffffffffff811115612fab57612faa614054565b5b612fb787828801612de5565b91505092959194509250565b60008060408385031215612fda57612fd9614059565b5b6000612fe885828601612d7c565b9250506020612ff985828601612d91565b9150509250929050565b6000806040838503121561301a57613019614059565b5b600061302885828601612d7c565b925050602061303985828601612e56565b9150509250929050565b60006020828403121561305957613058614059565b5b600061306784828501612d91565b91505092915050565b60006020828403121561308657613085614059565b5b600061309484828501612da6565b91505092915050565b6000602082840312156130b3576130b2614059565b5b60006130c184828501612dbb565b91505092915050565b6000602082840312156130e0576130df614059565b5b60006130ee84828501612dd0565b91505092915050565b60006020828403121561310d5761310c614059565b5b600061311b84828501612e13565b91505092915050565b60006020828403121561313a57613139614059565b5b600082013567ffffffffffffffff81111561315857613157614054565b5b61316484828501612e28565b91505092915050565b60006020828403121561318357613182614059565b5b600061319184828501612e56565b91505092915050565b6000602082840312156131b0576131af614059565b5b60006131be84828501612e6b565b91505092915050565b600080604083850312156131de576131dd614059565b5b60006131ec85828601612e56565b92505060206131fd85828601612e56565b9150509250929050565b61321081613d74565b82525050565b61321f81613d86565b82525050565b600061323082613ba2565b61323a8185613bb8565b935061324a818560208601613e25565b6132538161405e565b840191505092915050565b600061326982613bad565b6132738185613bc9565b9350613283818560208601613e25565b61328c8161405e565b840191505092915050565b60006132a282613bad565b6132ac8185613bda565b93506132bc818560208601613e25565b80840191505092915050565b600081546132d581613e82565b6132df8186613bda565b945060018216600081146132fa576001811461330b5761333e565b60ff1983168652818601935061333e565b61331485613b8d565b60005b8381101561333657815481890152600182019150602081019050613317565b838801955050505b50505092915050565b6000613354602283613bc9565b915061335f8261406f565b604082019050919050565b6000613377602683613bc9565b9150613382826140be565b604082019050919050565b600061339a602a83613bc9565b91506133a58261410d565b604082019050919050565b60006133bd602383613bc9565b91506133c88261415c565b604082019050919050565b60006133e0602283613bc9565b91506133eb826141ab565b604082019050919050565b6000613403602583613bc9565b915061340e826141fa565b604082019050919050565b6000613426602283613bc9565b915061343182614249565b604082019050919050565b6000613449601183613bc9565b915061345482614298565b602082019050919050565b600061346c603983613bc9565b9150613477826142c1565b604082019050919050565b600061348f602b83613bc9565b915061349a82614310565b604082019050919050565b60006134b2602683613bc9565b91506134bd8261435f565b604082019050919050565b60006134d5600583613bda565b91506134e0826143ae565b600582019050919050565b60006134f8602083613bc9565b9150613503826143d7565b602082019050919050565b600061351b601a83613bc9565b915061352682614400565b602082019050919050565b600061353e603283613bc9565b915061354982614429565b604082019050919050565b6000613561602283613bc9565b915061356c82614478565b604082019050919050565b6000613584603383613bc9565b915061358f826144c7565b604082019050919050565b60006135a7601d83613bc9565b91506135b282614516565b602082019050919050565b60006135ca602183613bc9565b91506135d58261453f565b604082019050919050565b60006135ed601883613bc9565b91506135f88261458e565b602082019050919050565b6000613610602e83613bc9565b915061361b826145b7565b604082019050919050565b6000613633601f83613bc9565b915061363e82614606565b602082019050919050565b6000613656602f83613bc9565b91506136618261462f565b604082019050919050565b6000613679601783613bc9565b91506136848261467e565b602082019050919050565b600061369c602d83613bc9565b91506136a7826146a7565b604082019050919050565b60006136bf600183613bda565b91506136ca826146f6565b600182019050919050565b6136de81613e0c565b82525050565b60006136f082856132c8565b91506136fb826136b2565b91506137078284613297565b9150613712826134c8565b91508190509392505050565b60006020820190506137336000830184613207565b92915050565b600060808201905061374e6000830187613207565b61375b6020830186613207565b61376860408301856136d5565b818103606083015261377a8184613225565b905095945050505050565b600060408201905061379a6000830185613207565b6137a760208301846136d5565b9392505050565b60006020820190506137c36000830184613216565b92915050565b600060208201905081810360008301526137e3818461325e565b905092915050565b6000602082019050818103600083015261380481613347565b9050919050565b600060208201905081810360008301526138248161336a565b9050919050565b600060208201905081810360008301526138448161338d565b9050919050565b60006020820190508181036000830152613864816133b0565b9050919050565b60006020820190508181036000830152613884816133d3565b9050919050565b600060208201905081810360008301526138a4816133f6565b9050919050565b600060208201905081810360008301526138c481613419565b9050919050565b600060208201905081810360008301526138e48161343c565b9050919050565b600060208201905081810360008301526139048161345f565b9050919050565b6000602082019050818103600083015261392481613482565b9050919050565b60006020820190508181036000830152613944816134a5565b9050919050565b60006020820190508181036000830152613964816134eb565b9050919050565b600060208201905081810360008301526139848161350e565b9050919050565b600060208201905081810360008301526139a481613531565b9050919050565b600060208201905081810360008301526139c481613554565b9050919050565b600060208201905081810360008301526139e481613577565b9050919050565b60006020820190508181036000830152613a048161359a565b9050919050565b60006020820190508181036000830152613a24816135bd565b9050919050565b60006020820190508181036000830152613a44816135e0565b9050919050565b60006020820190508181036000830152613a6481613603565b9050919050565b60006020820190508181036000830152613a8481613626565b9050919050565b60006020820190508181036000830152613aa481613649565b9050919050565b60006020820190508181036000830152613ac48161366c565b9050919050565b60006020820190508181036000830152613ae48161368f565b9050919050565b6000602082019050613b0060008301846136d5565b92915050565b6000613b10613b21565b9050613b1c8282613eb4565b919050565b6000604051905090565b600067ffffffffffffffff821115613b4657613b4561401b565b5b613b4f8261405e565b9050602081019050919050565b600067ffffffffffffffff821115613b7757613b7661401b565b5b613b808261405e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bf082613dd0565b9150613bfb83613dd0565b9250826fffffffffffffffffffffffffffffffff03821115613c2057613c1f613f5f565b5b828201905092915050565b6000613c3682613e0c565b9150613c4183613e0c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7657613c75613f5f565b5b828201905092915050565b6000613c8c82613e0c565b9150613c9783613e0c565b925082613ca757613ca6613f8e565b5b828204905092915050565b6000613cbd82613e0c565b9150613cc883613e0c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d0157613d00613f5f565b5b828202905092915050565b6000613d1782613dd0565b9150613d2283613dd0565b925082821015613d3557613d34613f5f565b5b828203905092915050565b6000613d4b82613e0c565b9150613d5683613e0c565b925082821015613d6957613d68613f5f565b5b828203905092915050565b6000613d7f82613dec565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613dc982613d74565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e43578082015181840152602081019050613e28565b83811115613e52576000848401525b50505050565b6000613e6382613e0c565b91506000821415613e7757613e76613f5f565b5b600182039050919050565b60006002820490506001821680613e9a57607f821691505b60208210811415613eae57613ead613fbd565b5b50919050565b613ebd8261405e565b810181811067ffffffffffffffff82111715613edc57613edb61401b565b5b80604052505050565b6000613ef082613e0c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f2357613f22613f5f565b5b600182019050919050565b6000613f3982613e0c565b9150613f4483613e0c565b925082613f5457613f53613f8e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61472881613d74565b811461473357600080fd5b50565b61473f81613d86565b811461474a57600080fd5b50565b61475681613d92565b811461476157600080fd5b50565b61476d81613dbe565b811461477857600080fd5b50565b61478481613e0c565b811461478f57600080fd5b5056fea26469706673582212209c5f6bf94f4422d46be1eb5fd1d29bff2bec9a3ba0a6d678487890314cb0897e64736f6c63430008070033697066733a2f2f516d57573738766d74794e744b527a644d456648704c4c6158654442543978777a374d4256316a4553686a587575
Deployed Bytecode
0x6080604052600436106101d85760003560e01c806355f804b311610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106b0578063d7224ba0146106db578063e985e9c514610706578063f2fde38b14610743576101d8565b8063a22cb465146105f6578063b88d4fde1461061f578063c6a91b4214610648578063c87b56dd14610673576101d8565b8063715018a6116100d1578063715018a61461056d5780638da5cb5b1461058457806395d89b41146105af578063a0712d68146105da576101d8565b806355f804b31461049f5780636352211e146104c857806370a0823114610505578063714c539814610542576101d8565b806323b872dd1161017a5780633ccfd60b116101495780633ccfd60b146103f957806342842e0e1461041057806349df728c146104395780634f6ccce714610462576101d8565b806323b872dd1461032c57806328cad13d146103555780632a55205a1461037e5780632f745c59146103bc576101d8565b8063081812fc116101b6578063081812fc14610270578063095ea7b3146102ad57806318160ddd146102d65780631e84c41314610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a57806307e89ec014610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061309d565b61076c565b60405161021191906137ae565b60405180910390f35b34801561022657600080fd5b5061022f6107e6565b60405161023c91906137c9565b60405180910390f35b34801561025157600080fd5b5061025a610878565b6040516102679190613aeb565b60405180910390f35b34801561027c57600080fd5b506102976004803603810190610292919061316d565b610884565b6040516102a4919061371e565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf9190613003565b610909565b005b3480156102e257600080fd5b506102eb610a22565b6040516102f89190613aeb565b60405180910390f35b34801561030d57600080fd5b50610316610a2b565b60405161032391906137ae565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612eed565b610a3e565b005b34801561036157600080fd5b5061037c60048036038101906103779190613043565b610a4e565b005b34801561038a57600080fd5b506103a560048036038101906103a091906131c7565b610ae7565b6040516103b3929190613785565b60405180910390f35b3480156103c857600080fd5b506103e360048036038101906103de9190613003565b610b53565b6040516103f09190613aeb565b60405180910390f35b34801561040557600080fd5b5061040e610d51565b005b34801561041c57600080fd5b5061043760048036038101906104329190612eed565b610e1c565b005b34801561044557600080fd5b50610460600480360381019061045b91906130f7565b610e3c565b005b34801561046e57600080fd5b506104896004803603810190610484919061316d565b610fd7565b6040516104969190613aeb565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190613124565b61102a565b005b3480156104d457600080fd5b506104ef60048036038101906104ea919061316d565b6110c0565b6040516104fc919061371e565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190612e80565b6110d6565b6040516105399190613aeb565b60405180910390f35b34801561054e57600080fd5b506105576111bf565b60405161056491906137c9565b60405180910390f35b34801561057957600080fd5b50610582611251565b005b34801561059057600080fd5b506105996112d9565b6040516105a6919061371e565b60405180910390f35b3480156105bb57600080fd5b506105c4611303565b6040516105d191906137c9565b60405180910390f35b6105f460048036038101906105ef919061316d565b611395565b005b34801561060257600080fd5b5061061d60048036038101906106189190612fc3565b61153f565b005b34801561062b57600080fd5b5061064660048036038101906106419190612f40565b6116c0565b005b34801561065457600080fd5b5061065d61171c565b60405161066a9190613aeb565b60405180910390f35b34801561067f57600080fd5b5061069a6004803603810190610695919061316d565b611721565b6040516106a791906137c9565b60405180910390f35b3480156106bc57600080fd5b506106c56117a9565b6040516106d29190613aeb565b60405180910390f35b3480156106e757600080fd5b506106f06117af565b6040516106fd9190613aeb565b60405180910390f35b34801561071257600080fd5b5061072d60048036038101906107289190612ead565b6117b5565b60405161073a91906137ae565b60405180910390f35b34801561074f57600080fd5b5061076a60048036038101906107659190612e80565b611849565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107df57506107de82611941565b5b9050919050565b6060600180546107f590613e82565b80601f016020809104026020016040519081016040528092919081815260200182805461082190613e82565b801561086e5780601f106108435761010080835404028352916020019161086e565b820191906000526020600020905b81548152906001019060200180831161085157829003601f168201915b5050505050905090565b67011c37937e08000081565b600061088f82611a8b565b6108ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c590613acb565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610914826110c0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097c906139ab565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109a4611a98565b73ffffffffffffffffffffffffffffffffffffffff1614806109d357506109d2816109cd611a98565b6117b5565b5b610a12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a09906138eb565b60405180910390fd5b610a1d838383611aa0565b505050565b60008054905090565b600d60009054906101000a900460ff1681565b610a49838383611b52565b505050565b610a56611a98565b73ffffffffffffffffffffffffffffffffffffffff16610a746112d9565b73ffffffffffffffffffffffffffffffffffffffff1614610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac19061394b565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b600080610af384611a8b565b610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b29906138cb565b60405180910390fd5b30610b48610b4185600561210b565b6064612121565b915091509250929050565b6000610b5e836110d6565b8210610b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b96906137eb565b60405180910390fd5b6000610ba9610a22565b905060008060005b83811015610d0f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ca357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cfb5786841415610cec578195505050505050610d4b565b8380610cf790613ee5565b9450505b508080610d0790613ee5565b915050610bb1565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290613a4b565b60405180910390fd5b92915050565b610d59611a98565b73ffffffffffffffffffffffffffffffffffffffff16610d776112d9565b73ffffffffffffffffffffffffffffffffffffffff1614610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc49061394b565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e18573d6000803e3d6000fd5b5050565b610e37838383604051806020016040528060008152506116c0565b505050565b610e44611a98565b73ffffffffffffffffffffffffffffffffffffffff16610e626112d9565b73ffffffffffffffffffffffffffffffffffffffff1614610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf9061394b565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610ef3919061371e565b60206040518083038186803b158015610f0b57600080fd5b505afa158015610f1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f43919061319a565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610f80929190613785565b602060405180830381600087803b158015610f9a57600080fd5b505af1158015610fae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd29190613070565b505050565b6000610fe1610a22565b8210611022576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110199061384b565b60405180910390fd5b819050919050565b611032611a98565b73ffffffffffffffffffffffffffffffffffffffff166110506112d9565b73ffffffffffffffffffffffffffffffffffffffff16146110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d9061394b565b60405180910390fd5b80600b90805190602001906110bc929190612c1b565b5050565b60006110cb82612137565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e9061390b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6060600b80546111ce90613e82565b80601f01602080910402602001604051908101604052809291908181526020018280546111fa90613e82565b80156112475780601f1061121c57610100808354040283529160200191611247565b820191906000526020600020905b81548152906001019060200180831161122a57829003601f168201915b5050505050905090565b611259611a98565b73ffffffffffffffffffffffffffffffffffffffff166112776112d9565b73ffffffffffffffffffffffffffffffffffffffff16146112cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c49061394b565b60405180910390fd5b6112d7600061233a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461131290613e82565b80601f016020809104026020016040519081016040528092919081815260200182805461133e90613e82565b801561138b5780601f106113605761010080835404028352916020019161138b565b820191906000526020600020905b81548152906001019060200180831161136e57829003601f168201915b5050505050905090565b600260095414156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290613a6b565b60405180910390fd5b6002600981905550600d60009054906101000a900460ff16611432576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142990613aab565b60405180910390fd5b67011c37937e080000813481836114499190613cb2565b14611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090613a2b565b60405180910390fd5b82600c5481611496610a22565b6114a09190613c2b565b11156114e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d89061386b565b60405180910390fd5b836005811115611526576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151d906138ab565b60405180910390fd5b6115303386612400565b50505050600160098190555050565b611547611a98565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac9061396b565b60405180910390fd5b80600660006115c2611a98565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661166f611a98565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b491906137ae565b60405180910390a35050565b6116cb848484611b52565b6116d78484848461241e565b611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d906139cb565b60405180910390fd5b50505050565b600581565b606061172c82611a8b565b61176b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611762906138cb565b60405180910390fd5b600b61178260018461177d9190613c2b565b6125b5565b6040516020016117939291906136e4565b6040516020818303038152906040529050919050565b600c5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611851611a98565b73ffffffffffffffffffffffffffffffffffffffff1661186f6112d9565b73ffffffffffffffffffffffffffffffffffffffff16146118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc9061394b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192c9061380b565b60405180910390fd5b61193e8161233a565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a0c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a7457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a845750611a8382612716565b5b9050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b5d82612137565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b84611a98565b73ffffffffffffffffffffffffffffffffffffffff161480611be05750611ba9611a98565b73ffffffffffffffffffffffffffffffffffffffff16611bc884610884565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bfc5750611bfb8260000151611bf6611a98565b6117b5565b5b905080611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c359061398b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca79061392b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d179061388b565b60405180910390fd5b611d2d8585856001612780565b611d3d6000848460000151611aa0565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611dab9190613d0c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e4f9190613be5565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f559190613c2b565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561209b57611fcb81611a8b565b1561209a576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121038686866001612786565b505050505050565b600081836121199190613cb2565b905092915050565b6000818361212f9190613c81565b905092915050565b61213f612ca1565b61214882611a8b565b612187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217e9061382b565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000006483106121eb5760017f0000000000000000000000000000000000000000000000000000000000000064846121de9190613d40565b6121e89190613c2b565b90505b60008390505b8181106122f9576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122e557809350505050612335565b5080806122f190613e58565b9150506121f1565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232c90613a8b565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61241a82826040518060200160405280600081525061278c565b5050565b600061243f8473ffffffffffffffffffffffffffffffffffffffff16612c08565b156125a8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612468611a98565b8786866040518563ffffffff1660e01b815260040161248a9493929190613739565b602060405180830381600087803b1580156124a457600080fd5b505af19250505080156124d557506040513d601f19601f820116820180604052508101906124d291906130ca565b60015b612558573d8060008114612505576040519150601f19603f3d011682016040523d82523d6000602084013e61250a565b606091505b50600081511415612550576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612547906139cb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125ad565b600190505b949350505050565b606060008214156125fd576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612711565b600082905060005b6000821461262f57808061261890613ee5565b915050600a826126289190613c81565b9150612605565b60008167ffffffffffffffff81111561264b5761264a61401b565b5b6040519080825280601f01601f19166020018201604052801561267d5781602001600182028036833780820191505090505b5090505b6000851461270a576001826126969190613d40565b9150600a856126a59190613f2e565b60306126b19190613c2b565b60f81b8183815181106126c7576126c6613fec565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127039190613c81565b9450612681565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f990613a0b565b60405180910390fd5b61280b81611a8b565b1561284b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612842906139eb565b60405180910390fd5b6128586000858386612780565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516129559190613be5565b6fffffffffffffffffffffffffffffffff16815260200185836020015161297c9190613be5565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612beb57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b8b600088848861241e565b612bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc1906139cb565b60405180910390fd5b8180612bd590613ee5565b9250508080612be390613ee5565b915050612b1a565b5080600081905550612c006000878588612786565b505050505050565b600080823b905060008111915050919050565b828054612c2790613e82565b90600052602060002090601f016020900481019282612c495760008555612c90565b82601f10612c6257805160ff1916838001178555612c90565b82800160010185558215612c90579182015b82811115612c8f578251825591602001919060010190612c74565b5b509050612c9d9190612cdb565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612cf4576000816000905550600101612cdc565b5090565b6000612d0b612d0684613b2b565b613b06565b905082815260208101848484011115612d2757612d2661404f565b5b612d32848285613e16565b509392505050565b6000612d4d612d4884613b5c565b613b06565b905082815260208101848484011115612d6957612d6861404f565b5b612d74848285613e16565b509392505050565b600081359050612d8b8161471f565b92915050565b600081359050612da081614736565b92915050565b600081519050612db581614736565b92915050565b600081359050612dca8161474d565b92915050565b600081519050612ddf8161474d565b92915050565b600082601f830112612dfa57612df961404a565b5b8135612e0a848260208601612cf8565b91505092915050565b600081359050612e2281614764565b92915050565b600082601f830112612e3d57612e3c61404a565b5b8135612e4d848260208601612d3a565b91505092915050565b600081359050612e658161477b565b92915050565b600081519050612e7a8161477b565b92915050565b600060208284031215612e9657612e95614059565b5b6000612ea484828501612d7c565b91505092915050565b60008060408385031215612ec457612ec3614059565b5b6000612ed285828601612d7c565b9250506020612ee385828601612d7c565b9150509250929050565b600080600060608486031215612f0657612f05614059565b5b6000612f1486828701612d7c565b9350506020612f2586828701612d7c565b9250506040612f3686828701612e56565b9150509250925092565b60008060008060808587031215612f5a57612f59614059565b5b6000612f6887828801612d7c565b9450506020612f7987828801612d7c565b9350506040612f8a87828801612e56565b925050606085013567ffffffffffffffff811115612fab57612faa614054565b5b612fb787828801612de5565b91505092959194509250565b60008060408385031215612fda57612fd9614059565b5b6000612fe885828601612d7c565b9250506020612ff985828601612d91565b9150509250929050565b6000806040838503121561301a57613019614059565b5b600061302885828601612d7c565b925050602061303985828601612e56565b9150509250929050565b60006020828403121561305957613058614059565b5b600061306784828501612d91565b91505092915050565b60006020828403121561308657613085614059565b5b600061309484828501612da6565b91505092915050565b6000602082840312156130b3576130b2614059565b5b60006130c184828501612dbb565b91505092915050565b6000602082840312156130e0576130df614059565b5b60006130ee84828501612dd0565b91505092915050565b60006020828403121561310d5761310c614059565b5b600061311b84828501612e13565b91505092915050565b60006020828403121561313a57613139614059565b5b600082013567ffffffffffffffff81111561315857613157614054565b5b61316484828501612e28565b91505092915050565b60006020828403121561318357613182614059565b5b600061319184828501612e56565b91505092915050565b6000602082840312156131b0576131af614059565b5b60006131be84828501612e6b565b91505092915050565b600080604083850312156131de576131dd614059565b5b60006131ec85828601612e56565b92505060206131fd85828601612e56565b9150509250929050565b61321081613d74565b82525050565b61321f81613d86565b82525050565b600061323082613ba2565b61323a8185613bb8565b935061324a818560208601613e25565b6132538161405e565b840191505092915050565b600061326982613bad565b6132738185613bc9565b9350613283818560208601613e25565b61328c8161405e565b840191505092915050565b60006132a282613bad565b6132ac8185613bda565b93506132bc818560208601613e25565b80840191505092915050565b600081546132d581613e82565b6132df8186613bda565b945060018216600081146132fa576001811461330b5761333e565b60ff1983168652818601935061333e565b61331485613b8d565b60005b8381101561333657815481890152600182019150602081019050613317565b838801955050505b50505092915050565b6000613354602283613bc9565b915061335f8261406f565b604082019050919050565b6000613377602683613bc9565b9150613382826140be565b604082019050919050565b600061339a602a83613bc9565b91506133a58261410d565b604082019050919050565b60006133bd602383613bc9565b91506133c88261415c565b604082019050919050565b60006133e0602283613bc9565b91506133eb826141ab565b604082019050919050565b6000613403602583613bc9565b915061340e826141fa565b604082019050919050565b6000613426602283613bc9565b915061343182614249565b604082019050919050565b6000613449601183613bc9565b915061345482614298565b602082019050919050565b600061346c603983613bc9565b9150613477826142c1565b604082019050919050565b600061348f602b83613bc9565b915061349a82614310565b604082019050919050565b60006134b2602683613bc9565b91506134bd8261435f565b604082019050919050565b60006134d5600583613bda565b91506134e0826143ae565b600582019050919050565b60006134f8602083613bc9565b9150613503826143d7565b602082019050919050565b600061351b601a83613bc9565b915061352682614400565b602082019050919050565b600061353e603283613bc9565b915061354982614429565b604082019050919050565b6000613561602283613bc9565b915061356c82614478565b604082019050919050565b6000613584603383613bc9565b915061358f826144c7565b604082019050919050565b60006135a7601d83613bc9565b91506135b282614516565b602082019050919050565b60006135ca602183613bc9565b91506135d58261453f565b604082019050919050565b60006135ed601883613bc9565b91506135f88261458e565b602082019050919050565b6000613610602e83613bc9565b915061361b826145b7565b604082019050919050565b6000613633601f83613bc9565b915061363e82614606565b602082019050919050565b6000613656602f83613bc9565b91506136618261462f565b604082019050919050565b6000613679601783613bc9565b91506136848261467e565b602082019050919050565b600061369c602d83613bc9565b91506136a7826146a7565b604082019050919050565b60006136bf600183613bda565b91506136ca826146f6565b600182019050919050565b6136de81613e0c565b82525050565b60006136f082856132c8565b91506136fb826136b2565b91506137078284613297565b9150613712826134c8565b91508190509392505050565b60006020820190506137336000830184613207565b92915050565b600060808201905061374e6000830187613207565b61375b6020830186613207565b61376860408301856136d5565b818103606083015261377a8184613225565b905095945050505050565b600060408201905061379a6000830185613207565b6137a760208301846136d5565b9392505050565b60006020820190506137c36000830184613216565b92915050565b600060208201905081810360008301526137e3818461325e565b905092915050565b6000602082019050818103600083015261380481613347565b9050919050565b600060208201905081810360008301526138248161336a565b9050919050565b600060208201905081810360008301526138448161338d565b9050919050565b60006020820190508181036000830152613864816133b0565b9050919050565b60006020820190508181036000830152613884816133d3565b9050919050565b600060208201905081810360008301526138a4816133f6565b9050919050565b600060208201905081810360008301526138c481613419565b9050919050565b600060208201905081810360008301526138e48161343c565b9050919050565b600060208201905081810360008301526139048161345f565b9050919050565b6000602082019050818103600083015261392481613482565b9050919050565b60006020820190508181036000830152613944816134a5565b9050919050565b60006020820190508181036000830152613964816134eb565b9050919050565b600060208201905081810360008301526139848161350e565b9050919050565b600060208201905081810360008301526139a481613531565b9050919050565b600060208201905081810360008301526139c481613554565b9050919050565b600060208201905081810360008301526139e481613577565b9050919050565b60006020820190508181036000830152613a048161359a565b9050919050565b60006020820190508181036000830152613a24816135bd565b9050919050565b60006020820190508181036000830152613a44816135e0565b9050919050565b60006020820190508181036000830152613a6481613603565b9050919050565b60006020820190508181036000830152613a8481613626565b9050919050565b60006020820190508181036000830152613aa481613649565b9050919050565b60006020820190508181036000830152613ac48161366c565b9050919050565b60006020820190508181036000830152613ae48161368f565b9050919050565b6000602082019050613b0060008301846136d5565b92915050565b6000613b10613b21565b9050613b1c8282613eb4565b919050565b6000604051905090565b600067ffffffffffffffff821115613b4657613b4561401b565b5b613b4f8261405e565b9050602081019050919050565b600067ffffffffffffffff821115613b7757613b7661401b565b5b613b808261405e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bf082613dd0565b9150613bfb83613dd0565b9250826fffffffffffffffffffffffffffffffff03821115613c2057613c1f613f5f565b5b828201905092915050565b6000613c3682613e0c565b9150613c4183613e0c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7657613c75613f5f565b5b828201905092915050565b6000613c8c82613e0c565b9150613c9783613e0c565b925082613ca757613ca6613f8e565b5b828204905092915050565b6000613cbd82613e0c565b9150613cc883613e0c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d0157613d00613f5f565b5b828202905092915050565b6000613d1782613dd0565b9150613d2283613dd0565b925082821015613d3557613d34613f5f565b5b828203905092915050565b6000613d4b82613e0c565b9150613d5683613e0c565b925082821015613d6957613d68613f5f565b5b828203905092915050565b6000613d7f82613dec565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613dc982613d74565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e43578082015181840152602081019050613e28565b83811115613e52576000848401525b50505050565b6000613e6382613e0c565b91506000821415613e7757613e76613f5f565b5b600182039050919050565b60006002820490506001821680613e9a57607f821691505b60208210811415613eae57613ead613fbd565b5b50919050565b613ebd8261405e565b810181811067ffffffffffffffff82111715613edc57613edb61401b565b5b80604052505050565b6000613ef082613e0c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f2357613f22613f5f565b5b600182019050919050565b6000613f3982613e0c565b9150613f4483613e0c565b925082613f5457613f53613f8e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d6960008201527f6e74000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e747320706572207472616e73616374696f6e2065786365656460008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61472881613d74565b811461473357600080fd5b50565b61473f81613d86565b811461474a57600080fd5b50565b61475681613d92565b811461476157600080fd5b50565b61476d81613dbe565b811461477857600080fd5b50565b61478481613e0c565b811461478f57600080fd5b5056fea26469706673582212209c5f6bf94f4422d46be1eb5fd1d29bff2bec9a3ba0a6d678487890314cb0897e64736f6c63430008070033
Deployed Bytecode Sourcemap
55651:3964:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58558:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44835:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56023:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46360:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45923:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41670:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56084:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47210:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57805:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59294:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;42301:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57975:143;;;;;;;;;;;;;:::i;:::-;;47415:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58126:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41833:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57695:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44658:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43535:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57531:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19693:103;;;;;;;;;;;;;:::i;:::-;;19042:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44990:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57133:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46628:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47635:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55933:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58921:307;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55984:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52053:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46965:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19951:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58558:292;58706:4;58763:26;58748:41;;;:11;:41;;;;:94;;;;58806:36;58830:11;58806:23;:36::i;:::-;58748:94;58728:114;;58558:292;;;:::o;44835:94::-;44889:13;44918:5;44911:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44835:94;:::o;56023:54::-;56067:10;56023:54;:::o;46360:204::-;46428:7;46452:16;46460:7;46452;:16::i;:::-;46444:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;46534:15;:24;46550:7;46534:24;;;;;;;;;;;;;;;;;;;;;46527:31;;46360:204;;;:::o;45923:379::-;45992:13;46008:24;46024:7;46008:15;:24::i;:::-;45992:40;;46053:5;46047:11;;:2;:11;;;;46039:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46138:5;46122:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;46147:37;46164:5;46171:12;:10;:12::i;:::-;46147:16;:37::i;:::-;46122:62;46106:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;46268:28;46277:2;46281:7;46290:5;46268:8;:28::i;:::-;45985:317;45923:379;;:::o;41670:94::-;41723:7;41746:12;;41739:19;;41670:94;:::o;56084:38::-;;;;;;;;;;;;;:::o;47210:142::-;47318:28;47328:4;47334:2;47338:7;47318:9;:28::i;:::-;47210:142;;;:::o;57805:158::-;19273:12;:10;:12::i;:::-;19262:23;;:7;:5;:7::i;:::-;:23;;;19254:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57936:19:::1;57915:18;;:40;;;;;;;;;;;;;;;;;;57805:158:::0;:::o;59294:318::-;59419:16;59437:21;59484:16;59492:7;59484;:16::i;:::-;59476:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;59551:4;59558:45;59571:26;59584:9;59595:1;59571:12;:26::i;:::-;59599:3;59558:12;:45::i;:::-;59535:69;;;;59294:318;;;;;:::o;42301:744::-;42410:7;42445:16;42455:5;42445:9;:16::i;:::-;42437:5;:24;42429:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;42507:22;42532:13;:11;:13::i;:::-;42507:38;;42552:19;42582:25;42632:9;42627:350;42651:14;42647:1;:18;42627:350;;;42681:31;42715:11;:14;42727:1;42715:14;;;;;;;;;;;42681:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42768:1;42742:28;;:9;:14;;;:28;;;42738:89;;42803:9;:14;;;42783:34;;42738:89;42860:5;42839:26;;:17;:26;;;42835:135;;;42897:5;42882:11;:20;42878:59;;;42924:1;42917:8;;;;;;;;;42878:59;42947:13;;;;;:::i;:::-;;;;42835:135;42672:305;42667:3;;;;;:::i;:::-;;;;42627:350;;;;42983:56;;;;;;;;;;:::i;:::-;;;;;;;;42301:744;;;;;:::o;57975:143::-;19273:12;:10;:12::i;:::-;19262:23;;:7;:5;:7::i;:::-;:23;;;19254:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58023:15:::1;58041:21;58023:39;;58081:10;58073:28;;:37;58102:7;58073:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58012:106;57975:143::o:0;47415:157::-;47527:39;47544:4;47550:2;47554:7;47527:39;;;;;;;;;;;;:16;:39::i;:::-;47415:157;;;:::o;58126:168::-;19273:12;:10;:12::i;:::-;19262:23;;:7;:5;:7::i;:::-;:23;;;19254:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58192:15:::1;58210:5;:15;;;58234:4;58210:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;58192:48;;58251:5;:14;;;58266:10;58278:7;58251:35;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;58181:113;58126:168:::0;:::o;41833:177::-;41900:7;41932:13;:11;:13::i;:::-;41924:5;:21;41916:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;41999:5;41992:12;;41833:177;;;:::o;57695:100::-;19273:12;:10;:12::i;:::-;19262:23;;:7;:5;:7::i;:::-;:23;;;19254:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57779:8:::1;57769:7;:18;;;;;;;;;;;;:::i;:::-;;57695:100:::0;:::o;44658:118::-;44722:7;44745:20;44757:7;44745:11;:20::i;:::-;:25;;;44738:32;;44658:118;;;:::o;43535:211::-;43599:7;43640:1;43623:19;;:5;:19;;;;43615:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;43712:12;:19;43725:5;43712:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;43704:36;;43697:43;;43535:211;;;:::o;57531:93::-;57576:13;57609:7;57602:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57531:93;:::o;19693:103::-;19273:12;:10;:12::i;:::-;19262:23;;:7;:5;:7::i;:::-;:23;;;19254:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19758:30:::1;19785:1;19758:18;:30::i;:::-;19693:103::o:0;19042:87::-;19088:7;19115:6;;;;;;;;;;;19108:13;;19042:87;:::o;44990:98::-;45046:13;45075:7;45068:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44990:98;:::o;57133:321::-;10971:1;11569:7;;:19;;11561:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;10971:1;11702:7;:18;;;;56252::::1;;;;;;;;;;;56244:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;56067:10:::2;57299:14;56979:9;56960:14;56952:5;:22;;;;:::i;:::-;56951:37;56929:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57336:14:::3;56663:9;;56628:14;56612:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;56590:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;57375:14:::4;55976:1;56410:14;:34;;56388:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;57409:37:::5;57419:10;57431:14;57409:9;:37::i;:::-;56745:1:::4;57051::::3;56309::::2;;10927::::0;11881:7;:22;;;;57133:321;:::o;46628:274::-;46731:12;:10;:12::i;:::-;46719:24;;:8;:24;;;;46711:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;46828:8;46783:18;:32;46802:12;:10;:12::i;:::-;46783:32;;;;;;;;;;;;;;;:42;46816:8;46783:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46877:8;46848:48;;46863:12;:10;:12::i;:::-;46848:48;;;46887:8;46848:48;;;;;;:::i;:::-;;;;;;;;46628:274;;:::o;47635:311::-;47772:28;47782:4;47788:2;47792:7;47772:9;:28::i;:::-;47823:48;47846:4;47852:2;47856:7;47865:5;47823:22;:48::i;:::-;47807:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;47635:311;;;;:::o;55933:44::-;55976:1;55933:44;:::o;58921:307::-;59039:13;59078:16;59086:7;59078;:16::i;:::-;59070:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;59173:7;59187:22;59196:1;59188:7;:9;;;;:::i;:::-;59187:20;:22::i;:::-;59156:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59129:91;;58921:307;;;:::o;55984:30::-;;;;:::o;52053:43::-;;;;:::o;46965:186::-;47087:4;47110:18;:25;47129:5;47110:25;;;;;;;;;;;;;;;:35;47136:8;47110:35;;;;;;;;;;;;;;;;;;;;;;;;;47103:42;;46965:186;;;;:::o;19951:201::-;19273:12;:10;:12::i;:::-;19262:23;;:7;:5;:7::i;:::-;:23;;;19254:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20060:1:::1;20040:22;;:8;:22;;;;20032:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20116:28;20135:8;20116:18;:28::i;:::-;19951:201:::0;:::o;43109:370::-;43236:4;43281:25;43266:40;;;:11;:40;;;;:99;;;;43332:33;43317:48;;;:11;:48;;;;43266:99;:160;;;;43391:35;43376:50;;;:11;:50;;;;43266:160;:207;;;;43437:36;43461:11;43437:23;:36::i;:::-;43266:207;43252:221;;43109:370;;;:::o;48185:105::-;48242:4;48272:12;;48262:7;:22;48255:29;;48185:105;;;:::o;17766:98::-;17819:7;17846:10;17839:17;;17766:98;:::o;51875:172::-;51999:2;51972:15;:24;51988:7;51972:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52033:7;52029:2;52013:28;;52022:5;52013:28;;;;;;;;;;;;51875:172;;;:::o;50240:1529::-;50337:35;50375:20;50387:7;50375:11;:20::i;:::-;50337:58;;50404:22;50446:13;:18;;;50430:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;50499:12;:10;:12::i;:::-;50475:36;;:20;50487:7;50475:11;:20::i;:::-;:36;;;50430:81;:142;;;;50522:50;50539:13;:18;;;50559:12;:10;:12::i;:::-;50522:16;:50::i;:::-;50430:142;50404:169;;50598:17;50582:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;50730:4;50708:26;;:13;:18;;;:26;;;50692:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50819:1;50805:16;;:2;:16;;;;50797:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50872:43;50894:4;50900:2;50904:7;50913:1;50872:21;:43::i;:::-;50972:49;50989:1;50993:7;51002:13;:18;;;50972:8;:49::i;:::-;51060:1;51030:12;:18;51043:4;51030:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51096:1;51068:12;:16;51081:2;51068:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51127:43;;;;;;;;51142:2;51127:43;;;;;;51153:15;51127:43;;;;;51104:11;:20;51116:7;51104:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51398:19;51430:1;51420:7;:11;;;;:::i;:::-;51398:33;;51483:1;51442:43;;:11;:24;51454:11;51442:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;51438:236;;;51500:20;51508:11;51500:7;:20::i;:::-;51496:171;;;51560:97;;;;;;;;51587:13;:18;;;51560:97;;;;;;51618:13;:28;;;51560:97;;;;;51533:11;:24;51545:11;51533:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51496:171;51438:236;51706:7;51702:2;51687:27;;51696:4;51687:27;;;;;;;;;;;;51721:42;51742:4;51748:2;51752:7;51761:1;51721:20;:42::i;:::-;50330:1439;;;50240:1529;;;:::o;4267:98::-;4325:7;4356:1;4352;:5;;;;:::i;:::-;4345:12;;4267:98;;;;:::o;4666:::-;4724:7;4755:1;4751;:5;;;;:::i;:::-;4744:12;;4666:98;;;;:::o;43998:606::-;44074:21;;:::i;:::-;44115:16;44123:7;44115;:16::i;:::-;44107:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;44187:26;44235:12;44224:7;:23;44220:93;;44304:1;44289:12;44279:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;44258:47;;44220:93;44326:12;44341:7;44326:22;;44321:212;44358:18;44350:4;:26;44321:212;;44395:31;44429:11;:17;44441:4;44429:17;;;;;;;;;;;44395:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44485:1;44459:28;;:9;:14;;;:28;;;44455:71;;44507:9;44500:16;;;;;;;44455:71;44386:147;44378:6;;;;;:::i;:::-;;;;44321:212;;;;44541:57;;;;;;;;;;:::i;:::-;;;;;;;;43998:606;;;;:::o;20312:191::-;20386:16;20405:6;;;;;;;;;;;20386:25;;20431:8;20422:6;;:17;;;;;;;;;;;;;;;;;;20486:8;20455:40;;20476:8;20455:40;;;;;;;;;;;;20375:128;20312:191;:::o;48296:98::-;48361:27;48371:2;48375:8;48361:27;;;;;;;;;;;;:9;:27::i;:::-;48296:98;;:::o;53590:690::-;53727:4;53744:15;:2;:13;;;:15::i;:::-;53740:535;;;53799:2;53783:36;;;53820:12;:10;:12::i;:::-;53834:4;53840:7;53849:5;53783:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53770:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54031:1;54014:6;:13;:18;54010:215;;;54047:61;;;;;;;;;;:::i;:::-;;;;;;;;54010:215;54193:6;54187:13;54178:6;54174:2;54170:15;54163:38;53770:464;53915:45;;;53905:55;;;:6;:55;;;;53898:62;;;;;53740:535;54263:4;54256:11;;53590:690;;;;;;;:::o;15328:723::-;15384:13;15614:1;15605:5;:10;15601:53;;;15632:10;;;;;;;;;;;;;;;;;;;;;15601:53;15664:12;15679:5;15664:20;;15695:14;15720:78;15735:1;15727:4;:9;15720:78;;15753:8;;;;;:::i;:::-;;;;15784:2;15776:10;;;;;:::i;:::-;;;15720:78;;;15808:19;15840:6;15830:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15808:39;;15858:154;15874:1;15865:5;:10;15858:154;;15902:1;15892:11;;;;;:::i;:::-;;;15969:2;15961:5;:10;;;;:::i;:::-;15948:2;:24;;;;:::i;:::-;15935:39;;15918:6;15925;15918:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;15998:2;15989:11;;;;;:::i;:::-;;;15858:154;;;16036:6;16022:21;;;;;15328:723;;;;:::o;32442:157::-;32527:4;32566:25;32551:40;;;:11;:40;;;;32544:47;;32442:157;;;:::o;54742:141::-;;;;;:::o;55269:140::-;;;;;:::o;48733:1275::-;48838:20;48861:12;;48838:35;;48902:1;48888:16;;:2;:16;;;;48880:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;49079:21;49087:12;49079:7;:21::i;:::-;49078:22;49070:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;49224:61;49254:1;49258:2;49262:12;49276:8;49224:21;:61::i;:::-;49294:30;49327:12;:16;49340:2;49327:16;;;;;;;;;;;;;;;49294:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49369:119;;;;;;;;49419:8;49389:11;:19;;;:39;;;;:::i;:::-;49369:119;;;;;;49472:8;49437:11;:24;;;:44;;;;:::i;:::-;49369:119;;;;;49350:12;:16;49363:2;49350:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49523:43;;;;;;;;49538:2;49523:43;;;;;;49549:15;49523:43;;;;;49495:11;:25;49507:12;49495:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49575:20;49598:12;49575:35;;49624:9;49619:281;49643:8;49639:1;:12;49619:281;;;49697:12;49693:2;49672:38;;49689:1;49672:38;;;;;;;;;;;;49737:59;49768:1;49772:2;49776:12;49790:5;49737:22;:59::i;:::-;49719:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49878:14;;;;;:::i;:::-;;;;49653:3;;;;;:::i;:::-;;;;49619:281;;;;49923:12;49908;:27;;;;49942:60;49971:1;49975:2;49979:12;49993:8;49942:20;:60::i;:::-;48831:1177;;;48733:1275;;;:::o;21330:387::-;21390:4;21598:12;21665:7;21653:20;21645:28;;21708:1;21701:4;:8;21694:15;;;21330:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1915:167::-;1975:5;2013:6;2000:20;1991:29;;2029:47;2070:5;2029:47;:::i;:::-;1915:167;;;;:::o;2102:340::-;2158:5;2207:3;2200:4;2192:6;2188:17;2184:27;2174:122;;2215:79;;:::i;:::-;2174:122;2332:6;2319:20;2357:79;2432:3;2424:6;2417:4;2409:6;2405:17;2357:79;:::i;:::-;2348:88;;2164:278;2102:340;;;;:::o;2448:139::-;2494:5;2532:6;2519:20;2510:29;;2548:33;2575:5;2548:33;:::i;:::-;2448:139;;;;:::o;2593:143::-;2650:5;2681:6;2675:13;2666:22;;2697:33;2724:5;2697:33;:::i;:::-;2593:143;;;;:::o;2742:329::-;2801:6;2850:2;2838:9;2829:7;2825:23;2821:32;2818:119;;;2856:79;;:::i;:::-;2818:119;2976:1;3001:53;3046:7;3037:6;3026:9;3022:22;3001:53;:::i;:::-;2991:63;;2947:117;2742:329;;;;:::o;3077:474::-;3145:6;3153;3202:2;3190:9;3181:7;3177:23;3173:32;3170:119;;;3208:79;;:::i;:::-;3170:119;3328:1;3353:53;3398:7;3389:6;3378:9;3374:22;3353:53;:::i;:::-;3343:63;;3299:117;3455:2;3481:53;3526:7;3517:6;3506:9;3502:22;3481:53;:::i;:::-;3471:63;;3426:118;3077:474;;;;;:::o;3557:619::-;3634:6;3642;3650;3699:2;3687:9;3678:7;3674:23;3670:32;3667:119;;;3705:79;;:::i;:::-;3667:119;3825:1;3850:53;3895:7;3886:6;3875:9;3871:22;3850:53;:::i;:::-;3840:63;;3796:117;3952:2;3978:53;4023:7;4014:6;4003:9;3999:22;3978:53;:::i;:::-;3968:63;;3923:118;4080:2;4106:53;4151:7;4142:6;4131:9;4127:22;4106:53;:::i;:::-;4096:63;;4051:118;3557:619;;;;;:::o;4182:943::-;4277:6;4285;4293;4301;4350:3;4338:9;4329:7;4325:23;4321:33;4318:120;;;4357:79;;:::i;:::-;4318:120;4477:1;4502:53;4547:7;4538:6;4527:9;4523:22;4502:53;:::i;:::-;4492:63;;4448:117;4604:2;4630:53;4675:7;4666:6;4655:9;4651:22;4630:53;:::i;:::-;4620:63;;4575:118;4732:2;4758:53;4803:7;4794:6;4783:9;4779:22;4758:53;:::i;:::-;4748:63;;4703:118;4888:2;4877:9;4873:18;4860:32;4919:18;4911:6;4908:30;4905:117;;;4941:79;;:::i;:::-;4905:117;5046:62;5100:7;5091:6;5080:9;5076:22;5046:62;:::i;:::-;5036:72;;4831:287;4182:943;;;;;;;:::o;5131:468::-;5196:6;5204;5253:2;5241:9;5232:7;5228:23;5224:32;5221:119;;;5259:79;;:::i;:::-;5221:119;5379:1;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5350:117;5506:2;5532:50;5574:7;5565:6;5554:9;5550:22;5532:50;:::i;:::-;5522:60;;5477:115;5131:468;;;;;:::o;5605:474::-;5673:6;5681;5730:2;5718:9;5709:7;5705:23;5701:32;5698:119;;;5736:79;;:::i;:::-;5698:119;5856:1;5881:53;5926:7;5917:6;5906:9;5902:22;5881:53;:::i;:::-;5871:63;;5827:117;5983:2;6009:53;6054:7;6045:6;6034:9;6030:22;6009:53;:::i;:::-;5999:63;;5954:118;5605:474;;;;;:::o;6085:323::-;6141:6;6190:2;6178:9;6169:7;6165:23;6161:32;6158:119;;;6196:79;;:::i;:::-;6158:119;6316:1;6341:50;6383:7;6374:6;6363:9;6359:22;6341:50;:::i;:::-;6331:60;;6287:114;6085:323;;;;:::o;6414:345::-;6481:6;6530:2;6518:9;6509:7;6505:23;6501:32;6498:119;;;6536:79;;:::i;:::-;6498:119;6656:1;6681:61;6734:7;6725:6;6714:9;6710:22;6681:61;:::i;:::-;6671:71;;6627:125;6414:345;;;;:::o;6765:327::-;6823:6;6872:2;6860:9;6851:7;6847:23;6843:32;6840:119;;;6878:79;;:::i;:::-;6840:119;6998:1;7023:52;7067:7;7058:6;7047:9;7043:22;7023:52;:::i;:::-;7013:62;;6969:116;6765:327;;;;:::o;7098:349::-;7167:6;7216:2;7204:9;7195:7;7191:23;7187:32;7184:119;;;7222:79;;:::i;:::-;7184:119;7342:1;7367:63;7422:7;7413:6;7402:9;7398:22;7367:63;:::i;:::-;7357:73;;7313:127;7098:349;;;;:::o;7453:357::-;7526:6;7575:2;7563:9;7554:7;7550:23;7546:32;7543:119;;;7581:79;;:::i;:::-;7543:119;7701:1;7726:67;7785:7;7776:6;7765:9;7761:22;7726:67;:::i;:::-;7716:77;;7672:131;7453:357;;;;:::o;7816:509::-;7885:6;7934:2;7922:9;7913:7;7909:23;7905:32;7902:119;;;7940:79;;:::i;:::-;7902:119;8088:1;8077:9;8073:17;8060:31;8118:18;8110:6;8107:30;8104:117;;;8140:79;;:::i;:::-;8104:117;8245:63;8300:7;8291:6;8280:9;8276:22;8245:63;:::i;:::-;8235:73;;8031:287;7816:509;;;;:::o;8331:329::-;8390:6;8439:2;8427:9;8418:7;8414:23;8410:32;8407:119;;;8445:79;;:::i;:::-;8407:119;8565:1;8590:53;8635:7;8626:6;8615:9;8611:22;8590:53;:::i;:::-;8580:63;;8536:117;8331:329;;;;:::o;8666:351::-;8736:6;8785:2;8773:9;8764:7;8760:23;8756:32;8753:119;;;8791:79;;:::i;:::-;8753:119;8911:1;8936:64;8992:7;8983:6;8972:9;8968:22;8936:64;:::i;:::-;8926:74;;8882:128;8666:351;;;;:::o;9023:474::-;9091:6;9099;9148:2;9136:9;9127:7;9123:23;9119:32;9116:119;;;9154:79;;:::i;:::-;9116:119;9274:1;9299:53;9344:7;9335:6;9324:9;9320:22;9299:53;:::i;:::-;9289:63;;9245:117;9401:2;9427:53;9472:7;9463:6;9452:9;9448:22;9427:53;:::i;:::-;9417:63;;9372:118;9023:474;;;;;:::o;9503:118::-;9590:24;9608:5;9590:24;:::i;:::-;9585:3;9578:37;9503:118;;:::o;9627:109::-;9708:21;9723:5;9708:21;:::i;:::-;9703:3;9696:34;9627:109;;:::o;9742:360::-;9828:3;9856:38;9888:5;9856:38;:::i;:::-;9910:70;9973:6;9968:3;9910:70;:::i;:::-;9903:77;;9989:52;10034:6;10029:3;10022:4;10015:5;10011:16;9989:52;:::i;:::-;10066:29;10088:6;10066:29;:::i;:::-;10061:3;10057:39;10050:46;;9832:270;9742:360;;;;:::o;10108:364::-;10196:3;10224:39;10257:5;10224:39;:::i;:::-;10279:71;10343:6;10338:3;10279:71;:::i;:::-;10272:78;;10359:52;10404:6;10399:3;10392:4;10385:5;10381:16;10359:52;:::i;:::-;10436:29;10458:6;10436:29;:::i;:::-;10431:3;10427:39;10420:46;;10200:272;10108:364;;;;:::o;10478:377::-;10584:3;10612:39;10645:5;10612:39;:::i;:::-;10667:89;10749:6;10744:3;10667:89;:::i;:::-;10660:96;;10765:52;10810:6;10805:3;10798:4;10791:5;10787:16;10765:52;:::i;:::-;10842:6;10837:3;10833:16;10826:23;;10588:267;10478:377;;;;:::o;10885:845::-;10988:3;11025:5;11019:12;11054:36;11080:9;11054:36;:::i;:::-;11106:89;11188:6;11183:3;11106:89;:::i;:::-;11099:96;;11226:1;11215:9;11211:17;11242:1;11237:137;;;;11388:1;11383:341;;;;11204:520;;11237:137;11321:4;11317:9;11306;11302:25;11297:3;11290:38;11357:6;11352:3;11348:16;11341:23;;11237:137;;11383:341;11450:38;11482:5;11450:38;:::i;:::-;11510:1;11524:154;11538:6;11535:1;11532:13;11524:154;;;11612:7;11606:14;11602:1;11597:3;11593:11;11586:35;11662:1;11653:7;11649:15;11638:26;;11560:4;11557:1;11553:12;11548:17;;11524:154;;;11707:6;11702:3;11698:16;11691:23;;11390:334;;11204:520;;10992:738;;10885:845;;;;:::o;11736:366::-;11878:3;11899:67;11963:2;11958:3;11899:67;:::i;:::-;11892:74;;11975:93;12064:3;11975:93;:::i;:::-;12093:2;12088:3;12084:12;12077:19;;11736:366;;;:::o;12108:::-;12250:3;12271:67;12335:2;12330:3;12271:67;:::i;:::-;12264:74;;12347:93;12436:3;12347:93;:::i;:::-;12465:2;12460:3;12456:12;12449:19;;12108:366;;;:::o;12480:::-;12622:3;12643:67;12707:2;12702:3;12643:67;:::i;:::-;12636:74;;12719:93;12808:3;12719:93;:::i;:::-;12837:2;12832:3;12828:12;12821:19;;12480:366;;;:::o;12852:::-;12994:3;13015:67;13079:2;13074:3;13015:67;:::i;:::-;13008:74;;13091:93;13180:3;13091:93;:::i;:::-;13209:2;13204:3;13200:12;13193:19;;12852:366;;;:::o;13224:::-;13366:3;13387:67;13451:2;13446:3;13387:67;:::i;:::-;13380:74;;13463:93;13552:3;13463:93;:::i;:::-;13581:2;13576:3;13572:12;13565:19;;13224:366;;;:::o;13596:::-;13738:3;13759:67;13823:2;13818:3;13759:67;:::i;:::-;13752:74;;13835:93;13924:3;13835:93;:::i;:::-;13953:2;13948:3;13944:12;13937:19;;13596:366;;;:::o;13968:::-;14110:3;14131:67;14195:2;14190:3;14131:67;:::i;:::-;14124:74;;14207:93;14296:3;14207:93;:::i;:::-;14325:2;14320:3;14316:12;14309:19;;13968:366;;;:::o;14340:::-;14482:3;14503:67;14567:2;14562:3;14503:67;:::i;:::-;14496:74;;14579:93;14668:3;14579:93;:::i;:::-;14697:2;14692:3;14688:12;14681:19;;14340:366;;;:::o;14712:::-;14854:3;14875:67;14939:2;14934:3;14875:67;:::i;:::-;14868:74;;14951:93;15040:3;14951:93;:::i;:::-;15069:2;15064:3;15060:12;15053:19;;14712:366;;;:::o;15084:::-;15226:3;15247:67;15311:2;15306:3;15247:67;:::i;:::-;15240:74;;15323:93;15412:3;15323:93;:::i;:::-;15441:2;15436:3;15432:12;15425:19;;15084:366;;;:::o;15456:::-;15598:3;15619:67;15683:2;15678:3;15619:67;:::i;:::-;15612:74;;15695:93;15784:3;15695:93;:::i;:::-;15813:2;15808:3;15804:12;15797:19;;15456:366;;;:::o;15828:400::-;15988:3;16009:84;16091:1;16086:3;16009:84;:::i;:::-;16002:91;;16102:93;16191:3;16102:93;:::i;:::-;16220:1;16215:3;16211:11;16204:18;;15828:400;;;:::o;16234:366::-;16376:3;16397:67;16461:2;16456:3;16397:67;:::i;:::-;16390:74;;16473:93;16562:3;16473:93;:::i;:::-;16591:2;16586:3;16582:12;16575:19;;16234:366;;;:::o;16606:::-;16748:3;16769:67;16833:2;16828:3;16769:67;:::i;:::-;16762:74;;16845:93;16934:3;16845:93;:::i;:::-;16963:2;16958:3;16954:12;16947:19;;16606:366;;;:::o;16978:::-;17120:3;17141:67;17205:2;17200:3;17141:67;:::i;:::-;17134:74;;17217:93;17306:3;17217:93;:::i;:::-;17335:2;17330:3;17326:12;17319:19;;16978:366;;;:::o;17350:::-;17492:3;17513:67;17577:2;17572:3;17513:67;:::i;:::-;17506:74;;17589:93;17678:3;17589:93;:::i;:::-;17707:2;17702:3;17698:12;17691:19;;17350:366;;;:::o;17722:::-;17864:3;17885:67;17949:2;17944:3;17885:67;:::i;:::-;17878:74;;17961:93;18050:3;17961:93;:::i;:::-;18079:2;18074:3;18070:12;18063:19;;17722:366;;;:::o;18094:::-;18236:3;18257:67;18321:2;18316:3;18257:67;:::i;:::-;18250:74;;18333:93;18422:3;18333:93;:::i;:::-;18451:2;18446:3;18442:12;18435:19;;18094:366;;;:::o;18466:::-;18608:3;18629:67;18693:2;18688:3;18629:67;:::i;:::-;18622:74;;18705:93;18794:3;18705:93;:::i;:::-;18823:2;18818:3;18814:12;18807:19;;18466:366;;;:::o;18838:::-;18980:3;19001:67;19065:2;19060:3;19001:67;:::i;:::-;18994:74;;19077:93;19166:3;19077:93;:::i;:::-;19195:2;19190:3;19186:12;19179:19;;18838:366;;;:::o;19210:::-;19352:3;19373:67;19437:2;19432:3;19373:67;:::i;:::-;19366:74;;19449:93;19538:3;19449:93;:::i;:::-;19567:2;19562:3;19558:12;19551:19;;19210:366;;;:::o;19582:::-;19724:3;19745:67;19809:2;19804:3;19745:67;:::i;:::-;19738:74;;19821:93;19910:3;19821:93;:::i;:::-;19939:2;19934:3;19930:12;19923:19;;19582:366;;;:::o;19954:::-;20096:3;20117:67;20181:2;20176:3;20117:67;:::i;:::-;20110:74;;20193:93;20282:3;20193:93;:::i;:::-;20311:2;20306:3;20302:12;20295:19;;19954:366;;;:::o;20326:::-;20468:3;20489:67;20553:2;20548:3;20489:67;:::i;:::-;20482:74;;20565:93;20654:3;20565:93;:::i;:::-;20683:2;20678:3;20674:12;20667:19;;20326:366;;;:::o;20698:::-;20840:3;20861:67;20925:2;20920:3;20861:67;:::i;:::-;20854:74;;20937:93;21026:3;20937:93;:::i;:::-;21055:2;21050:3;21046:12;21039:19;;20698:366;;;:::o;21070:400::-;21230:3;21251:84;21333:1;21328:3;21251:84;:::i;:::-;21244:91;;21344:93;21433:3;21344:93;:::i;:::-;21462:1;21457:3;21453:11;21446:18;;21070:400;;;:::o;21476:118::-;21563:24;21581:5;21563:24;:::i;:::-;21558:3;21551:37;21476:118;;:::o;21600:961::-;21979:3;22001:92;22089:3;22080:6;22001:92;:::i;:::-;21994:99;;22110:148;22254:3;22110:148;:::i;:::-;22103:155;;22275:95;22366:3;22357:6;22275:95;:::i;:::-;22268:102;;22387:148;22531:3;22387:148;:::i;:::-;22380:155;;22552:3;22545:10;;21600:961;;;;;:::o;22567:222::-;22660:4;22698:2;22687:9;22683:18;22675:26;;22711:71;22779:1;22768:9;22764:17;22755:6;22711:71;:::i;:::-;22567:222;;;;:::o;22795:640::-;22990:4;23028:3;23017:9;23013:19;23005:27;;23042:71;23110:1;23099:9;23095:17;23086:6;23042:71;:::i;:::-;23123:72;23191:2;23180:9;23176:18;23167:6;23123:72;:::i;:::-;23205;23273:2;23262:9;23258:18;23249:6;23205:72;:::i;:::-;23324:9;23318:4;23314:20;23309:2;23298:9;23294:18;23287:48;23352:76;23423:4;23414:6;23352:76;:::i;:::-;23344:84;;22795:640;;;;;;;:::o;23441:332::-;23562:4;23600:2;23589:9;23585:18;23577:26;;23613:71;23681:1;23670:9;23666:17;23657:6;23613:71;:::i;:::-;23694:72;23762:2;23751:9;23747:18;23738:6;23694:72;:::i;:::-;23441:332;;;;;:::o;23779:210::-;23866:4;23904:2;23893:9;23889:18;23881:26;;23917:65;23979:1;23968:9;23964:17;23955:6;23917:65;:::i;:::-;23779:210;;;;:::o;23995:313::-;24108:4;24146:2;24135:9;24131:18;24123:26;;24195:9;24189:4;24185:20;24181:1;24170:9;24166:17;24159:47;24223:78;24296:4;24287:6;24223:78;:::i;:::-;24215:86;;23995:313;;;;:::o;24314:419::-;24480:4;24518:2;24507:9;24503:18;24495:26;;24567:9;24561:4;24557:20;24553:1;24542:9;24538:17;24531:47;24595:131;24721:4;24595:131;:::i;:::-;24587:139;;24314:419;;;:::o;24739:::-;24905:4;24943:2;24932:9;24928:18;24920:26;;24992:9;24986:4;24982:20;24978:1;24967:9;24963:17;24956:47;25020:131;25146:4;25020:131;:::i;:::-;25012:139;;24739:419;;;:::o;25164:::-;25330:4;25368:2;25357:9;25353:18;25345:26;;25417:9;25411:4;25407:20;25403:1;25392:9;25388:17;25381:47;25445:131;25571:4;25445:131;:::i;:::-;25437:139;;25164:419;;;:::o;25589:::-;25755:4;25793:2;25782:9;25778:18;25770:26;;25842:9;25836:4;25832:20;25828:1;25817:9;25813:17;25806:47;25870:131;25996:4;25870:131;:::i;:::-;25862:139;;25589:419;;;:::o;26014:::-;26180:4;26218:2;26207:9;26203:18;26195:26;;26267:9;26261:4;26257:20;26253:1;26242:9;26238:17;26231:47;26295:131;26421:4;26295:131;:::i;:::-;26287:139;;26014:419;;;:::o;26439:::-;26605:4;26643:2;26632:9;26628:18;26620:26;;26692:9;26686:4;26682:20;26678:1;26667:9;26663:17;26656:47;26720:131;26846:4;26720:131;:::i;:::-;26712:139;;26439:419;;;:::o;26864:::-;27030:4;27068:2;27057:9;27053:18;27045:26;;27117:9;27111:4;27107:20;27103:1;27092:9;27088:17;27081:47;27145:131;27271:4;27145:131;:::i;:::-;27137:139;;26864:419;;;:::o;27289:::-;27455:4;27493:2;27482:9;27478:18;27470:26;;27542:9;27536:4;27532:20;27528:1;27517:9;27513:17;27506:47;27570:131;27696:4;27570:131;:::i;:::-;27562:139;;27289:419;;;:::o;27714:::-;27880:4;27918:2;27907:9;27903:18;27895:26;;27967:9;27961:4;27957:20;27953:1;27942:9;27938:17;27931:47;27995:131;28121:4;27995:131;:::i;:::-;27987:139;;27714:419;;;:::o;28139:::-;28305:4;28343:2;28332:9;28328:18;28320:26;;28392:9;28386:4;28382:20;28378:1;28367:9;28363:17;28356:47;28420:131;28546:4;28420:131;:::i;:::-;28412:139;;28139:419;;;:::o;28564:::-;28730:4;28768:2;28757:9;28753:18;28745:26;;28817:9;28811:4;28807:20;28803:1;28792:9;28788:17;28781:47;28845:131;28971:4;28845:131;:::i;:::-;28837:139;;28564:419;;;:::o;28989:::-;29155:4;29193:2;29182:9;29178:18;29170:26;;29242:9;29236:4;29232:20;29228:1;29217:9;29213:17;29206:47;29270:131;29396:4;29270:131;:::i;:::-;29262:139;;28989:419;;;:::o;29414:::-;29580:4;29618:2;29607:9;29603:18;29595:26;;29667:9;29661:4;29657:20;29653:1;29642:9;29638:17;29631:47;29695:131;29821:4;29695:131;:::i;:::-;29687:139;;29414:419;;;:::o;29839:::-;30005:4;30043:2;30032:9;30028:18;30020:26;;30092:9;30086:4;30082:20;30078:1;30067:9;30063:17;30056:47;30120:131;30246:4;30120:131;:::i;:::-;30112:139;;29839:419;;;:::o;30264:::-;30430:4;30468:2;30457:9;30453:18;30445:26;;30517:9;30511:4;30507:20;30503:1;30492:9;30488:17;30481:47;30545:131;30671:4;30545:131;:::i;:::-;30537:139;;30264:419;;;:::o;30689:::-;30855:4;30893:2;30882:9;30878:18;30870:26;;30942:9;30936:4;30932:20;30928:1;30917:9;30913:17;30906:47;30970:131;31096:4;30970:131;:::i;:::-;30962:139;;30689:419;;;:::o;31114:::-;31280:4;31318:2;31307:9;31303:18;31295:26;;31367:9;31361:4;31357:20;31353:1;31342:9;31338:17;31331:47;31395:131;31521:4;31395:131;:::i;:::-;31387:139;;31114:419;;;:::o;31539:::-;31705:4;31743:2;31732:9;31728:18;31720:26;;31792:9;31786:4;31782:20;31778:1;31767:9;31763:17;31756:47;31820:131;31946:4;31820:131;:::i;:::-;31812:139;;31539:419;;;:::o;31964:::-;32130:4;32168:2;32157:9;32153:18;32145:26;;32217:9;32211:4;32207:20;32203:1;32192:9;32188:17;32181:47;32245:131;32371:4;32245:131;:::i;:::-;32237:139;;31964:419;;;:::o;32389:::-;32555:4;32593:2;32582:9;32578:18;32570:26;;32642:9;32636:4;32632:20;32628:1;32617:9;32613:17;32606:47;32670:131;32796:4;32670:131;:::i;:::-;32662:139;;32389:419;;;:::o;32814:::-;32980:4;33018:2;33007:9;33003:18;32995:26;;33067:9;33061:4;33057:20;33053:1;33042:9;33038:17;33031:47;33095:131;33221:4;33095:131;:::i;:::-;33087:139;;32814:419;;;:::o;33239:::-;33405:4;33443:2;33432:9;33428:18;33420:26;;33492:9;33486:4;33482:20;33478:1;33467:9;33463:17;33456:47;33520:131;33646:4;33520:131;:::i;:::-;33512:139;;33239:419;;;:::o;33664:::-;33830:4;33868:2;33857:9;33853:18;33845:26;;33917:9;33911:4;33907:20;33903:1;33892:9;33888:17;33881:47;33945:131;34071:4;33945:131;:::i;:::-;33937:139;;33664:419;;;:::o;34089:::-;34255:4;34293:2;34282:9;34278:18;34270:26;;34342:9;34336:4;34332:20;34328:1;34317:9;34313:17;34306:47;34370:131;34496:4;34370:131;:::i;:::-;34362:139;;34089:419;;;:::o;34514:222::-;34607:4;34645:2;34634:9;34630:18;34622:26;;34658:71;34726:1;34715:9;34711:17;34702:6;34658:71;:::i;:::-;34514:222;;;;:::o;34742:129::-;34776:6;34803:20;;:::i;:::-;34793:30;;34832:33;34860:4;34852:6;34832:33;:::i;:::-;34742:129;;;:::o;34877:75::-;34910:6;34943:2;34937:9;34927:19;;34877:75;:::o;34958:307::-;35019:4;35109:18;35101:6;35098:30;35095:56;;;35131:18;;:::i;:::-;35095:56;35169:29;35191:6;35169:29;:::i;:::-;35161:37;;35253:4;35247;35243:15;35235:23;;34958:307;;;:::o;35271:308::-;35333:4;35423:18;35415:6;35412:30;35409:56;;;35445:18;;:::i;:::-;35409:56;35483:29;35505:6;35483:29;:::i;:::-;35475:37;;35567:4;35561;35557:15;35549:23;;35271:308;;;:::o;35585:141::-;35634:4;35657:3;35649:11;;35680:3;35677:1;35670:14;35714:4;35711:1;35701:18;35693:26;;35585:141;;;:::o;35732:98::-;35783:6;35817:5;35811:12;35801:22;;35732:98;;;:::o;35836:99::-;35888:6;35922:5;35916:12;35906:22;;35836:99;;;:::o;35941:168::-;36024:11;36058:6;36053:3;36046:19;36098:4;36093:3;36089:14;36074:29;;35941:168;;;;:::o;36115:169::-;36199:11;36233:6;36228:3;36221:19;36273:4;36268:3;36264:14;36249:29;;36115:169;;;;:::o;36290:148::-;36392:11;36429:3;36414:18;;36290:148;;;;:::o;36444:273::-;36484:3;36503:20;36521:1;36503:20;:::i;:::-;36498:25;;36537:20;36555:1;36537:20;:::i;:::-;36532:25;;36659:1;36623:34;36619:42;36616:1;36613:49;36610:75;;;36665:18;;:::i;:::-;36610:75;36709:1;36706;36702:9;36695:16;;36444:273;;;;:::o;36723:305::-;36763:3;36782:20;36800:1;36782:20;:::i;:::-;36777:25;;36816:20;36834:1;36816:20;:::i;:::-;36811:25;;36970:1;36902:66;36898:74;36895:1;36892:81;36889:107;;;36976:18;;:::i;:::-;36889:107;37020:1;37017;37013:9;37006:16;;36723:305;;;;:::o;37034:185::-;37074:1;37091:20;37109:1;37091:20;:::i;:::-;37086:25;;37125:20;37143:1;37125:20;:::i;:::-;37120:25;;37164:1;37154:35;;37169:18;;:::i;:::-;37154:35;37211:1;37208;37204:9;37199:14;;37034:185;;;;:::o;37225:348::-;37265:7;37288:20;37306:1;37288:20;:::i;:::-;37283:25;;37322:20;37340:1;37322:20;:::i;:::-;37317:25;;37510:1;37442:66;37438:74;37435:1;37432:81;37427:1;37420:9;37413:17;37409:105;37406:131;;;37517:18;;:::i;:::-;37406:131;37565:1;37562;37558:9;37547:20;;37225:348;;;;:::o;37579:191::-;37619:4;37639:20;37657:1;37639:20;:::i;:::-;37634:25;;37673:20;37691:1;37673:20;:::i;:::-;37668:25;;37712:1;37709;37706:8;37703:34;;;37717:18;;:::i;:::-;37703:34;37762:1;37759;37755:9;37747:17;;37579:191;;;;:::o;37776:::-;37816:4;37836:20;37854:1;37836:20;:::i;:::-;37831:25;;37870:20;37888:1;37870:20;:::i;:::-;37865:25;;37909:1;37906;37903:8;37900:34;;;37914:18;;:::i;:::-;37900:34;37959:1;37956;37952:9;37944:17;;37776:191;;;;:::o;37973:96::-;38010:7;38039:24;38057:5;38039:24;:::i;:::-;38028:35;;37973:96;;;:::o;38075:90::-;38109:7;38152:5;38145:13;38138:21;38127:32;;38075:90;;;:::o;38171:149::-;38207:7;38247:66;38240:5;38236:78;38225:89;;38171:149;;;:::o;38326:110::-;38377:7;38406:24;38424:5;38406:24;:::i;:::-;38395:35;;38326:110;;;:::o;38442:118::-;38479:7;38519:34;38512:5;38508:46;38497:57;;38442:118;;;:::o;38566:126::-;38603:7;38643:42;38636:5;38632:54;38621:65;;38566:126;;;:::o;38698:77::-;38735:7;38764:5;38753:16;;38698:77;;;:::o;38781:154::-;38865:6;38860:3;38855;38842:30;38927:1;38918:6;38913:3;38909:16;38902:27;38781:154;;;:::o;38941:307::-;39009:1;39019:113;39033:6;39030:1;39027:13;39019:113;;;39118:1;39113:3;39109:11;39103:18;39099:1;39094:3;39090:11;39083:39;39055:2;39052:1;39048:10;39043:15;;39019:113;;;39150:6;39147:1;39144:13;39141:101;;;39230:1;39221:6;39216:3;39212:16;39205:27;39141:101;38990:258;38941:307;;;:::o;39254:171::-;39293:3;39316:24;39334:5;39316:24;:::i;:::-;39307:33;;39362:4;39355:5;39352:15;39349:41;;;39370:18;;:::i;:::-;39349:41;39417:1;39410:5;39406:13;39399:20;;39254:171;;;:::o;39431:320::-;39475:6;39512:1;39506:4;39502:12;39492:22;;39559:1;39553:4;39549:12;39580:18;39570:81;;39636:4;39628:6;39624:17;39614:27;;39570:81;39698:2;39690:6;39687:14;39667:18;39664:38;39661:84;;;39717:18;;:::i;:::-;39661:84;39482:269;39431:320;;;:::o;39757:281::-;39840:27;39862:4;39840:27;:::i;:::-;39832:6;39828:40;39970:6;39958:10;39955:22;39934:18;39922:10;39919:34;39916:62;39913:88;;;39981:18;;:::i;:::-;39913:88;40021:10;40017:2;40010:22;39800:238;39757:281;;:::o;40044:233::-;40083:3;40106:24;40124:5;40106:24;:::i;:::-;40097:33;;40152:66;40145:5;40142:77;40139:103;;;40222:18;;:::i;:::-;40139:103;40269:1;40262:5;40258:13;40251:20;;40044:233;;;:::o;40283:176::-;40315:1;40332:20;40350:1;40332:20;:::i;:::-;40327:25;;40366:20;40384:1;40366:20;:::i;:::-;40361:25;;40405:1;40395:35;;40410:18;;:::i;:::-;40395:35;40451:1;40448;40444:9;40439:14;;40283:176;;;;:::o;40465:180::-;40513:77;40510:1;40503:88;40610:4;40607:1;40600:15;40634:4;40631:1;40624:15;40651:180;40699:77;40696:1;40689:88;40796:4;40793:1;40786:15;40820:4;40817:1;40810:15;40837:180;40885:77;40882:1;40875:88;40982:4;40979:1;40972:15;41006:4;41003:1;40996:15;41023:180;41071:77;41068:1;41061:88;41168:4;41165:1;41158:15;41192:4;41189:1;41182:15;41209:180;41257:77;41254:1;41247:88;41354:4;41351:1;41344:15;41378:4;41375:1;41368:15;41395:117;41504:1;41501;41494:12;41518:117;41627:1;41624;41617:12;41641:117;41750:1;41747;41740:12;41764:117;41873:1;41870;41863:12;41887:102;41928:6;41979:2;41975:7;41970:2;41963:5;41959:14;41955:28;41945:38;;41887:102;;;:::o;41995:221::-;42135:34;42131:1;42123:6;42119:14;42112:58;42204:4;42199:2;42191:6;42187:15;42180:29;41995:221;:::o;42222:225::-;42362:34;42358:1;42350:6;42346:14;42339:58;42431:8;42426:2;42418:6;42414:15;42407:33;42222:225;:::o;42453:229::-;42593:34;42589:1;42581:6;42577:14;42570:58;42662:12;42657:2;42649:6;42645:15;42638:37;42453:229;:::o;42688:222::-;42828:34;42824:1;42816:6;42812:14;42805:58;42897:5;42892:2;42884:6;42880:15;42873:30;42688:222;:::o;42916:221::-;43056:34;43052:1;43044:6;43040:14;43033:58;43125:4;43120:2;43112:6;43108:15;43101:29;42916:221;:::o;43143:224::-;43283:34;43279:1;43271:6;43267:14;43260:58;43352:7;43347:2;43339:6;43335:15;43328:32;43143:224;:::o;43373:221::-;43513:34;43509:1;43501:6;43497:14;43490:58;43582:4;43577:2;43569:6;43565:15;43558:29;43373:221;:::o;43600:167::-;43740:19;43736:1;43728:6;43724:14;43717:43;43600:167;:::o;43773:244::-;43913:34;43909:1;43901:6;43897:14;43890:58;43982:27;43977:2;43969:6;43965:15;43958:52;43773:244;:::o;44023:230::-;44163:34;44159:1;44151:6;44147:14;44140:58;44232:13;44227:2;44219:6;44215:15;44208:38;44023:230;:::o;44259:225::-;44399:34;44395:1;44387:6;44383:14;44376:58;44468:8;44463:2;44455:6;44451:15;44444:33;44259:225;:::o;44490:155::-;44630:7;44626:1;44618:6;44614:14;44607:31;44490:155;:::o;44651:182::-;44791:34;44787:1;44779:6;44775:14;44768:58;44651:182;:::o;44839:176::-;44979:28;44975:1;44967:6;44963:14;44956:52;44839:176;:::o;45021:237::-;45161:34;45157:1;45149:6;45145:14;45138:58;45230:20;45225:2;45217:6;45213:15;45206:45;45021:237;:::o;45264:221::-;45404:34;45400:1;45392:6;45388:14;45381:58;45473:4;45468:2;45460:6;45456:15;45449:29;45264:221;:::o;45491:238::-;45631:34;45627:1;45619:6;45615:14;45608:58;45700:21;45695:2;45687:6;45683:15;45676:46;45491:238;:::o;45735:179::-;45875:31;45871:1;45863:6;45859:14;45852:55;45735:179;:::o;45920:220::-;46060:34;46056:1;46048:6;46044:14;46037:58;46129:3;46124:2;46116:6;46112:15;46105:28;45920:220;:::o;46146:174::-;46286:26;46282:1;46274:6;46270:14;46263:50;46146:174;:::o;46326:233::-;46466:34;46462:1;46454:6;46450:14;46443:58;46535:16;46530:2;46522:6;46518:15;46511:41;46326:233;:::o;46565:181::-;46705:33;46701:1;46693:6;46689:14;46682:57;46565:181;:::o;46752:234::-;46892:34;46888:1;46880:6;46876:14;46869:58;46961:17;46956:2;46948:6;46944:15;46937:42;46752:234;:::o;46992:173::-;47132:25;47128:1;47120:6;47116:14;47109:49;46992:173;:::o;47171:232::-;47311:34;47307:1;47299:6;47295:14;47288:58;47380:15;47375:2;47367:6;47363:15;47356:40;47171:232;:::o;47409:151::-;47549:3;47545:1;47537:6;47533:14;47526:27;47409:151;:::o;47566:122::-;47639:24;47657:5;47639:24;:::i;:::-;47632:5;47629:35;47619:63;;47678:1;47675;47668:12;47619:63;47566:122;:::o;47694:116::-;47764:21;47779:5;47764:21;:::i;:::-;47757:5;47754:32;47744:60;;47800:1;47797;47790:12;47744:60;47694:116;:::o;47816:120::-;47888:23;47905:5;47888:23;:::i;:::-;47881:5;47878:34;47868:62;;47926:1;47923;47916:12;47868:62;47816:120;:::o;47942:150::-;48029:38;48061:5;48029:38;:::i;:::-;48022:5;48019:49;48009:77;;48082:1;48079;48072:12;48009:77;47942:150;:::o;48098:122::-;48171:24;48189:5;48171:24;:::i;:::-;48164:5;48161:35;48151:63;;48210:1;48207;48200:12;48151:63;48098:122;:::o
Swarm Source
ipfs://9c5f6bf94f4422d46be1eb5fd1d29bff2bec9a3ba0a6d678487890314cb0897e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.