Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
MintplexERC721A
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-15 */ // SPDX-License-Identifier: MIT //-------------DEPENDENCIES--------------------------// // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if account is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, isContract will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on isContract to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's transfer: sends amount wei to * recipient, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by transfer, making them unable to receive funds via * transfer. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to recipient, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level call. A * plain call is an unsafe replacement for a function call: use this * function instead. * * If target reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[abi.decode]. * * Requirements: * * - target must be a contract. * - calling target with data must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall], but with * errorMessage as a fallback revert reason when target reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall], * but also transferring value wei to target. * * Requirements: * * - the calling contract must have an ETH balance of at least value. * - the called Solidity function must be payable. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[functionCallWithValue], but * with errorMessage as a fallback revert reason when target reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[functionCall], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[functionCall], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[functionCall], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/proxy/utils/Initializable.sol // OpenZeppelin Contracts v4.7.3 (v4.7.3/contracts/proxy/utils/Initializable.sol) abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. Equivalent to `reinitializer(1)`. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!Address.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * `initializer` is equivalent to `reinitializer(1)`, so a reinitializer may be used after the original * initialization step. This is essential to configure modules that are added through upgrades and that require * initialization. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } } // 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/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 (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by owner at a given index of its token list. * Use along with {balanceOf} to enumerate all of owner's tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given index of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for tokenId token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/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/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/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. */ function _onlyOwner() private view { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } modifier onlyOwner() { _onlyOwner(); _; } /** * @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 contracts/OperatorFilter/IOperatorFilterRegistry.sol pragma solidity ^0.8.9; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); } // File contracts/OperatorFilter/OperatorFilterer.sol pragma solidity ^0.8.9; abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry constant operatorFilterRegistry = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor() {} function _init(address subscriptionOrRegistrantToCopy, bool subscribe) internal { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(operatorFilterRegistry).code.length > 0) { if (subscribe) { operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { operatorFilterRegistry.register(address(this)); } } } } function _onlyAllowedOperator(address from) private view { if ( !( operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender) && operatorFilterRegistry.isOperatorAllowed(address(this), from) ) ) { revert OperatorNotAllowed(msg.sender); } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } _onlyAllowedOperator(from); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(operatorFilterRegistry).code.length > 0) { if (!operatorFilterRegistry.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } } //-------------END DEPENDENCIES------------------------// error TransactionCapExceeded(); error PublicMintingClosed(); error ExcessiveOwnedMints(); error MintZeroQuantity(); error InvalidPayment(); error CapExceeded(); error IsAlreadyUnveiled(); error ValueCannotBeZero(); error CannotBeNullAddress(); error NoStateChange(); error PublicMintClosed(); error AllowlistMintClosed(); error AddressNotAllowlisted(); error AllowlistDropTimeHasNotPassed(); error PublicDropTimeHasNotPassed(); error DropTimeNotInFuture(); error OnlyERC20MintingEnabled(); error ERC20TokenNotApproved(); error ERC20InsufficientBalance(); error ERC20InsufficientAllowance(); error ERC20TransferFailed(); error ClaimModeDisabled(); error IneligibleRedemptionContract(); error TokenAlreadyRedeemed(); error InvalidOwnerForRedemption(); error InvalidApprovalForRedemption(); error ERC721RestrictedApprovalAddressRestricted(); error NotMaintainer(); error PayablePayoutMisMatch(); error PayoutsNot100(); // Rampp Contracts v2.1 (Teams.sol) error InvalidTeamAddress(); error DuplicateTeamAddress(); pragma solidity ^0.8.0; /** * Teams is a contract implementation to extend upon Ownable that allows multiple controllers * of a single contract to modify specific mint settings but not have overall ownership of the contract. * This will easily allow cross-collaboration via Mintplex.xyz. **/ abstract contract Teams is Ownable{ mapping (address => bool) internal team; /** * @dev Adds an address to the team. Allows them to execute protected functions * @param _address the ETH address to add, cannot be 0x and cannot be in team already **/ function addToTeam(address _address) public onlyOwner { if(_address == address(0)) revert InvalidTeamAddress(); if(inTeam(_address)) revert DuplicateTeamAddress(); team[_address] = true; } /** * @dev Removes an address to the team. * @param _address the ETH address to remove, cannot be 0x and must be in team **/ function removeFromTeam(address _address) public onlyOwner { if(_address == address(0)) revert InvalidTeamAddress(); if(!inTeam(_address)) revert InvalidTeamAddress(); team[_address] = false; } /** * @dev Check if an address is valid and active in the team * @param _address ETH address to check for truthiness **/ function inTeam(address _address) public view returns (bool) { if(_address == address(0)) revert InvalidTeamAddress(); return team[_address] == true; } /** * @dev Throws if called by any account other than the owner or team member. */ function _onlyTeamOrOwner() private view { bool _isOwner = owner() == _msgSender(); bool _isTeam = inTeam(_msgSender()); require(_isOwner || _isTeam, "Team: caller is not the owner or in Team."); } modifier onlyTeamOrOwner() { _onlyTeamOrOwner(); _; } } pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a 'leaf' can be proved to be a part of a Merkle tree * defined by 'root'. For this, a 'proof' must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from 'leaf' using 'proof'. A 'proof' is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // File: Allowlist.sol pragma solidity ^0.8.0; abstract contract Allowlist is Teams { bytes32 public merkleRoot; bool public onlyAllowlistMode; /** * @dev Update merkle root to reflect changes in Allowlist * @param _newMerkleRoot new merkle root to reflect most recent Allowlist */ function updateMerkleRoot(bytes32 _newMerkleRoot) public onlyTeamOrOwner { if(_newMerkleRoot == merkleRoot) revert NoStateChange(); merkleRoot = _newMerkleRoot; } /** * @dev Check the proof of an address if valid for merkle root * @param _to address to check for proof * @param _merkleProof Proof of the address to validate against root and leaf */ function isAllowlisted(address _to, bytes32[] calldata _merkleProof) public view returns(bool) { if(merkleRoot == 0) revert ValueCannotBeZero(); bytes32 leaf = keccak256(abi.encodePacked(_to)); return MerkleProof.verify(_merkleProof, merkleRoot, leaf); } function enableAllowlistOnlyMode() public onlyTeamOrOwner { onlyAllowlistMode = true; } function disableAllowlistOnlyMode() public onlyTeamOrOwner { onlyAllowlistMode = false; } } /** * @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 _startTokenId() (defaults to 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). */ abstract contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable, Teams, OperatorFilterer { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex; uint256 public collectionSize; uint256 public 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 Mapping of restricted operator approvals set by contract Owner * This serves as an optional addition to ERC-721 so * that the contract owner can elect to prevent specific addresses/contracts * from being marked as the approver for a token. The reason for this * is that some projects may want to retain control of where their tokens can/can not be listed * either due to ethics, loyalty, or wanting trades to only occur on their personal marketplace. * By default, there are no restrictions. The contract owner must deliberatly block an address */ mapping(address => bool) public restrictedApprovalAddresses; /** * @dev * maxBatchSize refers to how much a minter can mint at a time. * collectionSize_ refers to how many tokens are in the collection. */ constructor(){} function _init( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) internal { 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_; currentIndex = _startTokenId(); OperatorFilterer._init(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6, true); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalMinted(); } function currentTokenId() public view returns (uint256) { return _totalMinted(); } function getNextTokenId() public view returns (uint256) { return _totalMinted() + 1; } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { unchecked { return currentIndex - _startTokenId(); } } /** * @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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } revert("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) { string memory baseURI = _baseURI(); string memory extension = _baseURIExtension(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), extension)) : ""; } /** * @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 Base URI extension used for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the baseURI, tokenId, and this value. Empty * by default, can be overriden in child contracts. */ function _baseURIExtension() internal view virtual returns (string memory) { return ""; } /** * @dev Sets the value for an address to be in the restricted approval address pool. * Setting an address to true will disable token owners from being able to mark the address * for approval for trading. This would be used in theory to prevent token owners from listing * on specific marketplaces or protcols. Only modifible by the contract owner/team. * @param _address the marketplace/user to modify restriction status of * @param _isRestricted restriction status of the _address to be set. true => Restricted, false => Open */ function setApprovalRestriction(address _address, bool _isRestricted) public onlyTeamOrOwner { restrictedApprovalAddresses[_address] = _isRestricted; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override onlyAllowedOperatorApproval(to) { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); if(restrictedApprovalAddresses[to]) revert ERC721RestrictedApprovalAddressRestricted(); 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 onlyAllowedOperatorApproval(operator) { require(operator != _msgSender(), "ERC721A: approve to caller"); if(restrictedApprovalAddresses[operator]) revert ERC721RestrictedApprovalAddressRestricted(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override onlyAllowedOperator(from) { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override onlyAllowedOperator(from) { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override onlyAllowedOperator(from) { _transfer(from, to, tokenId); 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 _startTokenId() <= tokenId && tokenId < currentIndex; } function _safeMint(address to, uint256 quantity, bool isAdminMint) internal { _safeMint(to, quantity, isAdminMint, ""); } /** * @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, bool isAdminMint, 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"); // For admin mints we do not want to enforce the maxBatchSize limit if (isAdminMint == false) { 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 + (isAdminMint ? 0 : 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"); if (currentIndex == _startTokenId()) revert('No Tokens Minted Yet'); 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 {} } abstract contract ProviderFees is Context { address private PROVIDER; uint256 public PROVIDER_FEE; constructor() {} function init() internal { PROVIDER = 0xa9dAC8f3aEDC55D0FE707B86B8A45d246858d2E1; PROVIDER_FEE = 0.000777 ether; } function sendProviderFee() internal { payable(PROVIDER).transfer(PROVIDER_FEE); } function setProviderFee(uint256 _fee) public { if(_msgSender() != PROVIDER) revert NotMaintainer(); PROVIDER_FEE = _fee; } } interface IERC20 { function allowance(address owner, address spender) external view returns (uint256); function transfer(address _to, uint256 _amount) external returns (bool); function balanceOf(address account) external view returns (uint256); function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File: WithdrawableV2 // This abstract allows the contract to be able to mint and ingest ERC-20 payments for mints. // ERC-20 Payouts are limited to a single payout address. This feature // will charge a small flat fee in native currency that is not subject to regular rev sharing. // This contract also covers the normal functionality of accepting native base currency rev-sharing abstract contract WithdrawableV2 is Teams { struct acceptedERC20 { bool isActive; uint256 chargeAmount; } mapping(address => acceptedERC20) private allowedTokenContracts; address[] public payableAddresses; address public erc20Payable; uint256[] public payableFees; uint256 public payableAddressCount; bool public onlyERC20MintingMode; function resetPayables(address[] memory _newPayables, uint256[] memory _newPayouts) public onlyTeamOrOwner { if(_newPayables.length != _newPayouts.length) revert PayablePayoutMisMatch(); uint sum; for(uint i=0; i < _newPayouts.length; i++ ) { sum += _newPayouts[i]; } if(sum != 100) revert PayoutsNot100(); payableAddresses = _newPayables; payableFees = _newPayouts; payableAddressCount = _newPayables.length; } function withdrawAll() public onlyTeamOrOwner { if(address(this).balance == 0) revert ValueCannotBeZero(); _withdrawAll(address(this).balance); } function _withdrawAll(uint256 balance) private { for(uint i=0; i < payableAddressCount; i++ ) { _widthdraw( payableAddresses[i], (balance * payableFees[i]) / 100 ); } } function _widthdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Transfer failed."); } /** * @dev Allow contract owner to withdraw ERC-20 balance from contract * in the event ERC-20 tokens are paid to the contract for mints. * @param _tokenContract contract of ERC-20 token to withdraw * @param _amountToWithdraw balance to withdraw according to balanceOf of ERC-20 token in wei */ function withdrawERC20(address _tokenContract, uint256 _amountToWithdraw) public onlyTeamOrOwner { if(_amountToWithdraw == 0) revert ValueCannotBeZero(); IERC20 tokenContract = IERC20(_tokenContract); if(tokenContract.balanceOf(address(this)) < _amountToWithdraw) revert ERC20InsufficientBalance(); tokenContract.transfer(erc20Payable, _amountToWithdraw); // Payout ERC-20 tokens to recipient } /** * @dev check if an ERC-20 contract is a valid payable contract for executing a mint. * @param _erc20TokenContract address of ERC-20 contract in question */ function isApprovedForERC20Payments(address _erc20TokenContract) public view returns(bool) { return allowedTokenContracts[_erc20TokenContract].isActive == true; } /** * @dev get the value of tokens to transfer for user of an ERC-20 * @param _erc20TokenContract address of ERC-20 contract in question */ function chargeAmountForERC20(address _erc20TokenContract) public view returns(uint256) { if(!isApprovedForERC20Payments(_erc20TokenContract)) revert ERC20TokenNotApproved(); return allowedTokenContracts[_erc20TokenContract].chargeAmount; } /** * @dev Explicity sets and ERC-20 contract as an allowed payment method for minting * @param _erc20TokenContract address of ERC-20 contract in question * @param _isActive default status of if contract should be allowed to accept payments * @param _chargeAmountInTokens fee (in tokens) to charge for mints for this specific ERC-20 token */ function addOrUpdateERC20ContractAsPayment(address _erc20TokenContract, bool _isActive, uint256 _chargeAmountInTokens) public onlyTeamOrOwner { allowedTokenContracts[_erc20TokenContract].isActive = _isActive; allowedTokenContracts[_erc20TokenContract].chargeAmount = _chargeAmountInTokens; } /** * @dev Add an ERC-20 contract as being a valid payment method. If passed a contract which has not been added * it will assume the default value of zero. This should not be used to create new payment tokens. * @param _erc20TokenContract address of ERC-20 contract in question */ function enableERC20ContractAsPayment(address _erc20TokenContract) public onlyTeamOrOwner { allowedTokenContracts[_erc20TokenContract].isActive = true; } /** * @dev Disable an ERC-20 contract as being a valid payment method. If passed a contract which has not been added * it will assume the default value of zero. This should not be used to create new payment tokens. * @param _erc20TokenContract address of ERC-20 contract in question */ function disableERC20ContractAsPayment(address _erc20TokenContract) public onlyTeamOrOwner { allowedTokenContracts[_erc20TokenContract].isActive = false; } /** * @dev Enable only ERC-20 payments for minting on this contract */ function enableERC20OnlyMinting() public onlyTeamOrOwner { onlyERC20MintingMode = true; } /** * @dev Disable only ERC-20 payments for minting on this contract */ function disableERC20OnlyMinting() public onlyTeamOrOwner { onlyERC20MintingMode = false; } /** * @dev Set the payout of the ERC-20 token payout to a specific address * @param _newErc20Payable new payout addresses of ERC-20 tokens */ function setERC20PayableAddress(address _newErc20Payable) public onlyTeamOrOwner { if(_newErc20Payable == address(0)) revert CannotBeNullAddress(); if(_newErc20Payable == erc20Payable) revert NoStateChange(); erc20Payable = _newErc20Payable; } } // File: isFeeable.sol abstract contract Feeable is Teams, ProviderFees { uint256 public PRICE; function setPrice(uint256 _feeInWei) public onlyTeamOrOwner { PRICE = _feeInWei; } function getPrice(uint256 _count) public view returns (uint256) { return (PRICE * _count) + PROVIDER_FEE; } } /* File: Tippable.sol /* @dev Allows owner to set strict enforcement of payment to mint price. /* Would then allow buyers to pay _more_ than the mint fee - consider it as a tip /* when doing a free mint with opt-in pricing. /* When strict pricing is enabled => msg.value must extactly equal the expected value /* when strict pricing is disabled => msg.value must be _at least_ the expected value. /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /* Pros - can take in gratituity payments during a mint. /* Cons - However if you decrease pricing during mint txn settlement /* it can result in mints landing who technically now have overpaid. */ abstract contract Tippable is Teams { bool public strictPricing; function setStrictPricing(bool _newStatus) public onlyTeamOrOwner { strictPricing = _newStatus; } // @dev check if msg.value is correct according to pricing enforcement // @param _msgValue -> passed in msg.value of tx // @param _expectedPrice -> result of getPrice(...args) function priceIsRight(uint256 _msgValue, uint256 _expectedPrice) internal view returns (bool) { return strictPricing ? _msgValue == _expectedPrice : _msgValue >= _expectedPrice; } } contract MintplexERC721A is Ownable, Teams, ERC721A, Initializable, WithdrawableV2, ReentrancyGuard, Feeable, Tippable, Allowlist { constructor() {_disableInitializers();} function initialize( address _owner, address[] memory _payables, uint256[] memory _payouts, string memory tokenName, string memory tokenSymbol, string[2] memory uris, // [basetokenURI, collectionURI] uint256[2] memory _collectionSettings, // [maxMintsPerTxn, collectionSize] uint256[2] memory _settings //[mintPrice, maxWalletMints] ) initializer public { erc20Payable = _owner; payableAddresses = _payables; payableFees = _payouts; payableAddressCount = _payables.length; _baseTokenURI = uris[0]; _contractURI = uris[1]; PRICE = _settings[0]; MAX_WALLET_MINTS = _settings[1]; // Contract-wide presets strictPricing = true; _baseTokenExtension = ".json"; Ownable._transferOwnership(_owner); ERC721A._init(tokenName, tokenSymbol, _collectionSettings[0], _collectionSettings[1]); ProviderFees.init(); } uint8 constant public CONTRACT_VERSION = 2; string public _contractURI; string public _baseTokenURI; string public _baseTokenExtension; bool public mintingOpen; uint256 public MAX_WALLET_MINTS; /////////////// Admin Mint Functions /** * @dev Mints a token to an address with a tokenURI. * This is owner only and allows a fee-free drop * @param _to address of the future owner of the token * @param _qty amount of tokens to drop the owner */ function mintToAdminV2(address _to, uint256 _qty) public onlyTeamOrOwner{ if(_qty == 0) revert MintZeroQuantity(); if(currentTokenId() + _qty > collectionSize) revert CapExceeded(); _safeMint(_to, _qty, true); } /////////////// PUBLIC MINT FUNCTIONS /** * @dev Mints tokens to an address in batch. * fee may or may not be required* * @param _to address of the future owner of the token * @param _amount number of tokens to mint */ function mintToMultiple(address _to, uint256 _amount) public payable { if(onlyERC20MintingMode) revert OnlyERC20MintingEnabled(); if(_amount == 0) revert MintZeroQuantity(); if(_amount > maxBatchSize) revert TransactionCapExceeded(); if(!mintingOpen) revert PublicMintClosed(); if(mintingOpen && onlyAllowlistMode) revert PublicMintClosed(); if(!canMintAmount(_to, _amount)) revert ExcessiveOwnedMints(); if(currentTokenId() + _amount > collectionSize) revert CapExceeded(); if(!priceIsRight(msg.value, getPrice(_amount))) revert InvalidPayment(); sendProviderFee(); _safeMint(_to, _amount, false); } /** * @dev Mints tokens to an address in batch using an ERC-20 token for payment * fee may or may not be required* * @param _to address of the future owner of the token * @param _amount number of tokens to mint * @param _erc20TokenContract erc-20 token contract to mint with */ function mintToMultipleERC20(address _to, uint256 _amount, address _erc20TokenContract) public payable { if(_amount == 0) revert MintZeroQuantity(); if(_amount > maxBatchSize) revert TransactionCapExceeded(); if(!mintingOpen) revert PublicMintClosed(); if(currentTokenId() + _amount > collectionSize) revert CapExceeded(); if(mintingOpen && onlyAllowlistMode) revert PublicMintClosed(); if(!canMintAmount(_to, _amount)) revert ExcessiveOwnedMints(); if(msg.value != PROVIDER_FEE) revert InvalidPayment(); // ERC-20 Specific pre-flight checks if(!isApprovedForERC20Payments(_erc20TokenContract)) revert ERC20TokenNotApproved(); uint256 tokensQtyToTransfer = chargeAmountForERC20(_erc20TokenContract) * _amount; IERC20 payableToken = IERC20(_erc20TokenContract); if(payableToken.balanceOf(_to) < tokensQtyToTransfer) revert ERC20InsufficientBalance(); if(payableToken.allowance(_to, address(this)) < tokensQtyToTransfer) revert ERC20InsufficientAllowance(); bool transferComplete = payableToken.transferFrom(_to, address(this), tokensQtyToTransfer); if(!transferComplete) revert ERC20TransferFailed(); sendProviderFee(); _safeMint(_to, _amount, false); } function openMinting() public onlyTeamOrOwner { mintingOpen = true; } function stopMinting() public onlyTeamOrOwner { mintingOpen = false; } ///////////// ALLOWLIST MINTING FUNCTIONS /** * @dev Mints tokens to an address using an allowlist. * fee may or may not be required* * @param _to address of the future owner of the token * @param _amount number of tokens to mint * @param _merkleProof merkle proof array */ function mintToMultipleAL(address _to, uint256 _amount, bytes32[] calldata _merkleProof) public payable { if(onlyERC20MintingMode) revert OnlyERC20MintingEnabled(); if(!onlyAllowlistMode || !mintingOpen) revert AllowlistMintClosed(); if(!isAllowlisted(_to, _merkleProof)) revert AddressNotAllowlisted(); if(_amount == 0) revert MintZeroQuantity(); if(_amount > maxBatchSize) revert TransactionCapExceeded(); if(!canMintAmount(_to, _amount)) revert ExcessiveOwnedMints(); if(currentTokenId() + _amount > collectionSize) revert CapExceeded(); if(!priceIsRight(msg.value, getPrice(_amount))) revert InvalidPayment(); sendProviderFee(); _safeMint(_to, _amount, false); } /** * @dev Mints tokens to an address using an allowlist. * fee may or may not be required* * @param _to address of the future owner of the token * @param _amount number of tokens to mint * @param _merkleProof merkle proof array * @param _erc20TokenContract erc-20 token contract to mint with */ function mintToMultipleERC20AL(address _to, uint256 _amount, bytes32[] calldata _merkleProof, address _erc20TokenContract) public payable { if(!onlyAllowlistMode || !mintingOpen) revert AllowlistMintClosed(); if(!isAllowlisted(_to, _merkleProof)) revert AddressNotAllowlisted(); if(_amount == 0) revert MintZeroQuantity(); if(_amount > maxBatchSize) revert TransactionCapExceeded(); if(!canMintAmount(_to, _amount)) revert ExcessiveOwnedMints(); if(currentTokenId() + _amount > collectionSize) revert CapExceeded(); if(msg.value != PROVIDER_FEE) revert InvalidPayment(); // ERC-20 Specific pre-flight checks if(!isApprovedForERC20Payments(_erc20TokenContract)) revert ERC20TokenNotApproved(); uint256 tokensQtyToTransfer = chargeAmountForERC20(_erc20TokenContract) * _amount; IERC20 payableToken = IERC20(_erc20TokenContract); if(payableToken.balanceOf(_to) < tokensQtyToTransfer) revert ERC20InsufficientBalance(); if(payableToken.allowance(_to, address(this)) < tokensQtyToTransfer) revert ERC20InsufficientAllowance(); bool transferComplete = payableToken.transferFrom(_to, address(this), tokensQtyToTransfer); if(!transferComplete) revert ERC20TransferFailed(); sendProviderFee(); _safeMint(_to, _amount, false); } /** * @dev Enable allowlist minting fully by enabling both flags * This is a convenience function for the Rampp user */ function openAllowlistMint() public onlyTeamOrOwner { enableAllowlistOnlyMode(); mintingOpen = true; } /** * @dev Close allowlist minting fully by disabling both flags * This is a convenience function for the Rampp user */ function closeAllowlistMint() public onlyTeamOrOwner { disableAllowlistOnlyMode(); mintingOpen = false; } /** * @dev Check if wallet over MAX_WALLET_MINTS * @param _address address in question to check if minted count exceeds max */ function canMintAmount(address _address, uint256 _amount) public view returns(bool) { if(_amount == 0) revert ValueCannotBeZero(); return (_numberMinted(_address) + _amount) <= MAX_WALLET_MINTS; } /** * @dev Update the maximum amount of tokens that can be minted by a unique wallet * @param _newWalletMax the new max of tokens a wallet can mint. Must be >= 1 */ function setWalletMax(uint256 _newWalletMax) public onlyTeamOrOwner { if(_newWalletMax == 0) revert ValueCannotBeZero(); MAX_WALLET_MINTS = _newWalletMax; } /** * @dev Allows owner to set Max mints per tx * @param _newMaxMint maximum amount of tokens allowed to mint per tx. Must be >= 1 */ function setMaxMint(uint256 _newMaxMint) public onlyTeamOrOwner { if(_newMaxMint == 0) revert ValueCannotBeZero(); maxBatchSize = _newMaxMint; } function contractURI() public view returns (string memory) { return _contractURI; } function _baseURI() internal view virtual override returns(string memory) { return _baseTokenURI; } function _baseURIExtension() internal view virtual override returns(string memory) { return _baseTokenExtension; } function baseTokenURI() public view returns(string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyTeamOrOwner { _baseTokenURI = baseURI; } function setBaseTokenExtension(string calldata baseExtension) external onlyTeamOrOwner { _baseTokenExtension = baseExtension; } } //*********************************************************************// //*********************************************************************// // Mintplex v3.0.0 // // This smart contract was generated by mintplex.xyz. // Mintplex allows creators like you to launch // large scale NFT communities without code! // // Mintplex is not responsible for the content of this contract and // hopes it is being used in a responsible and kind way. // Mintplex is not associated or affiliated with this project. // Twitter: @MintplexNFT ---- mintplex.xyz //*********************************************************************// //*********************************************************************//
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AddressNotAllowlisted","type":"error"},{"inputs":[],"name":"AllowlistMintClosed","type":"error"},{"inputs":[],"name":"CannotBeNullAddress","type":"error"},{"inputs":[],"name":"CapExceeded","type":"error"},{"inputs":[],"name":"DuplicateTeamAddress","type":"error"},{"inputs":[],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[],"name":"ERC20TokenNotApproved","type":"error"},{"inputs":[],"name":"ERC20TransferFailed","type":"error"},{"inputs":[],"name":"ERC721RestrictedApprovalAddressRestricted","type":"error"},{"inputs":[],"name":"ExcessiveOwnedMints","type":"error"},{"inputs":[],"name":"InvalidPayment","type":"error"},{"inputs":[],"name":"InvalidTeamAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoStateChange","type":"error"},{"inputs":[],"name":"NotMaintainer","type":"error"},{"inputs":[],"name":"OnlyERC20MintingEnabled","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"PayablePayoutMisMatch","type":"error"},{"inputs":[],"name":"PayoutsNot100","type":"error"},{"inputs":[],"name":"PublicMintClosed","type":"error"},{"inputs":[],"name":"TransactionCapExceeded","type":"error"},{"inputs":[],"name":"ValueCannotBeZero","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","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":"CONTRACT_VERSION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVIDER_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"},{"internalType":"bool","name":"_isActive","type":"bool"},{"internalType":"uint256","name":"_chargeAmountInTokens","type":"uint256"}],"name":"addOrUpdateERC20ContractAsPayment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addToTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"canMintAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"chargeAmountForERC20","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeAllowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableAllowlistOnlyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"disableERC20ContractAsPayment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableERC20OnlyMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAllowlistOnlyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"enableERC20ContractAsPayment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableERC20OnlyMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"erc20Payable","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"getNextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"inTeam","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address[]","name":"_payables","type":"address[]"},{"internalType":"uint256[]","name":"_payouts","type":"uint256[]"},{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"string[2]","name":"uris","type":"string[2]"},{"internalType":"uint256[2]","name":"_collectionSettings","type":"uint256[2]"},{"internalType":"uint256[2]","name":"_settings","type":"uint256[2]"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isAllowlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"isApprovedForERC20Payments","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"mintToAdminV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintToMultiple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintToMultipleAL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"mintToMultipleERC20","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"address","name":"_erc20TokenContract","type":"address"}],"name":"mintToMultipleERC20AL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyAllowlistMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyERC20MintingMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openAllowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payableAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeFromTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_newPayables","type":"address[]"},{"internalType":"uint256[]","name":"_newPayouts","type":"uint256[]"}],"name":"resetPayables","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"restrictedApprovalAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isRestricted","type":"bool"}],"name":"setApprovalRestriction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseExtension","type":"string"}],"name":"setBaseTokenExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newErc20Payable","type":"address"}],"name":"setERC20PayableAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeInWei","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setProviderFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newStatus","type":"bool"}],"name":"setStrictPricing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWalletMax","type":"uint256"}],"name":"setWalletMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strictPricing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256","name":"_amountToWithdraw","type":"uint256"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600c553480156200001657600080fd5b50620000223362000037565b60016014556200003162000087565b62000149565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600d54610100900460ff1615620000f45760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b600d5460ff90811610156200014757600d805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b614a9f80620001596000396000f3fe60806040526004361061047d5760003560e01c8063853828b611610255578063c0e7274011610144578063e6c6990a116100c1578063ed77e19f11610085578063ed77e19f14610cf8578063f2fde38b14610d18578063f623bb8b14610d38578063f8c0fd2014610d4e578063fd19eaf014610d63578063fe6757a114610d8357600080fd5b8063e6c6990a14610c4b578063e757223014610c65578063e8a3d48514610c85578063e985e9c514610c9a578063ec34082614610ce357600080fd5b8063d266f3a911610108578063d266f3a914610bc0578063d547cfb714610be0578063d7224ba014610bf5578063d83ae33214610c0b578063dfdedf6914610c2b57600080fd5b8063c0e7274014610b41578063c87b56dd14610b56578063caa0f92a14610b76578063cacf084214610b8b578063cfc86f7b14610bab57600080fd5b80639bac5389116101d2578063a91bd1a911610196578063a91bd1a914610ab7578063afe5608b14610ad7578063aff3e10b14610aec578063b88d4fde14610b0c578063b94b237614610b2c57600080fd5b80639bac538914610a17578063a1af10ca14610a37578063a1db978214610a57578063a22cb46514610a77578063a7593fb714610a9757600080fd5b80638da5cb5b116102195780638da5cb5b1461098a5780638f4bb497146109a85780638ff4013f146109c257806391b7f5ed146109e257806395d89b4114610a0257600080fd5b8063853828b61461090a578063891bbe731461091f57806389f26d581461093f5780638b300ba8146109545780638d859f3e1461097457600080fd5b806340ccc0821161037157806355f804b3116102ee57806370a08231116102b257806370a0823114610880578063715018a6146108a057806379ab3c89146108b55780637fb8c6d3146108ca57806383c81c41146108ea57600080fd5b806355f804b31461080357806360986a71146108235780636352211e146108365780636ba9fd38146108565780636d3de8061461086b57600080fd5b806346f41ed51161033557806346f41ed5146107735780634783f0ef1461078d5780634ab8b5dd146107ad5780634f6ccce7146107c3578063547520fe146107e357600080fd5b806340ccc082146106dd57806342842e0e146106fd57806343696f181461071d57806345c0f5331461073d578063464c34281461075357600080fd5b8063286c8137116103ff57806338b90333116103c357806338b90333146106585780633c0032541461067f5780633d3f9c57146106925780633e07311c146106b25780633e3e0b12146106c857600080fd5b8063286c8137146105cc5780632913daa0146105ec5780632eb4a7ab146106025780632f745c5914610618578063330067861461063857600080fd5b8063081812fc11610446578063081812fc14610541578063095ea7b31461057957806316b88a1d1461059957806318160ddd1461048257806323b872dd146105ac57600080fd5b80629a9b7b1461048257806301ffc9a7146104aa578063043a2a40146104da5780630644cefa1461050a57806306fdde031461051f575b600080fd5b34801561048e57600080fd5b50610497610d9d565b6040519081526020015b60405180910390f35b3480156104b657600080fd5b506104ca6104c5366004613db3565b610db1565b60405190151581526020016104a1565b3480156104e657600080fd5b506104ca6104f5366004613dec565b600b6020526000908152604090205460ff1681565b61051d610518366004613e07565b610e1e565b005b34801561052b57600080fd5b50610534610f7e565b6040516104a19190613e81565b34801561054d57600080fd5b5061056161055c366004613e94565b611010565b6040516001600160a01b0390911681526020016104a1565b34801561058557600080fd5b5061051d610594366004613e07565b61109e565b61051d6105a7366004613ef8565b6111fa565b3480156105b857600080fd5b5061051d6105c7366004613f66565b611531565b3480156105d857600080fd5b506104976105e7366004613e94565b61157b565b3480156105f857600080fd5b5061049760045481565b34801561060e57600080fd5b5061049760195481565b34801561062457600080fd5b50610497610633366004613e07565b61159c565b34801561064457600080fd5b506104ca610653366004613fa2565b611711565b34801561066457600080fd5b5061066d600281565b60405160ff90911681526020016104a1565b61051d61068d366004613ff4565b6117ba565b34801561069e57600080fd5b506104ca6106ad366004613dec565b611917565b3480156106be57600080fd5b5061049760125481565b3480156106d457600080fd5b5061051d61193a565b3480156106e957600080fd5b5061051d6106f8366004613e07565b61194e565b34801561070957600080fd5b5061051d610718366004613f66565b6119b8565b34801561072957600080fd5b5061051d610738366004613dec565b611a1d565b34801561074957600080fd5b5061049760035481565b34801561075f57600080fd5b5061051d61076e366004613dec565b611a99565b34801561077f57600080fd5b506013546104ca9060ff1681565b34801561079957600080fd5b5061051d6107a8366004613e94565b611ac5565b3480156107b957600080fd5b50610497601f5481565b3480156107cf57600080fd5b506104976107de366004613e94565b611af4565b3480156107ef57600080fd5b5061051d6107fe366004613e94565b611b5c565b34801561080f57600080fd5b5061051d61081e36600461404d565b611b8a565b61051d6108313660046140be565b611ba4565b34801561084257600080fd5b50610561610851366004613e94565b611ed3565b34801561086257600080fd5b5061051d611ee5565b34801561087757600080fd5b5061051d611efc565b34801561088c57600080fd5b5061049761089b366004613dec565b611f10565b3480156108ac57600080fd5b5061051d611fa1565b3480156108c157600080fd5b5061051d611fb5565b3480156108d657600080fd5b50601054610561906001600160a01b031681565b3480156108f657600080fd5b5061051d610905366004614108565b611fcc565b34801561091657600080fd5b5061051d611fff565b34801561092b57600080fd5b5061056161093a366004613e94565b612031565b34801561094b57600080fd5b5061051d61205b565b34801561096057600080fd5b5061051d61096f3660046143cb565b612072565b34801561098057600080fd5b5061049760175481565b34801561099657600080fd5b506000546001600160a01b0316610561565b3480156109b457600080fd5b50601e546104ca9060ff1681565b3480156109ce57600080fd5b5061051d6109dd366004613e94565b612289565b3480156109ee57600080fd5b5061051d6109fd366004613e94565b6122b7565b348015610a0e57600080fd5b506105346122c4565b348015610a2357600080fd5b5061051d610a323660046144d1565b6122d3565b348015610a4357600080fd5b506104ca610a52366004613dec565b612396565b348015610a6357600080fd5b5061051d610a72366004613e07565b6123e3565b348015610a8357600080fd5b5061051d610a92366004614108565b61250e565b348015610aa357600080fd5b5061051d610ab2366004613e94565b612617565b348015610ac357600080fd5b5061051d610ad2366004613dec565b612650565b348015610ae357600080fd5b5061051d6126d0565b348015610af857600080fd5b5061051d610b0736600461404d565b6126e0565b348015610b1857600080fd5b5061051d610b27366004614534565b6126f5565b348015610b3857600080fd5b5061051d612796565b348015610b4d57600080fd5b506105346127aa565b348015610b6257600080fd5b50610534610b71366004613e94565b612838565b348015610b8257600080fd5b506104976128a5565b348015610b9757600080fd5b5061051d610ba6366004613dec565b6128bf565b348015610bb757600080fd5b506105346128e8565b348015610bcc57600080fd5b50610497610bdb366004613dec565b6128f5565b348015610bec57600080fd5b5061053461293c565b348015610c0157600080fd5b50610497600c5481565b348015610c1757600080fd5b5061051d610c263660046145af565b61294b565b348015610c3757600080fd5b5061051d610c46366004613dec565b612982565b348015610c5757600080fd5b50601a546104ca9060ff1681565b348015610c7157600080fd5b50610497610c80366004613e94565b6129f6565b348015610c9157600080fd5b50610534612a13565b348015610ca657600080fd5b506104ca610cb53660046145ee565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b348015610cef57600080fd5b50610534612a22565b348015610d0457600080fd5b5061051d610d13366004614621565b612a2f565b348015610d2457600080fd5b5061051d610d33366004613dec565b612a4a565b348015610d4457600080fd5b5061049760165481565b348015610d5a57600080fd5b5061051d612ac3565b348015610d6f57600080fd5b506104ca610d7e366004613e07565b612ad3565b348015610d8f57600080fd5b506018546104ca9060ff1681565b6000610dac6002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610de257506001600160e01b03198216635b5e139f60e01b145b80610dfd57506001600160e01b0319821663780e9d6360e01b145b80610e1857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60135460ff1615610e425760405163380ea98360e21b815260040160405180910390fd5b80600003610e635760405163b562e8dd60e01b815260040160405180910390fd5b600454811115610e86576040516393eeb41560e01b815260040160405180910390fd5b601e5460ff16610ea9576040516316851fc760e11b815260040160405180910390fd5b601e5460ff168015610ebd5750601a5460ff165b15610edb576040516316851fc760e11b815260040160405180910390fd5b610ee58282612ad3565b610f02576040516366be767160e11b815260040160405180910390fd5b60035481610f0e610d9d565b610f189190614654565b1115610f375760405163a4875a4960e01b815260040160405180910390fd5b610f4934610f44836129f6565b612b16565b610f665760405163078d696560e31b815260040160405180910390fd5b610f6e612b37565b610f7a82826000612b73565b5050565b606060058054610f8d90614667565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb990614667565b80156110065780601f10610fdb57610100808354040283529160200191611006565b820191906000526020600020905b815481529060010190602001808311610fe957829003601f168201915b5050505050905090565b600061101b82612b8e565b6110825760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600960205260409020546001600160a01b031690565b816110a881612ba4565b60006110b383611ed3565b9050806001600160a01b0316846001600160a01b0316036111215760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401611079565b6001600160a01b0384166000908152600b602052604090205460ff161561115b5760405163d947c35f60e01b815260040160405180910390fd5b336001600160a01b038216148061117757506111778133610cb5565b6111e95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401611079565b6111f4848483612c5d565b50505050565b601a5460ff16158061120f5750601e5460ff16155b1561122d576040516309c7220160e31b815260040160405180910390fd5b611238858484611711565b6112555760405163097b24df60e41b815260040160405180910390fd5b836000036112765760405163b562e8dd60e01b815260040160405180910390fd5b600454841115611299576040516393eeb41560e01b815260040160405180910390fd5b6112a38585612ad3565b6112c0576040516366be767160e11b815260040160405180910390fd5b600354846112cc610d9d565b6112d69190614654565b11156112f55760405163a4875a4960e01b815260040160405180910390fd5b60165434146113175760405163078d696560e31b815260040160405180910390fd5b61132081611917565b61133d57604051636c501c9960e11b815260040160405180910390fd5b600084611349836128f5565b61135391906146a1565b6040516370a0823160e01b81526001600160a01b03888116600483015291925083918391908316906370a0823190602401602060405180830381865afa1580156113a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c591906146b8565b10156113e457604051631642df1760e21b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03888116600483015230602483015283919083169063dd62ed3e90604401602060405180830381865afa158015611433573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145791906146b8565b10156114765760405163017e286b60e51b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b03888116600483015230602483015260448201849052600091908316906323b872dd906064016020604051808303816000875af11580156114cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f391906146d1565b90508061151357604051633c9fd93960e21b815260040160405180910390fd5b61151b612b37565b61152788886000612b73565b5050505050505050565b826daaeb6d7670e522a718067333cd4e3b1561157057336001600160a01b0382160361156757611562848484612cb9565b6111f4565b61157081613039565b6111f4848484612cb9565b6011818154811061158b57600080fd5b600091825260209091200154905081565b60006115a783611f10565b82106116005760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401611079565b600061160a610d9d565b905060008060005b838110156116b1576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561166457805192505b876001600160a01b0316836001600160a01b03160361169e5786840361169057509350610e1892505050565b8361169a816146ee565b9450505b50806116a9816146ee565b915050611612565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401611079565b6019546000908103611736576040516363868c5560e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff19606086901b1660208201526000906034016040516020818303038152906040528051906020012090506117b184848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601954915084905061314e565b95945050505050565b60135460ff16156117de5760405163380ea98360e21b815260040160405180910390fd5b601a5460ff1615806117f35750601e5460ff16155b15611811576040516309c7220160e31b815260040160405180910390fd5b61181c848383611711565b6118395760405163097b24df60e41b815260040160405180910390fd5b8260000361185a5760405163b562e8dd60e01b815260040160405180910390fd5b60045483111561187d576040516393eeb41560e01b815260040160405180910390fd5b6118878484612ad3565b6118a4576040516366be767160e11b815260040160405180910390fd5b600354836118b0610d9d565b6118ba9190614654565b11156118d95760405163a4875a4960e01b815260040160405180910390fd5b6118e634610f44856129f6565b6119035760405163078d696560e31b815260040160405180910390fd5b61190b612b37565b6111f484846000612b73565b6001600160a01b03166000908152600e602052604090205460ff16151560011490565b611942613164565b601e805460ff19169055565b611956613164565b806000036119775760405163b562e8dd60e01b815260040160405180910390fd5b60035481611983610d9d565b61198d9190614654565b11156119ac5760405163a4875a4960e01b815260040160405180910390fd5b610f7a82826001612b73565b826daaeb6d7670e522a718067333cd4e3b15611a0257336001600160a01b038216036119f957611562848484604051806020016040528060008152506126f5565b611a0281613039565b6111f4848484604051806020016040528060008152506126f5565b611a256131e9565b6001600160a01b038116611a4b5760405162afb37360e31b815260040160405180910390fd5b611a5481612396565b15611a7257604051631002377360e01b815260040160405180910390fd5b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b611aa1613164565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b611acd613164565b6019548103611aef5760405163a28a88c160e01b815260040160405180910390fd5b601955565b6000611afe610d9d565b8210611b585760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401611079565b5090565b611b64613164565b80600003611b85576040516363868c5560e11b815260040160405180910390fd5b600455565b611b92613164565b601c611b9f82848361474d565b505050565b81600003611bc55760405163b562e8dd60e01b815260040160405180910390fd5b600454821115611be8576040516393eeb41560e01b815260040160405180910390fd5b601e5460ff16611c0b576040516316851fc760e11b815260040160405180910390fd5b60035482611c17610d9d565b611c219190614654565b1115611c405760405163a4875a4960e01b815260040160405180910390fd5b601e5460ff168015611c545750601a5460ff165b15611c72576040516316851fc760e11b815260040160405180910390fd5b611c7c8383612ad3565b611c99576040516366be767160e11b815260040160405180910390fd5b6016543414611cbb5760405163078d696560e31b815260040160405180910390fd5b611cc481611917565b611ce157604051636c501c9960e11b815260040160405180910390fd5b600082611ced836128f5565b611cf791906146a1565b6040516370a0823160e01b81526001600160a01b03868116600483015291925083918391908316906370a0823190602401602060405180830381865afa158015611d45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d6991906146b8565b1015611d8857604051631642df1760e21b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03868116600483015230602483015283919083169063dd62ed3e90604401602060405180830381865afa158015611dd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dfb91906146b8565b1015611e1a5760405163017e286b60e51b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b03868116600483015230602483015260448201849052600091908316906323b872dd906064016020604051808303816000875af1158015611e73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9791906146d1565b905080611eb757604051633c9fd93960e21b815260040160405180910390fd5b611ebf612b37565b611ecb86866000612b73565b505050505050565b6000611ede82613243565b5192915050565b611eed613164565b601e805460ff19166001179055565b611f04613164565b601a805460ff19169055565b60006001600160a01b038216611f7c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401611079565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b611fa96131e9565b611fb36000613371565b565b611fbd613164565b601a805460ff19166001179055565b611fd4613164565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b612007613164565b47600003612028576040516363868c5560e11b815260040160405180910390fd5b611fb3476133c1565b600f818154811061204157600080fd5b6000918252602090912001546001600160a01b0316905081565b612063613164565b6013805460ff19166001179055565b600d54610100900460ff16158080156120925750600d54600160ff909116105b806120ac5750303b1580156120ac5750600d5460ff166001145b61210f5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401611079565b600d805460ff19166001179055801561213257600d805461ff0019166101001790555b601080546001600160a01b0319166001600160a01b038b16179055875161216090600f9060208b0190613cec565b5086516121749060119060208a0190613d4d565b5087516012558351601c906121899082614822565b506020840151601b9061219c9082614822565b508151601755602080830151601f556018805460ff19166001179055604080518082019091526005815264173539b7b760d91b91810191909152601d906121e39082614822565b506121ed89613371565b8251602084015161220291889188919061344e565b612238601580546001600160a01b03191673a9dac8f3aedc55d0fe707b86b8a45d246858d2e11790556602c2ad68fd9000601655565b801561227e57600d805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050505050505050565b612291613164565b806000036122b2576040516363868c5560e11b815260040160405180910390fd5b601f55565b6122bf613164565b601755565b606060068054610f8d90614667565b6122db613164565b80518251146122fd5760405163293b70bb60e21b815260040160405180910390fd5b6000805b82518110156123435782818151811061231c5761231c61480c565b60200260200101518261232f9190614654565b91508061233b816146ee565b915050612301565b5080606414612365576040516358718f7d60e01b815260040160405180910390fd5b825161237890600f906020860190613cec565b50815161238c906011906020850190613d4d565b5050905160125550565b60006001600160a01b0382166123be5760405162afb37360e31b815260040160405180910390fd5b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b6123eb613164565b8060000361240c576040516363868c5560e11b815260040160405180910390fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a0823190602401602060405180830381865afa158015612454573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061247891906146b8565b101561249757604051631642df1760e21b815260040160405180910390fd5b60105460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018490529082169063a9059cbb906044016020604051808303816000875af11580156124ea573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f491906146d1565b8161251881612ba4565b336001600160a01b038416036125705760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401611079565b6001600160a01b0383166000908152600b602052604090205460ff16156125aa5760405163d947c35f60e01b815260040160405180910390fd5b336000818152600a602090815260408083206001600160a01b03881680855290835292819020805460ff191687151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6015546001600160a01b0316336001600160a01b03161461264b57604051639b96b05160e01b815260040160405180910390fd5b601655565b612658613164565b6001600160a01b03811661267f576040516322646a9760e21b815260040160405180910390fd5b6010546001600160a01b03908116908216036126ae5760405163a28a88c160e01b815260040160405180910390fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6126d8613164565b611942611efc565b6126e8613164565b601d611b9f82848361474d565b836daaeb6d7670e522a718067333cd4e3b1561275c57336001600160a01b0382160361275357612726858585612cb9565b6127328585858561355d565b61274e5760405162461bcd60e51b8152600401611079906148e1565b61278f565b61275c81613039565b612767858585612cb9565b6127738585858561355d565b61278f5760405162461bcd60e51b8152600401611079906148e1565b5050505050565b61279e613164565b6013805460ff19169055565b601b80546127b790614667565b80601f01602080910402602001604051908101604052809291908181526020018280546127e390614667565b80156128305780601f1061280557610100808354040283529160200191612830565b820191906000526020600020905b81548152906001019060200180831161281357829003601f168201915b505050505081565b6060600061284461293c565b9050600061285061365e565b90506000825111612870576040518060200160405280600081525061289d565b8161287a8561366d565b8260405160200161288d93929190614934565b6040516020818303038152906040525b949350505050565b60006128b46002546000190190565b610dac906001614654565b6128c7613164565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b601c80546127b790614667565b600061290082611917565b61291d57604051636c501c9960e11b815260040160405180910390fd5b506001600160a01b03166000908152600e602052604090206001015490565b6060601c8054610f8d90614667565b612953613164565b6001600160a01b03929092166000908152600e60205260409020805460ff191691151591909117815560010155565b61298a6131e9565b6001600160a01b0381166129b05760405162afb37360e31b815260040160405180910390fd5b6129b981612396565b6129d55760405162afb37360e31b815260040160405180910390fd5b6001600160a01b03166000908152600160205260409020805460ff19169055565b600060165482601754612a0991906146a1565b610e189190614654565b6060601b8054610f8d90614667565b601d80546127b790614667565b612a37613164565b6018805460ff1916911515919091179055565b612a526131e9565b6001600160a01b038116612ab75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611079565b612ac081613371565b50565b612acb613164565b611eed611fb5565b600081600003612af6576040516363868c5560e11b815260040160405180910390fd5b601f5482612b038561376d565b612b0d9190614654565b11159392505050565b60185460009060ff16612b2c5781831015612b30565b8183145b9392505050565b6015546016546040516001600160a01b039092169181156108fc0291906000818181858888f19350505050158015612ac0573d6000803e3d6000fd5b611b9f8383836040518060200160405280600081525061380b565b600081600111158015610e185750506002541190565b6daaeb6d7670e522a718067333cd4e3b15612ac057604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612c11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c3591906146d1565b612ac057604051633b79c77360e21b81526001600160a01b0382166004820152602401611079565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612cc482613243565b80519091506000906001600160a01b0316336001600160a01b03161480612cfb575033612cf084611010565b6001600160a01b0316145b80612d0d57508151612d0d9033610cb5565b905080612d775760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401611079565b846001600160a01b031682600001516001600160a01b031614612deb5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401611079565b6001600160a01b038416612e4f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401611079565b612e5f6000848460000151612c5d565b6001600160a01b0385166000908152600860205260408120805460019290612e919084906001600160801b0316614977565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526008602052604081208054600194509092612edd9185911661499e565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526007909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612f64846001614654565b6000818152600760205260409020549091506001600160a01b0316612ff357612f8c81612b8e565b15612ff35760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600790935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ecb565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015613088573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130ac91906146d1565b801561312f5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561310b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061312f91906146d1565b612ac057604051633b79c77360e21b8152336004820152602401611079565b60008261315b8584613add565b14949350505050565b600080546001600160a01b031633908114919061318090612396565b9050818061318b5750805b610f7a5760405162461bcd60e51b815260206004820152602960248201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726044820152681034b7102a32b0b69760b91b6064820152608401611079565b6000546001600160a01b03163314611fb35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611079565b6040805180820190915260008082526020820152818060011115801561326a575060025481105b15613311576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156132bb579392505050565b50600019016000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561330c579392505050565b6132bb565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401611079565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b601254811015610f7a5761343c600f82815481106133e4576133e461480c565b9060005260206000200160009054906101000a90046001600160a01b03166064601184815481106134175761341761480c565b90600052602060002001548561342d91906146a1565b61343791906149d4565b613b51565b80613446816146ee565b9150506133c4565b600081116134b55760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b6064820152608401611079565b600082116135155760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401611079565b60056135218582614822565b50600661352e8482614822565b506004829055600381905560016002556111f4733cc6cdda760b79bafa08df41ecfa224f810dceb66001613be7565b60006001600160a01b0384163b1561365357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906135a19033908990889088906004016149e8565b6020604051808303816000875af19250505080156135dc575060408051601f3d908101601f191682019092526135d991810190614a25565b60015b613639573d80801561360a576040519150601f19603f3d011682016040523d82523d6000602084013e61360f565b606091505b5080516000036136315760405162461bcd60e51b8152600401611079906148e1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061289d565b506001949350505050565b6060601d8054610f8d90614667565b6060816000036136945750506040805180820190915260018152600360fc1b602082015290565b8160005b81156136be57806136a8816146ee565b91506136b79050600a836149d4565b9150613698565b6000816001600160401b038111156136d8576136d861413f565b6040519080825280601f01601f191660200182016040528015613702576020820181803683370190505b5090505b841561289d57613717600183614a42565b9150613724600a86614a55565b61372f906030614654565b60f81b8183815181106137445761374461480c565b60200101906001600160f81b031916908160001a905350613766600a866149d4565b9450613706565b60006001600160a01b0382166137df5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401611079565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b6002546001600160a01b03851661386e5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401611079565b61387781612b8e565b156138c45760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401611079565b82151560000361392b5760045484111561392b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401611079565b6001600160a01b0385166000908152600860209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061398790889061499e565b6001600160801b03168152602001856139a057866139a3565b60005b83602001516139b2919061499e565b6001600160801b039081169091526001600160a01b0380891660008181526008602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526007909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b86811015613ad15760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4613a95600089848861355d565b613ab15760405162461bcd60e51b8152600401611079906148e1565b81613abb816146ee565b9250508080613ac9906146ee565b915050613a48565b50600255505050505050565b600081815b8451811015613b49576000858281518110613aff57613aff61480c565b60200260200101519050808311613b255760008381526020829052604090209250613b36565b600081815260208490526040902092505b5080613b41816146ee565b915050613ae2565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613b9e576040519150601f19603f3d011682016040523d82523d6000602084013e613ba3565b606091505b5050905080611b9f5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401611079565b6daaeb6d7670e522a718067333cd4e3b15610f7a578015613c6c57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015613c5857600080fd5b505af1158015611ecb573d6000803e3d6000fd5b6001600160a01b03821615613cbb5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401613c3e565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401613c3e565b828054828255906000526020600020908101928215613d41579160200282015b82811115613d4157825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190613d0c565b50611b58929150613d88565b828054828255906000526020600020908101928215613d41579160200282015b82811115613d41578251825591602001919060010190613d6d565b5b80821115611b585760008155600101613d89565b6001600160e01b031981168114612ac057600080fd5b600060208284031215613dc557600080fd5b8135612b3081613d9d565b80356001600160a01b0381168114613de757600080fd5b919050565b600060208284031215613dfe57600080fd5b612b3082613dd0565b60008060408385031215613e1a57600080fd5b613e2383613dd0565b946020939093013593505050565b60005b83811015613e4c578181015183820152602001613e34565b50506000910152565b60008151808452613e6d816020860160208601613e31565b601f01601f19169290920160200192915050565b602081526000612b306020830184613e55565b600060208284031215613ea657600080fd5b5035919050565b60008083601f840112613ebf57600080fd5b5081356001600160401b03811115613ed657600080fd5b6020830191508360208260051b8501011115613ef157600080fd5b9250929050565b600080600080600060808688031215613f1057600080fd5b613f1986613dd0565b94506020860135935060408601356001600160401b03811115613f3b57600080fd5b613f4788828901613ead565b9094509250613f5a905060608701613dd0565b90509295509295909350565b600080600060608486031215613f7b57600080fd5b613f8484613dd0565b9250613f9260208501613dd0565b9150604084013590509250925092565b600080600060408486031215613fb757600080fd5b613fc084613dd0565b925060208401356001600160401b03811115613fdb57600080fd5b613fe786828701613ead565b9497909650939450505050565b6000806000806060858703121561400a57600080fd5b61401385613dd0565b93506020850135925060408501356001600160401b0381111561403557600080fd5b61404187828801613ead565b95989497509550505050565b6000806020838503121561406057600080fd5b82356001600160401b038082111561407757600080fd5b818501915085601f83011261408b57600080fd5b81358181111561409a57600080fd5b8660208285010111156140ac57600080fd5b60209290920196919550909350505050565b6000806000606084860312156140d357600080fd5b6140dc84613dd0565b9250602084013591506140f160408501613dd0565b90509250925092565b8015158114612ac057600080fd5b6000806040838503121561411b57600080fd5b61412483613dd0565b91506020830135614134816140fa565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156141775761417761413f565b60405290565b604051601f8201601f191681016001600160401b03811182821017156141a5576141a561413f565b604052919050565b60006001600160401b038211156141c6576141c661413f565b5060051b60200190565b600082601f8301126141e157600080fd5b813560206141f66141f1836141ad565b61417d565b82815260059290921b8401810191818101908684111561421557600080fd5b8286015b848110156142375761422a81613dd0565b8352918301918301614219565b509695505050505050565b600082601f83011261425357600080fd5b813560206142636141f1836141ad565b82815260059290921b8401810191818101908684111561428257600080fd5b8286015b848110156142375780358352918301918301614286565b60006001600160401b038311156142b6576142b661413f565b6142c9601f8401601f191660200161417d565b90508281528383830111156142dd57600080fd5b828260208301376000602084830101529392505050565b600082601f83011261430557600080fd5b612b308383356020850161429d565b600082601f83011261432557600080fd5b61432d614155565b80604084018581111561433f57600080fd5b845b8181101561437b5780356001600160401b038111156143605760008081fd5b61436c888289016142f4565b85525060209384019301614341565b509095945050505050565b600082601f83011261439757600080fd5b61439f614155565b8060408401858111156143b157600080fd5b845b8181101561437b5780358452602093840193016143b3565b600080600080600080600080610140898b0312156143e857600080fd5b6143f189613dd0565b975060208901356001600160401b038082111561440d57600080fd5b6144198c838d016141d0565b985060408b013591508082111561442f57600080fd5b61443b8c838d01614242565b975060608b013591508082111561445157600080fd5b61445d8c838d016142f4565b965060808b013591508082111561447357600080fd5b61447f8c838d016142f4565b955060a08b013591508082111561449557600080fd5b506144a28b828c01614314565b9350506144b28a60c08b01614386565b91506144c28a6101008b01614386565b90509295985092959890939650565b600080604083850312156144e457600080fd5b82356001600160401b03808211156144fb57600080fd5b614507868387016141d0565b9350602085013591508082111561451d57600080fd5b5061452a85828601614242565b9150509250929050565b6000806000806080858703121561454a57600080fd5b61455385613dd0565b935061456160208601613dd0565b92506040850135915060608501356001600160401b0381111561458357600080fd5b8501601f8101871361459457600080fd5b6145a38782356020840161429d565b91505092959194509250565b6000806000606084860312156145c457600080fd5b6145cd84613dd0565b925060208401356145dd816140fa565b929592945050506040919091013590565b6000806040838503121561460157600080fd5b61460a83613dd0565b915061461860208401613dd0565b90509250929050565b60006020828403121561463357600080fd5b8135612b30816140fa565b634e487b7160e01b600052601160045260246000fd5b80820180821115610e1857610e1861463e565b600181811c9082168061467b57607f821691505b60208210810361469b57634e487b7160e01b600052602260045260246000fd5b50919050565b8082028115828204841417610e1857610e1861463e565b6000602082840312156146ca57600080fd5b5051919050565b6000602082840312156146e357600080fd5b8151612b30816140fa565b6000600182016147005761470061463e565b5060010190565b601f821115611b9f57600081815260208120601f850160051c8101602086101561472e5750805b601f850160051c820191505b81811015611ecb5782815560010161473a565b6001600160401b038311156147645761476461413f565b614778836147728354614667565b83614707565b6000601f8411600181146147ac57600085156147945750838201355b600019600387901b1c1916600186901b17835561278f565b600083815260209020601f19861690835b828110156147dd57868501358255602094850194600190920191016147bd565b50868210156147fa5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052603260045260246000fd5b81516001600160401b0381111561483b5761483b61413f565b61484f816148498454614667565b84614707565b602080601f831160018114614884576000841561486c5750858301515b600019600386901b1c1916600185901b178555611ecb565b600085815260208120601f198616915b828110156148b357888601518255948401946001909101908401614894565b50858210156148d15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008451614946818460208901613e31565b84519083019061495a818360208901613e31565b845191019061496d818360208801613e31565b0195945050505050565b6001600160801b038281168282160390808211156149975761499761463e565b5092915050565b6001600160801b038181168382160190808211156149975761499761463e565b634e487b7160e01b600052601260045260246000fd5b6000826149e3576149e36149be565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614a1b90830184613e55565b9695505050505050565b600060208284031215614a3757600080fd5b8151612b3081613d9d565b81810381811115610e1857610e1861463e565b600082614a6457614a646149be565b50069056fea264697066735822122074e8d090802542e6958e6ab5ab329d3482139bd49b90f6aa8e7b09fd2bc2670364736f6c63430008120033
Deployed Bytecode
0x60806040526004361061047d5760003560e01c8063853828b611610255578063c0e7274011610144578063e6c6990a116100c1578063ed77e19f11610085578063ed77e19f14610cf8578063f2fde38b14610d18578063f623bb8b14610d38578063f8c0fd2014610d4e578063fd19eaf014610d63578063fe6757a114610d8357600080fd5b8063e6c6990a14610c4b578063e757223014610c65578063e8a3d48514610c85578063e985e9c514610c9a578063ec34082614610ce357600080fd5b8063d266f3a911610108578063d266f3a914610bc0578063d547cfb714610be0578063d7224ba014610bf5578063d83ae33214610c0b578063dfdedf6914610c2b57600080fd5b8063c0e7274014610b41578063c87b56dd14610b56578063caa0f92a14610b76578063cacf084214610b8b578063cfc86f7b14610bab57600080fd5b80639bac5389116101d2578063a91bd1a911610196578063a91bd1a914610ab7578063afe5608b14610ad7578063aff3e10b14610aec578063b88d4fde14610b0c578063b94b237614610b2c57600080fd5b80639bac538914610a17578063a1af10ca14610a37578063a1db978214610a57578063a22cb46514610a77578063a7593fb714610a9757600080fd5b80638da5cb5b116102195780638da5cb5b1461098a5780638f4bb497146109a85780638ff4013f146109c257806391b7f5ed146109e257806395d89b4114610a0257600080fd5b8063853828b61461090a578063891bbe731461091f57806389f26d581461093f5780638b300ba8146109545780638d859f3e1461097457600080fd5b806340ccc0821161037157806355f804b3116102ee57806370a08231116102b257806370a0823114610880578063715018a6146108a057806379ab3c89146108b55780637fb8c6d3146108ca57806383c81c41146108ea57600080fd5b806355f804b31461080357806360986a71146108235780636352211e146108365780636ba9fd38146108565780636d3de8061461086b57600080fd5b806346f41ed51161033557806346f41ed5146107735780634783f0ef1461078d5780634ab8b5dd146107ad5780634f6ccce7146107c3578063547520fe146107e357600080fd5b806340ccc082146106dd57806342842e0e146106fd57806343696f181461071d57806345c0f5331461073d578063464c34281461075357600080fd5b8063286c8137116103ff57806338b90333116103c357806338b90333146106585780633c0032541461067f5780633d3f9c57146106925780633e07311c146106b25780633e3e0b12146106c857600080fd5b8063286c8137146105cc5780632913daa0146105ec5780632eb4a7ab146106025780632f745c5914610618578063330067861461063857600080fd5b8063081812fc11610446578063081812fc14610541578063095ea7b31461057957806316b88a1d1461059957806318160ddd1461048257806323b872dd146105ac57600080fd5b80629a9b7b1461048257806301ffc9a7146104aa578063043a2a40146104da5780630644cefa1461050a57806306fdde031461051f575b600080fd5b34801561048e57600080fd5b50610497610d9d565b6040519081526020015b60405180910390f35b3480156104b657600080fd5b506104ca6104c5366004613db3565b610db1565b60405190151581526020016104a1565b3480156104e657600080fd5b506104ca6104f5366004613dec565b600b6020526000908152604090205460ff1681565b61051d610518366004613e07565b610e1e565b005b34801561052b57600080fd5b50610534610f7e565b6040516104a19190613e81565b34801561054d57600080fd5b5061056161055c366004613e94565b611010565b6040516001600160a01b0390911681526020016104a1565b34801561058557600080fd5b5061051d610594366004613e07565b61109e565b61051d6105a7366004613ef8565b6111fa565b3480156105b857600080fd5b5061051d6105c7366004613f66565b611531565b3480156105d857600080fd5b506104976105e7366004613e94565b61157b565b3480156105f857600080fd5b5061049760045481565b34801561060e57600080fd5b5061049760195481565b34801561062457600080fd5b50610497610633366004613e07565b61159c565b34801561064457600080fd5b506104ca610653366004613fa2565b611711565b34801561066457600080fd5b5061066d600281565b60405160ff90911681526020016104a1565b61051d61068d366004613ff4565b6117ba565b34801561069e57600080fd5b506104ca6106ad366004613dec565b611917565b3480156106be57600080fd5b5061049760125481565b3480156106d457600080fd5b5061051d61193a565b3480156106e957600080fd5b5061051d6106f8366004613e07565b61194e565b34801561070957600080fd5b5061051d610718366004613f66565b6119b8565b34801561072957600080fd5b5061051d610738366004613dec565b611a1d565b34801561074957600080fd5b5061049760035481565b34801561075f57600080fd5b5061051d61076e366004613dec565b611a99565b34801561077f57600080fd5b506013546104ca9060ff1681565b34801561079957600080fd5b5061051d6107a8366004613e94565b611ac5565b3480156107b957600080fd5b50610497601f5481565b3480156107cf57600080fd5b506104976107de366004613e94565b611af4565b3480156107ef57600080fd5b5061051d6107fe366004613e94565b611b5c565b34801561080f57600080fd5b5061051d61081e36600461404d565b611b8a565b61051d6108313660046140be565b611ba4565b34801561084257600080fd5b50610561610851366004613e94565b611ed3565b34801561086257600080fd5b5061051d611ee5565b34801561087757600080fd5b5061051d611efc565b34801561088c57600080fd5b5061049761089b366004613dec565b611f10565b3480156108ac57600080fd5b5061051d611fa1565b3480156108c157600080fd5b5061051d611fb5565b3480156108d657600080fd5b50601054610561906001600160a01b031681565b3480156108f657600080fd5b5061051d610905366004614108565b611fcc565b34801561091657600080fd5b5061051d611fff565b34801561092b57600080fd5b5061056161093a366004613e94565b612031565b34801561094b57600080fd5b5061051d61205b565b34801561096057600080fd5b5061051d61096f3660046143cb565b612072565b34801561098057600080fd5b5061049760175481565b34801561099657600080fd5b506000546001600160a01b0316610561565b3480156109b457600080fd5b50601e546104ca9060ff1681565b3480156109ce57600080fd5b5061051d6109dd366004613e94565b612289565b3480156109ee57600080fd5b5061051d6109fd366004613e94565b6122b7565b348015610a0e57600080fd5b506105346122c4565b348015610a2357600080fd5b5061051d610a323660046144d1565b6122d3565b348015610a4357600080fd5b506104ca610a52366004613dec565b612396565b348015610a6357600080fd5b5061051d610a72366004613e07565b6123e3565b348015610a8357600080fd5b5061051d610a92366004614108565b61250e565b348015610aa357600080fd5b5061051d610ab2366004613e94565b612617565b348015610ac357600080fd5b5061051d610ad2366004613dec565b612650565b348015610ae357600080fd5b5061051d6126d0565b348015610af857600080fd5b5061051d610b0736600461404d565b6126e0565b348015610b1857600080fd5b5061051d610b27366004614534565b6126f5565b348015610b3857600080fd5b5061051d612796565b348015610b4d57600080fd5b506105346127aa565b348015610b6257600080fd5b50610534610b71366004613e94565b612838565b348015610b8257600080fd5b506104976128a5565b348015610b9757600080fd5b5061051d610ba6366004613dec565b6128bf565b348015610bb757600080fd5b506105346128e8565b348015610bcc57600080fd5b50610497610bdb366004613dec565b6128f5565b348015610bec57600080fd5b5061053461293c565b348015610c0157600080fd5b50610497600c5481565b348015610c1757600080fd5b5061051d610c263660046145af565b61294b565b348015610c3757600080fd5b5061051d610c46366004613dec565b612982565b348015610c5757600080fd5b50601a546104ca9060ff1681565b348015610c7157600080fd5b50610497610c80366004613e94565b6129f6565b348015610c9157600080fd5b50610534612a13565b348015610ca657600080fd5b506104ca610cb53660046145ee565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205460ff1690565b348015610cef57600080fd5b50610534612a22565b348015610d0457600080fd5b5061051d610d13366004614621565b612a2f565b348015610d2457600080fd5b5061051d610d33366004613dec565b612a4a565b348015610d4457600080fd5b5061049760165481565b348015610d5a57600080fd5b5061051d612ac3565b348015610d6f57600080fd5b506104ca610d7e366004613e07565b612ad3565b348015610d8f57600080fd5b506018546104ca9060ff1681565b6000610dac6002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610de257506001600160e01b03198216635b5e139f60e01b145b80610dfd57506001600160e01b0319821663780e9d6360e01b145b80610e1857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60135460ff1615610e425760405163380ea98360e21b815260040160405180910390fd5b80600003610e635760405163b562e8dd60e01b815260040160405180910390fd5b600454811115610e86576040516393eeb41560e01b815260040160405180910390fd5b601e5460ff16610ea9576040516316851fc760e11b815260040160405180910390fd5b601e5460ff168015610ebd5750601a5460ff165b15610edb576040516316851fc760e11b815260040160405180910390fd5b610ee58282612ad3565b610f02576040516366be767160e11b815260040160405180910390fd5b60035481610f0e610d9d565b610f189190614654565b1115610f375760405163a4875a4960e01b815260040160405180910390fd5b610f4934610f44836129f6565b612b16565b610f665760405163078d696560e31b815260040160405180910390fd5b610f6e612b37565b610f7a82826000612b73565b5050565b606060058054610f8d90614667565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb990614667565b80156110065780601f10610fdb57610100808354040283529160200191611006565b820191906000526020600020905b815481529060010190602001808311610fe957829003601f168201915b5050505050905090565b600061101b82612b8e565b6110825760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600960205260409020546001600160a01b031690565b816110a881612ba4565b60006110b383611ed3565b9050806001600160a01b0316846001600160a01b0316036111215760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401611079565b6001600160a01b0384166000908152600b602052604090205460ff161561115b5760405163d947c35f60e01b815260040160405180910390fd5b336001600160a01b038216148061117757506111778133610cb5565b6111e95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401611079565b6111f4848483612c5d565b50505050565b601a5460ff16158061120f5750601e5460ff16155b1561122d576040516309c7220160e31b815260040160405180910390fd5b611238858484611711565b6112555760405163097b24df60e41b815260040160405180910390fd5b836000036112765760405163b562e8dd60e01b815260040160405180910390fd5b600454841115611299576040516393eeb41560e01b815260040160405180910390fd5b6112a38585612ad3565b6112c0576040516366be767160e11b815260040160405180910390fd5b600354846112cc610d9d565b6112d69190614654565b11156112f55760405163a4875a4960e01b815260040160405180910390fd5b60165434146113175760405163078d696560e31b815260040160405180910390fd5b61132081611917565b61133d57604051636c501c9960e11b815260040160405180910390fd5b600084611349836128f5565b61135391906146a1565b6040516370a0823160e01b81526001600160a01b03888116600483015291925083918391908316906370a0823190602401602060405180830381865afa1580156113a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c591906146b8565b10156113e457604051631642df1760e21b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03888116600483015230602483015283919083169063dd62ed3e90604401602060405180830381865afa158015611433573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145791906146b8565b10156114765760405163017e286b60e51b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b03888116600483015230602483015260448201849052600091908316906323b872dd906064016020604051808303816000875af11580156114cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f391906146d1565b90508061151357604051633c9fd93960e21b815260040160405180910390fd5b61151b612b37565b61152788886000612b73565b5050505050505050565b826daaeb6d7670e522a718067333cd4e3b1561157057336001600160a01b0382160361156757611562848484612cb9565b6111f4565b61157081613039565b6111f4848484612cb9565b6011818154811061158b57600080fd5b600091825260209091200154905081565b60006115a783611f10565b82106116005760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401611079565b600061160a610d9d565b905060008060005b838110156116b1576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561166457805192505b876001600160a01b0316836001600160a01b03160361169e5786840361169057509350610e1892505050565b8361169a816146ee565b9450505b50806116a9816146ee565b915050611612565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401611079565b6019546000908103611736576040516363868c5560e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff19606086901b1660208201526000906034016040516020818303038152906040528051906020012090506117b184848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601954915084905061314e565b95945050505050565b60135460ff16156117de5760405163380ea98360e21b815260040160405180910390fd5b601a5460ff1615806117f35750601e5460ff16155b15611811576040516309c7220160e31b815260040160405180910390fd5b61181c848383611711565b6118395760405163097b24df60e41b815260040160405180910390fd5b8260000361185a5760405163b562e8dd60e01b815260040160405180910390fd5b60045483111561187d576040516393eeb41560e01b815260040160405180910390fd5b6118878484612ad3565b6118a4576040516366be767160e11b815260040160405180910390fd5b600354836118b0610d9d565b6118ba9190614654565b11156118d95760405163a4875a4960e01b815260040160405180910390fd5b6118e634610f44856129f6565b6119035760405163078d696560e31b815260040160405180910390fd5b61190b612b37565b6111f484846000612b73565b6001600160a01b03166000908152600e602052604090205460ff16151560011490565b611942613164565b601e805460ff19169055565b611956613164565b806000036119775760405163b562e8dd60e01b815260040160405180910390fd5b60035481611983610d9d565b61198d9190614654565b11156119ac5760405163a4875a4960e01b815260040160405180910390fd5b610f7a82826001612b73565b826daaeb6d7670e522a718067333cd4e3b15611a0257336001600160a01b038216036119f957611562848484604051806020016040528060008152506126f5565b611a0281613039565b6111f4848484604051806020016040528060008152506126f5565b611a256131e9565b6001600160a01b038116611a4b5760405162afb37360e31b815260040160405180910390fd5b611a5481612396565b15611a7257604051631002377360e01b815260040160405180910390fd5b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b611aa1613164565b6001600160a01b03166000908152600e60205260409020805460ff19166001179055565b611acd613164565b6019548103611aef5760405163a28a88c160e01b815260040160405180910390fd5b601955565b6000611afe610d9d565b8210611b585760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401611079565b5090565b611b64613164565b80600003611b85576040516363868c5560e11b815260040160405180910390fd5b600455565b611b92613164565b601c611b9f82848361474d565b505050565b81600003611bc55760405163b562e8dd60e01b815260040160405180910390fd5b600454821115611be8576040516393eeb41560e01b815260040160405180910390fd5b601e5460ff16611c0b576040516316851fc760e11b815260040160405180910390fd5b60035482611c17610d9d565b611c219190614654565b1115611c405760405163a4875a4960e01b815260040160405180910390fd5b601e5460ff168015611c545750601a5460ff165b15611c72576040516316851fc760e11b815260040160405180910390fd5b611c7c8383612ad3565b611c99576040516366be767160e11b815260040160405180910390fd5b6016543414611cbb5760405163078d696560e31b815260040160405180910390fd5b611cc481611917565b611ce157604051636c501c9960e11b815260040160405180910390fd5b600082611ced836128f5565b611cf791906146a1565b6040516370a0823160e01b81526001600160a01b03868116600483015291925083918391908316906370a0823190602401602060405180830381865afa158015611d45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d6991906146b8565b1015611d8857604051631642df1760e21b815260040160405180910390fd5b604051636eb1769f60e11b81526001600160a01b03868116600483015230602483015283919083169063dd62ed3e90604401602060405180830381865afa158015611dd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dfb91906146b8565b1015611e1a5760405163017e286b60e51b815260040160405180910390fd5b6040516323b872dd60e01b81526001600160a01b03868116600483015230602483015260448201849052600091908316906323b872dd906064016020604051808303816000875af1158015611e73573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9791906146d1565b905080611eb757604051633c9fd93960e21b815260040160405180910390fd5b611ebf612b37565b611ecb86866000612b73565b505050505050565b6000611ede82613243565b5192915050565b611eed613164565b601e805460ff19166001179055565b611f04613164565b601a805460ff19169055565b60006001600160a01b038216611f7c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401611079565b506001600160a01b03166000908152600860205260409020546001600160801b031690565b611fa96131e9565b611fb36000613371565b565b611fbd613164565b601a805460ff19166001179055565b611fd4613164565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b612007613164565b47600003612028576040516363868c5560e11b815260040160405180910390fd5b611fb3476133c1565b600f818154811061204157600080fd5b6000918252602090912001546001600160a01b0316905081565b612063613164565b6013805460ff19166001179055565b600d54610100900460ff16158080156120925750600d54600160ff909116105b806120ac5750303b1580156120ac5750600d5460ff166001145b61210f5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401611079565b600d805460ff19166001179055801561213257600d805461ff0019166101001790555b601080546001600160a01b0319166001600160a01b038b16179055875161216090600f9060208b0190613cec565b5086516121749060119060208a0190613d4d565b5087516012558351601c906121899082614822565b506020840151601b9061219c9082614822565b508151601755602080830151601f556018805460ff19166001179055604080518082019091526005815264173539b7b760d91b91810191909152601d906121e39082614822565b506121ed89613371565b8251602084015161220291889188919061344e565b612238601580546001600160a01b03191673a9dac8f3aedc55d0fe707b86b8a45d246858d2e11790556602c2ad68fd9000601655565b801561227e57600d805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050505050505050565b612291613164565b806000036122b2576040516363868c5560e11b815260040160405180910390fd5b601f55565b6122bf613164565b601755565b606060068054610f8d90614667565b6122db613164565b80518251146122fd5760405163293b70bb60e21b815260040160405180910390fd5b6000805b82518110156123435782818151811061231c5761231c61480c565b60200260200101518261232f9190614654565b91508061233b816146ee565b915050612301565b5080606414612365576040516358718f7d60e01b815260040160405180910390fd5b825161237890600f906020860190613cec565b50815161238c906011906020850190613d4d565b5050905160125550565b60006001600160a01b0382166123be5760405162afb37360e31b815260040160405180910390fd5b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b6123eb613164565b8060000361240c576040516363868c5560e11b815260040160405180910390fd5b6040516370a0823160e01b8152306004820152829082906001600160a01b038316906370a0823190602401602060405180830381865afa158015612454573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061247891906146b8565b101561249757604051631642df1760e21b815260040160405180910390fd5b60105460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018490529082169063a9059cbb906044016020604051808303816000875af11580156124ea573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f491906146d1565b8161251881612ba4565b336001600160a01b038416036125705760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401611079565b6001600160a01b0383166000908152600b602052604090205460ff16156125aa5760405163d947c35f60e01b815260040160405180910390fd5b336000818152600a602090815260408083206001600160a01b03881680855290835292819020805460ff191687151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6015546001600160a01b0316336001600160a01b03161461264b57604051639b96b05160e01b815260040160405180910390fd5b601655565b612658613164565b6001600160a01b03811661267f576040516322646a9760e21b815260040160405180910390fd5b6010546001600160a01b03908116908216036126ae5760405163a28a88c160e01b815260040160405180910390fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6126d8613164565b611942611efc565b6126e8613164565b601d611b9f82848361474d565b836daaeb6d7670e522a718067333cd4e3b1561275c57336001600160a01b0382160361275357612726858585612cb9565b6127328585858561355d565b61274e5760405162461bcd60e51b8152600401611079906148e1565b61278f565b61275c81613039565b612767858585612cb9565b6127738585858561355d565b61278f5760405162461bcd60e51b8152600401611079906148e1565b5050505050565b61279e613164565b6013805460ff19169055565b601b80546127b790614667565b80601f01602080910402602001604051908101604052809291908181526020018280546127e390614667565b80156128305780601f1061280557610100808354040283529160200191612830565b820191906000526020600020905b81548152906001019060200180831161281357829003601f168201915b505050505081565b6060600061284461293c565b9050600061285061365e565b90506000825111612870576040518060200160405280600081525061289d565b8161287a8561366d565b8260405160200161288d93929190614934565b6040516020818303038152906040525b949350505050565b60006128b46002546000190190565b610dac906001614654565b6128c7613164565b6001600160a01b03166000908152600e60205260409020805460ff19169055565b601c80546127b790614667565b600061290082611917565b61291d57604051636c501c9960e11b815260040160405180910390fd5b506001600160a01b03166000908152600e602052604090206001015490565b6060601c8054610f8d90614667565b612953613164565b6001600160a01b03929092166000908152600e60205260409020805460ff191691151591909117815560010155565b61298a6131e9565b6001600160a01b0381166129b05760405162afb37360e31b815260040160405180910390fd5b6129b981612396565b6129d55760405162afb37360e31b815260040160405180910390fd5b6001600160a01b03166000908152600160205260409020805460ff19169055565b600060165482601754612a0991906146a1565b610e189190614654565b6060601b8054610f8d90614667565b601d80546127b790614667565b612a37613164565b6018805460ff1916911515919091179055565b612a526131e9565b6001600160a01b038116612ab75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611079565b612ac081613371565b50565b612acb613164565b611eed611fb5565b600081600003612af6576040516363868c5560e11b815260040160405180910390fd5b601f5482612b038561376d565b612b0d9190614654565b11159392505050565b60185460009060ff16612b2c5781831015612b30565b8183145b9392505050565b6015546016546040516001600160a01b039092169181156108fc0291906000818181858888f19350505050158015612ac0573d6000803e3d6000fd5b611b9f8383836040518060200160405280600081525061380b565b600081600111158015610e185750506002541190565b6daaeb6d7670e522a718067333cd4e3b15612ac057604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612c11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c3591906146d1565b612ac057604051633b79c77360e21b81526001600160a01b0382166004820152602401611079565b60008281526009602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000612cc482613243565b80519091506000906001600160a01b0316336001600160a01b03161480612cfb575033612cf084611010565b6001600160a01b0316145b80612d0d57508151612d0d9033610cb5565b905080612d775760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401611079565b846001600160a01b031682600001516001600160a01b031614612deb5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401611079565b6001600160a01b038416612e4f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401611079565b612e5f6000848460000151612c5d565b6001600160a01b0385166000908152600860205260408120805460019290612e919084906001600160801b0316614977565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526008602052604081208054600194509092612edd9185911661499e565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526007909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612f64846001614654565b6000818152600760205260409020549091506001600160a01b0316612ff357612f8c81612b8e565b15612ff35760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600790935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ecb565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015613088573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130ac91906146d1565b801561312f5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561310b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061312f91906146d1565b612ac057604051633b79c77360e21b8152336004820152602401611079565b60008261315b8584613add565b14949350505050565b600080546001600160a01b031633908114919061318090612396565b9050818061318b5750805b610f7a5760405162461bcd60e51b815260206004820152602960248201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726044820152681034b7102a32b0b69760b91b6064820152608401611079565b6000546001600160a01b03163314611fb35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611079565b6040805180820190915260008082526020820152818060011115801561326a575060025481105b15613311576000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156132bb579392505050565b50600019016000818152600760209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561330c579392505050565b6132bb565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401611079565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005b601254811015610f7a5761343c600f82815481106133e4576133e461480c565b9060005260206000200160009054906101000a90046001600160a01b03166064601184815481106134175761341761480c565b90600052602060002001548561342d91906146a1565b61343791906149d4565b613b51565b80613446816146ee565b9150506133c4565b600081116134b55760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b6064820152608401611079565b600082116135155760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401611079565b60056135218582614822565b50600661352e8482614822565b506004829055600381905560016002556111f4733cc6cdda760b79bafa08df41ecfa224f810dceb66001613be7565b60006001600160a01b0384163b1561365357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906135a19033908990889088906004016149e8565b6020604051808303816000875af19250505080156135dc575060408051601f3d908101601f191682019092526135d991810190614a25565b60015b613639573d80801561360a576040519150601f19603f3d011682016040523d82523d6000602084013e61360f565b606091505b5080516000036136315760405162461bcd60e51b8152600401611079906148e1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061289d565b506001949350505050565b6060601d8054610f8d90614667565b6060816000036136945750506040805180820190915260018152600360fc1b602082015290565b8160005b81156136be57806136a8816146ee565b91506136b79050600a836149d4565b9150613698565b6000816001600160401b038111156136d8576136d861413f565b6040519080825280601f01601f191660200182016040528015613702576020820181803683370190505b5090505b841561289d57613717600183614a42565b9150613724600a86614a55565b61372f906030614654565b60f81b8183815181106137445761374461480c565b60200101906001600160f81b031916908160001a905350613766600a866149d4565b9450613706565b60006001600160a01b0382166137df5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401611079565b506001600160a01b0316600090815260086020526040902054600160801b90046001600160801b031690565b6002546001600160a01b03851661386e5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401611079565b61387781612b8e565b156138c45760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401611079565b82151560000361392b5760045484111561392b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401611079565b6001600160a01b0385166000908152600860209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061398790889061499e565b6001600160801b03168152602001856139a057866139a3565b60005b83602001516139b2919061499e565b6001600160801b039081169091526001600160a01b0380891660008181526008602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526007909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b86811015613ad15760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4613a95600089848861355d565b613ab15760405162461bcd60e51b8152600401611079906148e1565b81613abb816146ee565b9250508080613ac9906146ee565b915050613a48565b50600255505050505050565b600081815b8451811015613b49576000858281518110613aff57613aff61480c565b60200260200101519050808311613b255760008381526020829052604090209250613b36565b600081815260208490526040902092505b5080613b41816146ee565b915050613ae2565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114613b9e576040519150601f19603f3d011682016040523d82523d6000602084013e613ba3565b606091505b5050905080611b9f5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401611079565b6daaeb6d7670e522a718067333cd4e3b15610f7a578015613c6c57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015613c5857600080fd5b505af1158015611ecb573d6000803e3d6000fd5b6001600160a01b03821615613cbb5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401613c3e565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401613c3e565b828054828255906000526020600020908101928215613d41579160200282015b82811115613d4157825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190613d0c565b50611b58929150613d88565b828054828255906000526020600020908101928215613d41579160200282015b82811115613d41578251825591602001919060010190613d6d565b5b80821115611b585760008155600101613d89565b6001600160e01b031981168114612ac057600080fd5b600060208284031215613dc557600080fd5b8135612b3081613d9d565b80356001600160a01b0381168114613de757600080fd5b919050565b600060208284031215613dfe57600080fd5b612b3082613dd0565b60008060408385031215613e1a57600080fd5b613e2383613dd0565b946020939093013593505050565b60005b83811015613e4c578181015183820152602001613e34565b50506000910152565b60008151808452613e6d816020860160208601613e31565b601f01601f19169290920160200192915050565b602081526000612b306020830184613e55565b600060208284031215613ea657600080fd5b5035919050565b60008083601f840112613ebf57600080fd5b5081356001600160401b03811115613ed657600080fd5b6020830191508360208260051b8501011115613ef157600080fd5b9250929050565b600080600080600060808688031215613f1057600080fd5b613f1986613dd0565b94506020860135935060408601356001600160401b03811115613f3b57600080fd5b613f4788828901613ead565b9094509250613f5a905060608701613dd0565b90509295509295909350565b600080600060608486031215613f7b57600080fd5b613f8484613dd0565b9250613f9260208501613dd0565b9150604084013590509250925092565b600080600060408486031215613fb757600080fd5b613fc084613dd0565b925060208401356001600160401b03811115613fdb57600080fd5b613fe786828701613ead565b9497909650939450505050565b6000806000806060858703121561400a57600080fd5b61401385613dd0565b93506020850135925060408501356001600160401b0381111561403557600080fd5b61404187828801613ead565b95989497509550505050565b6000806020838503121561406057600080fd5b82356001600160401b038082111561407757600080fd5b818501915085601f83011261408b57600080fd5b81358181111561409a57600080fd5b8660208285010111156140ac57600080fd5b60209290920196919550909350505050565b6000806000606084860312156140d357600080fd5b6140dc84613dd0565b9250602084013591506140f160408501613dd0565b90509250925092565b8015158114612ac057600080fd5b6000806040838503121561411b57600080fd5b61412483613dd0565b91506020830135614134816140fa565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156141775761417761413f565b60405290565b604051601f8201601f191681016001600160401b03811182821017156141a5576141a561413f565b604052919050565b60006001600160401b038211156141c6576141c661413f565b5060051b60200190565b600082601f8301126141e157600080fd5b813560206141f66141f1836141ad565b61417d565b82815260059290921b8401810191818101908684111561421557600080fd5b8286015b848110156142375761422a81613dd0565b8352918301918301614219565b509695505050505050565b600082601f83011261425357600080fd5b813560206142636141f1836141ad565b82815260059290921b8401810191818101908684111561428257600080fd5b8286015b848110156142375780358352918301918301614286565b60006001600160401b038311156142b6576142b661413f565b6142c9601f8401601f191660200161417d565b90508281528383830111156142dd57600080fd5b828260208301376000602084830101529392505050565b600082601f83011261430557600080fd5b612b308383356020850161429d565b600082601f83011261432557600080fd5b61432d614155565b80604084018581111561433f57600080fd5b845b8181101561437b5780356001600160401b038111156143605760008081fd5b61436c888289016142f4565b85525060209384019301614341565b509095945050505050565b600082601f83011261439757600080fd5b61439f614155565b8060408401858111156143b157600080fd5b845b8181101561437b5780358452602093840193016143b3565b600080600080600080600080610140898b0312156143e857600080fd5b6143f189613dd0565b975060208901356001600160401b038082111561440d57600080fd5b6144198c838d016141d0565b985060408b013591508082111561442f57600080fd5b61443b8c838d01614242565b975060608b013591508082111561445157600080fd5b61445d8c838d016142f4565b965060808b013591508082111561447357600080fd5b61447f8c838d016142f4565b955060a08b013591508082111561449557600080fd5b506144a28b828c01614314565b9350506144b28a60c08b01614386565b91506144c28a6101008b01614386565b90509295985092959890939650565b600080604083850312156144e457600080fd5b82356001600160401b03808211156144fb57600080fd5b614507868387016141d0565b9350602085013591508082111561451d57600080fd5b5061452a85828601614242565b9150509250929050565b6000806000806080858703121561454a57600080fd5b61455385613dd0565b935061456160208601613dd0565b92506040850135915060608501356001600160401b0381111561458357600080fd5b8501601f8101871361459457600080fd5b6145a38782356020840161429d565b91505092959194509250565b6000806000606084860312156145c457600080fd5b6145cd84613dd0565b925060208401356145dd816140fa565b929592945050506040919091013590565b6000806040838503121561460157600080fd5b61460a83613dd0565b915061461860208401613dd0565b90509250929050565b60006020828403121561463357600080fd5b8135612b30816140fa565b634e487b7160e01b600052601160045260246000fd5b80820180821115610e1857610e1861463e565b600181811c9082168061467b57607f821691505b60208210810361469b57634e487b7160e01b600052602260045260246000fd5b50919050565b8082028115828204841417610e1857610e1861463e565b6000602082840312156146ca57600080fd5b5051919050565b6000602082840312156146e357600080fd5b8151612b30816140fa565b6000600182016147005761470061463e565b5060010190565b601f821115611b9f57600081815260208120601f850160051c8101602086101561472e5750805b601f850160051c820191505b81811015611ecb5782815560010161473a565b6001600160401b038311156147645761476461413f565b614778836147728354614667565b83614707565b6000601f8411600181146147ac57600085156147945750838201355b600019600387901b1c1916600186901b17835561278f565b600083815260209020601f19861690835b828110156147dd57868501358255602094850194600190920191016147bd565b50868210156147fa5760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052603260045260246000fd5b81516001600160401b0381111561483b5761483b61413f565b61484f816148498454614667565b84614707565b602080601f831160018114614884576000841561486c5750858301515b600019600386901b1c1916600185901b178555611ecb565b600085815260208120601f198616915b828110156148b357888601518255948401946001909101908401614894565b50858210156148d15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008451614946818460208901613e31565b84519083019061495a818360208901613e31565b845191019061496d818360208801613e31565b0195945050505050565b6001600160801b038281168282160390808211156149975761499761463e565b5092915050565b6001600160801b038181168382160190808211156149975761499761463e565b634e487b7160e01b600052601260045260246000fd5b6000826149e3576149e36149be565b500490565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614a1b90830184613e55565b9695505050505050565b600060208284031215614a3757600080fd5b8151612b3081613d9d565b81810381811115610e1857610e1861463e565b600082614a6457614a646149be565b50069056fea264697066735822122074e8d090802542e6958e6ab5ab329d3482139bd49b90f6aa8e7b09fd2bc2670364736f6c63430008120033
Deployed Bytecode Sourcemap
69243:9959:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45059:90;;;;;;;;;;;;;:::i;:::-;;;160:25:1;;;148:2;133:18;45059:90:0;;;;;;;;46811:370;;;;;;;;;;-1:-1:-1;46811:370:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;46811:370:0;582:187:1;43903:59:0;;;;;;;;;;-1:-1:-1;43903:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;71533:705;;;;;;:::i;:::-;;:::i;:::-;;48876:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;51561:204::-;;;;;;;;;;-1:-1:-1;51561:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2507:32:1;;;2489:51;;2477:2;2462:18;51561:204:0;2343:203:1;50999:504:0;;;;;;;;;;-1:-1:-1;50999:504:0;;;;;:::i;:::-;;:::i;75483:1364::-;;;;;;:::i;:::-;;:::i;52548:168::-;;;;;;;;;;-1:-1:-1;52548:168:0;;;;;:::i;:::-;;:::i;62595:28::-;;;;;;;;;;-1:-1:-1;62595:28:0;;;;;:::i;:::-;;:::i;42632:27::-;;;;;;;;;;;;;;;;40559:25;;;;;;;;;;;;;;;;46003:744;;;;;;;;;;-1:-1:-1;46003:744:0;;;;;:::i;:::-;;:::i;41194:282::-;;;;;;;;;;-1:-1:-1;41194:282:0;;;;;:::i;:::-;;:::i;70504:42::-;;;;;;;;;;;;70545:1;70504:42;;;;;4785:4:1;4773:17;;;4755:36;;4743:2;4728:18;70504:42:0;4613:184:1;74366:773:0;;;;;;:::i;:::-;;:::i;64683:170::-;;;;;;;;;;-1:-1:-1;64683:170:0;;;;;:::i;:::-;;:::i;62628:34::-;;;;;;;;;;;;;;;;73956:84;;;;;;;;;;;;;:::i;71020:247::-;;;;;;;;;;-1:-1:-1;71020:247:0;;;;;:::i;:::-;;:::i;52779:183::-;;;;;;;;;;-1:-1:-1;52779:183:0;;;;;:::i;:::-;;:::i;36624:210::-;;;;;;;;;;-1:-1:-1;36624:210:0;;;;;:::i;:::-;;:::i;42598:29::-;;;;;;;;;;;;;;;;66237:161;;;;;;;;;;-1:-1:-1;66237:161:0;;;;;:::i;:::-;;:::i;62667:32::-;;;;;;;;;;-1:-1:-1;62667:32:0;;;;;;;;40790:181;;;;;;;;;;-1:-1:-1;40790:181:0;;;;;:::i;:::-;;:::i;70690:31::-;;;;;;;;;;;;;;;;45535:177;;;;;;;;;;-1:-1:-1;45535:177:0;;;;;:::i;:::-;;:::i;78330:170::-;;;;;;;;;;-1:-1:-1;78330:170:0;;;;;:::i;:::-;;:::i;78952:106::-;;;;;;;;;;-1:-1:-1;78952:106:0;;;;;:::i;:::-;;:::i;72565:1292::-;;;;;;:::i;:::-;;:::i;48699:118::-;;;;;;;;;;-1:-1:-1;48699:118:0;;;;;:::i;:::-;;:::i;73865:83::-;;;;;;;;;;;;;:::i;41597:103::-;;;;;;;;;;;;;:::i;47237:211::-;;;;;;;;;;-1:-1:-1;47237:211:0;;;;;:::i;:::-;;:::i;29178:103::-;;;;;;;;;;;;;:::i;41490:99::-;;;;;;;;;;;;;:::i;62563:27::-;;;;;;;;;;-1:-1:-1;62563:27:0;;;;-1:-1:-1;;;;;62563:27:0;;;50786:159;;;;;;;;;;-1:-1:-1;50786:159:0;;;;;:::i;:::-;;:::i;63181:162::-;;;;;;;;;;;;;:::i;62525:33::-;;;;;;;;;;-1:-1:-1;62525:33:0;;;;;:::i;:::-;;:::i;66954:97::-;;;;;;;;;;;;;:::i;69474:1022::-;;;;;;;;;;-1:-1:-1;69474:1022:0;;;;;:::i;:::-;;:::i;67749:20::-;;;;;;;;;;;;;;;;28456:87;;;;;;;;;;-1:-1:-1;28502:7:0;28529:6;-1:-1:-1;;;;;28529:6:0;28456:87;;70660:23;;;;;;;;;;-1:-1:-1;70660:23:0;;;;;;;;77975:179;;;;;;;;;;-1:-1:-1;77975:179:0;;;;;:::i;:::-;;:::i;67776:90::-;;;;;;;;;;-1:-1:-1;67776:90:0;;;;;:::i;:::-;;:::i;49031:98::-;;;;;;;;;;;;;:::i;62708:467::-;;;;;;;;;;-1:-1:-1;62708:467:0;;;;;:::i;:::-;;:::i;37331:182::-;;;;;;;;;;-1:-1:-1;37331:182:0;;;;;:::i;:::-;;:::i;64088:417::-;;;;;;;;;;-1:-1:-1;64088:417:0;;;;;:::i;:::-;;:::i;51829:411::-;;;;;;;;;;-1:-1:-1;51829:411:0;;;;;:::i;:::-;;:::i;61430:135::-;;;;;;;;;;-1:-1:-1;61430:135:0;;;;;:::i;:::-;;:::i;67397:261::-;;;;;;;;;;-1:-1:-1;67397:261:0;;;;;:::i;:::-;;:::i;77274:128::-;;;;;;;;;;;;;:::i;79064:135::-;;;;;;;;;;-1:-1:-1;79064:135:0;;;;;:::i;:::-;;:::i;53025:337::-;;;;;;;;;;-1:-1:-1;53025:337:0;;;;;:::i;:::-;;:::i;67138:99::-;;;;;;;;;;;;;:::i;70553:26::-;;;;;;;;;;;;;:::i;49192:351::-;;;;;;;;;;-1:-1:-1;49192:351:0;;;;;:::i;:::-;;:::i;45155:96::-;;;;;;;;;;;;;:::i;66705:163::-;;;;;;;;;;-1:-1:-1;66705:163:0;;;;;:::i;:::-;;:::i;70586:27::-;;;;;;;;;;;;;:::i;65011:253::-;;;;;;;;;;-1:-1:-1;65011:253:0;;;;;:::i;:::-;;:::i;78854:92::-;;;;;;;;;;;;;:::i;57659:43::-;;;;;;;;;;;;;;;;65630:304;;;;;;;;;;-1:-1:-1;65630:304:0;;;;;:::i;:::-;;:::i;36977:215::-;;;;;;;;;;-1:-1:-1;36977:215:0;;;;;:::i;:::-;;:::i;40591:29::-;;;;;;;;;;-1:-1:-1;40591:29:0;;;;;;;;67872:115;;;;;;;;;;-1:-1:-1;67872:115:0;;;;;:::i;:::-;;:::i;78512:91::-;;;;;;;;;;;;;:::i;52303:186::-;;;;;;;;;;-1:-1:-1;52303:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;52448:25:0;;;52425:4;52448:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;52303:186;70620:33;;;;;;;;;;;;;:::i;68735:105::-;;;;;;;;;;-1:-1:-1;68735:105:0;;;;;:::i;:::-;;:::i;29434:201::-;;;;;;;;;;-1:-1:-1;29434:201:0;;;;;:::i;:::-;;:::i;61146:27::-;;;;;;;;;;;;;;;;76998:125;;;;;;;;;;;;;:::i;77563:219::-;;;;;;;;;;-1:-1:-1;77563:219:0;;;;;:::i;:::-;;:::i;68703:25::-;;;;;;;;;;-1:-1:-1;68703:25:0;;;;;;;;45059:90;45106:7;45129:14;45423:12;;-1:-1:-1;;45423:30:0;;45334:132;45129:14;45122:21;;45059:90;:::o;46811:370::-;46938:4;-1:-1:-1;;;;;;46968:40:0;;-1:-1:-1;;;46968:40:0;;:99;;-1:-1:-1;;;;;;;47019:48:0;;-1:-1:-1;;;47019:48:0;46968:99;:160;;;-1:-1:-1;;;;;;;47078:50:0;;-1:-1:-1;;;47078:50:0;46968:160;:207;;;-1:-1:-1;;;;;;;;;;14950:40:0;;;47139:36;46954:221;46811:370;-1:-1:-1;;46811:370:0:o;71533:705::-;71616:20;;;;71613:57;;;71645:25;;-1:-1:-1;;;71645:25:0;;;;;;;;;;;71613:57;71684:7;71695:1;71684:12;71681:42;;71705:18;;-1:-1:-1;;;71705:18:0;;;;;;;;;;;71681:42;71747:12;;71737:7;:22;71734:58;;;71768:24;;-1:-1:-1;;;71768:24:0;;;;;;;;;;;71734:58;71807:11;;;;71803:42;;71827:18;;-1:-1:-1;;;71827:18:0;;;;;;;;;;;71803:42;71859:11;;;;:32;;;;-1:-1:-1;71874:17:0;;;;71859:32;71856:62;;;71900:18;;-1:-1:-1;;;71900:18:0;;;;;;;;;;;71856:62;71943:27;71957:3;71962:7;71943:13;:27::i;:::-;71939:61;;71979:21;;-1:-1:-1;;;71979:21:0;;;;;;;;;;;71939:61;72043:14;;72033:7;72014:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:43;72011:68;;;72066:13;;-1:-1:-1;;;72066:13:0;;;;;;;;;;;72011:68;72094:42;72107:9;72118:17;72127:7;72118:8;:17::i;:::-;72094:12;:42::i;:::-;72090:71;;72145:16;;-1:-1:-1;;;72145:16:0;;;;;;;;;;;72090:71;72172:17;:15;:17::i;:::-;72200:30;72210:3;72215:7;72224:5;72200:9;:30::i;:::-;71533:705;;:::o;48876:94::-;48930:13;48959:5;48952:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48876:94;:::o;51561:204::-;51629:7;51653:16;51661:7;51653;:16::i;:::-;51645:74;;;;-1:-1:-1;;;51645:74:0;;15526:2:1;51645:74:0;;;15508:21:1;15565:2;15545:18;;;15538:30;15604:34;15584:18;;;15577:62;-1:-1:-1;;;15655:18:1;;;15648:43;15708:19;;51645:74:0;;;;;;;;;-1:-1:-1;51735:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;51735:24:0;;51561:204::o;50999:504::-;51089:2;34445:30;34466:8;34445:20;:30::i;:::-;51100:13:::1;51116:24;51132:7;51116:15;:24::i;:::-;51100:40;;51161:5;-1:-1:-1::0;;;;;51155:11:0::1;:2;-1:-1:-1::0;;;;;51155:11:0::1;::::0;51147:58:::1;;;::::0;-1:-1:-1;;;51147:58:0;;15940:2:1;51147:58:0::1;::::0;::::1;15922:21:1::0;15979:2;15959:18;;;15952:30;16018:34;15998:18;;;15991:62;-1:-1:-1;;;16069:18:1;;;16062:32;16111:19;;51147:58:0::1;15738:398:1::0;51147:58:0::1;-1:-1:-1::0;;;;;51215:31:0;::::1;;::::0;;;:27:::1;:31;::::0;;;;;::::1;;51212:86;;;51255:43;;-1:-1:-1::0;;;51255:43:0::1;;;;;;;;;;;51212:86;27262:10:::0;-1:-1:-1;;;;;51323:21:0;::::1;;::::0;:62:::1;;-1:-1:-1::0;51348:37:0::1;51365:5:::0;27262:10;52303:186;:::i;51348:37::-:1;51307:153;;;::::0;-1:-1:-1;;;51307:153:0;;16343:2:1;51307:153:0::1;::::0;::::1;16325:21:1::0;16382:2;16362:18;;;16355:30;16421:34;16401:18;;;16394:62;16492:27;16472:18;;;16465:55;16537:19;;51307:153:0::1;16141:421:1::0;51307:153:0::1;51469:28;51478:2;51482:7;51491:5;51469:8;:28::i;:::-;51093:410;50999:504:::0;;;:::o;75483:1364::-;75634:17;;;;75633:18;;:34;;-1:-1:-1;75656:11:0;;;;75655:12;75633:34;75630:67;;;75676:21;;-1:-1:-1;;;75676:21:0;;;;;;;;;;;75630:67;75710:32;75724:3;75729:12;;75710:13;:32::i;:::-;75706:68;;75751:23;;-1:-1:-1;;;75751:23:0;;;;;;;;;;;75706:68;75786:7;75797:1;75786:12;75783:42;;75807:18;;-1:-1:-1;;;75807:18:0;;;;;;;;;;;75783:42;75847:12;;75837:7;:22;75834:58;;;75868:24;;-1:-1:-1;;;75868:24:0;;;;;;;;;;;75834:58;75905:27;75919:3;75924:7;75905:13;:27::i;:::-;75901:61;;75941:21;;-1:-1:-1;;;75941:21:0;;;;;;;;;;;75901:61;76003:14;;75993:7;75974:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:43;75971:68;;;76026:13;;-1:-1:-1;;;76026:13:0;;;;;;;;;;;75971:68;76072:12;;76059:9;:25;76056:53;;76093:16;;-1:-1:-1;;;76093:16:0;;;;;;;;;;;76056:53;76168:47;76195:19;76168:26;:47::i;:::-;76164:83;;76224:23;;-1:-1:-1;;;76224:23:0;;;;;;;;;;;76164:83;76256:27;76330:7;76286:41;76307:19;76286:20;:41::i;:::-;:51;;;;:::i;:::-;76409:27;;-1:-1:-1;;;76409:27:0;;-1:-1:-1;;;;;2507:32:1;;;76409:27:0;;;2489:51:1;76256:81:0;;-1:-1:-1;76375:19:0;;76256:81;;76409:22;;;;;;2462:18:1;;76409:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;76406:87;;;76467:26;;-1:-1:-1;;;76467:26:0;;;;;;;;;;;76406:87;76505:42;;-1:-1:-1;;;76505:42:0;;-1:-1:-1;;;;;17159:15:1;;;76505:42:0;;;17141:34:1;76541:4:0;17191:18:1;;;17184:43;76550:19:0;;76505:22;;;;;;17076:18:1;;76505:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:64;76502:104;;;76578:28;;-1:-1:-1;;;76578:28:0;;;;;;;;;;;76502:104;76641:66;;-1:-1:-1;;;76641:66:0;;-1:-1:-1;;;;;17496:15:1;;;76641:66:0;;;17478:34:1;76680:4:0;17528:18:1;;;17521:43;17580:18;;;17573:34;;;76617:21:0;;76641:25;;;;;;17413:18:1;;76641:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;76617:90;;76720:16;76716:50;;76745:21;;-1:-1:-1;;;76745:21:0;;;;;;;;;;;76716:50;76783:17;:15;:17::i;:::-;76809:30;76819:3;76824:7;76833:5;76809:9;:30::i;:::-;75621:1226;;;75483:1364;;;;;:::o;52548:168::-;52669:4;32413:42;33932:43;:47;33928:416;;34219:10;-1:-1:-1;;;;;34211:18:0;;;34207:85;;52682:28:::1;52692:4;52698:2;52702:7;52682:9;:28::i;:::-;34270:7:::0;;34207:85;34306:26;34327:4;34306:20;:26::i;:::-;52682:28:::1;52692:4;52698:2;52702:7;52682:9;:28::i;62595:::-:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62595:28:0;:::o;46003:744::-;46112:7;46147:16;46157:5;46147:9;:16::i;:::-;46139:5;:24;46131:71;;;;-1:-1:-1;;;46131:71:0;;18070:2:1;46131:71:0;;;18052:21:1;18109:2;18089:18;;;18082:30;18148:34;18128:18;;;18121:62;-1:-1:-1;;;18199:18:1;;;18192:32;18241:19;;46131:71:0;17868:398:1;46131:71:0;46209:22;46234:13;:11;:13::i;:::-;46209:38;;46254:19;46284:25;46334:9;46329:350;46353:14;46349:1;:18;46329:350;;;46383:31;46417:14;;;:11;:14;;;;;;;;;46383:48;;;;;;;;;-1:-1:-1;;;;;46383:48:0;;;;;-1:-1:-1;;;46383:48:0;;;-1:-1:-1;;;;;46383:48:0;;;;;;;;46444:28;46440:89;;46505:14;;;-1:-1:-1;46440:89:0;46562:5;-1:-1:-1;;;;;46541:26:0;:17;-1:-1:-1;;;;;46541:26:0;;46537:135;;46599:5;46584:11;:20;46580:59;;-1:-1:-1;46626:1:0;-1:-1:-1;46619:8:0;;-1:-1:-1;;;46619:8:0;46580:59;46649:13;;;;:::i;:::-;;;;46537:135;-1:-1:-1;46369:3:0;;;;:::i;:::-;;;;46329:350;;;-1:-1:-1;46685:56:0;;-1:-1:-1;;;46685:56:0;;18613:2:1;46685:56:0;;;18595:21:1;18652:2;18632:18;;;18625:30;18691:34;18671:18;;;18664:62;-1:-1:-1;;;18742:18:1;;;18735:44;18796:19;;46685:56:0;18411:410:1;41194:282:0;41301:10;;41283:4;;41301:15;;41298:46;;41325:19;;-1:-1:-1;;;41325:19:0;;;;;;;;;;;41298:46;41378:21;;-1:-1:-1;;18975:2:1;18971:15;;;18967:53;41378:21:0;;;18955:66:1;41353:12:0;;19037::1;;41378:21:0;;;;;;;;;;;;41368:32;;;;;;41353:47;;41418:50;41437:12;;41418:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;41451:10:0;;;-1:-1:-1;41463:4:0;;-1:-1:-1;41418:18:0;:50::i;:::-;41411:57;41194:282;-1:-1:-1;;;;;41194:282:0:o;74366:773::-;74484:20;;;;74481:57;;;74513:25;;-1:-1:-1;;;74513:25:0;;;;;;;;;;;74481:57;74553:17;;;;74552:18;;:34;;-1:-1:-1;74575:11:0;;;;74574:12;74552:34;74549:67;;;74595:21;;-1:-1:-1;;;74595:21:0;;;;;;;;;;;74549:67;74631:32;74645:3;74650:12;;74631:13;:32::i;:::-;74627:68;;74672:23;;-1:-1:-1;;;74672:23:0;;;;;;;;;;;74627:68;74709:7;74720:1;74709:12;74706:42;;74730:18;;-1:-1:-1;;;74730:18:0;;;;;;;;;;;74706:42;74772:12;;74762:7;:22;74759:58;;;74793:24;;-1:-1:-1;;;74793:24:0;;;;;;;;;;;74759:58;74832:27;74846:3;74851:7;74832:13;:27::i;:::-;74828:61;;74868:21;;-1:-1:-1;;;74868:21:0;;;;;;;;;;;74828:61;74932:14;;74922:7;74903:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:43;74900:68;;;74955:13;;-1:-1:-1;;;74955:13:0;;;;;;;;;;;74900:68;74983:42;74996:9;75007:17;75016:7;75007:8;:17::i;74983:42::-;74979:71;;75034:16;;-1:-1:-1;;;75034:16:0;;;;;;;;;;;74979:71;75073:17;:15;:17::i;:::-;75101:30;75111:3;75116:7;75125:5;75101:9;:30::i;64683:170::-;-1:-1:-1;;;;;64788:42:0;64768:4;64788:42;;;:21;:42;;;;;:51;;;:59;;:51;:59;;64683:170::o;73956:84::-;37866:18;:16;:18::i;:::-;74013:11:::1;:19:::0;;-1:-1:-1;;74013:19:0::1;::::0;;73956:84::o;71020:247::-;37866:18;:16;:18::i;:::-;71107:4:::1;71115:1;71107:9:::0;71104:39:::1;;71125:18;;-1:-1:-1::0;;;71125:18:0::1;;;;;;;;;;;71104:39;71184:14;;71177:4;71158:16;:14;:16::i;:::-;:23;;;;:::i;:::-;:40;71155:65;;;71207:13;;-1:-1:-1::0;;;71207:13:0::1;;;;;;;;;;;71155:65;71232:26;71242:3;71247:4;71253;71232:9;:26::i;52779:183::-:0;52904:4;32413:42;33932:43;:47;33928:416;;34219:10;-1:-1:-1;;;;;34211:18:0;;;34207:85;;52917:39:::1;52934:4;52940:2;52944:7;52917:39;;;;;;;;;;;::::0;:16:::1;:39::i;34207:85::-:0;34306:26;34327:4;34306:20;:26::i;:::-;52917:39:::1;52934:4;52940:2;52944:7;52917:39;;;;;;;;;;;::::0;:16:::1;:39::i;36624:210::-:0;28797:12;:10;:12::i;:::-;-1:-1:-1;;;;;36688:22:0;::::1;36685:54;;36719:20;;-1:-1:-1::0;;;36719:20:0::1;;;;;;;;;;;36685:54;36749:16;36756:8;36749:6;:16::i;:::-;36746:50;;;36774:22;;-1:-1:-1::0;;;36774:22:0::1;;;;;;;;;;;36746:50;-1:-1:-1::0;;;;;36807:14:0::1;;::::0;;;36824:4:::1;36807:14;::::0;;;;;;;:21;;-1:-1:-1;;36807:21:0::1;::::0;;::::1;::::0;;36624:210::o;66237:161::-;37866:18;:16;:18::i;:::-;-1:-1:-1;;;;;66334:42:0::1;;::::0;;;:21:::1;:42;::::0;;;;:58;;-1:-1:-1;;66334:58:0::1;66388:4;66334:58;::::0;;66237:161::o;40790:181::-;37866:18;:16;:18::i;:::-;40893:10:::1;;40875:14;:28:::0;40872:55:::1;;40912:15;;-1:-1:-1::0;;;40912:15:0::1;;;;;;;;;;;40872:55;40936:10;:27:::0;40790:181::o;45535:177::-;45602:7;45634:13;:11;:13::i;:::-;45626:5;:21;45618:69;;;;-1:-1:-1;;;45618:69:0;;19262:2:1;45618:69:0;;;19244:21:1;19301:2;19281:18;;;19274:30;19340:34;19320:18;;;19313:62;-1:-1:-1;;;19391:18:1;;;19384:33;19434:19;;45618:69:0;19060:399:1;45618:69:0;-1:-1:-1;45701:5:0;45535:177::o;78330:170::-;37866:18;:16;:18::i;:::-;78409:11:::1;78424:1;78409:16:::0;78406:47:::1;;78434:19;;-1:-1:-1::0;;;78434:19:0::1;;;;;;;;;;;78406:47;78465:12;:26:::0;78330:170::o;78952:106::-;37866:18;:16;:18::i;:::-;79029:13:::1;:23;79045:7:::0;;79029:13;:23:::1;:::i;:::-;;78952:106:::0;;:::o;72565:1292::-;72680:7;72691:1;72680:12;72677:42;;72701:18;;-1:-1:-1;;;72701:18:0;;;;;;;;;;;72677:42;72741:12;;72731:7;:22;72728:58;;;72762:24;;-1:-1:-1;;;72762:24:0;;;;;;;;;;;72728:58;72799:11;;;;72795:42;;72819:18;;-1:-1:-1;;;72819:18:0;;;;;;;;;;;72795:42;72878:14;;72868:7;72849:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:43;72846:68;;;72901:13;;-1:-1:-1;;;72901:13:0;;;;;;;;;;;72846:68;72926:11;;;;:32;;;;-1:-1:-1;72941:17:0;;;;72926:32;72923:62;;;72967:18;;-1:-1:-1;;;72967:18:0;;;;;;;;;;;72923:62;73006:27;73020:3;73025:7;73006:13;:27::i;:::-;73002:61;;73042:21;;-1:-1:-1;;;73042:21:0;;;;;;;;;;;73002:61;73088:12;;73075:9;:25;73072:53;;73109:16;;-1:-1:-1;;;73109:16:0;;;;;;;;;;;73072:53;73184:47;73211:19;73184:26;:47::i;:::-;73180:83;;73240:23;;-1:-1:-1;;;73240:23:0;;;;;;;;;;;73180:83;73272:27;73346:7;73302:41;73323:19;73302:20;:41::i;:::-;:51;;;;:::i;:::-;73425:27;;-1:-1:-1;;;73425:27:0;;-1:-1:-1;;;;;2507:32:1;;;73425:27:0;;;2489:51:1;73272:81:0;;-1:-1:-1;73391:19:0;;73272:81;;73425:22;;;;;;2462:18:1;;73425:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;73422:87;;;73483:26;;-1:-1:-1;;;73483:26:0;;;;;;;;;;;73422:87;73521:42;;-1:-1:-1;;;73521:42:0;;-1:-1:-1;;;;;17159:15:1;;;73521:42:0;;;17141:34:1;73557:4:0;17191:18:1;;;17184:43;73566:19:0;;73521:22;;;;;;17076:18:1;;73521:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:64;73518:104;;;73594:28;;-1:-1:-1;;;73594:28:0;;;;;;;;;;;73518:104;73657:66;;-1:-1:-1;;;73657:66:0;;-1:-1:-1;;;;;17496:15:1;;;73657:66:0;;;17478:34:1;73696:4:0;17528:18:1;;;17521:43;17580:18;;;17573:34;;;73633:21:0;;73657:25;;;;;;17413:18:1;;73657:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73633:90;;73736:16;73732:50;;73761:21;;-1:-1:-1;;;73761:21:0;;;;;;;;;;;73732:50;73793:17;:15;:17::i;:::-;73819:30;73829:3;73834:7;73843:5;73819:9;:30::i;:::-;72668:1189;;;72565:1292;;;:::o;48699:118::-;48763:7;48786:20;48798:7;48786:11;:20::i;:::-;:25;;48699:118;-1:-1:-1;;48699:118:0:o;73865:83::-;37866:18;:16;:18::i;:::-;73922:11:::1;:18:::0;;-1:-1:-1;;73922:18:0::1;73936:4;73922:18;::::0;;73865:83::o;41597:103::-;37866:18;:16;:18::i;:::-;41667:17:::1;:25:::0;;-1:-1:-1;;41667:25:0::1;::::0;;41597:103::o;47237:211::-;47301:7;-1:-1:-1;;;;;47325:19:0;;47317:75;;;;-1:-1:-1;;;47317:75:0;;21724:2:1;47317:75:0;;;21706:21:1;21763:2;21743:18;;;21736:30;21802:34;21782:18;;;21775:62;-1:-1:-1;;;21853:18:1;;;21846:41;21904:19;;47317:75:0;21522:407:1;47317:75:0;-1:-1:-1;;;;;;47414:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;47414:27:0;;47237:211::o;29178:103::-;28797:12;:10;:12::i;:::-;29243:30:::1;29270:1;29243:18;:30::i;:::-;29178:103::o:0;41490:99::-;37866:18;:16;:18::i;:::-;41557:17:::1;:24:::0;;-1:-1:-1;;41557:24:0::1;41577:4;41557:24;::::0;;41490:99::o;50786:159::-;37866:18;:16;:18::i;:::-;-1:-1:-1;;;;;50886:37:0;;;::::1;;::::0;;;:27:::1;:37;::::0;;;;:53;;-1:-1:-1;;50886:53:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50786:159::o;63181:162::-;37866:18;:16;:18::i;:::-;63239:21:::1;63264:1;63239:26:::0;63236:57:::1;;63274:19;;-1:-1:-1::0;;;63274:19:0::1;;;;;;;;;;;63236:57;63302:35;63315:21;63302:12;:35::i;62525:33::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;62525:33:0;;-1:-1:-1;62525:33:0;:::o;66954:97::-;37866:18;:16;:18::i;:::-;67018:20:::1;:27:::0;;-1:-1:-1;;67018:27:0::1;67041:4;67018:27;::::0;;66954:97::o;69474:1022::-;9457:13;;;;;;;9456:14;;9504:34;;;;-1:-1:-1;9522:12:0;;9537:1;9522:12;;;;:16;9504:34;9503:97;;;-1:-1:-1;9572:4:0;1614:19;:23;;;9544:55;;-1:-1:-1;9582:12:0;;;;;:17;9544:55;9481:193;;;;-1:-1:-1;;;9481:193:0;;22136:2:1;9481:193:0;;;22118:21:1;22175:2;22155:18;;;22148:30;22214:34;22194:18;;;22187:62;-1:-1:-1;;;22265:18:1;;;22258:44;22319:19;;9481:193:0;21934:410:1;9481:193:0;9685:12;:16;;-1:-1:-1;;9685:16:0;9700:1;9685:16;;;9712:67;;;;9747:13;:20;;-1:-1:-1;;9747:20:0;;;;;9712:67;69916:12:::1;:21:::0;;-1:-1:-1;;;;;;69916:21:0::1;-1:-1:-1::0;;;;;69916:21:0;::::1;;::::0;;69954:28;;::::1;::::0;:16:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;69993:22:0;;::::1;::::0;:11:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;70048:16:0;;70026:19:::1;:38:::0;70093:7;;70077:13:::1;::::0;:23:::1;::::0;:13;:23:::1;:::i;:::-;-1:-1:-1::0;70126:7:0::1;::::0;::::1;::::0;70111:12:::1;::::0;:22:::1;::::0;:12;:22:::1;:::i;:::-;-1:-1:-1::0;70154:12:0;;70146:5:::1;:20:::0;70154:12:::1;70196::::0;;::::1;::::0;70177:16:::1;:31:::0;70255:13:::1;:20:::0;;-1:-1:-1;;70255:20:0::1;70206:1;70255:20;::::0;;70286:29:::1;::::0;;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;70286:29:0;;::::1;::::0;;;;:19:::1;::::0;:29:::1;::::0;:19;:29:::1;:::i;:::-;;70328:34;70355:6;70328:26;:34::i;:::-;70411:22:::0;;::::1;70435::::0;::::1;::::0;70373:85:::1;::::0;70387:9;;70398:11;;70411:22;70373:13:::1;:85::i;:::-;70469:19;61234:8:::0;:53;;-1:-1:-1;;;;;;61234:53:0;61245:42;61234:53;;;61309:14;61294:12;:29;61202:127;70469:19:::1;9805:14:::0;9801:102;;;9836:13;:21;;-1:-1:-1;;9836:21:0;;;9877:14;;-1:-1:-1;4755:36:1;;9877:14:0;;4743:2:1;4728:18;9877:14:0;;;;;;;9801:102;9423:487;69474:1022;;;;;;;;:::o;77975:179::-;37866:18;:16;:18::i;:::-;78057:13:::1;78074:1;78057:18:::0;78054:49:::1;;78084:19;;-1:-1:-1::0;;;78084:19:0::1;;;;;;;;;;;78054:49;78114:16;:32:::0;77975:179::o;67776:90::-;37866:18;:16;:18::i;:::-;67843:5:::1;:17:::0;67776:90::o;49031:98::-;49087:13;49116:7;49109:14;;;;;:::i;62708:467::-;37866:18;:16;:18::i;:::-;62848:11:::1;:18;62825:12;:19;:41;62822:76;;62875:23;;-1:-1:-1::0;;;62875:23:0::1;;;;;;;;;;;62822:76;62907:8;::::0;62922:84:::1;62940:11;:18;62936:1;:22;62922:84;;;62984:11;62996:1;62984:14;;;;;;;;:::i;:::-;;;;;;;62977:21;;;;;:::i;:::-;::::0;-1:-1:-1;62960:3:0;::::1;::::0;::::1;:::i;:::-;;;;62922:84;;;;63015:3;63022;63015:10;63012:37;;63034:15;;-1:-1:-1::0;;;63034:15:0::1;;;;;;;;;;;63012:37;63058:31:::0;;::::1;::::0;:16:::1;::::0;:31:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;63096:25:0;;::::1;::::0;:11:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;63150:19:0;;63128::::1;:41:::0;-1:-1:-1;62708:467:0:o;37331:182::-;37401:4;-1:-1:-1;;;;;37420:22:0;;37417:54;;37451:20;;-1:-1:-1;;;37451:20:0;;;;;;;;;;;37417:54;-1:-1:-1;;;;;;37485:14:0;;;;;:4;:14;;;;;;;;;;;:22;;;;37331:182::o;64088:417::-;37866:18;:16;:18::i;:::-;64195:17:::1;64216:1;64195:22:::0;64192:53:::1;;64226:19;;-1:-1:-1::0;;;64226:19:0::1;;;;;;;;;;;64192:53;64307:38;::::0;-1:-1:-1;;;64307:38:0;;64339:4:::1;64307:38;::::0;::::1;2489:51:1::0;64282:14:0;;64348:17;;-1:-1:-1;;;;;64307:23:0;::::1;::::0;::::1;::::0;2462:18:1;;64307:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:58;64304:96;;;64374:26;;-1:-1:-1::0;;;64374:26:0::1;;;;;;;;;;;64304:96;64430:12;::::0;64407:55:::1;::::0;-1:-1:-1;;;64407:55:0;;-1:-1:-1;;;;;64430:12:0;;::::1;64407:55;::::0;::::1;24211:51:1::0;24278:18;;;24271:34;;;64407:22:0;;::::1;::::0;::::1;::::0;24184:18:1;;64407:55:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;51829:411::-:0;51933:8;34445:30;34466:8;34445:20;:30::i;:::-;27262:10;-1:-1:-1;;;;;51958:24:0;::::1;::::0;51950:63:::1;;;::::0;-1:-1:-1;;;51950:63:0;;24518:2:1;51950:63:0::1;::::0;::::1;24500:21:1::0;24557:2;24537:18;;;24530:30;24596:28;24576:18;;;24569:56;24642:18;;51950:63:0::1;24316:350:1::0;51950:63:0::1;-1:-1:-1::0;;;;;52023:37:0;::::1;;::::0;;;:27:::1;:37;::::0;;;;;::::1;;52020:92;;;52069:43;;-1:-1:-1::0;;;52069:43:0::1;;;;;;;;;;;52020:92;27262:10:::0;52121:32:::1;::::0;;;:18:::1;:32;::::0;;;;;;;-1:-1:-1;;;;;52121:42:0;::::1;::::0;;;;;;;;;;:53;;-1:-1:-1;;52121:53:0::1;::::0;::::1;;::::0;;::::1;::::0;;;52186:48;;722:41:1;;;52121:42:0;;27262:10;52186:48:::1;::::0;695:18:1;52186:48:0::1;;;;;;;51829:411:::0;;;:::o;61430:135::-;61501:8;;-1:-1:-1;;;;;61501:8:0;27262:10;-1:-1:-1;;;;;61485:24:0;;61482:51;;61518:15;;-1:-1:-1;;;61518:15:0;;;;;;;;;;;61482:51;61540:12;:19;61430:135::o;67397:261::-;37866:18;:16;:18::i;:::-;-1:-1:-1;;;;;67488:30:0;::::1;67485:63;;67527:21;;-1:-1:-1::0;;;67527:21:0::1;;;;;;;;;;;67485:63;67578:12;::::0;-1:-1:-1;;;;;67578:12:0;;::::1;67558:32:::0;;::::1;::::0;67555:59:::1;;67599:15;;-1:-1:-1::0;;;67599:15:0::1;;;;;;;;;;;67555:59;67621:12;:31:::0;;-1:-1:-1;;;;;;67621:31:0::1;-1:-1:-1::0;;;;;67621:31:0;;;::::1;::::0;;;::::1;::::0;;67397:261::o;77274:128::-;37866:18;:16;:18::i;:::-;77338:26:::1;:24;:26::i;79064:135::-:0;37866:18;:16;:18::i;:::-;79158:19:::1;:35;79180:13:::0;;79158:19;:35:::1;:::i;53025:337::-:0;53175:4;32413:42;33932:43;:47;33928:416;;34219:10;-1:-1:-1;;;;;34211:18:0;;;34207:85;;53188:28:::1;53198:4;53204:2;53208:7;53188:9;:28::i;:::-;53239:48;53262:4;53268:2;53272:7;53281:5;53239:22;:48::i;:::-;53223:133;;;;-1:-1:-1::0;;;53223:133:0::1;;;;;;;:::i;:::-;34270:7:::0;;34207:85;34306:26;34327:4;34306:20;:26::i;:::-;53188:28:::1;53198:4;53204:2;53208:7;53188:9;:28::i;:::-;53239:48;53262:4;53268:2;53272:7;53281:5;53239:22;:48::i;:::-;53223:133;;;;-1:-1:-1::0;;;53223:133:0::1;;;;;;;:::i;:::-;53025:337:::0;;;;;:::o;67138:99::-;37866:18;:16;:18::i;:::-;67203:20:::1;:28:::0;;-1:-1:-1;;67203:28:0::1;::::0;;67138:99::o;70553:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49192:351::-;49290:13;49315:21;49339:10;:8;:10::i;:::-;49315:34;;49356:23;49382:19;:17;:19::i;:::-;49356:45;;49446:1;49428:7;49422:21;:25;:115;;;;;;;;;;;;;;;;;49483:7;49492:18;:7;:16;:18::i;:::-;49512:9;49466:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49422:115;49408:129;49192:351;-1:-1:-1;;;;49192:351:0:o;45155:96::-;45202:7;45227:14;45423:12;;-1:-1:-1;;45423:30:0;;45334:132;45227:14;:18;;45244:1;45227:18;:::i;66705:163::-;37866:18;:16;:18::i;:::-;-1:-1:-1;;;;;66803:42:0::1;66857:5;66803:42:::0;;;:21:::1;:42;::::0;;;;:59;;-1:-1:-1;;66803:59:0::1;::::0;;66705:163::o;70586:27::-;;;;;;;:::i;65011:253::-;65090:7;65110:47;65137:19;65110:26;:47::i;:::-;65106:83;;65166:23;;-1:-1:-1;;;65166:23:0;;;;;;;;;;;65106:83;-1:-1:-1;;;;;;65203:42:0;;;;;:21;:42;;;;;:55;;;;65011:253::o;78854:92::-;78898:13;78927;78920:20;;;;;:::i;65630:304::-;37866:18;:16;:18::i;:::-;-1:-1:-1;;;;;65779:42:0;;;::::1;;::::0;;;:21:::1;:42;::::0;;;;:63;;-1:-1:-1;;65779:63:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;65849:55:0::1;:79:::0;65630:304::o;36977:215::-;28797:12;:10;:12::i;:::-;-1:-1:-1;;;;;37046:22:0;::::1;37043:54;;37077:20;;-1:-1:-1::0;;;37077:20:0::1;;;;;;;;;;;37043:54;37108:16;37115:8;37108:6;:16::i;:::-;37104:49;;37133:20;;-1:-1:-1::0;;;37133:20:0::1;;;;;;;;;;;37104:49;-1:-1:-1::0;;;;;37164:14:0::1;37181:5;37164:14:::0;;;:4:::1;:14;::::0;;;;:22;;-1:-1:-1;;37164:22:0::1;::::0;;36977:215::o;67872:115::-;67927:7;67969:12;;67959:6;67951:5;;:14;;;;:::i;:::-;67950:31;;;;:::i;78512:91::-;78556:13;78585:12;78578:19;;;;;:::i;70620:33::-;;;;;;;:::i;68735:105::-;37866:18;:16;:18::i;:::-;68808:13:::1;:26:::0;;-1:-1:-1;;68808:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;68735:105::o;29434:201::-;28797:12;:10;:12::i;:::-;-1:-1:-1;;;;;29523:22:0;::::1;29515:73;;;::::0;-1:-1:-1;;;29515:73:0;;26001:2:1;29515:73:0::1;::::0;::::1;25983:21:1::0;26040:2;26020:18;;;26013:30;26079:34;26059:18;;;26052:62;-1:-1:-1;;;26130:18:1;;;26123:36;26176:19;;29515:73:0::1;25799:402:1::0;29515:73:0::1;29599:28;29618:8;29599:18;:28::i;:::-;29434:201:::0;:::o;76998:125::-;37866:18;:16;:18::i;:::-;77061:25:::1;:23;:25::i;77563:219::-:0;77641:4;77661:7;77672:1;77661:12;77658:43;;77682:19;;-1:-1:-1;;;77682:19:0;;;;;;;;;;;77658:43;77758:16;;77746:7;77720:23;77734:8;77720:13;:23::i;:::-;:33;;;;:::i;:::-;77719:55;;;77563:219;-1:-1:-1;;;77563:219:0:o;69031:203::-;69139:13;;69119:4;;69139:13;;:89;;69214:14;69201:9;:27;;69139:89;;;69176:14;69163:9;:27;69139:89;69132:96;69031:203;-1:-1:-1;;;69031:203:0:o;61335:89::-;61386:8;;61405:12;;61378:40;;-1:-1:-1;;;;;61386:8:0;;;;61378:40;;;;;61405:12;61386:8;61378:40;61386:8;61378:40;61405:12;61386:8;61378:40;;;;;;;;;;;;;;;;;;;53738:129;53821:40;53831:2;53835:8;53845:11;53821:40;;;;;;;;;;;;:9;:40::i;53597:135::-;53654:4;53693:7;44882:1;53674:26;;:52;;;;-1:-1:-1;;53714:12:0;;-1:-1:-1;53704:22:0;53597:135::o;34503:415::-;32413:42;34694:43;:47;34690:221;;34763:65;;-1:-1:-1;;;34763:65:0;;34812:4;34763:65;;;17141:34:1;-1:-1:-1;;;;;17211:15:1;;17191:18;;;17184:43;32413:42:0;;34763:40;;17076:18:1;;34763:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34758:142;;34856:28;;-1:-1:-1;;;34856:28:0;;-1:-1:-1;;;;;2507:32:1;;34856:28:0;;;2489:51:1;2462:18;;34856:28:0;2343:203:1;57481:172:0;57578:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;57578:29:0;-1:-1:-1;;;;;57578:29:0;;;;;;;;;57619:28;;57578:24;;57619:28;;;;;;;57481:172;;;:::o;55850:1529::-;55947:35;55985:20;55997:7;55985:11;:20::i;:::-;56056:18;;55947:58;;-1:-1:-1;56014:22:0;;-1:-1:-1;;;;;56040:34:0;27262:10;-1:-1:-1;;;;;56040:34:0;;:81;;;-1:-1:-1;27262:10:0;56085:20;56097:7;56085:11;:20::i;:::-;-1:-1:-1;;;;;56085:36:0;;56040:81;:142;;;-1:-1:-1;56149:18:0;;56132:50;;27262:10;52303:186;:::i;56132:50::-;56014:169;;56208:17;56192:101;;;;-1:-1:-1;;;56192:101:0;;26408:2:1;56192:101:0;;;26390:21:1;26447:2;26427:18;;;26420:30;26486:34;26466:18;;;26459:62;-1:-1:-1;;;26537:18:1;;;26530:48;26595:19;;56192:101:0;26206:414:1;56192:101:0;56340:4;-1:-1:-1;;;;;56318:26:0;:13;:18;;;-1:-1:-1;;;;;56318:26:0;;56302:98;;;;-1:-1:-1;;;56302:98:0;;26827:2:1;56302:98:0;;;26809:21:1;26866:2;26846:18;;;26839:30;26905:34;26885:18;;;26878:62;-1:-1:-1;;;26956:18:1;;;26949:36;27002:19;;56302:98:0;26625:402:1;56302:98:0;-1:-1:-1;;;;;56415:16:0;;56407:66;;;;-1:-1:-1;;;56407:66:0;;27234:2:1;56407:66:0;;;27216:21:1;27273:2;27253:18;;;27246:30;27312:34;27292:18;;;27285:62;-1:-1:-1;;;27363:18:1;;;27356:35;27408:19;;56407:66:0;27032:401:1;56407:66:0;56582:49;56599:1;56603:7;56612:13;:18;;;56582:8;:49::i;:::-;-1:-1:-1;;;;;56640:18:0;;;;;;:12;:18;;;;;:31;;56670:1;;56640:18;:31;;56670:1;;-1:-1:-1;;;;;56640:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;56640:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;56678:16:0;;-1:-1:-1;56678:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;56678:16:0;;:29;;-1:-1:-1;;56678:29:0;;:::i;:::-;;;-1:-1:-1;;;;;56678:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56737:43:0;;;;;;;;-1:-1:-1;;;;;56737:43:0;;;;;-1:-1:-1;;;;;56763:15:0;56737:43;;;;;;;;;-1:-1:-1;56714:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;56714:66:0;-1:-1:-1;;;;;;56714:66:0;;;;;;;;;;;57030:11;56726:7;-1:-1:-1;57030:11:0;:::i;:::-;57093:1;57052:24;;;:11;:24;;;;;:29;57008:33;;-1:-1:-1;;;;;;57052:29:0;57048:236;;57110:20;57118:11;57110:7;:20::i;:::-;57106:171;;;57170:97;;;;;;;;57197:18;;-1:-1:-1;;;;;57170:97:0;;;;;;57228:28;;;;-1:-1:-1;;;;;57170:97:0;;;;;;;;;-1:-1:-1;57143:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;57143:124:0;-1:-1:-1;;;;;;57143:124:0;;;;;;;;;;;;57106:171;57316:7;57312:2;-1:-1:-1;;;;;57297:27:0;57306:4;-1:-1:-1;;;;;57297:27:0;;;;;;;;;;;57331:42;50999:504;33415:337;33515:67;;-1:-1:-1;;;33515:67:0;;33564:4;33515:67;;;17141:34:1;33571:10:0;17191:18:1;;;17184:43;32413:42:0;;33515:40;;17076:18:1;;33515:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:147;;;;-1:-1:-1;33601:61:0;;-1:-1:-1;;;33601:61:0;;33650:4;33601:61;;;17141:34:1;-1:-1:-1;;;;;17211:15:1;;17191:18;;;17184:43;32413:42:0;;33601:40;;17076:18:1;;33601:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33481:264;;33705:30;;-1:-1:-1;;;33705:30:0;;33724:10;33705:30;;;2489:51:1;2462:18;;33705:30:0;2343:203:1;38924:202:0;39057:4;39112;39083:25;39096:5;39103:4;39083:12;:25::i;:::-;:33;;38924:202;-1:-1:-1;;;;38924:202:0:o;37611:215::-;37659:13;28529:6;;-1:-1:-1;;;;;28529:6:0;27262:10;37675:23;;;;37659:13;37720:20;;37331:182;:::i;37720:20::-;37705:35;;37755:8;:19;;;;37767:7;37755:19;37747:73;;;;-1:-1:-1;;;37747:73:0;;28047:2:1;37747:73:0;;;28029:21:1;28086:2;28066:18;;;28059:30;28125:34;28105:18;;;28098:62;-1:-1:-1;;;28176:18:1;;;28169:39;28225:19;;37747:73:0;27845:405:1;28636:121:0;28502:7;28529:6;-1:-1:-1;;;;;28529:6:0;27262:10;28689:23;28681:68;;;;-1:-1:-1;;;28681:68:0;;28457:2:1;28681:68:0;;;28439:21:1;;;28476:18;;;28469:30;28535:34;28515:18;;;28508:62;28587:18;;28681:68:0;28255:356:1;47700:945:0;-1:-1:-1;;;;;;;;;;;;;;;;;47824:7:0;;44882:1;47865:23;;:46;;;;;47899:12;;47892:4;:19;47865:46;47861:706;;;47928:31;47962:17;;;:11;:17;;;;;;;;;47928:51;;;;;;;;;-1:-1:-1;;;;;47928:51:0;;;;;-1:-1:-1;;;47928:51:0;;;-1:-1:-1;;;;;47928:51:0;;;;;;;;47998:28;47994:85;;48054:9;47700:945;-1:-1:-1;;;47700:945:0:o;47994:85::-;-1:-1:-1;;;48375:6:0;48412:17;;;;:11;:17;;;;;;;;;48400:29;;;;;;;;;-1:-1:-1;;;;;48400:29:0;;;;;-1:-1:-1;;;48400:29:0;;;-1:-1:-1;;;;;48400:29:0;;;;;;;;48452:28;48448:93;;48512:9;47700:945;-1:-1:-1;;;47700:945:0:o;48448:93::-;48343:213;;47861:706;48582:57;;-1:-1:-1;;;48582:57:0;;28818:2:1;48582:57:0;;;28800:21:1;28857:2;28837:18;;;28830:30;28896:34;28876:18;;;28869:62;-1:-1:-1;;;28947:18:1;;;28940:45;29002:19;;48582:57:0;28616:411:1;29793:191:0;29867:16;29886:6;;-1:-1:-1;;;;;29903:17:0;;;-1:-1:-1;;;;;;29903:17:0;;;;;;29936:40;;29886:6;;;;;;;29936:40;;29867:16;29936:40;29856:128;29793:191;:::o;63349:237::-;63409:6;63405:176;63423:19;;63419:1;:23;63405:176;;;63463:108;63490:16;63507:1;63490:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;63490:19:0;63555:3;63537:11;63549:1;63537:14;;;;;;;;:::i;:::-;;;;;;;;;63527:7;:24;;;;:::i;:::-;63526:32;;;;:::i;:::-;63463:10;:108::i;:::-;63444:3;;;;:::i;:::-;;;;63405:176;;44153:563;44335:1;44317:15;:19;44301:99;;;;-1:-1:-1;;;44301:99:0;;29491:2:1;44301:99:0;;;29473:21:1;29530:2;29510:18;;;29503:30;29569:34;29549:18;;;29542:62;-1:-1:-1;;;29620:18:1;;;29613:44;29674:19;;44301:99:0;29289:410:1;44301:99:0;44431:1;44415:13;:17;44407:69;;;;-1:-1:-1;;;44407:69:0;;29906:2:1;44407:69:0;;;29888:21:1;29945:2;29925:18;;;29918:30;29984:34;29964:18;;;29957:62;-1:-1:-1;;;30035:18:1;;;30028:37;30082:19;;44407:69:0;29704:403:1;44407:69:0;44483:5;:13;44491:5;44483;:13;:::i;:::-;-1:-1:-1;44503:7:0;:17;44513:7;44503;:17;:::i;:::-;-1:-1:-1;44527:12:0;:28;;;44562:14;:32;;;-1:-1:-1;44601:12:0;:30;44638:72;44661:42;44705:4;44638:22;:72::i;59270:690::-;59407:4;-1:-1:-1;;;;;59424:13:0;;1614:19;:23;59420:535;;59463:72;;-1:-1:-1;;;59463:72:0;;-1:-1:-1;;;;;59463:36:0;;;;;:72;;27262:10;;59514:4;;59520:7;;59529:5;;59463:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59463:72:0;;;;;;;;-1:-1:-1;;59463:72:0;;;;;;;;;;;;:::i;:::-;;;59450:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59694:6;:13;59711:1;59694:18;59690:215;;59727:61;;-1:-1:-1;;;59727:61:0;;;;;;;:::i;59690:215::-;59873:6;59867:13;59858:6;59854:2;59850:15;59843:38;59450:464;-1:-1:-1;;;;;;59585:55:0;-1:-1:-1;;;59585:55:0;;-1:-1:-1;59578:62:0;;59420:535;-1:-1:-1;59943:4:0;59270:690;;;;;;:::o;78726:122::-;78794:13;78823:19;78816:26;;;;;:::i;22013:723::-;22069:13;22290:5;22299:1;22290:10;22286:53;;-1:-1:-1;;22317:10:0;;;;;;;;;;;;-1:-1:-1;;;22317:10:0;;;;;22013:723::o;22286:53::-;22364:5;22349:12;22405:78;22412:9;;22405:78;;22438:8;;;;:::i;:::-;;-1:-1:-1;22461:10:0;;-1:-1:-1;22469:2:0;22461:10;;:::i;:::-;;;22405:78;;;22493:19;22525:6;-1:-1:-1;;;;;22515:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22515:17:0;;22493:39;;22543:154;22550:10;;22543:154;;22577:11;22587:1;22577:11;;:::i;:::-;;-1:-1:-1;22646:10:0;22654:2;22646:5;:10;:::i;:::-;22633:24;;:2;:24;:::i;:::-;22620:39;;22603:6;22610;22603:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;22603:56:0;;;;;;;;-1:-1:-1;22674:11:0;22683:2;22674:11;;:::i;:::-;;;22543:154;;47454:240;47515:7;-1:-1:-1;;;;;47547:19:0;;47531:102;;;;-1:-1:-1;;;47531:102:0;;31312:2:1;47531:102:0;;;31294:21:1;31351:2;31331:18;;;31324:30;31390:34;31370:18;;;31363:62;-1:-1:-1;;;31441:18:1;;;31434:47;31498:19;;47531:102:0;31110:413:1;47531:102:0;-1:-1:-1;;;;;;47655:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;47655:32:0;;-1:-1:-1;;;;;47655:32:0;;47454:240::o;54196:1434::-;54347:12;;-1:-1:-1;;;;;54374:16:0;;54366:62;;;;-1:-1:-1;;;54366:62:0;;31730:2:1;54366:62:0;;;31712:21:1;31769:2;31749:18;;;31742:30;31808:34;31788:18;;;31781:62;-1:-1:-1;;;31859:18:1;;;31852:31;31900:19;;54366:62:0;31528:397:1;54366:62:0;54565:21;54573:12;54565:7;:21::i;:::-;54564:22;54556:64;;;;-1:-1:-1;;;54556:64:0;;32132:2:1;54556:64:0;;;32114:21:1;32171:2;32151:18;;;32144:30;32210:31;32190:18;;;32183:59;32259:18;;54556:64:0;31930:353:1;54556:64:0;54706:20;;;54721:5;54706:20;54702:116;;54759:12;;54747:8;:24;;54739:71;;;;-1:-1:-1;;;54739:71:0;;32490:2:1;54739:71:0;;;32472:21:1;32529:2;32509:18;;;32502:30;32568:34;32548:18;;;32541:62;-1:-1:-1;;;32619:18:1;;;32612:32;32661:19;;54739:71:0;32288:398:1;54739:71:0;-1:-1:-1;;;;;54929:16:0;;54896:30;54929:16;;;:12;:16;;;;;;;;;54896:49;;;;;;;;;-1:-1:-1;;;;;54896:49:0;;;;;-1:-1:-1;;;54896:49:0;;;;;;;;;;;54971:139;;;;;;;;54991:19;;54896:49;;54971:139;;;54991:39;;55021:8;;54991:39;:::i;:::-;-1:-1:-1;;;;;54971:139:0;;;;;55067:11;:35;;55093:8;55067:35;;;55081:1;55067:35;55039:11;:24;;;:64;;;;:::i;:::-;-1:-1:-1;;;;;54971:139:0;;;;;;-1:-1:-1;;;;;54952:16:0;;;;;;;:12;:16;;;;;;;;:158;;;;;;;;-1:-1:-1;;;54952:158:0;;;;;;;;;;;;55145:43;;;;;;;;;;-1:-1:-1;;;;;55171:15:0;55145:43;;;;;;;;55117:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;55117:71:0;-1:-1:-1;;;;;;55117:71:0;;;;;;;;;;;;;;;;;;55129:12;;55241:281;55265:8;55261:1;:12;55241:281;;;55294:38;;55319:12;;-1:-1:-1;;;;;55294:38:0;;;55311:1;;55294:38;;55311:1;;55294:38;55359:59;55390:1;55394:2;55398:12;55412:5;55359:22;:59::i;:::-;55341:150;;;;-1:-1:-1;;;55341:150:0;;;;;;;:::i;:::-;55500:14;;;;:::i;:::-;;;;55275:3;;;;;:::i;:::-;;;;55241:281;;;-1:-1:-1;55530:12:0;:27;-1:-1:-1;;;;;;54196:1434:0:o;39498:701::-;39581:7;39626:4;39581:7;39643:515;39667:5;:12;39663:1;:16;39643:515;;;39703:20;39726:5;39732:1;39726:8;;;;;;;;:::i;:::-;;;;;;;39703:31;;39771:12;39755;:28;39751:394;;40277:13;40331:15;;;40369:4;40362:15;;;40418:4;40402:21;;39887:57;;39751:394;;;40277:13;40331:15;;;40369:4;40362:15;;;40418:4;40402:21;;40070:57;;39751:394;-1:-1:-1;39681:3:0;;;;:::i;:::-;;;;39643:515;;;-1:-1:-1;40177:12:0;39498:701;-1:-1:-1;;;39498:701:0:o;63594:175::-;63667:12;63685:8;-1:-1:-1;;;;;63685:13:0;63706:7;63685:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63666:52;;;63735:7;63727:36;;;;-1:-1:-1;;;63727:36:0;;33103:2:1;63727:36:0;;;33085:21:1;33142:2;33122:18;;;33115:30;-1:-1:-1;;;33161:18:1;;;33154:46;33217:18;;63727:36:0;32901:340:1;32487:920:0;32413:42;32865:43;:47;32861:539;;32933:9;32929:460;;;32963:90;;-1:-1:-1;;;32963:90:0;;33015:4;32963:90;;;17141:34:1;-1:-1:-1;;;;;17211:15:1;;17191:18;;;17184:43;32413:42:0;;32963:43;;17076:18:1;;32963:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32929:460;-1:-1:-1;;;;;33098:44:0;;;33094:280;;33167:92;;-1:-1:-1;;;33167:92:0;;33221:4;33167:92;;;17141:34:1;-1:-1:-1;;;;;17211:15:1;;17191:18;;;17184:43;32413:42:0;;33167:45;;17076:18:1;;33167:92:0;16929:304:1;33094:280:0;33308:46;;-1:-1:-1;;;33308:46:0;;33348:4;33308:46;;;2489:51:1;32413:42:0;;33308:31;;2462:18:1;;33308:46:0;2343:203:1;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:173::-;842:20;;-1:-1:-1;;;;;891:31:1;;881:42;;871:70;;937:1;934;927:12;871:70;774:173;;;:::o;952:186::-;1011:6;1064:2;1052:9;1043:7;1039:23;1035:32;1032:52;;;1080:1;1077;1070:12;1032:52;1103:29;1122:9;1103:29;:::i;1143:254::-;1211:6;1219;1272:2;1260:9;1251:7;1247:23;1243:32;1240:52;;;1288:1;1285;1278:12;1240:52;1311:29;1330:9;1311:29;:::i;:::-;1301:39;1387:2;1372:18;;;;1359:32;;-1:-1:-1;;;1143:254:1:o;1402:250::-;1487:1;1497:113;1511:6;1508:1;1505:13;1497:113;;;1587:11;;;1581:18;1568:11;;;1561:39;1533:2;1526:10;1497:113;;;-1:-1:-1;;1644:1:1;1626:16;;1619:27;1402:250::o;1657:271::-;1699:3;1737:5;1731:12;1764:6;1759:3;1752:19;1780:76;1849:6;1842:4;1837:3;1833:14;1826:4;1819:5;1815:16;1780:76;:::i;:::-;1910:2;1889:15;-1:-1:-1;;1885:29:1;1876:39;;;;1917:4;1872:50;;1657:271;-1:-1:-1;;1657:271:1:o;1933:220::-;2082:2;2071:9;2064:21;2045:4;2102:45;2143:2;2132:9;2128:18;2120:6;2102:45;:::i;2158:180::-;2217:6;2270:2;2258:9;2249:7;2245:23;2241:32;2238:52;;;2286:1;2283;2276:12;2238:52;-1:-1:-1;2309:23:1;;2158:180;-1:-1:-1;2158:180:1:o;2551:367::-;2614:8;2624:6;2678:3;2671:4;2663:6;2659:17;2655:27;2645:55;;2696:1;2693;2686:12;2645:55;-1:-1:-1;2719:20:1;;-1:-1:-1;;;;;2751:30:1;;2748:50;;;2794:1;2791;2784:12;2748:50;2831:4;2823:6;2819:17;2807:29;;2891:3;2884:4;2874:6;2871:1;2867:14;2859:6;2855:27;2851:38;2848:47;2845:67;;;2908:1;2905;2898:12;2845:67;2551:367;;;;;:::o;2923:654::-;3036:6;3044;3052;3060;3068;3121:3;3109:9;3100:7;3096:23;3092:33;3089:53;;;3138:1;3135;3128:12;3089:53;3161:29;3180:9;3161:29;:::i;:::-;3151:39;;3237:2;3226:9;3222:18;3209:32;3199:42;;3292:2;3281:9;3277:18;3264:32;-1:-1:-1;;;;;3311:6:1;3308:30;3305:50;;;3351:1;3348;3341:12;3305:50;3390:70;3452:7;3443:6;3432:9;3428:22;3390:70;:::i;:::-;3479:8;;-1:-1:-1;3364:96:1;-1:-1:-1;3533:38:1;;-1:-1:-1;3567:2:1;3552:18;;3533:38;:::i;:::-;3523:48;;2923:654;;;;;;;;:::o;3582:328::-;3659:6;3667;3675;3728:2;3716:9;3707:7;3703:23;3699:32;3696:52;;;3744:1;3741;3734:12;3696:52;3767:29;3786:9;3767:29;:::i;:::-;3757:39;;3815:38;3849:2;3838:9;3834:18;3815:38;:::i;:::-;3805:48;;3900:2;3889:9;3885:18;3872:32;3862:42;;3582:328;;;;;:::o;4097:511::-;4192:6;4200;4208;4261:2;4249:9;4240:7;4236:23;4232:32;4229:52;;;4277:1;4274;4267:12;4229:52;4300:29;4319:9;4300:29;:::i;:::-;4290:39;;4380:2;4369:9;4365:18;4352:32;-1:-1:-1;;;;;4399:6:1;4396:30;4393:50;;;4439:1;4436;4429:12;4393:50;4478:70;4540:7;4531:6;4520:9;4516:22;4478:70;:::i;:::-;4097:511;;4567:8;;-1:-1:-1;4452:96:1;;-1:-1:-1;;;;4097:511:1:o;4802:579::-;4906:6;4914;4922;4930;4983:2;4971:9;4962:7;4958:23;4954:32;4951:52;;;4999:1;4996;4989:12;4951:52;5022:29;5041:9;5022:29;:::i;:::-;5012:39;;5098:2;5087:9;5083:18;5070:32;5060:42;;5153:2;5142:9;5138:18;5125:32;-1:-1:-1;;;;;5172:6:1;5169:30;5166:50;;;5212:1;5209;5202:12;5166:50;5251:70;5313:7;5304:6;5293:9;5289:22;5251:70;:::i;:::-;4802:579;;;;-1:-1:-1;5340:8:1;-1:-1:-1;;;;4802:579:1:o;5571:592::-;5642:6;5650;5703:2;5691:9;5682:7;5678:23;5674:32;5671:52;;;5719:1;5716;5709:12;5671:52;5759:9;5746:23;-1:-1:-1;;;;;5829:2:1;5821:6;5818:14;5815:34;;;5845:1;5842;5835:12;5815:34;5883:6;5872:9;5868:22;5858:32;;5928:7;5921:4;5917:2;5913:13;5909:27;5899:55;;5950:1;5947;5940:12;5899:55;5990:2;5977:16;6016:2;6008:6;6005:14;6002:34;;;6032:1;6029;6022:12;6002:34;6077:7;6072:2;6063:6;6059:2;6055:15;6051:24;6048:37;6045:57;;;6098:1;6095;6088:12;6045:57;6129:2;6121:11;;;;;6151:6;;-1:-1:-1;5571:592:1;;-1:-1:-1;;;;5571:592:1:o;6168:328::-;6245:6;6253;6261;6314:2;6302:9;6293:7;6289:23;6285:32;6282:52;;;6330:1;6327;6320:12;6282:52;6353:29;6372:9;6353:29;:::i;:::-;6343:39;;6429:2;6418:9;6414:18;6401:32;6391:42;;6452:38;6486:2;6475:9;6471:18;6452:38;:::i;:::-;6442:48;;6168:328;;;;;:::o;6501:118::-;6587:5;6580:13;6573:21;6566:5;6563:32;6553:60;;6609:1;6606;6599:12;6624:315;6689:6;6697;6750:2;6738:9;6729:7;6725:23;6721:32;6718:52;;;6766:1;6763;6756:12;6718:52;6789:29;6808:9;6789:29;:::i;:::-;6779:39;;6868:2;6857:9;6853:18;6840:32;6881:28;6903:5;6881:28;:::i;:::-;6928:5;6918:15;;;6624:315;;;;;:::o;6944:127::-;7005:10;7000:3;6996:20;6993:1;6986:31;7036:4;7033:1;7026:15;7060:4;7057:1;7050:15;7076:251;7148:2;7142:9;;;7178:15;;-1:-1:-1;;;;;7208:34:1;;7244:22;;;7205:62;7202:88;;;7270:18;;:::i;:::-;7306:2;7299:22;7076:251;:::o;7332:275::-;7403:2;7397:9;7468:2;7449:13;;-1:-1:-1;;7445:27:1;7433:40;;-1:-1:-1;;;;;7488:34:1;;7524:22;;;7485:62;7482:88;;;7550:18;;:::i;:::-;7586:2;7579:22;7332:275;;-1:-1:-1;7332:275:1:o;7612:183::-;7672:4;-1:-1:-1;;;;;7697:6:1;7694:30;7691:56;;;7727:18;;:::i;:::-;-1:-1:-1;7772:1:1;7768:14;7784:4;7764:25;;7612:183::o;7800:668::-;7854:5;7907:3;7900:4;7892:6;7888:17;7884:27;7874:55;;7925:1;7922;7915:12;7874:55;7961:6;7948:20;7987:4;8011:60;8027:43;8067:2;8027:43;:::i;:::-;8011:60;:::i;:::-;8105:15;;;8191:1;8187:10;;;;8175:23;;8171:32;;;8136:12;;;;8215:15;;;8212:35;;;8243:1;8240;8233:12;8212:35;8279:2;8271:6;8267:15;8291:148;8307:6;8302:3;8299:15;8291:148;;;8373:23;8392:3;8373:23;:::i;:::-;8361:36;;8417:12;;;;8324;;8291:148;;;-1:-1:-1;8457:5:1;7800:668;-1:-1:-1;;;;;;7800:668:1:o;8473:662::-;8527:5;8580:3;8573:4;8565:6;8561:17;8557:27;8547:55;;8598:1;8595;8588:12;8547:55;8634:6;8621:20;8660:4;8684:60;8700:43;8740:2;8700:43;:::i;8684:60::-;8778:15;;;8864:1;8860:10;;;;8848:23;;8844:32;;;8809:12;;;;8888:15;;;8885:35;;;8916:1;8913;8906:12;8885:35;8952:2;8944:6;8940:15;8964:142;8980:6;8975:3;8972:15;8964:142;;;9046:17;;9034:30;;9084:12;;;;8997;;8964:142;;9140:407;9205:5;-1:-1:-1;;;;;9231:6:1;9228:30;9225:56;;;9261:18;;:::i;:::-;9299:57;9344:2;9323:15;;-1:-1:-1;;9319:29:1;9350:4;9315:40;9299:57;:::i;:::-;9290:66;;9379:6;9372:5;9365:21;9419:3;9410:6;9405:3;9401:16;9398:25;9395:45;;;9436:1;9433;9426:12;9395:45;9485:6;9480:3;9473:4;9466:5;9462:16;9449:43;9539:1;9532:4;9523:6;9516:5;9512:18;9508:29;9501:40;9140:407;;;;;:::o;9552:222::-;9595:5;9648:3;9641:4;9633:6;9629:17;9625:27;9615:55;;9666:1;9663;9656:12;9615:55;9688:80;9764:3;9755:6;9742:20;9735:4;9727:6;9723:17;9688:80;:::i;9779:701::-;9828:5;9881:3;9874:4;9866:6;9862:17;9858:27;9848:55;;9899:1;9896;9889:12;9848:55;9923:22;;:::i;:::-;9967:3;10005:2;9997:6;9993:15;10031:3;10023:6;10020:15;10017:35;;;10048:1;10045;10038:12;10017:35;10072:6;10087:364;10103:6;10098:3;10095:15;10087:364;;;10191:3;10178:17;-1:-1:-1;;;;;10214:11:1;10211:35;10208:125;;;10287:1;10316:2;10312;10305:14;10208:125;10358:48;10402:3;10388:11;10380:6;10376:24;10358:48;:::i;:::-;10346:61;;-1:-1:-1;10436:4:1;10427:14;;;;10120;10087:364;;;-1:-1:-1;10469:5:1;;9779:701;-1:-1:-1;;;;;9779:701:1:o;10485:484::-;10535:5;10588:3;10581:4;10573:6;10569:17;10565:27;10555:55;;10606:1;10603;10596:12;10555:55;10630:22;;:::i;:::-;10674:3;10712:2;10704:6;10700:15;10738:3;10730:6;10727:15;10724:35;;;10755:1;10752;10745:12;10724:35;10779:6;10794:146;10810:6;10805:3;10802:15;10794:146;;;10878:17;;10866:30;;10925:4;10916:14;;;;10827;10794:146;;10974:1527;11245:6;11253;11261;11269;11277;11285;11293;11301;11354:3;11342:9;11333:7;11329:23;11325:33;11322:53;;;11371:1;11368;11361:12;11322:53;11394:29;11413:9;11394:29;:::i;:::-;11384:39;;11474:2;11463:9;11459:18;11446:32;-1:-1:-1;;;;;11538:2:1;11530:6;11527:14;11524:34;;;11554:1;11551;11544:12;11524:34;11577:61;11630:7;11621:6;11610:9;11606:22;11577:61;:::i;:::-;11567:71;;11691:2;11680:9;11676:18;11663:32;11647:48;;11720:2;11710:8;11707:16;11704:36;;;11736:1;11733;11726:12;11704:36;11759:63;11814:7;11803:8;11792:9;11788:24;11759:63;:::i;:::-;11749:73;;11875:2;11864:9;11860:18;11847:32;11831:48;;11904:2;11894:8;11891:16;11888:36;;;11920:1;11917;11910:12;11888:36;11943:52;11987:7;11976:8;11965:9;11961:24;11943:52;:::i;:::-;11933:62;;12048:3;12037:9;12033:19;12020:33;12004:49;;12078:2;12068:8;12065:16;12062:36;;;12094:1;12091;12084:12;12062:36;12117:52;12161:7;12150:8;12139:9;12135:24;12117:52;:::i;:::-;12107:62;;12222:3;12211:9;12207:19;12194:33;12178:49;;12252:2;12242:8;12239:16;12236:36;;;12268:1;12265;12258:12;12236:36;;12291:58;12341:7;12330:8;12319:9;12315:24;12291:58;:::i;:::-;12281:68;;;12368:54;12414:7;12408:3;12397:9;12393:19;12368:54;:::i;:::-;12358:64;;12441:54;12487:7;12481:3;12470:9;12466:19;12441:54;:::i;:::-;12431:64;;10974:1527;;;;;;;;;;;:::o;12506:595::-;12624:6;12632;12685:2;12673:9;12664:7;12660:23;12656:32;12653:52;;;12701:1;12698;12691:12;12653:52;12741:9;12728:23;-1:-1:-1;;;;;12811:2:1;12803:6;12800:14;12797:34;;;12827:1;12824;12817:12;12797:34;12850:61;12903:7;12894:6;12883:9;12879:22;12850:61;:::i;:::-;12840:71;;12964:2;12953:9;12949:18;12936:32;12920:48;;12993:2;12983:8;12980:16;12977:36;;;13009:1;13006;12999:12;12977:36;;13032:63;13087:7;13076:8;13065:9;13061:24;13032:63;:::i;:::-;13022:73;;;12506:595;;;;;:::o;13106:667::-;13201:6;13209;13217;13225;13278:3;13266:9;13257:7;13253:23;13249:33;13246:53;;;13295:1;13292;13285:12;13246:53;13318:29;13337:9;13318:29;:::i;:::-;13308:39;;13366:38;13400:2;13389:9;13385:18;13366:38;:::i;:::-;13356:48;;13451:2;13440:9;13436:18;13423:32;13413:42;;13506:2;13495:9;13491:18;13478:32;-1:-1:-1;;;;;13525:6:1;13522:30;13519:50;;;13565:1;13562;13555:12;13519:50;13588:22;;13641:4;13633:13;;13629:27;-1:-1:-1;13619:55:1;;13670:1;13667;13660:12;13619:55;13693:74;13759:7;13754:2;13741:16;13736:2;13732;13728:11;13693:74;:::i;:::-;13683:84;;;13106:667;;;;;;;:::o;13778:383::-;13852:6;13860;13868;13921:2;13909:9;13900:7;13896:23;13892:32;13889:52;;;13937:1;13934;13927:12;13889:52;13960:29;13979:9;13960:29;:::i;:::-;13950:39;;14039:2;14028:9;14024:18;14011:32;14052:28;14074:5;14052:28;:::i;:::-;13778:383;;14099:5;;-1:-1:-1;;;14151:2:1;14136:18;;;;14123:32;;13778:383::o;14166:260::-;14234:6;14242;14295:2;14283:9;14274:7;14270:23;14266:32;14263:52;;;14311:1;14308;14301:12;14263:52;14334:29;14353:9;14334:29;:::i;:::-;14324:39;;14382:38;14416:2;14405:9;14401:18;14382:38;:::i;:::-;14372:48;;14166:260;;;;;:::o;14431:241::-;14487:6;14540:2;14528:9;14519:7;14515:23;14511:32;14508:52;;;14556:1;14553;14546:12;14508:52;14595:9;14582:23;14614:28;14636:5;14614:28;:::i;14677:127::-;14738:10;14733:3;14729:20;14726:1;14719:31;14769:4;14766:1;14759:15;14793:4;14790:1;14783:15;14809:125;14874:9;;;14895:10;;;14892:36;;;14908:18;;:::i;14939:380::-;15018:1;15014:12;;;;15061;;;15082:61;;15136:4;15128:6;15124:17;15114:27;;15082:61;15189:2;15181:6;15178:14;15158:18;15155:38;15152:161;;15235:10;15230:3;15226:20;15223:1;15216:31;15270:4;15267:1;15260:15;15298:4;15295:1;15288:15;15152:161;;14939:380;;;:::o;16567:168::-;16640:9;;;16671;;16688:15;;;16682:22;;16668:37;16658:71;;16709:18;;:::i;16740:184::-;16810:6;16863:2;16851:9;16842:7;16838:23;16834:32;16831:52;;;16879:1;16876;16869:12;16831:52;-1:-1:-1;16902:16:1;;16740:184;-1:-1:-1;16740:184:1:o;17618:245::-;17685:6;17738:2;17726:9;17717:7;17713:23;17709:32;17706:52;;;17754:1;17751;17744:12;17706:52;17786:9;17780:16;17805:28;17827:5;17805:28;:::i;18271:135::-;18310:3;18331:17;;;18328:43;;18351:18;;:::i;:::-;-1:-1:-1;18398:1:1;18387:13;;18271:135::o;19590:545::-;19692:2;19687:3;19684:11;19681:448;;;19728:1;19753:5;19749:2;19742:17;19798:4;19794:2;19784:19;19868:2;19856:10;19852:19;19849:1;19845:27;19839:4;19835:38;19904:4;19892:10;19889:20;19886:47;;;-1:-1:-1;19927:4:1;19886:47;19982:2;19977:3;19973:12;19970:1;19966:20;19960:4;19956:31;19946:41;;20037:82;20055:2;20048:5;20045:13;20037:82;;;20100:17;;;20081:1;20070:13;20037:82;;20311:1206;-1:-1:-1;;;;;20430:3:1;20427:27;20424:53;;;20457:18;;:::i;:::-;20486:94;20576:3;20536:38;20568:4;20562:11;20536:38;:::i;:::-;20530:4;20486:94;:::i;:::-;20606:1;20631:2;20626:3;20623:11;20648:1;20643:616;;;;21303:1;21320:3;21317:93;;;-1:-1:-1;21376:19:1;;;21363:33;21317:93;-1:-1:-1;;20268:1:1;20264:11;;;20260:24;20256:29;20246:40;20292:1;20288:11;;;20243:57;21423:78;;20616:895;;20643:616;19537:1;19530:14;;;19574:4;19561:18;;-1:-1:-1;;20679:17:1;;;20780:9;20802:229;20816:7;20813:1;20810:14;20802:229;;;20905:19;;;20892:33;20877:49;;21012:4;20997:20;;;;20965:1;20953:14;;;;20832:12;20802:229;;;20806:3;21059;21050:7;21047:16;21044:159;;;21183:1;21179:6;21173:3;21167;21164:1;21160:11;21156:21;21152:34;21148:39;21135:9;21130:3;21126:19;21113:33;21109:79;21101:6;21094:95;21044:159;;;21246:1;21240:3;21237:1;21233:11;21229:19;21223:4;21216:33;20616:895;;20311:1206;;;:::o;22349:127::-;22410:10;22405:3;22401:20;22398:1;22391:31;22441:4;22438:1;22431:15;22465:4;22462:1;22455:15;22481:1352;22607:3;22601:10;-1:-1:-1;;;;;22626:6:1;22623:30;22620:56;;;22656:18;;:::i;:::-;22685:97;22775:6;22735:38;22767:4;22761:11;22735:38;:::i;:::-;22729:4;22685:97;:::i;:::-;22837:4;;22901:2;22890:14;;22918:1;22913:663;;;;23620:1;23637:6;23634:89;;;-1:-1:-1;23689:19:1;;;23683:26;23634:89;-1:-1:-1;;20268:1:1;20264:11;;;20260:24;20256:29;20246:40;20292:1;20288:11;;;20243:57;23736:81;;22883:944;;22913:663;19537:1;19530:14;;;19574:4;19561:18;;-1:-1:-1;;22949:20:1;;;23067:236;23081:7;23078:1;23075:14;23067:236;;;23170:19;;;23164:26;23149:42;;23262:27;;;;23230:1;23218:14;;;;23097:19;;23067:236;;;23071:3;23331:6;23322:7;23319:19;23316:201;;;23392:19;;;23386:26;-1:-1:-1;;23475:1:1;23471:14;;;23487:3;23467:24;23463:37;23459:42;23444:58;23429:74;;23316:201;-1:-1:-1;;;;;23563:1:1;23547:14;;;23543:22;23530:36;;-1:-1:-1;22481:1352:1:o;24671:415::-;24873:2;24855:21;;;24912:2;24892:18;;;24885:30;24951:34;24946:2;24931:18;;24924:62;-1:-1:-1;;;25017:2:1;25002:18;;24995:49;25076:3;25061:19;;24671:415::o;25091:703::-;25318:3;25356:6;25350:13;25372:66;25431:6;25426:3;25419:4;25411:6;25407:17;25372:66;:::i;:::-;25501:13;;25460:16;;;;25523:70;25501:13;25460:16;25570:4;25558:17;;25523:70;:::i;:::-;25660:13;;25615:20;;;25682:70;25660:13;25615:20;25729:4;25717:17;;25682:70;:::i;:::-;25768:20;;25091:703;-1:-1:-1;;;;;25091:703:1:o;27438:200::-;-1:-1:-1;;;;;27574:10:1;;;27562;;;27558:27;;27597:12;;;27594:38;;;27612:18;;:::i;:::-;27594:38;27438:200;;;;:::o;27643:197::-;-1:-1:-1;;;;;27765:10:1;;;27777;;;27761:27;;27800:11;;;27797:37;;;27814:18;;:::i;29032:127::-;29093:10;29088:3;29084:20;29081:1;29074:31;29124:4;29121:1;29114:15;29148:4;29145:1;29138:15;29164:120;29204:1;29230;29220:35;;29235:18;;:::i;:::-;-1:-1:-1;29269:9:1;;29164:120::o;30112:489::-;-1:-1:-1;;;;;30381:15:1;;;30363:34;;30433:15;;30428:2;30413:18;;30406:43;30480:2;30465:18;;30458:34;;;30528:3;30523:2;30508:18;;30501:31;;;30306:4;;30549:46;;30575:19;;30567:6;30549:46;:::i;:::-;30541:54;30112:489;-1:-1:-1;;;;;;30112:489:1:o;30606:249::-;30675:6;30728:2;30716:9;30707:7;30703:23;30699:32;30696:52;;;30744:1;30741;30734:12;30696:52;30776:9;30770:16;30795:30;30819:5;30795:30;:::i;30860:128::-;30927:9;;;30948:11;;;30945:37;;;30962:18;;:::i;30993:112::-;31025:1;31051;31041:35;;31056:18;;:::i;:::-;-1:-1:-1;31090:9:1;;30993:112::o
Swarm Source
ipfs://74e8d090802542e6958e6ab5ab329d3482139bd49b90f6aa8e7b09fd2bc26703
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.