More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 4,316 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 16186651 | 2 days ago | IN | 0 CRO | 0.49253166 | ||||
Set Approval For... | 15974020 | 16 days ago | IN | 0 CRO | 0.236037 | ||||
Safe Transfer Fr... | 15960542 | 17 days ago | IN | 0 CRO | 0.51088325 | ||||
Safe Transfer Fr... | 15864598 | 23 days ago | IN | 0 CRO | 0.51088325 | ||||
Safe Transfer Fr... | 15864544 | 23 days ago | IN | 0 CRO | 0.51088325 | ||||
Set Approval For... | 15838870 | 24 days ago | IN | 0 CRO | 0.23651794 | ||||
Set Approval For... | 15834195 | 25 days ago | IN | 0 CRO | 0.236037 | ||||
Set Approval For... | 15542792 | 44 days ago | IN | 0 CRO | 0.135542 | ||||
Set Approval For... | 15542790 | 44 days ago | IN | 0 CRO | 0.236037 | ||||
Safe Transfer Fr... | 15530944 | 45 days ago | IN | 0 CRO | 0.49674325 | ||||
Set Approval For... | 15383206 | 54 days ago | IN | 0 CRO | 0.23596689 | ||||
Set Approval For... | 15378636 | 55 days ago | IN | 0 CRO | 0.236037 | ||||
Set Approval For... | 15359152 | 56 days ago | IN | 0 CRO | 0.236037 | ||||
Safe Transfer Fr... | 15358953 | 56 days ago | IN | 0 CRO | 0.49674325 | ||||
Safe Transfer Fr... | 15358803 | 56 days ago | IN | 0 CRO | 0.49674325 | ||||
Set Approval For... | 15225462 | 65 days ago | IN | 0 CRO | 0.14957695 | ||||
Set Approval For... | 15222449 | 65 days ago | IN | 0 CRO | 0.23596689 | ||||
Set Approval For... | 15182352 | 68 days ago | IN | 0 CRO | 0.1496214 | ||||
Set Approval For... | 15181208 | 68 days ago | IN | 0 CRO | 0.23596689 | ||||
Set Approval For... | 15149888 | 70 days ago | IN | 0 CRO | 0.23596689 | ||||
Set Approval For... | 15142303 | 70 days ago | IN | 0 CRO | 0.23381334 | ||||
Set Approval For... | 15099574 | 73 days ago | IN | 0 CRO | 0.236037 | ||||
Set Approval For... | 15097423 | 73 days ago | IN | 0 CRO | 0.236037 | ||||
Set Approval For... | 15088113 | 74 days ago | IN | 0 CRO | 0.14957695 | ||||
Set Approval For... | 15064735 | 75 days ago | IN | 0 CRO | 0.1354814 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
4076932 | 794 days ago | 56,479.5 CRO | ||||
4076932 | 794 days ago | 24,205.5 CRO | ||||
4075431 | 794 days ago | 90 CRO | ||||
4075420 | 794 days ago | 135 CRO | ||||
4075389 | 794 days ago | 45 CRO | ||||
4075325 | 794 days ago | 45 CRO | ||||
4075293 | 794 days ago | 90 CRO | ||||
4075243 | 794 days ago | 120 CRO | ||||
4075215 | 794 days ago | 50 CRO | ||||
4075206 | 794 days ago | 80 CRO | ||||
4075099 | 794 days ago | 40 CRO | ||||
4075070 | 794 days ago | 80 CRO | ||||
4075006 | 794 days ago | 120 CRO | ||||
4074999 | 794 days ago | 40 CRO | ||||
4074987 | 794 days ago | 90 CRO | ||||
4074929 | 794 days ago | 120 CRO | ||||
4074925 | 794 days ago | 40 CRO | ||||
4074886 | 794 days ago | 80 CRO | ||||
4074856 | 794 days ago | 40 CRO | ||||
4074801 | 794 days ago | 45 CRO | ||||
4074738 | 794 days ago | 45 CRO | ||||
4074714 | 794 days ago | 80 CRO | ||||
4074353 | 794 days ago | 150 CRO | ||||
4072824 | 794 days ago | 45 CRO | ||||
4072331 | 794 days ago | 135 CRO |
Loading...
Loading
Contract Name:
Aristodog
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-07-01 */ // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: SafeMathLite.sol pragma solidity ^0.8.4; library SafeMathLite{ /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } } // File: SafePct.sol pragma solidity ^0.8.0; library SafePct { using SafeMathLite for uint256; /** * Requirements: * * - intermediate operations must revert on overflow */ function mulDiv(uint256 x, uint256 y, uint256 z) internal pure returns (uint256) { require(z > 0, "Division by zero"); if (x == 0) return 0; uint256 xy = x * y; if (xy / x == y) { // no overflow happened - same as in SafeMath mul return xy / z; } //slither-disable-next-line divide-before-multiply uint256 a = x / z; uint256 b = x % z; // x = a * z + b //slither-disable-next-line divide-before-multiply uint256 c = y / z; uint256 d = y % z; // y = c * z + d return (a.mul(c).mul(z)).add(a.mul(d)).add(b.mul(c)).add(b.mul(d).div(z)); } } // File: IDrop.sol pragma solidity ^0.8.0; interface IDrop { struct Info { uint256 regularCost; uint256 memberCost; uint256 whitelistCost; uint256 maxSupply; uint256 totalSupply; uint256 maxMintPerAddress; uint256 maxMintPerTx; } function mintCost(address _minter) external view returns(uint256); function canMint(address _minter) external view returns (uint256); function mint(uint256 _amount) external payable; function maxSupply() external view returns (uint256); function getInfo() external view returns (Info memory); } // 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/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: Withdraw.sol pragma solidity ^0.8.0; contract Withdraw is Ownable { using SafeMath for uint256; struct Part { address wallet; uint256 salePart; } Part[] public parts; constructor(){ parts.push(Part(0x53B4bA1a81744A1C9920b341d6EFe6F7d366B583, 300)); parts.push(Part(0x75fAdee002512c80984239d0993e5028e0CC8fd4, 700)); } function shareSalesPart() public onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "Sales Balance = 0"); for(uint8 i = 0; i < parts.length; i++){ if(parts[i].salePart > 0){ _withdraw(parts[i].wallet, balance.mul(parts[i].salePart).div(1000)); } } _withdraw(owner(), address(this).balance); } function _withdraw(address _address, uint256 _amount) private { (bool success, ) = _address.call{value: _amount}(""); require(success, "Transfer failed."); } receive() external payable {} } // 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/utils/escrow/Escrow.sol // OpenZeppelin Contracts v4.4.1 (utils/escrow/Escrow.sol) pragma solidity ^0.8.0; /** * @title Escrow * @dev Base escrow contract, holds funds designated for a payee until they * withdraw them. * * Intended usage: This contract (and derived escrow contracts) should be a * standalone contract, that only interacts with the contract that instantiated * it. That way, it is guaranteed that all Ether will be handled according to * the `Escrow` rules, and there is no need to check for payable functions or * transfers in the inheritance tree. The contract that uses the escrow as its * payment method should be its owner, and provide public methods redirecting * to the escrow's deposit and withdraw. */ contract Escrow is Ownable { using Address for address payable; event Deposited(address indexed payee, uint256 weiAmount); event Withdrawn(address indexed payee, uint256 weiAmount); mapping(address => uint256) private _deposits; function depositsOf(address payee) public view returns (uint256) { return _deposits[payee]; } /** * @dev Stores the sent amount as credit to be withdrawn. * @param payee The destination address of the funds. */ function deposit(address payee) public payable virtual onlyOwner { uint256 amount = msg.value; _deposits[payee] += amount; emit Deposited(payee, amount); } /** * @dev Withdraw accumulated balance for a payee, forwarding all gas to the * recipient. * * WARNING: Forwarding all gas opens the door to reentrancy vulnerabilities. * Make sure you trust the recipient, or are either following the * checks-effects-interactions pattern or using {ReentrancyGuard}. * * @param payee The address whose funds will be withdrawn and transferred to. */ function withdraw(address payable payee) public virtual onlyOwner { uint256 payment = _deposits[payee]; _deposits[payee] = 0; payee.sendValue(payment); emit Withdrawn(payee, payment); } } // File: @openzeppelin/contracts/security/PullPayment.sol // OpenZeppelin Contracts v4.4.1 (security/PullPayment.sol) pragma solidity ^0.8.0; /** * @dev Simple implementation of a * https://consensys.github.io/smart-contract-best-practices/recommendations/#favor-pull-over-push-for-external-calls[pull-payment] * strategy, where the paying contract doesn't interact directly with the * receiver account, which must withdraw its payments itself. * * Pull-payments are often considered the best practice when it comes to sending * Ether, security-wise. It prevents recipients from blocking execution, and * eliminates reentrancy concerns. * * 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]. * * To use, derive from the `PullPayment` contract, and use {_asyncTransfer} * instead of Solidity's `transfer` function. Payees can query their due * payments with {payments}, and retrieve them with {withdrawPayments}. */ abstract contract PullPayment { Escrow private immutable _escrow; constructor() { _escrow = new Escrow(); } /** * @dev Withdraw accumulated payments, forwarding all gas to the recipient. * * Note that _any_ account can call this function, not just the `payee`. * This means that contracts unaware of the `PullPayment` protocol can still * receive funds this way, by having a separate account call * {withdrawPayments}. * * WARNING: Forwarding all gas opens the door to reentrancy vulnerabilities. * Make sure you trust the recipient, or are either following the * checks-effects-interactions pattern or using {ReentrancyGuard}. * * @param payee Whose payments will be withdrawn. */ function withdrawPayments(address payable payee) public virtual { _escrow.withdraw(payee); } /** * @dev Returns the payments owed to an address. * @param dest The creditor's address. */ function payments(address dest) public view returns (uint256) { return _escrow.depositsOf(dest); } /** * @dev Called by the payer to store the sent amount as credit to be pulled. * Funds sent in this way are stored in an intermediate {Escrow} contract, so * there is no danger of them being spent before withdrawal. * * @param dest The destination address of the funds. * @param amount The amount to transfer. */ function _asyncTransfer(address dest, uint256 amount) internal virtual { _escrow.deposit{value: amount}(dest); } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: Aristodog.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract Market { function isMember(address user) public virtual view returns(bool); function addToEscrow(address _address) external virtual payable; } interface IERC1155 { function balanceOf(address account, uint id) external view returns (uint256); } contract Aristodog is ERC721Enumerable, Ownable, IDrop, ReentrancyGuard, PullPayment, Withdraw { using Strings for uint256; using SafePct for uint256; uint256 public _maxSupply = 3333; uint256 public immutable _maxPerTx = 15; uint256 public dogCounter; uint256 public fmPrice = 450 ether; uint256 public publicPrice = 500 ether; uint256 public premintPrice = 400 ether; uint256 public supplyRemaining; uint public startSaleTimestamp = 1656774000; bool public freeze; uint128 constant internal SCALE = 10000; uint128 constant internal FEE = 1000; string public baseURI; Market contractMarket; mapping(address => bool) public whitelist; mapping(bytes32 => Sale) public sale; mapping(address => uint256) public balanceMint; struct Sale { uint128 saleStartTime; uint128 saleEndTime; uint price; bool paused; } uint secondDropTimestamp; event SaleChange(bytes32 _name, Sale _sale); event dogMinted(address _minter, uint[] _tokenIDs); constructor(string memory _baseURI, Market _marketAddress) ERC721("AristoDog", "AD") { setBaseURI(_baseURI); setEBMarket(_marketAddress); supplyRemaining = _maxSupply; } //******************************// // PUBLIC VIEW // //******************************// function isEBMember(address _user) public view returns (bool) { return contractMarket.isMember(_user); } function isWhitelist(address _user) public view returns (bool) { return whitelist[_user]; } //************************// // SALES // //************************// modifier isOpen(uint256 _count) { require(block.timestamp >= startSaleTimestamp, "SALE IS NOT OPEN"); require(_count > 0, 'CANT MINT 0 NFT'); require(_count <= _maxPerTx, 'MAX PER TX IS 15'); require(totalSupply() + _count <= _maxSupply, "SOLD OUT, TRY TO MINT LESS"); require(_count <= supplyRemaining, 'SOLDOUT'); require(supplyRemaining > 0, 'COLLECTION ALREADY SOLDOUT'); uint price; if(isEBMember(msg.sender) && !isWhitelist(msg.sender)) { price = fmPrice; } else if (isWhitelist(msg.sender)){ price = premintPrice; } else { price = publicPrice; } require(msg.value >= price * _count, "INSUFFICIENT FUNDS"); _; } modifier isNotFreeze { require( !freeze, "ERROR: MINT IS FROZEN" ); _; } //*************************// // SETTER // //*************************// function batchWhitelist(address[] memory _whitelistUser) external onlyOwner { for(uint256 i = 0; i < _whitelistUser.length; i++ ) { whitelist[_whitelistUser[i]] = true; } } function setPrices(uint256 _newPublicPrice, uint256 _newFMPrice) external onlyOwner { fmPrice = _newFMPrice; publicPrice = _newPublicPrice; } function setEBMarket(Market _marketAddress) public onlyOwner { contractMarket = _marketAddress; } function freezeNow() external onlyOwner isNotFreeze { freeze = true; } function unFreezeNow() external onlyOwner { require( !freeze, "ERROR: MINT IS NOT FROZEN" ); freeze = false; } //*****************************// // MINT LOGIC // //*****************************// function teamMint(uint _amount) external onlyOwner { for(uint i = 0; i < _amount; i++){ supplyRemaining--; dogCounter++; _safeMint(msg.sender, dogCounter); } } function _mint(uint _amount) internal isOpen(_amount) isNotFreeze nonReentrant { uint[] memory tokenIdsBought = new uint[](_amount); uint totalCost; if(isEBMember(msg.sender) && !isWhitelist(msg.sender)) { totalCost = _amount * fmPrice; } else if (isWhitelist(msg.sender)) { totalCost = _amount * premintPrice; } else { totalCost = _amount * publicPrice; } uint mintFee = totalCost.mulDiv(FEE, SCALE); contractMarket.addToEscrow{value: mintFee}(0x454cfAa623A629CC0b4017aEb85d54C42e91479d); for(uint i = 0; i < _amount; i++){ dogCounter++; supplyRemaining--; _safeMint(msg.sender, dogCounter); } emit dogMinted(msg.sender, tokenIdsBought); } //***************************// // METADATA // //***************************// function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = string(abi.encodePacked(baseURI, Strings.toString(_tokenId),".json")); return _tokenURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } //************************// // IDROP // //************************// function mintCost(address _minter) external override view returns (uint256) { if (isWhitelist(_minter)) { return premintPrice; } else if (isEBMember(_minter)){ return fmPrice; } return publicPrice; } function maxSupply() external override view returns (uint256) { return _maxSupply; } function canMint(address _minter) external override view returns (uint256) { if(block.timestamp >= startSaleTimestamp) { return (_maxPerTx); } return 0; } function mint(uint256 _amount) external override payable { _mint(_amount); } function getInfo() external view override returns (Info memory){ return (Info(publicPrice, fmPrice, premintPrice, _maxSupply, totalSupply(), _maxSupply, _maxPerTx)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"contract Market","name":"_marketAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"_name","type":"bytes32"},{"components":[{"internalType":"uint128","name":"saleStartTime","type":"uint128"},{"internalType":"uint128","name":"saleEndTime","type":"uint128"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"bool","name":"paused","type":"bool"}],"indexed":false,"internalType":"struct Aristodog.Sale","name":"_sale","type":"tuple"}],"name":"SaleChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_minter","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"_tokenIDs","type":"uint256[]"}],"name":"dogMinted","type":"event"},{"inputs":[],"name":"_maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelistUser","type":"address[]"}],"name":"batchWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"canMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dogCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fmPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeze","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeNow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getInfo","outputs":[{"components":[{"internalType":"uint256","name":"regularCost","type":"uint256"},{"internalType":"uint256","name":"memberCost","type":"uint256"},{"internalType":"uint256","name":"whitelistCost","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"maxMintPerAddress","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"internalType":"struct IDrop.Info","name":"","type":"tuple"}],"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":"_user","type":"address"}],"name":"isEBMember","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"parts","outputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"salePart","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dest","type":"address"}],"name":"payments","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"sale","outputs":[{"internalType":"uint128","name":"saleStartTime","type":"uint128"},{"internalType":"uint128","name":"saleEndTime","type":"uint128"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"bool","name":"paused","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Market","name":"_marketAddress","type":"address"}],"name":"setEBMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicPrice","type":"uint256"},{"internalType":"uint256","name":"_newFMPrice","type":"uint256"}],"name":"setPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shareSalesPart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSaleTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unFreezeNow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"payee","type":"address"}],"name":"withdrawPayments","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052610d05600d55600f60a0908152506818650127cc3dc80000600f55681b1ae4d6e2ef5000006010556815af1d78b58c4000006011556362c05d706013553480156200004e57600080fd5b506040516200750938038062007509833981810160405281019062000074919062000718565b6040518060400160405280600981526020017f41726973746f446f6700000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f41440000000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f8929190620005c5565b50806001908051906020019062000111929190620005c5565b50505062000134620001286200034f60201b60201c565b6200035760201b60201c565b6001600b819055506040516200014a9062000656565b604051809103906000f08015801562000167573d6000803e3d6000fd5b5073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b81525050600c60405180604001604052807353b4ba1a81744a1c9920b341d6efe6f7d366b58373ffffffffffffffffffffffffffffffffffffffff16815260200161012c815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550602082015181600101555050600c60405180604001604052807375fadee002512c80984239d0993e5028e0cc8fd473ffffffffffffffffffffffffffffffffffffffff1681526020016102bc815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151816001015550506200032d826200041d60201b60201c565b6200033e81620004c860201b60201c565b600d546012819055505050620009e7565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200042d6200034f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004536200059b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004a390620007a5565b60405180910390fd5b8060159080519060200190620004c4929190620005c5565b5050565b620004d86200034f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004fe6200059b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000557576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200054e90620007a5565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620005d390620008b5565b90600052602060002090601f016020900481019282620005f7576000855562000643565b82601f106200061257805160ff191683800117855562000643565b8280016001018555821562000643579182015b828111156200064257825182559160200191906001019062000625565b5b50905062000652919062000664565b5090565b610d1680620067f383390190565b5b808211156200067f57600081600090555060010162000665565b5090565b60006200069a6200069484620007f0565b620007c7565b905082815260208101848484011115620006b957620006b862000984565b5b620006c68482856200087f565b509392505050565b600081519050620006df81620009cd565b92915050565b600082601f830112620006fd57620006fc6200097f565b5b81516200070f84826020860162000683565b91505092915050565b600080604083850312156200073257620007316200098e565b5b600083015167ffffffffffffffff81111562000753576200075262000989565b5b6200076185828601620006e5565b92505060206200077485828601620006ce565b9150509250929050565b60006200078d60208362000826565b91506200079a82620009a4565b602082019050919050565b60006020820190508181036000830152620007c0816200077e565b9050919050565b6000620007d3620007e6565b9050620007e18282620008eb565b919050565b6000604051905090565b600067ffffffffffffffff8211156200080e576200080d62000950565b5b620008198262000993565b9050602081019050919050565b600082825260208201905092915050565b600062000844826200085f565b9050919050565b6000620008588262000837565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200089f57808201518184015260208101905062000882565b83811115620008af576000848401525b50505050565b60006002820490506001821680620008ce57607f821691505b60208210811415620008e557620008e462000921565b5b50919050565b620008f68262000993565b810181811067ffffffffffffffff8211171562000918576200091762000950565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620009d8816200084b565b8114620009e457600080fd5b50565b60805160601c60a051615dc762000a2c600039600081816117af01528181611c4d01528181611ce401526129cb01526000818161116c0152611f020152615dc76000f3fe6080604052600436106102cd5760003560e01c806370a0823111610175578063b70d677d116100dc578063cb4ed17611610095578063e985e9c51161006f578063e985e9c514610b56578063eb9372fa14610b93578063ed3d161d14610baa578063f2fde38b14610bd5576102d4565b8063cb4ed17614610ab1578063d5abeb0114610aee578063e2982c2114610b19576102d4565b8063b70d677d14610968578063b88d4fde14610993578063c2ba4744146109bc578063c683630d146109f9578063c87b56dd14610a36578063c9eb466214610a73576102d4565b80639b19251a1161012e5780639b19251a146108675780639eb209dd146108a4578063a0712d68146108cd578063a22cb465146108e9578063a945bf8014610912578063ab5e246f1461093d576102d4565b806370a0823114610755578063715018a61461079257806374278a71146107a9578063801d8c9a146107e65780638da5cb5b1461081157806395d89b411461083c576102d4565b806331b3eb94116102345780634672d7bf116101ed5780635a9b0b89116101c75780635a9b0b891461069757806362a5af3b146106c25780636352211e146106ed5780636c0360eb1461072a576102d4565b80634672d7bf146105f15780634f6ccce71461063157806355f804b31461066e576102d4565b806331b3eb941461051d57806339ee0661146105465780633d4437821461056f5780633e38fe801461058657806340f9bbe2146105b157806342842e0e146105c8576102d4565b806318160ddd1161028657806318160ddd146103fb57806322f4596f1461042657806323b872dd146104515780632acc659e1461047a5780632f745c59146104b75780632fbba115146104f4576102d4565b806301ffc9a7146102d957806305fefda71461031657806306fdde031461033f578063081812fc1461036a578063095ea7b3146103a75780630c872f0b146103d0576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb91906141af565b610bfe565b60405161030d9190614b3b565b60405180910390f35b34801561032257600080fd5b5061033d600480360381019061033891906142d9565b610c78565b005b34801561034b57600080fd5b50610354610d06565b6040516103619190614b56565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c919061427f565b610d98565b60405161039e9190614a60565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c991906140cc565b610e1d565b005b3480156103dc57600080fd5b506103e5610f35565b6040516103f29190614fb8565b60405180910390f35b34801561040757600080fd5b50610410610f3b565b60405161041d9190614fb8565b60405180910390f35b34801561043257600080fd5b5061043b610f48565b6040516104489190614fb8565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190613fb6565b610f4e565b005b34801561048657600080fd5b506104a1600480360381019061049c9190613f1c565b610fae565b6040516104ae9190614fb8565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d991906140cc565b610feb565b6040516104eb9190614fb8565b60405180910390f35b34801561050057600080fd5b5061051b6004803603810190610516919061427f565b611090565b005b34801561052957600080fd5b50610544600480360381019061053f9190613f49565b61116a565b005b34801561055257600080fd5b5061056d6004803603810190610568919061410c565b6111f8565b005b34801561057b57600080fd5b50610584611309565b005b34801561059257600080fd5b5061059b6113f2565b6040516105a89190614fb8565b60405180910390f35b3480156105bd57600080fd5b506105c66113f8565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190613fb6565b6115c9565b005b3480156105fd57600080fd5b5061061860048036038101906106139190614182565b6115e9565b6040516106289493929190614f73565b60405180910390f35b34801561063d57600080fd5b506106586004803603810190610653919061427f565b61165e565b6040516106659190614fb8565b60405180910390f35b34801561067a57600080fd5b5061069560048036038101906106909190614236565b6116cf565b005b3480156106a357600080fd5b506106ac611765565b6040516106b99190614f58565b60405180910390f35b3480156106ce57600080fd5b506106d76117d6565b6040516106e49190614b3b565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f919061427f565b6117e9565b6040516107219190614a60565b60405180910390f35b34801561073657600080fd5b5061073f61189b565b60405161074c9190614b56565b60405180910390f35b34801561076157600080fd5b5061077c60048036038101906107779190613f1c565b611929565b6040516107899190614fb8565b60405180910390f35b34801561079e57600080fd5b506107a76119e1565b005b3480156107b557600080fd5b506107d060048036038101906107cb9190613f1c565b611a69565b6040516107dd9190614fb8565b60405180910390f35b3480156107f257600080fd5b506107fb611a81565b6040516108089190614fb8565b60405180910390f35b34801561081d57600080fd5b50610826611a87565b6040516108339190614a60565b60405180910390f35b34801561084857600080fd5b50610851611ab1565b60405161085e9190614b56565b60405180910390f35b34801561087357600080fd5b5061088e60048036038101906108899190613f1c565b611b43565b60405161089b9190614b3b565b60405180910390f35b3480156108b057600080fd5b506108cb60048036038101906108c69190614209565b611b63565b005b6108e760048036038101906108e2919061427f565b611c23565b005b3480156108f557600080fd5b50610910600480360381019061090b919061408c565b611c2f565b005b34801561091e57600080fd5b50610927611c45565b6040516109349190614fb8565b60405180910390f35b34801561094957600080fd5b50610952611c4b565b60405161095f9190614fb8565b60405180910390f35b34801561097457600080fd5b5061097d611c6f565b60405161098a9190614fb8565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b59190614009565b611c75565b005b3480156109c857600080fd5b506109e360048036038101906109de9190613f1c565b611cd7565b6040516109f09190614fb8565b60405180910390f35b348015610a0557600080fd5b50610a206004803603810190610a1b9190613f1c565b611d14565b604051610a2d9190614b3b565b60405180910390f35b348015610a4257600080fd5b50610a5d6004803603810190610a58919061427f565b611d6a565b604051610a6a9190614b56565b60405180910390f35b348015610a7f57600080fd5b50610a9a6004803603810190610a95919061427f565b611dec565b604051610aa8929190614b12565b60405180910390f35b348015610abd57600080fd5b50610ad86004803603810190610ad39190613f1c565b611e40565b604051610ae59190614b3b565b60405180910390f35b348015610afa57600080fd5b50610b03611ef4565b604051610b109190614fb8565b60405180910390f35b348015610b2557600080fd5b50610b406004803603810190610b3b9190613f1c565b611efe565b604051610b4d9190614fb8565b60405180910390f35b348015610b6257600080fd5b50610b7d6004803603810190610b789190613f76565b611fb0565b604051610b8a9190614b3b565b60405180910390f35b348015610b9f57600080fd5b50610ba8612044565b005b348015610bb657600080fd5b50610bbf61212d565b604051610bcc9190614fb8565b60405180910390f35b348015610be157600080fd5b50610bfc6004803603810190610bf79190613f1c565b612133565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c715750610c708261222b565b5b9050919050565b610c8061230d565b73ffffffffffffffffffffffffffffffffffffffff16610c9e611a87565b73ffffffffffffffffffffffffffffffffffffffff1614610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90614d98565b60405180910390fd5b80600f81905550816010819055505050565b606060008054610d159061536e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d419061536e565b8015610d8e5780601f10610d6357610100808354040283529160200191610d8e565b820191906000526020600020905b815481529060010190602001808311610d7157829003601f168201915b5050505050905090565b6000610da382612315565b610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd990614d58565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e28826117e9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090614df8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eb861230d565b73ffffffffffffffffffffffffffffffffffffffff161480610ee75750610ee681610ee161230d565b611fb0565b5b610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90614c98565b60405180910390fd5b610f308383612381565b505050565b600e5481565b6000600880549050905090565b600d5481565b610f5f610f5961230d565b8261243a565b610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590614e98565b60405180910390fd5b610fa9838383612518565b505050565b6000610fb982611d14565b15610fc8576011549050610fe6565b610fd182611e40565b15610fe057600f549050610fe6565b60105490505b919050565b6000610ff683611929565b8210611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90614b78565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61109861230d565b73ffffffffffffffffffffffffffffffffffffffff166110b6611a87565b73ffffffffffffffffffffffffffffffffffffffff161461110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390614d98565b60405180910390fd5b60005b81811015611166576012600081548092919061112a90615344565b9190505550600e6000815480929190611142906153d1565b919050555061115333600e5461277f565b808061115e906153d1565b91505061110f565b5050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166351cff8d9826040518263ffffffff1660e01b81526004016111c39190614a7b565b600060405180830381600087803b1580156111dd57600080fd5b505af11580156111f1573d6000803e3d6000fd5b5050505050565b61120061230d565b73ffffffffffffffffffffffffffffffffffffffff1661121e611a87565b73ffffffffffffffffffffffffffffffffffffffff1614611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90614d98565b60405180910390fd5b60005b81518110156113055760016017600084848151811061129957611298615531565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806112fd906153d1565b915050611277565b5050565b61131161230d565b73ffffffffffffffffffffffffffffffffffffffff1661132f611a87565b73ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90614d98565b60405180910390fd5b601460009054906101000a900460ff16156113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90614e18565b60405180910390fd5b6001601460006101000a81548160ff021916908315150217905550565b60125481565b61140061230d565b73ffffffffffffffffffffffffffffffffffffffff1661141e611a87565b73ffffffffffffffffffffffffffffffffffffffff1614611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b90614d98565b60405180910390fd5b6000479050600081116114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390614ef8565b60405180910390fd5b60005b600c805490508160ff1610156115b4576000600c8260ff16815481106114e8576114e7615531565b5b90600052602060002090600202016001015411156115a1576115a0600c8260ff168154811061151a57611519615531565b5b906000526020600020906002020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661159b6103e861158d600c8660ff168154811061156c5761156b615531565b5b9060005260206000209060020201600101548761279d90919063ffffffff16565b6127b390919063ffffffff16565b6127c9565b5b80806115ac9061541a565b9150506114bf565b506115c66115c0611a87565b476127c9565b50565b6115e483838360405180602001604052806000815250611c75565b505050565b60186020528060005260406000206000915090508060000160009054906101000a90046fffffffffffffffffffffffffffffffff16908060000160109054906101000a90046fffffffffffffffffffffffffffffffff16908060010154908060020160009054906101000a900460ff16905084565b6000611668610f3b565b82106116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a090614ed8565b60405180910390fd5b600882815481106116bd576116bc615531565b5b90600052602060002001549050919050565b6116d761230d565b73ffffffffffffffffffffffffffffffffffffffff166116f5611a87565b73ffffffffffffffffffffffffffffffffffffffff161461174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290614d98565b60405180910390fd5b8060159080519060200190611761929190613bec565b5050565b61176d613c72565b6040518060e001604052806010548152602001600f5481526020016011548152602001600d5481526020016117a0610f3b565b8152602001600d5481526020017f0000000000000000000000000000000000000000000000000000000000000000815250905090565b601460009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188990614cd8565b60405180910390fd5b80915050919050565b601580546118a89061536e565b80601f01602080910402602001604051908101604052809291908181526020018280546118d49061536e565b80156119215780601f106118f657610100808354040283529160200191611921565b820191906000526020600020905b81548152906001019060200180831161190457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561199a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199190614cb8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119e961230d565b73ffffffffffffffffffffffffffffffffffffffff16611a07611a87565b73ffffffffffffffffffffffffffffffffffffffff1614611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490614d98565b60405180910390fd5b611a67600061287a565b565b60196020528060005260406000206000915090505481565b60115481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ac09061536e565b80601f0160208091040260200160405190810160405280929190818152602001828054611aec9061536e565b8015611b395780601f10611b0e57610100808354040283529160200191611b39565b820191906000526020600020905b815481529060010190602001808311611b1c57829003601f168201915b5050505050905090565b60176020528060005260406000206000915054906101000a900460ff1681565b611b6b61230d565b73ffffffffffffffffffffffffffffffffffffffff16611b89611a87565b73ffffffffffffffffffffffffffffffffffffffff1614611bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd690614d98565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611c2c81612940565b50565b611c41611c3a61230d565b8383612e84565b5050565b60105481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600f5481565b611c86611c8061230d565b8361243a565b611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc90614e98565b60405180910390fd5b611cd184848484612ff1565b50505050565b60006013544210611d0a577f00000000000000000000000000000000000000000000000000000000000000009050611d0f565b600090505b919050565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6060611d7582612315565b611db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dab90614dd8565b60405180910390fd5b60006015611dc18461304d565b604051602001611dd2929190614a1c565b604051602081830303815290604052905080915050919050565b600c8181548110611dfc57600080fd5b90600052602060002090600202016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a230c524836040518263ffffffff1660e01b8152600401611e9d9190614a60565b60206040518083038186803b158015611eb557600080fd5b505afa158015611ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eed9190614155565b9050919050565b6000600d54905090565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663e3a9db1a836040518263ffffffff1660e01b8152600401611f599190614a60565b60206040518083038186803b158015611f7157600080fd5b505afa158015611f85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa991906142ac565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61204c61230d565b73ffffffffffffffffffffffffffffffffffffffff1661206a611a87565b73ffffffffffffffffffffffffffffffffffffffff16146120c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b790614d98565b60405180910390fd5b601460009054906101000a900460ff1615612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790614db8565b60405180910390fd5b6000601460006101000a81548160ff021916908315150217905550565b60135481565b61213b61230d565b73ffffffffffffffffffffffffffffffffffffffff16612159611a87565b73ffffffffffffffffffffffffffffffffffffffff16146121af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a690614d98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561221f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221690614bb8565b60405180910390fd5b6122288161287a565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123065750612305826131ae565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123f4836117e9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061244582612315565b612484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247b90614c58565b60405180910390fd5b600061248f836117e9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124d157506124d08185611fb0565b5b8061250f57508373ffffffffffffffffffffffffffffffffffffffff166124f784610d98565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612538826117e9565b73ffffffffffffffffffffffffffffffffffffffff161461258e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258590614bd8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f590614c18565b60405180910390fd5b612609838383613218565b612614600082612381565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126649190615203565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126bb9190615122565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461277a83838361332c565b505050565b612799828260405180602001604052806000815250613331565b5050565b600081836127ab91906151a9565b905092915050565b600081836127c19190615178565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516127ef90614a4b565b60006040518083038185875af1925050503d806000811461282c576040519150601f19603f3d011682016040523d82523d6000602084013e612831565b606091505b5050905080612875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286c90614e78565b60405180910390fd5b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601354421015612986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297d90614d18565b60405180910390fd5b600081116129c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c090614e58565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000811115612a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2390614f38565b60405180910390fd5b600d5481612a38610f3b565b612a429190615122565b1115612a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7a90614cf8565b60405180910390fd5b601254811115612ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abf90614c78565b60405180910390fd5b600060125411612b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0490614e38565b60405180910390fd5b6000612b1833611e40565b8015612b2a5750612b2833611d14565b155b15612b3957600f549050612b58565b612b4233611d14565b15612b51576011549050612b57565b60105490505b5b8181612b6491906151a9565b341015612ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9d90614eb8565b60405180910390fd5b601460009054906101000a900460ff1615612bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bed90614e18565b60405180910390fd5b6002600b541415612c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3390614f18565b60405180910390fd5b6002600b8190555060008367ffffffffffffffff811115612c6057612c5f615560565b5b604051908082528060200260200182016040528015612c8e5781602001602082028036833780820191505090505b5090506000612c9c33611e40565b8015612cae5750612cac33611d14565b155b15612cc857600f5485612cc191906151a9565b9050612cfd565b612cd133611d14565b15612ceb5760115485612ce491906151a9565b9050612cfc565b60105485612cf991906151a9565b90505b5b6000612d3c6103e86fffffffffffffffffffffffffffffffff166127106fffffffffffffffffffffffffffffffff168461338c9092919063ffffffff16565b9050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634065da638273454cfaa623a629cc0b4017aeb85d54c42e91479d6040518363ffffffff1660e01b8152600401612dae9190614a60565b6000604051808303818588803b158015612dc757600080fd5b505af1158015612ddb573d6000803e3d6000fd5b505050505060005b86811015612e3a57600e6000815480929190612dfe906153d1565b919050555060126000815480929190612e1690615344565b9190505550612e2733600e5461277f565b8080612e32906153d1565b915050612de3565b507fba75b7e9e70801c41ae453c806a7238a9652406da292727efee460ce025c95df3384604051612e6c929190614ae2565b60405180910390a15050506001600b81905550505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eea90614c38565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fe49190614b3b565b60405180910390a3505050565b612ffc848484612518565b6130088484848461350b565b613047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303e90614b98565b60405180910390fd5b50505050565b60606000821415613095576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131a9565b600082905060005b600082146130c75780806130b0906153d1565b915050600a826130c09190615178565b915061309d565b60008167ffffffffffffffff8111156130e3576130e2615560565b5b6040519080825280601f01601f1916602001820160405280156131155781602001600182028036833780820191505090505b5090505b600085146131a25760018261312e9190615203565b9150600a8561313d9190615444565b60306131499190615122565b60f81b81838151811061315f5761315e615531565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561319b9190615178565b9450613119565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6132238383836136a2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561326657613261816136a7565b6132a5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132a4576132a383826136f0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132e8576132e38161385d565b613327565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461332657613325828261392e565b5b5b505050565b505050565b61333b83836139ad565b613348600084848461350b565b613387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337e90614b98565b60405180910390fd5b505050565b60008082116133d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c790614d78565b60405180910390fd5b60008414156133e25760009050613504565b600083856133f091906151a9565b90508385826133ff9190615178565b14156134195782816134119190615178565b915050613504565b600083866134279190615178565b9050600084876134379190615444565b9050600085876134479190615178565b9050600086886134579190615444565b90506134fc613481886134738487613b8790919063ffffffff16565b613b9d90919063ffffffff16565b6134ee6134978587613b8790919063ffffffff16565b6134e06134ad868a613b8790919063ffffffff16565b6134d28d6134c48a8d613b8790919063ffffffff16565b613b8790919063ffffffff16565b613bb390919063ffffffff16565b613bb390919063ffffffff16565b613bb390919063ffffffff16565b955050505050505b9392505050565b600061352c8473ffffffffffffffffffffffffffffffffffffffff16613bc9565b15613695578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261355561230d565b8786866040518563ffffffff1660e01b81526004016135779493929190614a96565b602060405180830381600087803b15801561359157600080fd5b505af19250505080156135c257506040513d601f19601f820116820180604052508101906135bf91906141dc565b60015b613645573d80600081146135f2576040519150601f19603f3d011682016040523d82523d6000602084013e6135f7565b606091505b5060008151141561363d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363490614b98565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061369a565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016136fd84611929565b6137079190615203565b90506000600760008481526020019081526020016000205490508181146137ec576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506138719190615203565b90506000600960008481526020019081526020016000205490506000600883815481106138a1576138a0615531565b5b9060005260206000200154905080600883815481106138c3576138c2615531565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061391257613911615502565b5b6001900381819060005260206000200160009055905550505050565b600061393983611929565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a1490614d38565b60405180910390fd5b613a2681612315565b15613a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5d90614bf8565b60405180910390fd5b613a7260008383613218565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ac29190615122565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b836000838361332c565b5050565b60008183613b9591906151a9565b905092915050565b60008183613bab9190615178565b905092915050565b60008183613bc19190615122565b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613bf89061536e565b90600052602060002090601f016020900481019282613c1a5760008555613c61565b82601f10613c3357805160ff1916838001178555613c61565b82800160010185558215613c61579182015b82811115613c60578251825591602001919060010190613c45565b5b509050613c6e9190613caf565b5090565b6040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b5b80821115613cc8576000816000905550600101613cb0565b5090565b6000613cdf613cda84614ff8565b614fd3565b90508083825260208201905082856020860282011115613d0257613d01615594565b5b60005b85811015613d325781613d188882613dc0565b845260208401935060208301925050600181019050613d05565b5050509392505050565b6000613d4f613d4a84615024565b614fd3565b905082815260208101848484011115613d6b57613d6a615599565b5b613d76848285615302565b509392505050565b6000613d91613d8c84615055565b614fd3565b905082815260208101848484011115613dad57613dac615599565b5b613db8848285615302565b509392505050565b600081359050613dcf81615cf0565b92915050565b600081359050613de481615d07565b92915050565b600082601f830112613dff57613dfe61558f565b5b8135613e0f848260208601613ccc565b91505092915050565b600081359050613e2781615d1e565b92915050565b600081519050613e3c81615d1e565b92915050565b600081359050613e5181615d35565b92915050565b600081359050613e6681615d4c565b92915050565b600081519050613e7b81615d4c565b92915050565b600082601f830112613e9657613e9561558f565b5b8135613ea6848260208601613d3c565b91505092915050565b600081359050613ebe81615d63565b92915050565b600082601f830112613ed957613ed861558f565b5b8135613ee9848260208601613d7e565b91505092915050565b600081359050613f0181615d7a565b92915050565b600081519050613f1681615d7a565b92915050565b600060208284031215613f3257613f316155a3565b5b6000613f4084828501613dc0565b91505092915050565b600060208284031215613f5f57613f5e6155a3565b5b6000613f6d84828501613dd5565b91505092915050565b60008060408385031215613f8d57613f8c6155a3565b5b6000613f9b85828601613dc0565b9250506020613fac85828601613dc0565b9150509250929050565b600080600060608486031215613fcf57613fce6155a3565b5b6000613fdd86828701613dc0565b9350506020613fee86828701613dc0565b9250506040613fff86828701613ef2565b9150509250925092565b60008060008060808587031215614023576140226155a3565b5b600061403187828801613dc0565b945050602061404287828801613dc0565b935050604061405387828801613ef2565b925050606085013567ffffffffffffffff8111156140745761407361559e565b5b61408087828801613e81565b91505092959194509250565b600080604083850312156140a3576140a26155a3565b5b60006140b185828601613dc0565b92505060206140c285828601613e18565b9150509250929050565b600080604083850312156140e3576140e26155a3565b5b60006140f185828601613dc0565b925050602061410285828601613ef2565b9150509250929050565b600060208284031215614122576141216155a3565b5b600082013567ffffffffffffffff8111156141405761413f61559e565b5b61414c84828501613dea565b91505092915050565b60006020828403121561416b5761416a6155a3565b5b600061417984828501613e2d565b91505092915050565b600060208284031215614198576141976155a3565b5b60006141a684828501613e42565b91505092915050565b6000602082840312156141c5576141c46155a3565b5b60006141d384828501613e57565b91505092915050565b6000602082840312156141f2576141f16155a3565b5b600061420084828501613e6c565b91505092915050565b60006020828403121561421f5761421e6155a3565b5b600061422d84828501613eaf565b91505092915050565b60006020828403121561424c5761424b6155a3565b5b600082013567ffffffffffffffff81111561426a5761426961559e565b5b61427684828501613ec4565b91505092915050565b600060208284031215614295576142946155a3565b5b60006142a384828501613ef2565b91505092915050565b6000602082840312156142c2576142c16155a3565b5b60006142d084828501613f07565b91505092915050565b600080604083850312156142f0576142ef6155a3565b5b60006142fe85828601613ef2565b925050602061430f85828601613ef2565b9150509250929050565b600061432583836149fe565b60208301905092915050565b61433a81615249565b82525050565b61434981615237565b82525050565b600061435a826150ab565b61436481856150d9565b935061436f83615086565b8060005b838110156143a05781516143878882614319565b9750614392836150cc565b925050600181019050614373565b5085935050505092915050565b6143b68161525b565b82525050565b60006143c7826150b6565b6143d181856150ea565b93506143e1818560208601615311565b6143ea816155a8565b840191505092915050565b6000614400826150c1565b61440a8185615106565b935061441a818560208601615311565b614423816155a8565b840191505092915050565b6000614439826150c1565b6144438185615117565b9350614453818560208601615311565b80840191505092915050565b6000815461446c8161536e565b6144768186615117565b9450600182166000811461449157600181146144a2576144d5565b60ff198316865281860193506144d5565b6144ab85615096565b60005b838110156144cd578154818901526001820191506020810190506144ae565b838801955050505b50505092915050565b60006144eb602b83615106565b91506144f6826155b9565b604082019050919050565b600061450e603283615106565b915061451982615608565b604082019050919050565b6000614531602683615106565b915061453c82615657565b604082019050919050565b6000614554602583615106565b915061455f826156a6565b604082019050919050565b6000614577601c83615106565b9150614582826156f5565b602082019050919050565b600061459a602483615106565b91506145a58261571e565b604082019050919050565b60006145bd601983615106565b91506145c88261576d565b602082019050919050565b60006145e0602c83615106565b91506145eb82615796565b604082019050919050565b6000614603600783615106565b915061460e826157e5565b602082019050919050565b6000614626603883615106565b91506146318261580e565b604082019050919050565b6000614649602a83615106565b91506146548261585d565b604082019050919050565b600061466c602983615106565b9150614677826158ac565b604082019050919050565b600061468f601a83615106565b915061469a826158fb565b602082019050919050565b60006146b2601083615106565b91506146bd82615924565b602082019050919050565b60006146d5602083615106565b91506146e08261594d565b602082019050919050565b60006146f8602c83615106565b915061470382615976565b604082019050919050565b600061471b600583615117565b9150614726826159c5565b600582019050919050565b600061473e601083615106565b9150614749826159ee565b602082019050919050565b6000614761602083615106565b915061476c82615a17565b602082019050919050565b6000614784601983615106565b915061478f82615a40565b602082019050919050565b60006147a7602f83615106565b91506147b282615a69565b604082019050919050565b60006147ca602183615106565b91506147d582615ab8565b604082019050919050565b60006147ed601583615106565b91506147f882615b07565b602082019050919050565b6000614810601a83615106565b915061481b82615b30565b602082019050919050565b6000614833600f83615106565b915061483e82615b59565b602082019050919050565b60006148566000836150fb565b915061486182615b82565b600082019050919050565b6000614879601083615106565b915061488482615b85565b602082019050919050565b600061489c603183615106565b91506148a782615bae565b604082019050919050565b60006148bf601283615106565b91506148ca82615bfd565b602082019050919050565b60006148e2602c83615106565b91506148ed82615c26565b604082019050919050565b6000614905601183615106565b915061491082615c75565b602082019050919050565b6000614928601f83615106565b915061493382615c9e565b602082019050919050565b600061494b601083615106565b915061495682615cc7565b602082019050919050565b60e08201600082015161497760008501826149fe565b50602082015161498a60208501826149fe565b50604082015161499d60408501826149fe565b5060608201516149b060608501826149fe565b5060808201516149c360808501826149fe565b5060a08201516149d660a08501826149fe565b5060c08201516149e960c08501826149fe565b50505050565b6149f8816152af565b82525050565b614a07816152eb565b82525050565b614a16816152eb565b82525050565b6000614a28828561445f565b9150614a34828461442e565b9150614a3f8261470e565b91508190509392505050565b6000614a5682614849565b9150819050919050565b6000602082019050614a756000830184614340565b92915050565b6000602082019050614a906000830184614331565b92915050565b6000608082019050614aab6000830187614340565b614ab86020830186614340565b614ac56040830185614a0d565b8181036060830152614ad781846143bc565b905095945050505050565b6000604082019050614af76000830185614340565b8181036020830152614b09818461434f565b90509392505050565b6000604082019050614b276000830185614340565b614b346020830184614a0d565b9392505050565b6000602082019050614b5060008301846143ad565b92915050565b60006020820190508181036000830152614b7081846143f5565b905092915050565b60006020820190508181036000830152614b91816144de565b9050919050565b60006020820190508181036000830152614bb181614501565b9050919050565b60006020820190508181036000830152614bd181614524565b9050919050565b60006020820190508181036000830152614bf181614547565b9050919050565b60006020820190508181036000830152614c118161456a565b9050919050565b60006020820190508181036000830152614c318161458d565b9050919050565b60006020820190508181036000830152614c51816145b0565b9050919050565b60006020820190508181036000830152614c71816145d3565b9050919050565b60006020820190508181036000830152614c91816145f6565b9050919050565b60006020820190508181036000830152614cb181614619565b9050919050565b60006020820190508181036000830152614cd18161463c565b9050919050565b60006020820190508181036000830152614cf18161465f565b9050919050565b60006020820190508181036000830152614d1181614682565b9050919050565b60006020820190508181036000830152614d31816146a5565b9050919050565b60006020820190508181036000830152614d51816146c8565b9050919050565b60006020820190508181036000830152614d71816146eb565b9050919050565b60006020820190508181036000830152614d9181614731565b9050919050565b60006020820190508181036000830152614db181614754565b9050919050565b60006020820190508181036000830152614dd181614777565b9050919050565b60006020820190508181036000830152614df18161479a565b9050919050565b60006020820190508181036000830152614e11816147bd565b9050919050565b60006020820190508181036000830152614e31816147e0565b9050919050565b60006020820190508181036000830152614e5181614803565b9050919050565b60006020820190508181036000830152614e7181614826565b9050919050565b60006020820190508181036000830152614e918161486c565b9050919050565b60006020820190508181036000830152614eb18161488f565b9050919050565b60006020820190508181036000830152614ed1816148b2565b9050919050565b60006020820190508181036000830152614ef1816148d5565b9050919050565b60006020820190508181036000830152614f11816148f8565b9050919050565b60006020820190508181036000830152614f318161491b565b9050919050565b60006020820190508181036000830152614f518161493e565b9050919050565b600060e082019050614f6d6000830184614961565b92915050565b6000608082019050614f8860008301876149ef565b614f9560208301866149ef565b614fa26040830185614a0d565b614faf60608301846143ad565b95945050505050565b6000602082019050614fcd6000830184614a0d565b92915050565b6000614fdd614fee565b9050614fe982826153a0565b919050565b6000604051905090565b600067ffffffffffffffff82111561501357615012615560565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561503f5761503e615560565b5b615048826155a8565b9050602081019050919050565b600067ffffffffffffffff8211156150705761506f615560565b5b615079826155a8565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061512d826152eb565b9150615138836152eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561516d5761516c615475565b5b828201905092915050565b6000615183826152eb565b915061518e836152eb565b92508261519e5761519d6154a4565b5b828204905092915050565b60006151b4826152eb565b91506151bf836152eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151f8576151f7615475565b5b828202905092915050565b600061520e826152eb565b9150615219836152eb565b92508282101561522c5761522b615475565b5b828203905092915050565b6000615242826152cb565b9050919050565b6000615254826152cb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006152a882615237565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561532f578082015181840152602081019050615314565b8381111561533e576000848401525b50505050565b600061534f826152eb565b9150600082141561536357615362615475565b5b600182039050919050565b6000600282049050600182168061538657607f821691505b6020821081141561539a576153996154d3565b5b50919050565b6153a9826155a8565b810181811067ffffffffffffffff821117156153c8576153c7615560565b5b80604052505050565b60006153dc826152eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561540f5761540e615475565b5b600182019050919050565b6000615425826152f5565b915060ff82141561543957615438615475565b5b600182019050919050565b600061544f826152eb565b915061545a836152eb565b92508261546a576154696154a4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f534f4c444f555400000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f534f4c44204f55542c2054525920544f204d494e54204c455353000000000000600082015250565b7f53414c45204953204e4f54204f50454e00000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4469766973696f6e206279207a65726f00000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552524f523a204d494e54204953204e4f542046524f5a454e00000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552524f523a204d494e542049532046524f5a454e0000000000000000000000600082015250565b7f434f4c4c454354494f4e20414c524541445920534f4c444f5554000000000000600082015250565b7f43414e54204d494e542030204e46540000000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f494e53554646494349454e542046554e44530000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c65732042616c616e6365203d2030000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4d41582050455220545820495320313500000000000000000000000000000000600082015250565b615cf981615237565b8114615d0457600080fd5b50565b615d1081615249565b8114615d1b57600080fd5b50565b615d278161525b565b8114615d3257600080fd5b50565b615d3e81615267565b8114615d4957600080fd5b50565b615d5581615271565b8114615d6057600080fd5b50565b615d6c8161529d565b8114615d7757600080fd5b50565b615d83816152eb565b8114615d8e57600080fd5b5056fea2646970667358221220e9790f94b60a062dd3b4fae092ec7dce07d6029f78fc8a6db176f39b89f15b2264736f6c63430008070033608060405234801561001057600080fd5b5061002d61002261003260201b60201c565b61003a60201b60201c565b6100fe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610c098061010d6000396000f3fe6080604052600436106100555760003560e01c806351cff8d91461005a578063715018a6146100835780638da5cb5b1461009a578063e3a9db1a146100c5578063f2fde38b14610102578063f340fa011461012b575b600080fd5b34801561006657600080fd5b50610081600480360381019061007c91906107f9565b610147565b005b34801561008f57600080fd5b506100986102c7565b005b3480156100a657600080fd5b506100af61034f565b6040516100bc9190610908565b60405180910390f35b3480156100d157600080fd5b506100ec60048036038101906100e791906107cc565b610378565b6040516100f991906109a3565b60405180910390f35b34801561010e57600080fd5b50610129600480360381019061012491906107cc565b6103c1565b005b610145600480360381019061014091906107cc565b6104b9565b005b61014f6105e2565b73ffffffffffffffffffffffffffffffffffffffff1661016d61034f565b73ffffffffffffffffffffffffffffffffffffffff16146101c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101ba90610983565b60405180910390fd5b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610275818373ffffffffffffffffffffffffffffffffffffffff166105ea90919063ffffffff16565b8173ffffffffffffffffffffffffffffffffffffffff167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5826040516102bb91906109a3565b60405180910390a25050565b6102cf6105e2565b73ffffffffffffffffffffffffffffffffffffffff166102ed61034f565b73ffffffffffffffffffffffffffffffffffffffff1614610343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161033a90610983565b60405180910390fd5b61034d60006106de565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6103c96105e2565b73ffffffffffffffffffffffffffffffffffffffff166103e761034f565b73ffffffffffffffffffffffffffffffffffffffff161461043d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043490610983565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156104ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a490610923565b60405180910390fd5b6104b6816106de565b50565b6104c16105e2565b73ffffffffffffffffffffffffffffffffffffffff166104df61034f565b73ffffffffffffffffffffffffffffffffffffffff1614610535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052c90610983565b60405180910390fd5b600034905080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461058991906109da565b925050819055508173ffffffffffffffffffffffffffffffffffffffff167f2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c4826040516105d691906109a3565b60405180910390a25050565b600033905090565b8047101561062d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062490610963565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610653906108f3565b60006040518083038185875af1925050503d8060008114610690576040519150601f19603f3d011682016040523d82523d6000602084013e610695565b606091505b50509050806106d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d090610943565b60405180910390fd5b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000813590506107b181610ba5565b92915050565b6000813590506107c681610bbc565b92915050565b6000602082840312156107e2576107e1610aad565b5b60006107f0848285016107a2565b91505092915050565b60006020828403121561080f5761080e610aad565b5b600061081d848285016107b7565b91505092915050565b61082f81610a30565b82525050565b60006108426026836109c9565b915061084d82610ab2565b604082019050919050565b6000610865603a836109c9565b915061087082610b01565b604082019050919050565b6000610888601d836109c9565b915061089382610b50565b602082019050919050565b60006108ab6020836109c9565b91506108b682610b79565b602082019050919050565b60006108ce6000836109be565b91506108d982610ba2565b600082019050919050565b6108ed81610a74565b82525050565b60006108fe826108c1565b9150819050919050565b600060208201905061091d6000830184610826565b92915050565b6000602082019050818103600083015261093c81610835565b9050919050565b6000602082019050818103600083015261095c81610858565b9050919050565b6000602082019050818103600083015261097c8161087b565b9050919050565b6000602082019050818103600083015261099c8161089e565b9050919050565b60006020820190506109b860008301846108e4565b92915050565b600081905092915050565b600082825260208201905092915050565b60006109e582610a74565b91506109f083610a74565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610a2557610a24610a7e565b5b828201905092915050565b6000610a3b82610a54565b9050919050565b6000610a4d82610a54565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600080fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b610bae81610a30565b8114610bb957600080fd5b50565b610bc581610a42565b8114610bd057600080fd5b5056fea26469706673582212202787a17fe3673dcb249757788355e8bfc34b6094111ac5b1701ca1b1e019818f64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000007a3cdb2364f92369a602cae81167d0679087e6a30000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d55616f574e4c464c4747457a537446775737624c593756476553653966707777527978755571776d6a6951352f00000000000000000000
Deployed Bytecode
0x6080604052600436106102cd5760003560e01c806370a0823111610175578063b70d677d116100dc578063cb4ed17611610095578063e985e9c51161006f578063e985e9c514610b56578063eb9372fa14610b93578063ed3d161d14610baa578063f2fde38b14610bd5576102d4565b8063cb4ed17614610ab1578063d5abeb0114610aee578063e2982c2114610b19576102d4565b8063b70d677d14610968578063b88d4fde14610993578063c2ba4744146109bc578063c683630d146109f9578063c87b56dd14610a36578063c9eb466214610a73576102d4565b80639b19251a1161012e5780639b19251a146108675780639eb209dd146108a4578063a0712d68146108cd578063a22cb465146108e9578063a945bf8014610912578063ab5e246f1461093d576102d4565b806370a0823114610755578063715018a61461079257806374278a71146107a9578063801d8c9a146107e65780638da5cb5b1461081157806395d89b411461083c576102d4565b806331b3eb94116102345780634672d7bf116101ed5780635a9b0b89116101c75780635a9b0b891461069757806362a5af3b146106c25780636352211e146106ed5780636c0360eb1461072a576102d4565b80634672d7bf146105f15780634f6ccce71461063157806355f804b31461066e576102d4565b806331b3eb941461051d57806339ee0661146105465780633d4437821461056f5780633e38fe801461058657806340f9bbe2146105b157806342842e0e146105c8576102d4565b806318160ddd1161028657806318160ddd146103fb57806322f4596f1461042657806323b872dd146104515780632acc659e1461047a5780632f745c59146104b75780632fbba115146104f4576102d4565b806301ffc9a7146102d957806305fefda71461031657806306fdde031461033f578063081812fc1461036a578063095ea7b3146103a75780630c872f0b146103d0576102d4565b366102d457005b600080fd5b3480156102e557600080fd5b5061030060048036038101906102fb91906141af565b610bfe565b60405161030d9190614b3b565b60405180910390f35b34801561032257600080fd5b5061033d600480360381019061033891906142d9565b610c78565b005b34801561034b57600080fd5b50610354610d06565b6040516103619190614b56565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c919061427f565b610d98565b60405161039e9190614a60565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c991906140cc565b610e1d565b005b3480156103dc57600080fd5b506103e5610f35565b6040516103f29190614fb8565b60405180910390f35b34801561040757600080fd5b50610410610f3b565b60405161041d9190614fb8565b60405180910390f35b34801561043257600080fd5b5061043b610f48565b6040516104489190614fb8565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190613fb6565b610f4e565b005b34801561048657600080fd5b506104a1600480360381019061049c9190613f1c565b610fae565b6040516104ae9190614fb8565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d991906140cc565b610feb565b6040516104eb9190614fb8565b60405180910390f35b34801561050057600080fd5b5061051b6004803603810190610516919061427f565b611090565b005b34801561052957600080fd5b50610544600480360381019061053f9190613f49565b61116a565b005b34801561055257600080fd5b5061056d6004803603810190610568919061410c565b6111f8565b005b34801561057b57600080fd5b50610584611309565b005b34801561059257600080fd5b5061059b6113f2565b6040516105a89190614fb8565b60405180910390f35b3480156105bd57600080fd5b506105c66113f8565b005b3480156105d457600080fd5b506105ef60048036038101906105ea9190613fb6565b6115c9565b005b3480156105fd57600080fd5b5061061860048036038101906106139190614182565b6115e9565b6040516106289493929190614f73565b60405180910390f35b34801561063d57600080fd5b506106586004803603810190610653919061427f565b61165e565b6040516106659190614fb8565b60405180910390f35b34801561067a57600080fd5b5061069560048036038101906106909190614236565b6116cf565b005b3480156106a357600080fd5b506106ac611765565b6040516106b99190614f58565b60405180910390f35b3480156106ce57600080fd5b506106d76117d6565b6040516106e49190614b3b565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f919061427f565b6117e9565b6040516107219190614a60565b60405180910390f35b34801561073657600080fd5b5061073f61189b565b60405161074c9190614b56565b60405180910390f35b34801561076157600080fd5b5061077c60048036038101906107779190613f1c565b611929565b6040516107899190614fb8565b60405180910390f35b34801561079e57600080fd5b506107a76119e1565b005b3480156107b557600080fd5b506107d060048036038101906107cb9190613f1c565b611a69565b6040516107dd9190614fb8565b60405180910390f35b3480156107f257600080fd5b506107fb611a81565b6040516108089190614fb8565b60405180910390f35b34801561081d57600080fd5b50610826611a87565b6040516108339190614a60565b60405180910390f35b34801561084857600080fd5b50610851611ab1565b60405161085e9190614b56565b60405180910390f35b34801561087357600080fd5b5061088e60048036038101906108899190613f1c565b611b43565b60405161089b9190614b3b565b60405180910390f35b3480156108b057600080fd5b506108cb60048036038101906108c69190614209565b611b63565b005b6108e760048036038101906108e2919061427f565b611c23565b005b3480156108f557600080fd5b50610910600480360381019061090b919061408c565b611c2f565b005b34801561091e57600080fd5b50610927611c45565b6040516109349190614fb8565b60405180910390f35b34801561094957600080fd5b50610952611c4b565b60405161095f9190614fb8565b60405180910390f35b34801561097457600080fd5b5061097d611c6f565b60405161098a9190614fb8565b60405180910390f35b34801561099f57600080fd5b506109ba60048036038101906109b59190614009565b611c75565b005b3480156109c857600080fd5b506109e360048036038101906109de9190613f1c565b611cd7565b6040516109f09190614fb8565b60405180910390f35b348015610a0557600080fd5b50610a206004803603810190610a1b9190613f1c565b611d14565b604051610a2d9190614b3b565b60405180910390f35b348015610a4257600080fd5b50610a5d6004803603810190610a58919061427f565b611d6a565b604051610a6a9190614b56565b60405180910390f35b348015610a7f57600080fd5b50610a9a6004803603810190610a95919061427f565b611dec565b604051610aa8929190614b12565b60405180910390f35b348015610abd57600080fd5b50610ad86004803603810190610ad39190613f1c565b611e40565b604051610ae59190614b3b565b60405180910390f35b348015610afa57600080fd5b50610b03611ef4565b604051610b109190614fb8565b60405180910390f35b348015610b2557600080fd5b50610b406004803603810190610b3b9190613f1c565b611efe565b604051610b4d9190614fb8565b60405180910390f35b348015610b6257600080fd5b50610b7d6004803603810190610b789190613f76565b611fb0565b604051610b8a9190614b3b565b60405180910390f35b348015610b9f57600080fd5b50610ba8612044565b005b348015610bb657600080fd5b50610bbf61212d565b604051610bcc9190614fb8565b60405180910390f35b348015610be157600080fd5b50610bfc6004803603810190610bf79190613f1c565b612133565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c715750610c708261222b565b5b9050919050565b610c8061230d565b73ffffffffffffffffffffffffffffffffffffffff16610c9e611a87565b73ffffffffffffffffffffffffffffffffffffffff1614610cf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ceb90614d98565b60405180910390fd5b80600f81905550816010819055505050565b606060008054610d159061536e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d419061536e565b8015610d8e5780601f10610d6357610100808354040283529160200191610d8e565b820191906000526020600020905b815481529060010190602001808311610d7157829003601f168201915b5050505050905090565b6000610da382612315565b610de2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd990614d58565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e28826117e9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9090614df8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610eb861230d565b73ffffffffffffffffffffffffffffffffffffffff161480610ee75750610ee681610ee161230d565b611fb0565b5b610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90614c98565b60405180910390fd5b610f308383612381565b505050565b600e5481565b6000600880549050905090565b600d5481565b610f5f610f5961230d565b8261243a565b610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590614e98565b60405180910390fd5b610fa9838383612518565b505050565b6000610fb982611d14565b15610fc8576011549050610fe6565b610fd182611e40565b15610fe057600f549050610fe6565b60105490505b919050565b6000610ff683611929565b8210611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90614b78565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61109861230d565b73ffffffffffffffffffffffffffffffffffffffff166110b6611a87565b73ffffffffffffffffffffffffffffffffffffffff161461110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390614d98565b60405180910390fd5b60005b81811015611166576012600081548092919061112a90615344565b9190505550600e6000815480929190611142906153d1565b919050555061115333600e5461277f565b808061115e906153d1565b91505061110f565b5050565b7f000000000000000000000000ea196ae489d0187eca294b1e7516352c80770a4573ffffffffffffffffffffffffffffffffffffffff166351cff8d9826040518263ffffffff1660e01b81526004016111c39190614a7b565b600060405180830381600087803b1580156111dd57600080fd5b505af11580156111f1573d6000803e3d6000fd5b5050505050565b61120061230d565b73ffffffffffffffffffffffffffffffffffffffff1661121e611a87565b73ffffffffffffffffffffffffffffffffffffffff1614611274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126b90614d98565b60405180910390fd5b60005b81518110156113055760016017600084848151811061129957611298615531565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806112fd906153d1565b915050611277565b5050565b61131161230d565b73ffffffffffffffffffffffffffffffffffffffff1661132f611a87565b73ffffffffffffffffffffffffffffffffffffffff1614611385576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137c90614d98565b60405180910390fd5b601460009054906101000a900460ff16156113d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cc90614e18565b60405180910390fd5b6001601460006101000a81548160ff021916908315150217905550565b60125481565b61140061230d565b73ffffffffffffffffffffffffffffffffffffffff1661141e611a87565b73ffffffffffffffffffffffffffffffffffffffff1614611474576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146b90614d98565b60405180910390fd5b6000479050600081116114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390614ef8565b60405180910390fd5b60005b600c805490508160ff1610156115b4576000600c8260ff16815481106114e8576114e7615531565b5b90600052602060002090600202016001015411156115a1576115a0600c8260ff168154811061151a57611519615531565b5b906000526020600020906002020160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661159b6103e861158d600c8660ff168154811061156c5761156b615531565b5b9060005260206000209060020201600101548761279d90919063ffffffff16565b6127b390919063ffffffff16565b6127c9565b5b80806115ac9061541a565b9150506114bf565b506115c66115c0611a87565b476127c9565b50565b6115e483838360405180602001604052806000815250611c75565b505050565b60186020528060005260406000206000915090508060000160009054906101000a90046fffffffffffffffffffffffffffffffff16908060000160109054906101000a90046fffffffffffffffffffffffffffffffff16908060010154908060020160009054906101000a900460ff16905084565b6000611668610f3b565b82106116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a090614ed8565b60405180910390fd5b600882815481106116bd576116bc615531565b5b90600052602060002001549050919050565b6116d761230d565b73ffffffffffffffffffffffffffffffffffffffff166116f5611a87565b73ffffffffffffffffffffffffffffffffffffffff161461174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290614d98565b60405180910390fd5b8060159080519060200190611761929190613bec565b5050565b61176d613c72565b6040518060e001604052806010548152602001600f5481526020016011548152602001600d5481526020016117a0610f3b565b8152602001600d5481526020017f000000000000000000000000000000000000000000000000000000000000000f815250905090565b601460009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188990614cd8565b60405180910390fd5b80915050919050565b601580546118a89061536e565b80601f01602080910402602001604051908101604052809291908181526020018280546118d49061536e565b80156119215780601f106118f657610100808354040283529160200191611921565b820191906000526020600020905b81548152906001019060200180831161190457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561199a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199190614cb8565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119e961230d565b73ffffffffffffffffffffffffffffffffffffffff16611a07611a87565b73ffffffffffffffffffffffffffffffffffffffff1614611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490614d98565b60405180910390fd5b611a67600061287a565b565b60196020528060005260406000206000915090505481565b60115481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611ac09061536e565b80601f0160208091040260200160405190810160405280929190818152602001828054611aec9061536e565b8015611b395780601f10611b0e57610100808354040283529160200191611b39565b820191906000526020600020905b815481529060010190602001808311611b1c57829003601f168201915b5050505050905090565b60176020528060005260406000206000915054906101000a900460ff1681565b611b6b61230d565b73ffffffffffffffffffffffffffffffffffffffff16611b89611a87565b73ffffffffffffffffffffffffffffffffffffffff1614611bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd690614d98565b60405180910390fd5b80601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611c2c81612940565b50565b611c41611c3a61230d565b8383612e84565b5050565b60105481565b7f000000000000000000000000000000000000000000000000000000000000000f81565b600f5481565b611c86611c8061230d565b8361243a565b611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc90614e98565b60405180910390fd5b611cd184848484612ff1565b50505050565b60006013544210611d0a577f000000000000000000000000000000000000000000000000000000000000000f9050611d0f565b600090505b919050565b6000601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6060611d7582612315565b611db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dab90614dd8565b60405180910390fd5b60006015611dc18461304d565b604051602001611dd2929190614a1c565b604051602081830303815290604052905080915050919050565b600c8181548110611dfc57600080fd5b90600052602060002090600202016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154905082565b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a230c524836040518263ffffffff1660e01b8152600401611e9d9190614a60565b60206040518083038186803b158015611eb557600080fd5b505afa158015611ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eed9190614155565b9050919050565b6000600d54905090565b60007f000000000000000000000000ea196ae489d0187eca294b1e7516352c80770a4573ffffffffffffffffffffffffffffffffffffffff1663e3a9db1a836040518263ffffffff1660e01b8152600401611f599190614a60565b60206040518083038186803b158015611f7157600080fd5b505afa158015611f85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa991906142ac565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61204c61230d565b73ffffffffffffffffffffffffffffffffffffffff1661206a611a87565b73ffffffffffffffffffffffffffffffffffffffff16146120c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b790614d98565b60405180910390fd5b601460009054906101000a900460ff1615612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790614db8565b60405180910390fd5b6000601460006101000a81548160ff021916908315150217905550565b60135481565b61213b61230d565b73ffffffffffffffffffffffffffffffffffffffff16612159611a87565b73ffffffffffffffffffffffffffffffffffffffff16146121af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a690614d98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561221f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221690614bb8565b60405180910390fd5b6122288161287a565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806122f657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806123065750612305826131ae565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123f4836117e9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061244582612315565b612484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247b90614c58565b60405180910390fd5b600061248f836117e9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124d157506124d08185611fb0565b5b8061250f57508373ffffffffffffffffffffffffffffffffffffffff166124f784610d98565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612538826117e9565b73ffffffffffffffffffffffffffffffffffffffff161461258e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258590614bd8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f590614c18565b60405180910390fd5b612609838383613218565b612614600082612381565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126649190615203565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126bb9190615122565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461277a83838361332c565b505050565b612799828260405180602001604052806000815250613331565b5050565b600081836127ab91906151a9565b905092915050565b600081836127c19190615178565b905092915050565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516127ef90614a4b565b60006040518083038185875af1925050503d806000811461282c576040519150601f19603f3d011682016040523d82523d6000602084013e612831565b606091505b5050905080612875576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286c90614e78565b60405180910390fd5b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601354421015612986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297d90614d18565b60405180910390fd5b600081116129c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c090614e58565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000f811115612a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2390614f38565b60405180910390fd5b600d5481612a38610f3b565b612a429190615122565b1115612a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7a90614cf8565b60405180910390fd5b601254811115612ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612abf90614c78565b60405180910390fd5b600060125411612b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0490614e38565b60405180910390fd5b6000612b1833611e40565b8015612b2a5750612b2833611d14565b155b15612b3957600f549050612b58565b612b4233611d14565b15612b51576011549050612b57565b60105490505b5b8181612b6491906151a9565b341015612ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9d90614eb8565b60405180910390fd5b601460009054906101000a900460ff1615612bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bed90614e18565b60405180910390fd5b6002600b541415612c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3390614f18565b60405180910390fd5b6002600b8190555060008367ffffffffffffffff811115612c6057612c5f615560565b5b604051908082528060200260200182016040528015612c8e5781602001602082028036833780820191505090505b5090506000612c9c33611e40565b8015612cae5750612cac33611d14565b155b15612cc857600f5485612cc191906151a9565b9050612cfd565b612cd133611d14565b15612ceb5760115485612ce491906151a9565b9050612cfc565b60105485612cf991906151a9565b90505b5b6000612d3c6103e86fffffffffffffffffffffffffffffffff166127106fffffffffffffffffffffffffffffffff168461338c9092919063ffffffff16565b9050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634065da638273454cfaa623a629cc0b4017aeb85d54c42e91479d6040518363ffffffff1660e01b8152600401612dae9190614a60565b6000604051808303818588803b158015612dc757600080fd5b505af1158015612ddb573d6000803e3d6000fd5b505050505060005b86811015612e3a57600e6000815480929190612dfe906153d1565b919050555060126000815480929190612e1690615344565b9190505550612e2733600e5461277f565b8080612e32906153d1565b915050612de3565b507fba75b7e9e70801c41ae453c806a7238a9652406da292727efee460ce025c95df3384604051612e6c929190614ae2565b60405180910390a15050506001600b81905550505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eea90614c38565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612fe49190614b3b565b60405180910390a3505050565b612ffc848484612518565b6130088484848461350b565b613047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303e90614b98565b60405180910390fd5b50505050565b60606000821415613095576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131a9565b600082905060005b600082146130c75780806130b0906153d1565b915050600a826130c09190615178565b915061309d565b60008167ffffffffffffffff8111156130e3576130e2615560565b5b6040519080825280601f01601f1916602001820160405280156131155781602001600182028036833780820191505090505b5090505b600085146131a25760018261312e9190615203565b9150600a8561313d9190615444565b60306131499190615122565b60f81b81838151811061315f5761315e615531565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561319b9190615178565b9450613119565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6132238383836136a2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561326657613261816136a7565b6132a5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146132a4576132a383826136f0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132e8576132e38161385d565b613327565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461332657613325828261392e565b5b5b505050565b505050565b61333b83836139ad565b613348600084848461350b565b613387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161337e90614b98565b60405180910390fd5b505050565b60008082116133d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133c790614d78565b60405180910390fd5b60008414156133e25760009050613504565b600083856133f091906151a9565b90508385826133ff9190615178565b14156134195782816134119190615178565b915050613504565b600083866134279190615178565b9050600084876134379190615444565b9050600085876134479190615178565b9050600086886134579190615444565b90506134fc613481886134738487613b8790919063ffffffff16565b613b9d90919063ffffffff16565b6134ee6134978587613b8790919063ffffffff16565b6134e06134ad868a613b8790919063ffffffff16565b6134d28d6134c48a8d613b8790919063ffffffff16565b613b8790919063ffffffff16565b613bb390919063ffffffff16565b613bb390919063ffffffff16565b613bb390919063ffffffff16565b955050505050505b9392505050565b600061352c8473ffffffffffffffffffffffffffffffffffffffff16613bc9565b15613695578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261355561230d565b8786866040518563ffffffff1660e01b81526004016135779493929190614a96565b602060405180830381600087803b15801561359157600080fd5b505af19250505080156135c257506040513d601f19601f820116820180604052508101906135bf91906141dc565b60015b613645573d80600081146135f2576040519150601f19603f3d011682016040523d82523d6000602084013e6135f7565b606091505b5060008151141561363d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363490614b98565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061369a565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016136fd84611929565b6137079190615203565b90506000600760008481526020019081526020016000205490508181146137ec576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506138719190615203565b90506000600960008481526020019081526020016000205490506000600883815481106138a1576138a0615531565b5b9060005260206000200154905080600883815481106138c3576138c2615531565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061391257613911615502565b5b6001900381819060005260206000200160009055905550505050565b600061393983611929565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a1490614d38565b60405180910390fd5b613a2681612315565b15613a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5d90614bf8565b60405180910390fd5b613a7260008383613218565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ac29190615122565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b836000838361332c565b5050565b60008183613b9591906151a9565b905092915050565b60008183613bab9190615178565b905092915050565b60008183613bc19190615122565b905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054613bf89061536e565b90600052602060002090601f016020900481019282613c1a5760008555613c61565b82601f10613c3357805160ff1916838001178555613c61565b82800160010185558215613c61579182015b82811115613c60578251825591602001919060010190613c45565b5b509050613c6e9190613caf565b5090565b6040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b5b80821115613cc8576000816000905550600101613cb0565b5090565b6000613cdf613cda84614ff8565b614fd3565b90508083825260208201905082856020860282011115613d0257613d01615594565b5b60005b85811015613d325781613d188882613dc0565b845260208401935060208301925050600181019050613d05565b5050509392505050565b6000613d4f613d4a84615024565b614fd3565b905082815260208101848484011115613d6b57613d6a615599565b5b613d76848285615302565b509392505050565b6000613d91613d8c84615055565b614fd3565b905082815260208101848484011115613dad57613dac615599565b5b613db8848285615302565b509392505050565b600081359050613dcf81615cf0565b92915050565b600081359050613de481615d07565b92915050565b600082601f830112613dff57613dfe61558f565b5b8135613e0f848260208601613ccc565b91505092915050565b600081359050613e2781615d1e565b92915050565b600081519050613e3c81615d1e565b92915050565b600081359050613e5181615d35565b92915050565b600081359050613e6681615d4c565b92915050565b600081519050613e7b81615d4c565b92915050565b600082601f830112613e9657613e9561558f565b5b8135613ea6848260208601613d3c565b91505092915050565b600081359050613ebe81615d63565b92915050565b600082601f830112613ed957613ed861558f565b5b8135613ee9848260208601613d7e565b91505092915050565b600081359050613f0181615d7a565b92915050565b600081519050613f1681615d7a565b92915050565b600060208284031215613f3257613f316155a3565b5b6000613f4084828501613dc0565b91505092915050565b600060208284031215613f5f57613f5e6155a3565b5b6000613f6d84828501613dd5565b91505092915050565b60008060408385031215613f8d57613f8c6155a3565b5b6000613f9b85828601613dc0565b9250506020613fac85828601613dc0565b9150509250929050565b600080600060608486031215613fcf57613fce6155a3565b5b6000613fdd86828701613dc0565b9350506020613fee86828701613dc0565b9250506040613fff86828701613ef2565b9150509250925092565b60008060008060808587031215614023576140226155a3565b5b600061403187828801613dc0565b945050602061404287828801613dc0565b935050604061405387828801613ef2565b925050606085013567ffffffffffffffff8111156140745761407361559e565b5b61408087828801613e81565b91505092959194509250565b600080604083850312156140a3576140a26155a3565b5b60006140b185828601613dc0565b92505060206140c285828601613e18565b9150509250929050565b600080604083850312156140e3576140e26155a3565b5b60006140f185828601613dc0565b925050602061410285828601613ef2565b9150509250929050565b600060208284031215614122576141216155a3565b5b600082013567ffffffffffffffff8111156141405761413f61559e565b5b61414c84828501613dea565b91505092915050565b60006020828403121561416b5761416a6155a3565b5b600061417984828501613e2d565b91505092915050565b600060208284031215614198576141976155a3565b5b60006141a684828501613e42565b91505092915050565b6000602082840312156141c5576141c46155a3565b5b60006141d384828501613e57565b91505092915050565b6000602082840312156141f2576141f16155a3565b5b600061420084828501613e6c565b91505092915050565b60006020828403121561421f5761421e6155a3565b5b600061422d84828501613eaf565b91505092915050565b60006020828403121561424c5761424b6155a3565b5b600082013567ffffffffffffffff81111561426a5761426961559e565b5b61427684828501613ec4565b91505092915050565b600060208284031215614295576142946155a3565b5b60006142a384828501613ef2565b91505092915050565b6000602082840312156142c2576142c16155a3565b5b60006142d084828501613f07565b91505092915050565b600080604083850312156142f0576142ef6155a3565b5b60006142fe85828601613ef2565b925050602061430f85828601613ef2565b9150509250929050565b600061432583836149fe565b60208301905092915050565b61433a81615249565b82525050565b61434981615237565b82525050565b600061435a826150ab565b61436481856150d9565b935061436f83615086565b8060005b838110156143a05781516143878882614319565b9750614392836150cc565b925050600181019050614373565b5085935050505092915050565b6143b68161525b565b82525050565b60006143c7826150b6565b6143d181856150ea565b93506143e1818560208601615311565b6143ea816155a8565b840191505092915050565b6000614400826150c1565b61440a8185615106565b935061441a818560208601615311565b614423816155a8565b840191505092915050565b6000614439826150c1565b6144438185615117565b9350614453818560208601615311565b80840191505092915050565b6000815461446c8161536e565b6144768186615117565b9450600182166000811461449157600181146144a2576144d5565b60ff198316865281860193506144d5565b6144ab85615096565b60005b838110156144cd578154818901526001820191506020810190506144ae565b838801955050505b50505092915050565b60006144eb602b83615106565b91506144f6826155b9565b604082019050919050565b600061450e603283615106565b915061451982615608565b604082019050919050565b6000614531602683615106565b915061453c82615657565b604082019050919050565b6000614554602583615106565b915061455f826156a6565b604082019050919050565b6000614577601c83615106565b9150614582826156f5565b602082019050919050565b600061459a602483615106565b91506145a58261571e565b604082019050919050565b60006145bd601983615106565b91506145c88261576d565b602082019050919050565b60006145e0602c83615106565b91506145eb82615796565b604082019050919050565b6000614603600783615106565b915061460e826157e5565b602082019050919050565b6000614626603883615106565b91506146318261580e565b604082019050919050565b6000614649602a83615106565b91506146548261585d565b604082019050919050565b600061466c602983615106565b9150614677826158ac565b604082019050919050565b600061468f601a83615106565b915061469a826158fb565b602082019050919050565b60006146b2601083615106565b91506146bd82615924565b602082019050919050565b60006146d5602083615106565b91506146e08261594d565b602082019050919050565b60006146f8602c83615106565b915061470382615976565b604082019050919050565b600061471b600583615117565b9150614726826159c5565b600582019050919050565b600061473e601083615106565b9150614749826159ee565b602082019050919050565b6000614761602083615106565b915061476c82615a17565b602082019050919050565b6000614784601983615106565b915061478f82615a40565b602082019050919050565b60006147a7602f83615106565b91506147b282615a69565b604082019050919050565b60006147ca602183615106565b91506147d582615ab8565b604082019050919050565b60006147ed601583615106565b91506147f882615b07565b602082019050919050565b6000614810601a83615106565b915061481b82615b30565b602082019050919050565b6000614833600f83615106565b915061483e82615b59565b602082019050919050565b60006148566000836150fb565b915061486182615b82565b600082019050919050565b6000614879601083615106565b915061488482615b85565b602082019050919050565b600061489c603183615106565b91506148a782615bae565b604082019050919050565b60006148bf601283615106565b91506148ca82615bfd565b602082019050919050565b60006148e2602c83615106565b91506148ed82615c26565b604082019050919050565b6000614905601183615106565b915061491082615c75565b602082019050919050565b6000614928601f83615106565b915061493382615c9e565b602082019050919050565b600061494b601083615106565b915061495682615cc7565b602082019050919050565b60e08201600082015161497760008501826149fe565b50602082015161498a60208501826149fe565b50604082015161499d60408501826149fe565b5060608201516149b060608501826149fe565b5060808201516149c360808501826149fe565b5060a08201516149d660a08501826149fe565b5060c08201516149e960c08501826149fe565b50505050565b6149f8816152af565b82525050565b614a07816152eb565b82525050565b614a16816152eb565b82525050565b6000614a28828561445f565b9150614a34828461442e565b9150614a3f8261470e565b91508190509392505050565b6000614a5682614849565b9150819050919050565b6000602082019050614a756000830184614340565b92915050565b6000602082019050614a906000830184614331565b92915050565b6000608082019050614aab6000830187614340565b614ab86020830186614340565b614ac56040830185614a0d565b8181036060830152614ad781846143bc565b905095945050505050565b6000604082019050614af76000830185614340565b8181036020830152614b09818461434f565b90509392505050565b6000604082019050614b276000830185614340565b614b346020830184614a0d565b9392505050565b6000602082019050614b5060008301846143ad565b92915050565b60006020820190508181036000830152614b7081846143f5565b905092915050565b60006020820190508181036000830152614b91816144de565b9050919050565b60006020820190508181036000830152614bb181614501565b9050919050565b60006020820190508181036000830152614bd181614524565b9050919050565b60006020820190508181036000830152614bf181614547565b9050919050565b60006020820190508181036000830152614c118161456a565b9050919050565b60006020820190508181036000830152614c318161458d565b9050919050565b60006020820190508181036000830152614c51816145b0565b9050919050565b60006020820190508181036000830152614c71816145d3565b9050919050565b60006020820190508181036000830152614c91816145f6565b9050919050565b60006020820190508181036000830152614cb181614619565b9050919050565b60006020820190508181036000830152614cd18161463c565b9050919050565b60006020820190508181036000830152614cf18161465f565b9050919050565b60006020820190508181036000830152614d1181614682565b9050919050565b60006020820190508181036000830152614d31816146a5565b9050919050565b60006020820190508181036000830152614d51816146c8565b9050919050565b60006020820190508181036000830152614d71816146eb565b9050919050565b60006020820190508181036000830152614d9181614731565b9050919050565b60006020820190508181036000830152614db181614754565b9050919050565b60006020820190508181036000830152614dd181614777565b9050919050565b60006020820190508181036000830152614df18161479a565b9050919050565b60006020820190508181036000830152614e11816147bd565b9050919050565b60006020820190508181036000830152614e31816147e0565b9050919050565b60006020820190508181036000830152614e5181614803565b9050919050565b60006020820190508181036000830152614e7181614826565b9050919050565b60006020820190508181036000830152614e918161486c565b9050919050565b60006020820190508181036000830152614eb18161488f565b9050919050565b60006020820190508181036000830152614ed1816148b2565b9050919050565b60006020820190508181036000830152614ef1816148d5565b9050919050565b60006020820190508181036000830152614f11816148f8565b9050919050565b60006020820190508181036000830152614f318161491b565b9050919050565b60006020820190508181036000830152614f518161493e565b9050919050565b600060e082019050614f6d6000830184614961565b92915050565b6000608082019050614f8860008301876149ef565b614f9560208301866149ef565b614fa26040830185614a0d565b614faf60608301846143ad565b95945050505050565b6000602082019050614fcd6000830184614a0d565b92915050565b6000614fdd614fee565b9050614fe982826153a0565b919050565b6000604051905090565b600067ffffffffffffffff82111561501357615012615560565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561503f5761503e615560565b5b615048826155a8565b9050602081019050919050565b600067ffffffffffffffff8211156150705761506f615560565b5b615079826155a8565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061512d826152eb565b9150615138836152eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561516d5761516c615475565b5b828201905092915050565b6000615183826152eb565b915061518e836152eb565b92508261519e5761519d6154a4565b5b828204905092915050565b60006151b4826152eb565b91506151bf836152eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151f8576151f7615475565b5b828202905092915050565b600061520e826152eb565b9150615219836152eb565b92508282101561522c5761522b615475565b5b828203905092915050565b6000615242826152cb565b9050919050565b6000615254826152cb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006152a882615237565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561532f578082015181840152602081019050615314565b8381111561533e576000848401525b50505050565b600061534f826152eb565b9150600082141561536357615362615475565b5b600182039050919050565b6000600282049050600182168061538657607f821691505b6020821081141561539a576153996154d3565b5b50919050565b6153a9826155a8565b810181811067ffffffffffffffff821117156153c8576153c7615560565b5b80604052505050565b60006153dc826152eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561540f5761540e615475565b5b600182019050919050565b6000615425826152f5565b915060ff82141561543957615438615475565b5b600182019050919050565b600061544f826152eb565b915061545a836152eb565b92508261546a576154696154a4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f534f4c444f555400000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f534f4c44204f55542c2054525920544f204d494e54204c455353000000000000600082015250565b7f53414c45204953204e4f54204f50454e00000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4469766973696f6e206279207a65726f00000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552524f523a204d494e54204953204e4f542046524f5a454e00000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552524f523a204d494e542049532046524f5a454e0000000000000000000000600082015250565b7f434f4c4c454354494f4e20414c524541445920534f4c444f5554000000000000600082015250565b7f43414e54204d494e542030204e46540000000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f494e53554646494349454e542046554e44530000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c65732042616c616e6365203d2030000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4d41582050455220545820495320313500000000000000000000000000000000600082015250565b615cf981615237565b8114615d0457600080fd5b50565b615d1081615249565b8114615d1b57600080fd5b50565b615d278161525b565b8114615d3257600080fd5b50565b615d3e81615267565b8114615d4957600080fd5b50565b615d5581615271565b8114615d6057600080fd5b50565b615d6c8161529d565b8114615d7757600080fd5b50565b615d83816152eb565b8114615d8e57600080fd5b5056fea2646970667358221220e9790f94b60a062dd3b4fae092ec7dce07d6029f78fc8a6db176f39b89f15b2264736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000007a3cdb2364f92369a602cae81167d0679087e6a30000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d55616f574e4c464c4747457a537446775737624c593756476553653966707777527978755571776d6a6951352f00000000000000000000
-----Decoded View---------------
Arg [0] : _baseURI (string): ipfs://QmUaoWNLFLGGEzStFwW7bLY7VGeSe9fpwwRyxuUqwmjiQ5/
Arg [1] : _marketAddress (address): 0x7a3CdB2364f92369a602CAE81167d0679087e6a3
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000007a3cdb2364f92369a602cae81167d0679087e6a3
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d55616f574e4c464c4747457a537446775737624c593756
Arg [4] : 476553653966707777527978755571776d6a6951352f00000000000000000000
Deployed Bytecode Sourcemap
64795:6280:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58263:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67817:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45082:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46642:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46165:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65048:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58903:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64963:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47392:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70206:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58571:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68493:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32116:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67601:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68108:84;;;;;;;;;;;;;:::i;:::-;;65212:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18859:410;;;;;;;;;;;;;:::i;:::-;;47802:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65527:36;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;59093:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69992:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70891:181;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65301:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44776:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65419:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44506:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17624:103;;;;;;;;;;;;;:::i;:::-;;65570:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65166:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16973:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45251:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65479:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67989:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70793:90;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46935:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65121:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65002:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65080:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48058:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70586:199;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66357:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69676:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18650:19;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;66231:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70480:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32346:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47161:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68200:168;;;;;;;;;;;;;:::i;:::-;;65249:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17882:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58263:224;58365:4;58404:35;58389:50;;;:11;:50;;;;:90;;;;58443:36;58467:11;58443:23;:36::i;:::-;58389:90;58382:97;;58263:224;;;:::o;67817:164::-;17204:12;:10;:12::i;:::-;17193:23;;:7;:5;:7::i;:::-;:23;;;17185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67922:11:::1;67912:7;:21;;;;67958:15;67944:11;:29;;;;67817:164:::0;;:::o;45082:100::-;45136:13;45169:5;45162:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45082:100;:::o;46642:221::-;46718:7;46746:16;46754:7;46746;:16::i;:::-;46738:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;46831:15;:24;46847:7;46831:24;;;;;;;;;;;;;;;;;;;;;46824:31;;46642:221;;;:::o;46165:411::-;46246:13;46262:23;46277:7;46262:14;:23::i;:::-;46246:39;;46310:5;46304:11;;:2;:11;;;;46296:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;46404:5;46388:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;46413:37;46430:5;46437:12;:10;:12::i;:::-;46413:16;:37::i;:::-;46388:62;46366:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;46547:21;46556:2;46560:7;46547:8;:21::i;:::-;46235:341;46165:411;;:::o;65048:25::-;;;;:::o;58903:113::-;58964:7;58991:10;:17;;;;58984:24;;58903:113;:::o;64963:32::-;;;;:::o;47392:339::-;47587:41;47606:12;:10;:12::i;:::-;47620:7;47587:18;:41::i;:::-;47579:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;47695:28;47705:4;47711:2;47715:7;47695:9;:28::i;:::-;47392:339;;;:::o;70206:266::-;70273:7;70297:20;70309:7;70297:11;:20::i;:::-;70293:143;;;70341:12;;70334:19;;;;70293:143;70375:19;70386:7;70375:10;:19::i;:::-;70371:65;;;70417:7;;70410:14;;;;70371:65;70453:11;;70446:18;;70206:266;;;;:::o;58571:256::-;58668:7;58704:23;58721:5;58704:16;:23::i;:::-;58696:5;:31;58688:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;58793:12;:19;58806:5;58793:19;;;;;;;;;;;;;;;:26;58813:5;58793:26;;;;;;;;;;;;58786:33;;58571:256;;;;:::o;68493:221::-;17204:12;:10;:12::i;:::-;17193:23;;:7;:5;:7::i;:::-;:23;;;17185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68559:6:::1;68555:152;68575:7;68571:1;:11;68555:152;;;68603:15;;:17;;;;;;;;;:::i;:::-;;;;;;68635:10;;:12;;;;;;;;;:::i;:::-;;;;;;68662:33;68672:10;68684;;68662:9;:33::i;:::-;68584:3;;;;;:::i;:::-;;;;68555:152;;;;68493:221:::0;:::o;32116:106::-;32191:7;:16;;;32208:5;32191:23;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32116:106;:::o;67601:208::-;17204:12;:10;:12::i;:::-;17193:23;;:7;:5;:7::i;:::-;:23;;;17185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67692:9:::1;67688:114;67711:14;:21;67707:1;:25;67688:114;;;67786:4;67755:9;:28;67765:14;67780:1;67765:17;;;;;;;;:::i;:::-;;;;;;;;67755:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;67734:3;;;;;:::i;:::-;;;;67688:114;;;;67601:208:::0;:::o;68108:84::-;17204:12;:10;:12::i;:::-;17193:23;;:7;:5;:7::i;:::-;:23;;;17185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67413:6:::1;;;;;;;;;;;67412:7;67390:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;68180:4:::2;68171:6;;:13;;;;;;;;;;;;;;;;;;68108:84::o:0;65212:30::-;;;;:::o;18859:410::-;17204:12;:10;:12::i;:::-;17193:23;;:7;:5;:7::i;:::-;:23;;;17185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18913:15:::1;18931:21;18913:39;;18981:1;18971:7;:11;18963:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;19021:7;19017:193;19038:5;:12;;;;19034:1;:16;;;19017:193;;;19094:1;19074:5;19080:1;19074:8;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:17;;;:21;19071:128;;;19115:68;19125:5;19131:1;19125:8;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:15;;;;;;;;;;;;19142:40;19177:4;19142:30;19154:5;19160:1;19154:8;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:17;;;19142:7;:11;;:30;;;;:::i;:::-;:34;;:40;;;;:::i;:::-;19115:9;:68::i;:::-;19071:128;19052:3;;;;;:::i;:::-;;;;19017:193;;;;19220:41;19230:7;:5;:7::i;:::-;19239:21;19220:9;:41::i;:::-;18902:367;18859:410::o:0;47802:185::-;47940:39;47957:4;47963:2;47967:7;47940:39;;;;;;;;;;;;:16;:39::i;:::-;47802:185;;;:::o;65527:36::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59093:233::-;59168:7;59204:30;:28;:30::i;:::-;59196:5;:38;59188:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;59301:10;59312:5;59301:17;;;;;;;;:::i;:::-;;;;;;;;;;59294:24;;59093:233;;;:::o;69992:104::-;17204:12;:10;:12::i;:::-;17193:23;;:7;:5;:7::i;:::-;:23;;;17185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70077:11:::1;70067:7;:21;;;;;;;;;;;;:::i;:::-;;69992:104:::0;:::o;70891:181::-;70942:11;;:::i;:::-;70973:90;;;;;;;;70978:11;;70973:90;;;;70991:7;;70973:90;;;;71000:12;;70973:90;;;;71014:10;;70973:90;;;;71026:13;:11;:13::i;:::-;70973:90;;;;71041:10;;70973:90;;;;71053:9;70973:90;;;70965:99;;70891:181;:::o;65301:18::-;;;;;;;;;;;;;:::o;44776:239::-;44848:7;44868:13;44884:7;:16;44892:7;44884:16;;;;;;;;;;;;;;;;;;;;;44868:32;;44936:1;44919:19;;:5;:19;;;;44911:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45002:5;44995:12;;;44776:239;;;:::o;65419:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44506:208::-;44578:7;44623:1;44606:19;;:5;:19;;;;44598:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;44690:9;:16;44700:5;44690:16;;;;;;;;;;;;;;;;44683:23;;44506:208;;;:::o;17624:103::-;17204:12;:10;:12::i;:::-;17193:23;;:7;:5;:7::i;:::-;:23;;;17185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17689:30:::1;17716:1;17689:18;:30::i;:::-;17624:103::o:0;65570:46::-;;;;;;;;;;;;;;;;;:::o;65166:39::-;;;;:::o;16973:87::-;17019:7;17046:6;;;;;;;;;;;17039:13;;16973:87;:::o;45251:104::-;45307:13;45340:7;45333:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45251:104;:::o;65479:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;67989:111::-;17204:12;:10;:12::i;:::-;17193:23;;:7;:5;:7::i;:::-;:23;;;17185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68078:14:::1;68061;;:31;;;;;;;;;;;;;;;;;;67989:111:::0;:::o;70793:90::-;70861:14;70867:7;70861:5;:14::i;:::-;70793:90;:::o;46935:155::-;47030:52;47049:12;:10;:12::i;:::-;47063:8;47073;47030:18;:52::i;:::-;46935:155;;:::o;65121:38::-;;;;:::o;65002:39::-;;;:::o;65080:34::-;;;;:::o;48058:328::-;48233:41;48252:12;:10;:12::i;:::-;48266:7;48233:18;:41::i;:::-;48225:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;48339:39;48353:4;48359:2;48363:7;48372:5;48339:13;:39::i;:::-;48058:328;;;;:::o;70586:199::-;70652:7;70694:18;;70675:15;:37;70672:87;;70737:9;70729:18;;;;70672:87;70776:1;70769:8;;70586:199;;;;:::o;66357:105::-;66414:4;66438:9;:16;66448:5;66438:16;;;;;;;;;;;;;;;;;;;;;;;;;66431:23;;66357:105;;;:::o;69676:308::-;69747:13;69779:17;69787:8;69779:7;:17::i;:::-;69771:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;69856:23;69906:7;69915:26;69932:8;69915:16;:26::i;:::-;69889:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69856:95;;69967:9;69960:16;;;69676:308;;;:::o;18650:19::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66231:118::-;66287:4;66311:14;;;;;;;;;;;:23;;;66335:5;66311:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;66304:37;;66231:118;;;:::o;70480:98::-;70533:7;70560:10;;70553:17;;70480:98;:::o;32346:112::-;32399:7;32426;:18;;;32445:4;32426:24;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32419:31;;32346:112;;;:::o;47161:164::-;47258:4;47282:18;:25;47301:5;47282:25;;;;;;;;;;;;;;;:35;47308:8;47282:35;;;;;;;;;;;;;;;;;;;;;;;;;47275:42;;47161:164;;;;:::o;68200:168::-;17204:12;:10;:12::i;:::-;17193:23;;:7;:5;:7::i;:::-;:23;;;17185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68276:6:::1;;;;;;;;;;;68275:7;68253:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;68355:5;68346:6;;:14;;;;;;;;;;;;;;;;;;68200:168::o:0;65249:43::-;;;;:::o;17882:201::-;17204:12;:10;:12::i;:::-;17193:23;;:7;:5;:7::i;:::-;:23;;;17185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17991:1:::1;17971:22;;:8;:22;;;;17963:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18047:28;18066:8;18047:18;:28::i;:::-;17882:201:::0;:::o;44137:305::-;44239:4;44291:25;44276:40;;;:11;:40;;;;:105;;;;44348:33;44333:48;;;:11;:48;;;;44276:105;:158;;;;44398:36;44422:11;44398:23;:36::i;:::-;44276:158;44256:178;;44137:305;;;:::o;15697:98::-;15750:7;15777:10;15770:17;;15697:98;:::o;49896:127::-;49961:4;50013:1;49985:30;;:7;:16;49993:7;49985:16;;;;;;;;;;;;;;;;;;;;;:30;;;;49978:37;;49896:127;;;:::o;54042:174::-;54144:2;54117:15;:24;54133:7;54117:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;54200:7;54196:2;54162:46;;54171:23;54186:7;54171:14;:23::i;:::-;54162:46;;;;;;;;;;;;54042:174;;:::o;50190:348::-;50283:4;50308:16;50316:7;50308;:16::i;:::-;50300:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;50384:13;50400:23;50415:7;50400:14;:23::i;:::-;50384:39;;50453:5;50442:16;;:7;:16;;;:52;;;;50462:32;50479:5;50486:7;50462:16;:32::i;:::-;50442:52;:87;;;;50522:7;50498:31;;:20;50510:7;50498:11;:20::i;:::-;:31;;;50442:87;50434:96;;;50190:348;;;;:::o;53299:625::-;53458:4;53431:31;;:23;53446:7;53431:14;:23::i;:::-;:31;;;53423:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;53537:1;53523:16;;:2;:16;;;;53515:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;53593:39;53614:4;53620:2;53624:7;53593:20;:39::i;:::-;53697:29;53714:1;53718:7;53697:8;:29::i;:::-;53758:1;53739:9;:15;53749:4;53739:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;53787:1;53770:9;:13;53780:2;53770:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;53818:2;53799:7;:16;53807:7;53799:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;53857:7;53853:2;53838:27;;53847:4;53838:27;;;;;;;;;;;;53878:38;53898:4;53904:2;53908:7;53878:19;:38::i;:::-;53299:625;;;:::o;50880:110::-;50956:26;50966:2;50970:7;50956:26;;;;;;;;;;;;:9;:26::i;:::-;50880:110;;:::o;3614:98::-;3672:7;3703:1;3699;:5;;;;:::i;:::-;3692:12;;3614:98;;;;:::o;4013:::-;4071:7;4102:1;4098;:5;;;;:::i;:::-;4091:12;;4013:98;;;;:::o;19277:180::-;19351:12;19369:8;:13;;19390:7;19369:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19350:52;;;19421:7;19413:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;19339:118;19277:180;;:::o;18243:191::-;18317:16;18336:6;;;;;;;;;;;18317:25;;18362:8;18353:6;;:17;;;;;;;;;;;;;;;;;;18417:8;18386:40;;18407:8;18386:40;;;;;;;;;;;;18306:128;18243:191;:::o;68722:834::-;68767:7;66642:18;;66623:15;:37;;66615:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;66709:1;66700:6;:10;66692:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;66759:9;66749:6;:19;;66741:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;66834:10;;66824:6;66808:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;66800:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;66904:15;;66894:6;:25;;66886:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;66968:1;66950:15;;:19;66942:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;67011:10;67035:22;67046:10;67035;:22::i;:::-;:50;;;;;67062:23;67074:10;67062:11;:23::i;:::-;67061:24;67035:50;67032:230;;;67110:7;;67102:15;;67032:230;;;67139:23;67151:10;67139:11;:23::i;:::-;67135:127;;;67186:12;;67178:20;;67135:127;;;67239:11;;67231:19;;67135:127;67032:230;67301:6;67293:5;:14;;;;:::i;:::-;67280:9;:27;;67272:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;67413:6:::1;;;;;;;;;;;67412:7;67390:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;11947:1:::2;12545:7;;:19;;12537:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;11947:1;12678:7;:18;;;;68812:28:::3;68854:7;68843:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68812:50;;68873:14;68901:22;68912:10;68901;:22::i;:::-;:50;;;;;68928:23;68940:10;68928:11;:23::i;:::-;68927:24;68901:50;68898:273;;;68990:7;;68980;:17;;;;:::i;:::-;68968:29;;68898:273;;;69019:23;69031:10;69019:11;:23::i;:::-;69015:156;;;69081:12;;69071:7;:22;;;;:::i;:::-;69059:34;;69015:156;;;69148:11;;69138:7;:21;;;;:::i;:::-;69126:33;;69015:156;68898:273;69181:12;69196:28;65406:4;69196:28;;65362:5;69196:28;;:9;:16;;:28;;;;;:::i;:::-;69181:43;;69235:14;;;;;;;;;;;:26;;;69269:7;69278:42;69235:86;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;69346:6;69342:152;69362:7;69358:1;:11;69342:152;;;69390:10;;:12;;;;;;;;;:::i;:::-;;;;;;69417:15;;:17;;;;;;;;;:::i;:::-;;;;;;69449:33;69459:10;69471;;69449:9;:33::i;:::-;69371:3;;;;;:::i;:::-;;;;69342:152;;;;69511:37;69521:10;69533:14;69511:37;;;;;;;:::i;:::-;;;;;;;;68801:755;;;11903:1:::2;12857:7;:22;;;;66604:746:::0;68722:834;;:::o;54358:315::-;54513:8;54504:17;;:5;:17;;;;54496:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;54600:8;54562:18;:25;54581:5;54562:25;;;;;;;;;;;;;;;:35;54588:8;54562:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;54646:8;54624:41;;54639:5;54624:41;;;54656:8;54624:41;;;;;;:::i;:::-;;;;;;;;54358:315;;;:::o;49268:::-;49425:28;49435:4;49441:2;49445:7;49425:9;:28::i;:::-;49472:48;49495:4;49501:2;49505:7;49514:5;49472:22;:48::i;:::-;49464:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;49268:315;;;;:::o;13259:723::-;13315:13;13545:1;13536:5;:10;13532:53;;;13563:10;;;;;;;;;;;;;;;;;;;;;13532:53;13595:12;13610:5;13595:20;;13626:14;13651:78;13666:1;13658:4;:9;13651:78;;13684:8;;;;;:::i;:::-;;;;13715:2;13707:10;;;;;:::i;:::-;;;13651:78;;;13739:19;13771:6;13761:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13739:39;;13789:154;13805:1;13796:5;:10;13789:154;;13833:1;13823:11;;;;;:::i;:::-;;;13900:2;13892:5;:10;;;;:::i;:::-;13879:2;:24;;;;:::i;:::-;13866:39;;13849:6;13856;13849:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;13929:2;13920:11;;;;;:::i;:::-;;;13789:154;;;13967:6;13953:21;;;;;13259:723;;;;:::o;35796:157::-;35881:4;35920:25;35905:40;;;:11;:40;;;;35898:47;;35796:157;;;:::o;59939:589::-;60083:45;60110:4;60116:2;60120:7;60083:26;:45::i;:::-;60161:1;60145:18;;:4;:18;;;60141:187;;;60180:40;60212:7;60180:31;:40::i;:::-;60141:187;;;60250:2;60242:10;;:4;:10;;;60238:90;;60269:47;60302:4;60308:7;60269:32;:47::i;:::-;60238:90;60141:187;60356:1;60342:16;;:2;:16;;;60338:183;;;60375:45;60412:7;60375:36;:45::i;:::-;60338:183;;;60448:4;60442:10;;:2;:10;;;60438:83;;60469:40;60497:2;60501:7;60469:27;:40::i;:::-;60438:83;60338:183;59939:589;;;:::o;57120:125::-;;;;:::o;51217:321::-;51347:18;51353:2;51357:7;51347:5;:18::i;:::-;51398:54;51429:1;51433:2;51437:7;51446:5;51398:22;:54::i;:::-;51376:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;51217:321;;;:::o;8824:669::-;8896:7;8928:1;8924;:5;8916:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;8972:1;8967;:6;8963:20;;;8982:1;8975:8;;;;8963:20;8994:10;9011:1;9007;:5;;;;:::i;:::-;8994:18;;9037:1;9032;9027:2;:6;;;;:::i;:::-;:11;9023:107;;;9117:1;9112:2;:6;;;;:::i;:::-;9105:13;;;;;9023:107;9202:9;9218:1;9214;:5;;;;:::i;:::-;9202:17;;9230:9;9246:1;9242;:5;;;;:::i;:::-;9230:17;;9337:9;9353:1;9349;:5;;;;:::i;:::-;9337:17;;9365:9;9381:1;9377;:5;;;;:::i;:::-;9365:17;;9419:66;9469:15;9482:1;9469:8;9475:1;9469;:5;;:8;;;;:::i;:::-;:12;;:15;;;;:::i;:::-;9419:45;9455:8;9461:1;9455;:5;;:8;;;;:::i;:::-;9419:31;9441:8;9447:1;9441;:5;;:8;;;;:::i;:::-;9420:15;9433:1;9420:8;9426:1;9420;:5;;:8;;;;:::i;:::-;:12;;:15;;;;:::i;:::-;9419:21;;:31;;;;:::i;:::-;:35;;:45;;;;:::i;:::-;:49;;:66;;;;:::i;:::-;9412:73;;;;;;;8824:669;;;;;;:::o;55238:799::-;55393:4;55414:15;:2;:13;;;:15::i;:::-;55410:620;;;55466:2;55450:36;;;55487:12;:10;:12::i;:::-;55501:4;55507:7;55516:5;55450:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55446:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55709:1;55692:6;:13;:18;55688:272;;;55735:60;;;;;;;;;;:::i;:::-;;;;;;;;55688:272;55910:6;55904:13;55895:6;55891:2;55887:15;55880:38;55446:529;55583:41;;;55573:51;;;:6;:51;;;;55566:58;;;;;55410:620;56014:4;56007:11;;55238:799;;;;;;;:::o;56609:126::-;;;;:::o;61251:164::-;61355:10;:17;;;;61328:15;:24;61344:7;61328:24;;;;;;;;;;;:44;;;;61383:10;61399:7;61383:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61251:164;:::o;62042:988::-;62308:22;62358:1;62333:22;62350:4;62333:16;:22::i;:::-;:26;;;;:::i;:::-;62308:51;;62370:18;62391:17;:26;62409:7;62391:26;;;;;;;;;;;;62370:47;;62538:14;62524:10;:28;62520:328;;62569:19;62591:12;:18;62604:4;62591:18;;;;;;;;;;;;;;;:34;62610:14;62591:34;;;;;;;;;;;;62569:56;;62675:11;62642:12;:18;62655:4;62642:18;;;;;;;;;;;;;;;:30;62661:10;62642:30;;;;;;;;;;;:44;;;;62792:10;62759:17;:30;62777:11;62759:30;;;;;;;;;;;:43;;;;62554:294;62520:328;62944:17;:26;62962:7;62944:26;;;;;;;;;;;62937:33;;;62988:12;:18;63001:4;62988:18;;;;;;;;;;;;;;;:34;63007:14;62988:34;;;;;;;;;;;62981:41;;;62123:907;;62042:988;;:::o;63325:1079::-;63578:22;63623:1;63603:10;:17;;;;:21;;;;:::i;:::-;63578:46;;63635:18;63656:15;:24;63672:7;63656:24;;;;;;;;;;;;63635:45;;64007:19;64029:10;64040:14;64029:26;;;;;;;;:::i;:::-;;;;;;;;;;64007:48;;64093:11;64068:10;64079;64068:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;64204:10;64173:15;:28;64189:11;64173:28;;;;;;;;;;;:41;;;;64345:15;:24;64361:7;64345:24;;;;;;;;;;;64338:31;;;64380:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;63396:1008;;;63325:1079;:::o;60829:221::-;60914:14;60931:20;60948:2;60931:16;:20::i;:::-;60914:37;;60989:7;60962:12;:16;60975:2;60962:16;;;;;;;;;;;;;;;:24;60979:6;60962:24;;;;;;;;;;;:34;;;;61036:6;61007:17;:26;61025:7;61007:26;;;;;;;;;;;:35;;;;60903:147;60829:221;;:::o;51874:439::-;51968:1;51954:16;;:2;:16;;;;51946:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;52027:16;52035:7;52027;:16::i;:::-;52026:17;52018:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;52089:45;52118:1;52122:2;52126:7;52089:20;:45::i;:::-;52164:1;52147:9;:13;52157:2;52147:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;52195:2;52176:7;:16;52184:7;52176:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;52240:7;52236:2;52215:33;;52232:1;52215:33;;;;;;;;;;;;52261:44;52289:1;52293:2;52297:7;52261:19;:44::i;:::-;51874:439;;:::o;8103:98::-;8161:7;8192:1;8188;:5;;;;:::i;:::-;8181:12;;8103:98;;;;:::o;8502:::-;8560:7;8591:1;8587;:5;;;;:::i;:::-;8580:12;;8502:98;;;;:::o;7365:::-;7423:7;7454:1;7450;:5;;;;:::i;:::-;7443:12;;7365:98;;;;:::o;20734:326::-;20794:4;21051:1;21029:7;:19;;;:23;21022:30;;20734:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1731:155::-;1785:5;1823:6;1810:20;1801:29;;1839:41;1874:5;1839:41;:::i;:::-;1731:155;;;;:::o;1909:370::-;1980:5;2029:3;2022:4;2014:6;2010:17;2006:27;1996:122;;2037:79;;:::i;:::-;1996:122;2154:6;2141:20;2179:94;2269:3;2261:6;2254:4;2246:6;2242:17;2179:94;:::i;:::-;2170:103;;1986:293;1909:370;;;;:::o;2285:133::-;2328:5;2366:6;2353:20;2344:29;;2382:30;2406:5;2382:30;:::i;:::-;2285:133;;;;:::o;2424:137::-;2478:5;2509:6;2503:13;2494:22;;2525:30;2549:5;2525:30;:::i;:::-;2424:137;;;;:::o;2567:139::-;2613:5;2651:6;2638:20;2629:29;;2667:33;2694:5;2667:33;:::i;:::-;2567:139;;;;:::o;2712:137::-;2757:5;2795:6;2782:20;2773:29;;2811:32;2837:5;2811:32;:::i;:::-;2712:137;;;;:::o;2855:141::-;2911:5;2942:6;2936:13;2927:22;;2958:32;2984:5;2958:32;:::i;:::-;2855:141;;;;:::o;3015:338::-;3070:5;3119:3;3112:4;3104:6;3100:17;3096:27;3086:122;;3127:79;;:::i;:::-;3086:122;3244:6;3231:20;3269:78;3343:3;3335:6;3328:4;3320:6;3316:17;3269:78;:::i;:::-;3260:87;;3076:277;3015:338;;;;:::o;3359:169::-;3420:5;3458:6;3445:20;3436:29;;3474:48;3516:5;3474:48;:::i;:::-;3359:169;;;;:::o;3548:340::-;3604:5;3653:3;3646:4;3638:6;3634:17;3630:27;3620:122;;3661:79;;:::i;:::-;3620:122;3778:6;3765:20;3803:79;3878:3;3870:6;3863:4;3855:6;3851:17;3803:79;:::i;:::-;3794:88;;3610:278;3548:340;;;;:::o;3894:139::-;3940:5;3978:6;3965:20;3956:29;;3994:33;4021:5;3994:33;:::i;:::-;3894:139;;;;:::o;4039:143::-;4096:5;4127:6;4121:13;4112:22;;4143:33;4170:5;4143:33;:::i;:::-;4039:143;;;;:::o;4188:329::-;4247:6;4296:2;4284:9;4275:7;4271:23;4267:32;4264:119;;;4302:79;;:::i;:::-;4264:119;4422:1;4447:53;4492:7;4483:6;4472:9;4468:22;4447:53;:::i;:::-;4437:63;;4393:117;4188:329;;;;:::o;4523:345::-;4590:6;4639:2;4627:9;4618:7;4614:23;4610:32;4607:119;;;4645:79;;:::i;:::-;4607:119;4765:1;4790:61;4843:7;4834:6;4823:9;4819:22;4790:61;:::i;:::-;4780:71;;4736:125;4523:345;;;;:::o;4874:474::-;4942:6;4950;4999:2;4987:9;4978:7;4974:23;4970:32;4967:119;;;5005:79;;:::i;:::-;4967:119;5125:1;5150:53;5195:7;5186:6;5175:9;5171:22;5150:53;:::i;:::-;5140:63;;5096:117;5252:2;5278:53;5323:7;5314:6;5303:9;5299:22;5278:53;:::i;:::-;5268:63;;5223:118;4874:474;;;;;:::o;5354:619::-;5431:6;5439;5447;5496:2;5484:9;5475:7;5471:23;5467:32;5464:119;;;5502:79;;:::i;:::-;5464:119;5622:1;5647:53;5692:7;5683:6;5672:9;5668:22;5647:53;:::i;:::-;5637:63;;5593:117;5749:2;5775:53;5820:7;5811:6;5800:9;5796:22;5775:53;:::i;:::-;5765:63;;5720:118;5877:2;5903:53;5948:7;5939:6;5928:9;5924:22;5903:53;:::i;:::-;5893:63;;5848:118;5354:619;;;;;:::o;5979:943::-;6074:6;6082;6090;6098;6147:3;6135:9;6126:7;6122:23;6118:33;6115:120;;;6154:79;;:::i;:::-;6115:120;6274:1;6299:53;6344:7;6335:6;6324:9;6320:22;6299:53;:::i;:::-;6289:63;;6245:117;6401:2;6427:53;6472:7;6463:6;6452:9;6448:22;6427:53;:::i;:::-;6417:63;;6372:118;6529:2;6555:53;6600:7;6591:6;6580:9;6576:22;6555:53;:::i;:::-;6545:63;;6500:118;6685:2;6674:9;6670:18;6657:32;6716:18;6708:6;6705:30;6702:117;;;6738:79;;:::i;:::-;6702:117;6843:62;6897:7;6888:6;6877:9;6873:22;6843:62;:::i;:::-;6833:72;;6628:287;5979:943;;;;;;;:::o;6928:468::-;6993:6;7001;7050:2;7038:9;7029:7;7025:23;7021:32;7018:119;;;7056:79;;:::i;:::-;7018:119;7176:1;7201:53;7246:7;7237:6;7226:9;7222:22;7201:53;:::i;:::-;7191:63;;7147:117;7303:2;7329:50;7371:7;7362:6;7351:9;7347:22;7329:50;:::i;:::-;7319:60;;7274:115;6928:468;;;;;:::o;7402:474::-;7470:6;7478;7527:2;7515:9;7506:7;7502:23;7498:32;7495:119;;;7533:79;;:::i;:::-;7495:119;7653:1;7678:53;7723:7;7714:6;7703:9;7699:22;7678:53;:::i;:::-;7668:63;;7624:117;7780:2;7806:53;7851:7;7842:6;7831:9;7827:22;7806:53;:::i;:::-;7796:63;;7751:118;7402:474;;;;;:::o;7882:539::-;7966:6;8015:2;8003:9;7994:7;7990:23;7986:32;7983:119;;;8021:79;;:::i;:::-;7983:119;8169:1;8158:9;8154:17;8141:31;8199:18;8191:6;8188:30;8185:117;;;8221:79;;:::i;:::-;8185:117;8326:78;8396:7;8387:6;8376:9;8372:22;8326:78;:::i;:::-;8316:88;;8112:302;7882:539;;;;:::o;8427:345::-;8494:6;8543:2;8531:9;8522:7;8518:23;8514:32;8511:119;;;8549:79;;:::i;:::-;8511:119;8669:1;8694:61;8747:7;8738:6;8727:9;8723:22;8694:61;:::i;:::-;8684:71;;8640:125;8427:345;;;;:::o;8778:329::-;8837:6;8886:2;8874:9;8865:7;8861:23;8857:32;8854:119;;;8892:79;;:::i;:::-;8854:119;9012:1;9037:53;9082:7;9073:6;9062:9;9058:22;9037:53;:::i;:::-;9027:63;;8983:117;8778:329;;;;:::o;9113:327::-;9171:6;9220:2;9208:9;9199:7;9195:23;9191:32;9188:119;;;9226:79;;:::i;:::-;9188:119;9346:1;9371:52;9415:7;9406:6;9395:9;9391:22;9371:52;:::i;:::-;9361:62;;9317:116;9113:327;;;;:::o;9446:349::-;9515:6;9564:2;9552:9;9543:7;9539:23;9535:32;9532:119;;;9570:79;;:::i;:::-;9532:119;9690:1;9715:63;9770:7;9761:6;9750:9;9746:22;9715:63;:::i;:::-;9705:73;;9661:127;9446:349;;;;:::o;9801:359::-;9875:6;9924:2;9912:9;9903:7;9899:23;9895:32;9892:119;;;9930:79;;:::i;:::-;9892:119;10050:1;10075:68;10135:7;10126:6;10115:9;10111:22;10075:68;:::i;:::-;10065:78;;10021:132;9801:359;;;;:::o;10166:509::-;10235:6;10284:2;10272:9;10263:7;10259:23;10255:32;10252:119;;;10290:79;;:::i;:::-;10252:119;10438:1;10427:9;10423:17;10410:31;10468:18;10460:6;10457:30;10454:117;;;10490:79;;:::i;:::-;10454:117;10595:63;10650:7;10641:6;10630:9;10626:22;10595:63;:::i;:::-;10585:73;;10381:287;10166:509;;;;:::o;10681:329::-;10740:6;10789:2;10777:9;10768:7;10764:23;10760:32;10757:119;;;10795:79;;:::i;:::-;10757:119;10915:1;10940:53;10985:7;10976:6;10965:9;10961:22;10940:53;:::i;:::-;10930:63;;10886:117;10681:329;;;;:::o;11016:351::-;11086:6;11135:2;11123:9;11114:7;11110:23;11106:32;11103:119;;;11141:79;;:::i;:::-;11103:119;11261:1;11286:64;11342:7;11333:6;11322:9;11318:22;11286:64;:::i;:::-;11276:74;;11232:128;11016:351;;;;:::o;11373:474::-;11441:6;11449;11498:2;11486:9;11477:7;11473:23;11469:32;11466:119;;;11504:79;;:::i;:::-;11466:119;11624:1;11649:53;11694:7;11685:6;11674:9;11670:22;11649:53;:::i;:::-;11639:63;;11595:117;11751:2;11777:53;11822:7;11813:6;11802:9;11798:22;11777:53;:::i;:::-;11767:63;;11722:118;11373:474;;;;;:::o;11853:179::-;11922:10;11943:46;11985:3;11977:6;11943:46;:::i;:::-;12021:4;12016:3;12012:14;11998:28;;11853:179;;;;:::o;12038:142::-;12141:32;12167:5;12141:32;:::i;:::-;12136:3;12129:45;12038:142;;:::o;12186:118::-;12273:24;12291:5;12273:24;:::i;:::-;12268:3;12261:37;12186:118;;:::o;12340:732::-;12459:3;12488:54;12536:5;12488:54;:::i;:::-;12558:86;12637:6;12632:3;12558:86;:::i;:::-;12551:93;;12668:56;12718:5;12668:56;:::i;:::-;12747:7;12778:1;12763:284;12788:6;12785:1;12782:13;12763:284;;;12864:6;12858:13;12891:63;12950:3;12935:13;12891:63;:::i;:::-;12884:70;;12977:60;13030:6;12977:60;:::i;:::-;12967:70;;12823:224;12810:1;12807;12803:9;12798:14;;12763:284;;;12767:14;13063:3;13056:10;;12464:608;;;12340:732;;;;:::o;13078:109::-;13159:21;13174:5;13159:21;:::i;:::-;13154:3;13147:34;13078:109;;:::o;13193:360::-;13279:3;13307:38;13339:5;13307:38;:::i;:::-;13361:70;13424:6;13419:3;13361:70;:::i;:::-;13354:77;;13440:52;13485:6;13480:3;13473:4;13466:5;13462:16;13440:52;:::i;:::-;13517:29;13539:6;13517:29;:::i;:::-;13512:3;13508:39;13501:46;;13283:270;13193:360;;;;:::o;13559:364::-;13647:3;13675:39;13708:5;13675:39;:::i;:::-;13730:71;13794:6;13789:3;13730:71;:::i;:::-;13723:78;;13810:52;13855:6;13850:3;13843:4;13836:5;13832:16;13810:52;:::i;:::-;13887:29;13909:6;13887:29;:::i;:::-;13882:3;13878:39;13871:46;;13651:272;13559:364;;;;:::o;13929:377::-;14035:3;14063:39;14096:5;14063:39;:::i;:::-;14118:89;14200:6;14195:3;14118:89;:::i;:::-;14111:96;;14216:52;14261:6;14256:3;14249:4;14242:5;14238:16;14216:52;:::i;:::-;14293:6;14288:3;14284:16;14277:23;;14039:267;13929:377;;;;:::o;14336:845::-;14439:3;14476:5;14470:12;14505:36;14531:9;14505:36;:::i;:::-;14557:89;14639:6;14634:3;14557:89;:::i;:::-;14550:96;;14677:1;14666:9;14662:17;14693:1;14688:137;;;;14839:1;14834:341;;;;14655:520;;14688:137;14772:4;14768:9;14757;14753:25;14748:3;14741:38;14808:6;14803:3;14799:16;14792:23;;14688:137;;14834:341;14901:38;14933:5;14901:38;:::i;:::-;14961:1;14975:154;14989:6;14986:1;14983:13;14975:154;;;15063:7;15057:14;15053:1;15048:3;15044:11;15037:35;15113:1;15104:7;15100:15;15089:26;;15011:4;15008:1;15004:12;14999:17;;14975:154;;;15158:6;15153:3;15149:16;15142:23;;14841:334;;14655:520;;14443:738;;14336:845;;;;:::o;15187:366::-;15329:3;15350:67;15414:2;15409:3;15350:67;:::i;:::-;15343:74;;15426:93;15515:3;15426:93;:::i;:::-;15544:2;15539:3;15535:12;15528:19;;15187:366;;;:::o;15559:::-;15701:3;15722:67;15786:2;15781:3;15722:67;:::i;:::-;15715:74;;15798:93;15887:3;15798:93;:::i;:::-;15916:2;15911:3;15907:12;15900:19;;15559:366;;;:::o;15931:::-;16073:3;16094:67;16158:2;16153:3;16094:67;:::i;:::-;16087:74;;16170:93;16259:3;16170:93;:::i;:::-;16288:2;16283:3;16279:12;16272:19;;15931:366;;;:::o;16303:::-;16445:3;16466:67;16530:2;16525:3;16466:67;:::i;:::-;16459:74;;16542:93;16631:3;16542:93;:::i;:::-;16660:2;16655:3;16651:12;16644:19;;16303:366;;;:::o;16675:::-;16817:3;16838:67;16902:2;16897:3;16838:67;:::i;:::-;16831:74;;16914:93;17003:3;16914:93;:::i;:::-;17032:2;17027:3;17023:12;17016:19;;16675:366;;;:::o;17047:::-;17189:3;17210:67;17274:2;17269:3;17210:67;:::i;:::-;17203:74;;17286:93;17375:3;17286:93;:::i;:::-;17404:2;17399:3;17395:12;17388:19;;17047:366;;;:::o;17419:::-;17561:3;17582:67;17646:2;17641:3;17582:67;:::i;:::-;17575:74;;17658:93;17747:3;17658:93;:::i;:::-;17776:2;17771:3;17767:12;17760:19;;17419:366;;;:::o;17791:::-;17933:3;17954:67;18018:2;18013:3;17954:67;:::i;:::-;17947:74;;18030:93;18119:3;18030:93;:::i;:::-;18148:2;18143:3;18139:12;18132:19;;17791:366;;;:::o;18163:365::-;18305:3;18326:66;18390:1;18385:3;18326:66;:::i;:::-;18319:73;;18401:93;18490:3;18401:93;:::i;:::-;18519:2;18514:3;18510:12;18503:19;;18163:365;;;:::o;18534:366::-;18676:3;18697:67;18761:2;18756:3;18697:67;:::i;:::-;18690:74;;18773:93;18862:3;18773:93;:::i;:::-;18891:2;18886:3;18882:12;18875:19;;18534:366;;;:::o;18906:::-;19048:3;19069:67;19133:2;19128:3;19069:67;:::i;:::-;19062:74;;19145:93;19234:3;19145:93;:::i;:::-;19263:2;19258:3;19254:12;19247:19;;18906:366;;;:::o;19278:::-;19420:3;19441:67;19505:2;19500:3;19441:67;:::i;:::-;19434:74;;19517:93;19606:3;19517:93;:::i;:::-;19635:2;19630:3;19626:12;19619:19;;19278:366;;;:::o;19650:::-;19792:3;19813:67;19877:2;19872:3;19813:67;:::i;:::-;19806:74;;19889:93;19978:3;19889:93;:::i;:::-;20007:2;20002:3;19998:12;19991:19;;19650:366;;;:::o;20022:::-;20164:3;20185:67;20249:2;20244:3;20185:67;:::i;:::-;20178:74;;20261:93;20350:3;20261:93;:::i;:::-;20379:2;20374:3;20370:12;20363:19;;20022:366;;;:::o;20394:::-;20536:3;20557:67;20621:2;20616:3;20557:67;:::i;:::-;20550:74;;20633:93;20722:3;20633:93;:::i;:::-;20751:2;20746:3;20742:12;20735:19;;20394:366;;;:::o;20766:::-;20908:3;20929:67;20993:2;20988:3;20929:67;:::i;:::-;20922:74;;21005:93;21094:3;21005:93;:::i;:::-;21123:2;21118:3;21114:12;21107:19;;20766:366;;;:::o;21138:400::-;21298:3;21319:84;21401:1;21396:3;21319:84;:::i;:::-;21312:91;;21412:93;21501:3;21412:93;:::i;:::-;21530:1;21525:3;21521:11;21514:18;;21138:400;;;:::o;21544:366::-;21686:3;21707:67;21771:2;21766:3;21707:67;:::i;:::-;21700:74;;21783:93;21872:3;21783:93;:::i;:::-;21901:2;21896:3;21892:12;21885:19;;21544:366;;;:::o;21916:::-;22058:3;22079:67;22143:2;22138:3;22079:67;:::i;:::-;22072:74;;22155:93;22244:3;22155:93;:::i;:::-;22273:2;22268:3;22264:12;22257:19;;21916:366;;;:::o;22288:::-;22430:3;22451:67;22515:2;22510:3;22451:67;:::i;:::-;22444:74;;22527:93;22616:3;22527:93;:::i;:::-;22645:2;22640:3;22636:12;22629:19;;22288:366;;;:::o;22660:::-;22802:3;22823:67;22887:2;22882:3;22823:67;:::i;:::-;22816:74;;22899:93;22988:3;22899:93;:::i;:::-;23017:2;23012:3;23008:12;23001:19;;22660:366;;;:::o;23032:::-;23174:3;23195:67;23259:2;23254:3;23195:67;:::i;:::-;23188:74;;23271:93;23360:3;23271:93;:::i;:::-;23389:2;23384:3;23380:12;23373:19;;23032:366;;;:::o;23404:::-;23546:3;23567:67;23631:2;23626:3;23567:67;:::i;:::-;23560:74;;23643:93;23732:3;23643:93;:::i;:::-;23761:2;23756:3;23752:12;23745:19;;23404:366;;;:::o;23776:::-;23918:3;23939:67;24003:2;23998:3;23939:67;:::i;:::-;23932:74;;24015:93;24104:3;24015:93;:::i;:::-;24133:2;24128:3;24124:12;24117:19;;23776:366;;;:::o;24148:::-;24290:3;24311:67;24375:2;24370:3;24311:67;:::i;:::-;24304:74;;24387:93;24476:3;24387:93;:::i;:::-;24505:2;24500:3;24496:12;24489:19;;24148:366;;;:::o;24520:398::-;24679:3;24700:83;24781:1;24776:3;24700:83;:::i;:::-;24693:90;;24792:93;24881:3;24792:93;:::i;:::-;24910:1;24905:3;24901:11;24894:18;;24520:398;;;:::o;24924:366::-;25066:3;25087:67;25151:2;25146:3;25087:67;:::i;:::-;25080:74;;25163:93;25252:3;25163:93;:::i;:::-;25281:2;25276:3;25272:12;25265:19;;24924:366;;;:::o;25296:::-;25438:3;25459:67;25523:2;25518:3;25459:67;:::i;:::-;25452:74;;25535:93;25624:3;25535:93;:::i;:::-;25653:2;25648:3;25644:12;25637:19;;25296:366;;;:::o;25668:::-;25810:3;25831:67;25895:2;25890:3;25831:67;:::i;:::-;25824:74;;25907:93;25996:3;25907:93;:::i;:::-;26025:2;26020:3;26016:12;26009:19;;25668:366;;;:::o;26040:::-;26182:3;26203:67;26267:2;26262:3;26203:67;:::i;:::-;26196:74;;26279:93;26368:3;26279:93;:::i;:::-;26397:2;26392:3;26388:12;26381:19;;26040:366;;;:::o;26412:::-;26554:3;26575:67;26639:2;26634:3;26575:67;:::i;:::-;26568:74;;26651:93;26740:3;26651:93;:::i;:::-;26769:2;26764:3;26760:12;26753:19;;26412:366;;;:::o;26784:::-;26926:3;26947:67;27011:2;27006:3;26947:67;:::i;:::-;26940:74;;27023:93;27112:3;27023:93;:::i;:::-;27141:2;27136:3;27132:12;27125:19;;26784:366;;;:::o;27156:::-;27298:3;27319:67;27383:2;27378:3;27319:67;:::i;:::-;27312:74;;27395:93;27484:3;27395:93;:::i;:::-;27513:2;27508:3;27504:12;27497:19;;27156:366;;;:::o;27574:1424::-;27713:4;27708:3;27704:14;27807:4;27800:5;27796:16;27790:23;27826:63;27883:4;27878:3;27874:14;27860:12;27826:63;:::i;:::-;27728:171;27987:4;27980:5;27976:16;27970:23;28006:63;28063:4;28058:3;28054:14;28040:12;28006:63;:::i;:::-;27909:170;28170:4;28163:5;28159:16;28153:23;28189:63;28246:4;28241:3;28237:14;28223:12;28189:63;:::i;:::-;28089:173;28349:4;28342:5;28338:16;28332:23;28368:63;28425:4;28420:3;28416:14;28402:12;28368:63;:::i;:::-;28272:169;28530:4;28523:5;28519:16;28513:23;28549:63;28606:4;28601:3;28597:14;28583:12;28549:63;:::i;:::-;28451:171;28717:4;28710:5;28706:16;28700:23;28736:63;28793:4;28788:3;28784:14;28770:12;28736:63;:::i;:::-;28632:177;28899:4;28892:5;28888:16;28882:23;28918:63;28975:4;28970:3;28966:14;28952:12;28918:63;:::i;:::-;28819:172;27682:1316;27574:1424;;:::o;29004:118::-;29091:24;29109:5;29091:24;:::i;:::-;29086:3;29079:37;29004:118;;:::o;29128:108::-;29205:24;29223:5;29205:24;:::i;:::-;29200:3;29193:37;29128:108;;:::o;29242:118::-;29329:24;29347:5;29329:24;:::i;:::-;29324:3;29317:37;29242:118;;:::o;29366:695::-;29644:3;29666:92;29754:3;29745:6;29666:92;:::i;:::-;29659:99;;29775:95;29866:3;29857:6;29775:95;:::i;:::-;29768:102;;29887:148;30031:3;29887:148;:::i;:::-;29880:155;;30052:3;30045:10;;29366:695;;;;;:::o;30067:379::-;30251:3;30273:147;30416:3;30273:147;:::i;:::-;30266:154;;30437:3;30430:10;;30067:379;;;:::o;30452:222::-;30545:4;30583:2;30572:9;30568:18;30560:26;;30596:71;30664:1;30653:9;30649:17;30640:6;30596:71;:::i;:::-;30452:222;;;;:::o;30680:254::-;30789:4;30827:2;30816:9;30812:18;30804:26;;30840:87;30924:1;30913:9;30909:17;30900:6;30840:87;:::i;:::-;30680:254;;;;:::o;30940:640::-;31135:4;31173:3;31162:9;31158:19;31150:27;;31187:71;31255:1;31244:9;31240:17;31231:6;31187:71;:::i;:::-;31268:72;31336:2;31325:9;31321:18;31312:6;31268:72;:::i;:::-;31350;31418:2;31407:9;31403:18;31394:6;31350:72;:::i;:::-;31469:9;31463:4;31459:20;31454:2;31443:9;31439:18;31432:48;31497:76;31568:4;31559:6;31497:76;:::i;:::-;31489:84;;30940:640;;;;;;;:::o;31586:483::-;31757:4;31795:2;31784:9;31780:18;31772:26;;31808:71;31876:1;31865:9;31861:17;31852:6;31808:71;:::i;:::-;31926:9;31920:4;31916:20;31911:2;31900:9;31896:18;31889:48;31954:108;32057:4;32048:6;31954:108;:::i;:::-;31946:116;;31586:483;;;;;:::o;32075:332::-;32196:4;32234:2;32223:9;32219:18;32211:26;;32247:71;32315:1;32304:9;32300:17;32291:6;32247:71;:::i;:::-;32328:72;32396:2;32385:9;32381:18;32372:6;32328:72;:::i;:::-;32075:332;;;;;:::o;32413:210::-;32500:4;32538:2;32527:9;32523:18;32515:26;;32551:65;32613:1;32602:9;32598:17;32589:6;32551:65;:::i;:::-;32413:210;;;;:::o;32629:313::-;32742:4;32780:2;32769:9;32765:18;32757:26;;32829:9;32823:4;32819:20;32815:1;32804:9;32800:17;32793:47;32857:78;32930:4;32921:6;32857:78;:::i;:::-;32849:86;;32629:313;;;;:::o;32948:419::-;33114:4;33152:2;33141:9;33137:18;33129:26;;33201:9;33195:4;33191:20;33187:1;33176:9;33172:17;33165:47;33229:131;33355:4;33229:131;:::i;:::-;33221:139;;32948:419;;;:::o;33373:::-;33539:4;33577:2;33566:9;33562:18;33554:26;;33626:9;33620:4;33616:20;33612:1;33601:9;33597:17;33590:47;33654:131;33780:4;33654:131;:::i;:::-;33646:139;;33373:419;;;:::o;33798:::-;33964:4;34002:2;33991:9;33987:18;33979:26;;34051:9;34045:4;34041:20;34037:1;34026:9;34022:17;34015:47;34079:131;34205:4;34079:131;:::i;:::-;34071:139;;33798:419;;;:::o;34223:::-;34389:4;34427:2;34416:9;34412:18;34404:26;;34476:9;34470:4;34466:20;34462:1;34451:9;34447:17;34440:47;34504:131;34630:4;34504:131;:::i;:::-;34496:139;;34223:419;;;:::o;34648:::-;34814:4;34852:2;34841:9;34837:18;34829:26;;34901:9;34895:4;34891:20;34887:1;34876:9;34872:17;34865:47;34929:131;35055:4;34929:131;:::i;:::-;34921:139;;34648:419;;;:::o;35073:::-;35239:4;35277:2;35266:9;35262:18;35254:26;;35326:9;35320:4;35316:20;35312:1;35301:9;35297:17;35290:47;35354:131;35480:4;35354:131;:::i;:::-;35346:139;;35073:419;;;:::o;35498:::-;35664:4;35702:2;35691:9;35687:18;35679:26;;35751:9;35745:4;35741:20;35737:1;35726:9;35722:17;35715:47;35779:131;35905:4;35779:131;:::i;:::-;35771:139;;35498:419;;;:::o;35923:::-;36089:4;36127:2;36116:9;36112:18;36104:26;;36176:9;36170:4;36166:20;36162:1;36151:9;36147:17;36140:47;36204:131;36330:4;36204:131;:::i;:::-;36196:139;;35923:419;;;:::o;36348:::-;36514:4;36552:2;36541:9;36537:18;36529:26;;36601:9;36595:4;36591:20;36587:1;36576:9;36572:17;36565:47;36629:131;36755:4;36629:131;:::i;:::-;36621:139;;36348:419;;;:::o;36773:::-;36939:4;36977:2;36966:9;36962:18;36954:26;;37026:9;37020:4;37016:20;37012:1;37001:9;36997:17;36990:47;37054:131;37180:4;37054:131;:::i;:::-;37046:139;;36773:419;;;:::o;37198:::-;37364:4;37402:2;37391:9;37387:18;37379:26;;37451:9;37445:4;37441:20;37437:1;37426:9;37422:17;37415:47;37479:131;37605:4;37479:131;:::i;:::-;37471:139;;37198:419;;;:::o;37623:::-;37789:4;37827:2;37816:9;37812:18;37804:26;;37876:9;37870:4;37866:20;37862:1;37851:9;37847:17;37840:47;37904:131;38030:4;37904:131;:::i;:::-;37896:139;;37623:419;;;:::o;38048:::-;38214:4;38252:2;38241:9;38237:18;38229:26;;38301:9;38295:4;38291:20;38287:1;38276:9;38272:17;38265:47;38329:131;38455:4;38329:131;:::i;:::-;38321:139;;38048:419;;;:::o;38473:::-;38639:4;38677:2;38666:9;38662:18;38654:26;;38726:9;38720:4;38716:20;38712:1;38701:9;38697:17;38690:47;38754:131;38880:4;38754:131;:::i;:::-;38746:139;;38473:419;;;:::o;38898:::-;39064:4;39102:2;39091:9;39087:18;39079:26;;39151:9;39145:4;39141:20;39137:1;39126:9;39122:17;39115:47;39179:131;39305:4;39179:131;:::i;:::-;39171:139;;38898:419;;;:::o;39323:::-;39489:4;39527:2;39516:9;39512:18;39504:26;;39576:9;39570:4;39566:20;39562:1;39551:9;39547:17;39540:47;39604:131;39730:4;39604:131;:::i;:::-;39596:139;;39323:419;;;:::o;39748:::-;39914:4;39952:2;39941:9;39937:18;39929:26;;40001:9;39995:4;39991:20;39987:1;39976:9;39972:17;39965:47;40029:131;40155:4;40029:131;:::i;:::-;40021:139;;39748:419;;;:::o;40173:::-;40339:4;40377:2;40366:9;40362:18;40354:26;;40426:9;40420:4;40416:20;40412:1;40401:9;40397:17;40390:47;40454:131;40580:4;40454:131;:::i;:::-;40446:139;;40173:419;;;:::o;40598:::-;40764:4;40802:2;40791:9;40787:18;40779:26;;40851:9;40845:4;40841:20;40837:1;40826:9;40822:17;40815:47;40879:131;41005:4;40879:131;:::i;:::-;40871:139;;40598:419;;;:::o;41023:::-;41189:4;41227:2;41216:9;41212:18;41204:26;;41276:9;41270:4;41266:20;41262:1;41251:9;41247:17;41240:47;41304:131;41430:4;41304:131;:::i;:::-;41296:139;;41023:419;;;:::o;41448:::-;41614:4;41652:2;41641:9;41637:18;41629:26;;41701:9;41695:4;41691:20;41687:1;41676:9;41672:17;41665:47;41729:131;41855:4;41729:131;:::i;:::-;41721:139;;41448:419;;;:::o;41873:::-;42039:4;42077:2;42066:9;42062:18;42054:26;;42126:9;42120:4;42116:20;42112:1;42101:9;42097:17;42090:47;42154:131;42280:4;42154:131;:::i;:::-;42146:139;;41873:419;;;:::o;42298:::-;42464:4;42502:2;42491:9;42487:18;42479:26;;42551:9;42545:4;42541:20;42537:1;42526:9;42522:17;42515:47;42579:131;42705:4;42579:131;:::i;:::-;42571:139;;42298:419;;;:::o;42723:::-;42889:4;42927:2;42916:9;42912:18;42904:26;;42976:9;42970:4;42966:20;42962:1;42951:9;42947:17;42940:47;43004:131;43130:4;43004:131;:::i;:::-;42996:139;;42723:419;;;:::o;43148:::-;43314:4;43352:2;43341:9;43337:18;43329:26;;43401:9;43395:4;43391:20;43387:1;43376:9;43372:17;43365:47;43429:131;43555:4;43429:131;:::i;:::-;43421:139;;43148:419;;;:::o;43573:::-;43739:4;43777:2;43766:9;43762:18;43754:26;;43826:9;43820:4;43816:20;43812:1;43801:9;43797:17;43790:47;43854:131;43980:4;43854:131;:::i;:::-;43846:139;;43573:419;;;:::o;43998:::-;44164:4;44202:2;44191:9;44187:18;44179:26;;44251:9;44245:4;44241:20;44237:1;44226:9;44222:17;44215:47;44279:131;44405:4;44279:131;:::i;:::-;44271:139;;43998:419;;;:::o;44423:::-;44589:4;44627:2;44616:9;44612:18;44604:26;;44676:9;44670:4;44666:20;44662:1;44651:9;44647:17;44640:47;44704:131;44830:4;44704:131;:::i;:::-;44696:139;;44423:419;;;:::o;44848:::-;45014:4;45052:2;45041:9;45037:18;45029:26;;45101:9;45095:4;45091:20;45087:1;45076:9;45072:17;45065:47;45129:131;45255:4;45129:131;:::i;:::-;45121:139;;44848:419;;;:::o;45273:::-;45439:4;45477:2;45466:9;45462:18;45454:26;;45526:9;45520:4;45516:20;45512:1;45501:9;45497:17;45490:47;45554:131;45680:4;45554:131;:::i;:::-;45546:139;;45273:419;;;:::o;45698:::-;45864:4;45902:2;45891:9;45887:18;45879:26;;45951:9;45945:4;45941:20;45937:1;45926:9;45922:17;45915:47;45979:131;46105:4;45979:131;:::i;:::-;45971:139;;45698:419;;;:::o;46123:307::-;46258:4;46296:3;46285:9;46281:19;46273:27;;46310:113;46420:1;46409:9;46405:17;46396:6;46310:113;:::i;:::-;46123:307;;;;:::o;46436:541::-;46607:4;46645:3;46634:9;46630:19;46622:27;;46659:71;46727:1;46716:9;46712:17;46703:6;46659:71;:::i;:::-;46740:72;46808:2;46797:9;46793:18;46784:6;46740:72;:::i;:::-;46822;46890:2;46879:9;46875:18;46866:6;46822:72;:::i;:::-;46904:66;46966:2;46955:9;46951:18;46942:6;46904:66;:::i;:::-;46436:541;;;;;;;:::o;46983:222::-;47076:4;47114:2;47103:9;47099:18;47091:26;;47127:71;47195:1;47184:9;47180:17;47171:6;47127:71;:::i;:::-;46983:222;;;;:::o;47211:129::-;47245:6;47272:20;;:::i;:::-;47262:30;;47301:33;47329:4;47321:6;47301:33;:::i;:::-;47211:129;;;:::o;47346:75::-;47379:6;47412:2;47406:9;47396:19;;47346:75;:::o;47427:311::-;47504:4;47594:18;47586:6;47583:30;47580:56;;;47616:18;;:::i;:::-;47580:56;47666:4;47658:6;47654:17;47646:25;;47726:4;47720;47716:15;47708:23;;47427:311;;;:::o;47744:307::-;47805:4;47895:18;47887:6;47884:30;47881:56;;;47917:18;;:::i;:::-;47881:56;47955:29;47977:6;47955:29;:::i;:::-;47947:37;;48039:4;48033;48029:15;48021:23;;47744:307;;;:::o;48057:308::-;48119:4;48209:18;48201:6;48198:30;48195:56;;;48231:18;;:::i;:::-;48195:56;48269:29;48291:6;48269:29;:::i;:::-;48261:37;;48353:4;48347;48343:15;48335:23;;48057:308;;;:::o;48371:132::-;48438:4;48461:3;48453:11;;48491:4;48486:3;48482:14;48474:22;;48371:132;;;:::o;48509:141::-;48558:4;48581:3;48573:11;;48604:3;48601:1;48594:14;48638:4;48635:1;48625:18;48617:26;;48509:141;;;:::o;48656:114::-;48723:6;48757:5;48751:12;48741:22;;48656:114;;;:::o;48776:98::-;48827:6;48861:5;48855:12;48845:22;;48776:98;;;:::o;48880:99::-;48932:6;48966:5;48960:12;48950:22;;48880:99;;;:::o;48985:113::-;49055:4;49087;49082:3;49078:14;49070:22;;48985:113;;;:::o;49104:184::-;49203:11;49237:6;49232:3;49225:19;49277:4;49272:3;49268:14;49253:29;;49104:184;;;;:::o;49294:168::-;49377:11;49411:6;49406:3;49399:19;49451:4;49446:3;49442:14;49427:29;;49294:168;;;;:::o;49468:147::-;49569:11;49606:3;49591:18;;49468:147;;;;:::o;49621:169::-;49705:11;49739:6;49734:3;49727:19;49779:4;49774:3;49770:14;49755:29;;49621:169;;;;:::o;49796:148::-;49898:11;49935:3;49920:18;;49796:148;;;;:::o;49950:305::-;49990:3;50009:20;50027:1;50009:20;:::i;:::-;50004:25;;50043:20;50061:1;50043:20;:::i;:::-;50038:25;;50197:1;50129:66;50125:74;50122:1;50119:81;50116:107;;;50203:18;;:::i;:::-;50116:107;50247:1;50244;50240:9;50233:16;;49950:305;;;;:::o;50261:185::-;50301:1;50318:20;50336:1;50318:20;:::i;:::-;50313:25;;50352:20;50370:1;50352:20;:::i;:::-;50347:25;;50391:1;50381:35;;50396:18;;:::i;:::-;50381:35;50438:1;50435;50431:9;50426:14;;50261:185;;;;:::o;50452:348::-;50492:7;50515:20;50533:1;50515:20;:::i;:::-;50510:25;;50549:20;50567:1;50549:20;:::i;:::-;50544:25;;50737:1;50669:66;50665:74;50662:1;50659:81;50654:1;50647:9;50640:17;50636:105;50633:131;;;50744:18;;:::i;:::-;50633:131;50792:1;50789;50785:9;50774:20;;50452:348;;;;:::o;50806:191::-;50846:4;50866:20;50884:1;50866:20;:::i;:::-;50861:25;;50900:20;50918:1;50900:20;:::i;:::-;50895:25;;50939:1;50936;50933:8;50930:34;;;50944:18;;:::i;:::-;50930:34;50989:1;50986;50982:9;50974:17;;50806:191;;;;:::o;51003:96::-;51040:7;51069:24;51087:5;51069:24;:::i;:::-;51058:35;;51003:96;;;:::o;51105:104::-;51150:7;51179:24;51197:5;51179:24;:::i;:::-;51168:35;;51105:104;;;:::o;51215:90::-;51249:7;51292:5;51285:13;51278:21;51267:32;;51215:90;;;:::o;51311:77::-;51348:7;51377:5;51366:16;;51311:77;;;:::o;51394:149::-;51430:7;51470:66;51463:5;51459:78;51448:89;;51394:149;;;:::o;51549:111::-;51601:7;51630:24;51648:5;51630:24;:::i;:::-;51619:35;;51549:111;;;:::o;51666:118::-;51703:7;51743:34;51736:5;51732:46;51721:57;;51666:118;;;:::o;51790:126::-;51827:7;51867:42;51860:5;51856:54;51845:65;;51790:126;;;:::o;51922:77::-;51959:7;51988:5;51977:16;;51922:77;;;:::o;52005:86::-;52040:7;52080:4;52073:5;52069:16;52058:27;;52005:86;;;:::o;52097:154::-;52181:6;52176:3;52171;52158:30;52243:1;52234:6;52229:3;52225:16;52218:27;52097:154;;;:::o;52257:307::-;52325:1;52335:113;52349:6;52346:1;52343:13;52335:113;;;52434:1;52429:3;52425:11;52419:18;52415:1;52410:3;52406:11;52399:39;52371:2;52368:1;52364:10;52359:15;;52335:113;;;52466:6;52463:1;52460:13;52457:101;;;52546:1;52537:6;52532:3;52528:16;52521:27;52457:101;52306:258;52257:307;;;:::o;52570:171::-;52609:3;52632:24;52650:5;52632:24;:::i;:::-;52623:33;;52678:4;52671:5;52668:15;52665:41;;;52686:18;;:::i;:::-;52665:41;52733:1;52726:5;52722:13;52715:20;;52570:171;;;:::o;52747:320::-;52791:6;52828:1;52822:4;52818:12;52808:22;;52875:1;52869:4;52865:12;52896:18;52886:81;;52952:4;52944:6;52940:17;52930:27;;52886:81;53014:2;53006:6;53003:14;52983:18;52980:38;52977:84;;;53033:18;;:::i;:::-;52977:84;52798:269;52747:320;;;:::o;53073:281::-;53156:27;53178:4;53156:27;:::i;:::-;53148:6;53144:40;53286:6;53274:10;53271:22;53250:18;53238:10;53235:34;53232:62;53229:88;;;53297:18;;:::i;:::-;53229:88;53337:10;53333:2;53326:22;53116:238;53073:281;;:::o;53360:233::-;53399:3;53422:24;53440:5;53422:24;:::i;:::-;53413:33;;53468:66;53461:5;53458:77;53455:103;;;53538:18;;:::i;:::-;53455:103;53585:1;53578:5;53574:13;53567:20;;53360:233;;;:::o;53599:167::-;53636:3;53659:22;53675:5;53659:22;:::i;:::-;53650:31;;53703:4;53696:5;53693:15;53690:41;;;53711:18;;:::i;:::-;53690:41;53758:1;53751:5;53747:13;53740:20;;53599:167;;;:::o;53772:176::-;53804:1;53821:20;53839:1;53821:20;:::i;:::-;53816:25;;53855:20;53873:1;53855:20;:::i;:::-;53850:25;;53894:1;53884:35;;53899:18;;:::i;:::-;53884:35;53940:1;53937;53933:9;53928:14;;53772:176;;;;:::o;53954:180::-;54002:77;53999:1;53992:88;54099:4;54096:1;54089:15;54123:4;54120:1;54113:15;54140:180;54188:77;54185:1;54178:88;54285:4;54282:1;54275:15;54309:4;54306:1;54299:15;54326:180;54374:77;54371:1;54364:88;54471:4;54468:1;54461:15;54495:4;54492:1;54485:15;54512:180;54560:77;54557:1;54550:88;54657:4;54654:1;54647:15;54681:4;54678:1;54671:15;54698:180;54746:77;54743:1;54736:88;54843:4;54840:1;54833:15;54867:4;54864:1;54857:15;54884:180;54932:77;54929:1;54922:88;55029:4;55026:1;55019:15;55053:4;55050:1;55043:15;55070:117;55179:1;55176;55169:12;55193:117;55302:1;55299;55292:12;55316:117;55425:1;55422;55415:12;55439:117;55548:1;55545;55538:12;55562:117;55671:1;55668;55661:12;55685:102;55726:6;55777:2;55773:7;55768:2;55761:5;55757:14;55753:28;55743:38;;55685:102;;;:::o;55793:230::-;55933:34;55929:1;55921:6;55917:14;55910:58;56002:13;55997:2;55989:6;55985:15;55978:38;55793:230;:::o;56029:237::-;56169:34;56165:1;56157:6;56153:14;56146:58;56238:20;56233:2;56225:6;56221:15;56214:45;56029:237;:::o;56272:225::-;56412:34;56408:1;56400:6;56396:14;56389:58;56481:8;56476:2;56468:6;56464:15;56457:33;56272:225;:::o;56503:224::-;56643:34;56639:1;56631:6;56627:14;56620:58;56712:7;56707:2;56699:6;56695:15;56688:32;56503:224;:::o;56733:178::-;56873:30;56869:1;56861:6;56857:14;56850:54;56733:178;:::o;56917:223::-;57057:34;57053:1;57045:6;57041:14;57034:58;57126:6;57121:2;57113:6;57109:15;57102:31;56917:223;:::o;57146:175::-;57286:27;57282:1;57274:6;57270:14;57263:51;57146:175;:::o;57327:231::-;57467:34;57463:1;57455:6;57451:14;57444:58;57536:14;57531:2;57523:6;57519:15;57512:39;57327:231;:::o;57564:157::-;57704:9;57700:1;57692:6;57688:14;57681:33;57564:157;:::o;57727:243::-;57867:34;57863:1;57855:6;57851:14;57844:58;57936:26;57931:2;57923:6;57919:15;57912:51;57727:243;:::o;57976:229::-;58116:34;58112:1;58104:6;58100:14;58093:58;58185:12;58180:2;58172:6;58168:15;58161:37;57976:229;:::o;58211:228::-;58351:34;58347:1;58339:6;58335:14;58328:58;58420:11;58415:2;58407:6;58403:15;58396:36;58211:228;:::o;58445:176::-;58585:28;58581:1;58573:6;58569:14;58562:52;58445:176;:::o;58627:166::-;58767:18;58763:1;58755:6;58751:14;58744:42;58627:166;:::o;58799:182::-;58939:34;58935:1;58927:6;58923:14;58916:58;58799:182;:::o;58987:231::-;59127:34;59123:1;59115:6;59111:14;59104:58;59196:14;59191:2;59183:6;59179:15;59172:39;58987:231;:::o;59224:155::-;59364:7;59360:1;59352:6;59348:14;59341:31;59224:155;:::o;59385:166::-;59525:18;59521:1;59513:6;59509:14;59502:42;59385:166;:::o;59557:182::-;59697:34;59693:1;59685:6;59681:14;59674:58;59557:182;:::o;59745:175::-;59885:27;59881:1;59873:6;59869:14;59862:51;59745:175;:::o;59926:234::-;60066:34;60062:1;60054:6;60050:14;60043:58;60135:17;60130:2;60122:6;60118:15;60111:42;59926:234;:::o;60166:220::-;60306:34;60302:1;60294:6;60290:14;60283:58;60375:3;60370:2;60362:6;60358:15;60351:28;60166:220;:::o;60392:171::-;60532:23;60528:1;60520:6;60516:14;60509:47;60392:171;:::o;60569:176::-;60709:28;60705:1;60697:6;60693:14;60686:52;60569:176;:::o;60751:165::-;60891:17;60887:1;60879:6;60875:14;60868:41;60751:165;:::o;60922:114::-;;:::o;61042:166::-;61182:18;61178:1;61170:6;61166:14;61159:42;61042:166;:::o;61214:236::-;61354:34;61350:1;61342:6;61338:14;61331:58;61423:19;61418:2;61410:6;61406:15;61399:44;61214:236;:::o;61456:168::-;61596:20;61592:1;61584:6;61580:14;61573:44;61456:168;:::o;61630:231::-;61770:34;61766:1;61758:6;61754:14;61747:58;61839:14;61834:2;61826:6;61822:15;61815:39;61630:231;:::o;61867:167::-;62007:19;62003:1;61995:6;61991:14;61984:43;61867:167;:::o;62040:181::-;62180:33;62176:1;62168:6;62164:14;62157:57;62040:181;:::o;62227:166::-;62367:18;62363:1;62355:6;62351:14;62344:42;62227:166;:::o;62399:122::-;62472:24;62490:5;62472:24;:::i;:::-;62465:5;62462:35;62452:63;;62511:1;62508;62501:12;62452:63;62399:122;:::o;62527:138::-;62608:32;62634:5;62608:32;:::i;:::-;62601:5;62598:43;62588:71;;62655:1;62652;62645:12;62588:71;62527:138;:::o;62671:116::-;62741:21;62756:5;62741:21;:::i;:::-;62734:5;62731:32;62721:60;;62777:1;62774;62767:12;62721:60;62671:116;:::o;62793:122::-;62866:24;62884:5;62866:24;:::i;:::-;62859:5;62856:35;62846:63;;62905:1;62902;62895:12;62846:63;62793:122;:::o;62921:120::-;62993:23;63010:5;62993:23;:::i;:::-;62986:5;62983:34;62973:62;;63031:1;63028;63021:12;62973:62;62921:120;:::o;63047:152::-;63135:39;63168:5;63135:39;:::i;:::-;63128:5;63125:50;63115:78;;63189:1;63186;63179:12;63115:78;63047:152;:::o;63205:122::-;63278:24;63296:5;63278:24;:::i;:::-;63271:5;63268:35;63258:63;;63317:1;63314;63307:12;63258:63;63205:122;:::o
Swarm Source
ipfs://2787a17fe3673dcb249757788355e8bfc34b6094111ac5b1701ca1b1e019818f
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 27 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
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.