Polygon Sponsored slots available. Book your slot here!
More Info
Private Name Tags
ContractCreator
Loading...
Loading
Contract Name:
KastaTokenV1
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2025-01-14 */ // Sources flattened with hardhat v2.22.18 https://hardhat.org // SPDX-License-Identifier: MIT AND UNLICENSED // File @openzeppelin/contracts-upgradeable/access/[email protected] // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControlUpgradeable { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } // File @openzeppelin/contracts-upgradeable/proxy/utils/[email protected] // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } } // File @openzeppelin/contracts-upgradeable/utils/[email protected] // Original license: SPDX_License_Identifier: MIT 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 ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; } // File @openzeppelin/contracts-upgradeable/utils/introspection/[email protected] // Original license: SPDX_License_Identifier: MIT 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 IERC165Upgradeable { /** * @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-upgradeable/utils/introspection/[email protected] // Original license: SPDX_License_Identifier: MIT 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 ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal initializer { __ERC165_init_unchained(); } function __ERC165_init_unchained() internal initializer { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } uint256[50] private __gap; } // File @openzeppelin/contracts-upgradeable/utils/[email protected] // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { 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-upgradeable/access/[email protected] // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControlUpgradeable, ERC165Upgradeable { function __AccessControl_init() internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __AccessControl_init_unchained(); } function __AccessControl_init_unchained() internal initializer { } struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", StringsUpgradeable.toHexString(uint160(account), 20), " is missing role ", StringsUpgradeable.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } uint256[49] private __gap; } // File @openzeppelin/contracts-upgradeable/access/[email protected] // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerableUpgradeable is IAccessControlUpgradeable { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); } // File @openzeppelin/contracts-upgradeable/utils/structs/[email protected] // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSetUpgradeable { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } } // File @openzeppelin/contracts-upgradeable/access/[email protected] // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerableUpgradeable is Initializable, IAccessControlEnumerableUpgradeable, AccessControlUpgradeable { function __AccessControlEnumerable_init() internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __AccessControl_init_unchained(); __AccessControlEnumerable_init_unchained(); } function __AccessControlEnumerable_init_unchained() internal initializer { } using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet; mapping(bytes32 => EnumerableSetUpgradeable.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerableUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {grantRole} to track enumerable memberships */ function grantRole(bytes32 role, address account) public virtual override(AccessControlUpgradeable, IAccessControlUpgradeable) { super.grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {revokeRole} to track enumerable memberships */ function revokeRole(bytes32 role, address account) public virtual override(AccessControlUpgradeable, IAccessControlUpgradeable) { super.revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {renounceRole} to track enumerable memberships */ function renounceRole(bytes32 role, address account) public virtual override(AccessControlUpgradeable, IAccessControlUpgradeable) { super.renounceRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {_setupRole} to track enumerable memberships */ function _setupRole(bytes32 role, address account) internal virtual override { super._setupRole(role, account); _roleMembers[role].add(account); } uint256[49] private __gap; } // File @openzeppelin/contracts-upgradeable/security/[email protected] // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal initializer { __Context_init_unchained(); __Pausable_init_unchained(); } function __Pausable_init_unchained() internal initializer { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } uint256[49] private __gap; } // File @openzeppelin/contracts-upgradeable/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts-upgradeable/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20MetadataUpgradeable is IERC20Upgradeable { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts-upgradeable/token/ERC20/[email protected] // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ function __ERC20_init(string memory name_, string memory symbol_) internal initializer { __Context_init_unchained(); __ERC20_init_unchained(name_, symbol_); } function __ERC20_init_unchained(string memory name_, string memory symbol_) internal initializer { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens 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 amount ) 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, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} uint256[45] private __gap; } // File @openzeppelin/contracts-upgradeable/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20BurnableUpgradeable is Initializable, ContextUpgradeable, ERC20Upgradeable { function __ERC20Burnable_init() internal initializer { __Context_init_unchained(); __ERC20Burnable_init_unchained(); } function __ERC20Burnable_init_unchained() internal initializer { } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } uint256[50] private __gap; } // File @openzeppelin/contracts-upgradeable/token/ERC20/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC20PausableUpgradeable is Initializable, ERC20Upgradeable, PausableUpgradeable { function __ERC20Pausable_init() internal initializer { __Context_init_unchained(); __Pausable_init_unchained(); __ERC20Pausable_init_unchained(); } function __ERC20Pausable_init_unchained() internal initializer { } /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); require(!paused(), "ERC20Pausable: token transfer while paused"); } uint256[50] private __gap; } // File @openzeppelin/contracts-upgradeable/token/ERC20/presets/[email protected] // Original license: SPDX_License_Identifier: MIT pragma solidity ^0.8.0; /** * @dev {ERC20} token, including: * * - Preminted initial supply * - Ability for holders to burn (destroy) their tokens * - No access control mechanism (for minting/pausing) and hence no governance * * This contract uses {ERC20Burnable} to include burn capabilities - head to * its documentation for details. * * _Available since v3.4._ */ contract ERC20PresetFixedSupplyUpgradeable is Initializable, ERC20BurnableUpgradeable { function initialize( string memory name, string memory symbol, uint256 initialSupply, address owner ) public virtual initializer { __ERC20PresetFixedSupply_init(name, symbol, initialSupply, owner); } /** * @dev Mints `initialSupply` amount of token and transfers them to `owner`. * * See {ERC20-constructor}. */ function __ERC20PresetFixedSupply_init( string memory name, string memory symbol, uint256 initialSupply, address owner ) internal initializer { __Context_init_unchained(); __ERC20_init_unchained(name, symbol); __ERC20Burnable_init_unchained(); __ERC20PresetFixedSupply_init_unchained(name, symbol, initialSupply, owner); } function __ERC20PresetFixedSupply_init_unchained( string memory name, string memory symbol, uint256 initialSupply, address owner ) internal initializer { _mint(owner, initialSupply); } uint256[50] private __gap; } // File contracts/KastaTokenV1.sol // Original license: SPDX_License_Identifier: UNLICENSED pragma solidity 0.8.9; contract KastaTokenV1 is Initializable, ERC20PresetFixedSupplyUpgradeable, ERC20PausableUpgradeable, AccessControlEnumerableUpgradeable { mapping(address => uint256) private _staked; bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); event Staked(address indexed from, uint256 amount); event Unstaked(address indexed from, uint256 amount); event Allocated(address indexed to, string indexed purpose, uint256 amount); /** * @dev Returns the amount staked for a given user */ function balanceStaked(address account) public view returns (uint256) { return _staked[account]; } /** * @dev Returns the amount unstaked for a given user */ function balanceUnstaked(address account) public view returns (uint256) { return balanceOf(account); } /** * @dev Stakes `amount` tokens to `caller` and sends the tokens to the contract * * Requirements: * * - the amount should be greater than zero * - the contract can't be paused * - the amount can't be greater than the user balance minus the amount already staked */ function stake(uint256 amount) external { require(amount > 0, "KastaToken: Cannot stake 0 tokens"); require(!paused(), "KastaToken: Cannot stake tokens while paused"); require( !hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "KastaToken: admin role cannot stake tokens" ); uint256 totalUserBalanceUnstaked = balanceUnstaked(_msgSender()); require( totalUserBalanceUnstaked >= amount, "KastaToken: Cannot stake more tokens than unstaked balance" ); _staked[_msgSender()] = balanceStaked(_msgSender()) + amount; require( transfer(address(this), amount), "KastaToken: Transfer staked tokens failed" ); emit Staked(_msgSender(), amount); } /** * @dev Unstakes `amount` tokens from `caller` and return the tokens to the user * * Requirements: * * - the amount should be greater than zero * - the contract cant't be paused * - the amount can't be greater than the user staked balance */ function unstake(uint256 amount) external { require(amount > 0, "KastaToken: Cannot unstake 0 tokens"); require(!paused(), "KastaToken: Cannot unstake tokens while paused"); uint256 userbalanceStaked = balanceStaked(_msgSender()); require( userbalanceStaked >= amount, "KastaToken: Cannot unstake more tokens than staked balance" ); _staked[_msgSender()] = balanceStaked(_msgSender()) - amount; _transfer(address(this), _msgSender(), amount); emit Unstaked(_msgSender(), amount); } /** * @dev Pauses all token transfers. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function pause() public { require( hasRole(PAUSER_ROLE, _msgSender()), "KastaToken: must have pauser role to pause" ); _pause(); } /** * @dev Unpauses all token transfers. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() public { require( hasRole(PAUSER_ROLE, _msgSender()), "KastaToken: must have pauser role to unpause" ); _unpause(); } /** * @dev Allocates `amount` tokens to `to` with a `purpose` * This functions adds transparency to the KastaToken giving the possibility * to check that the token allocation match the company's roadmap * * Requirements: * * - the amount should be greater than zero * - the contract can't be paused * - the caller should be an admin */ function allocate( uint256 amount, address to, string memory purpose ) external { require(amount > 0, "KastaToken: Cannot allocate 0 tokens"); require(!paused(), "KastaToken: Cannot allocate tokens while paused"); require( hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "KastaToken: must have admin role to allocate" ); require( transfer(to, amount), "KastaToken: allocation of tokens failed" ); emit Allocated(to, purpose, amount); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal override(ERC20PausableUpgradeable, ERC20Upgradeable) { super._beforeTokenTransfer(from, to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"string","name":"purpose","type":"string"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Allocated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Unstaked","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"purpose","type":"string"}],"name":"allocate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceUnstaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b506148bb806100206000396000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c80635c975abb1161010f578063a457c2d7116100a2578063ca15c87311610071578063ca15c873146105dd578063d547741f1461060d578063dd62ed3e14610629578063e63ab1e914610659576101f0565b8063a457c2d714610545578063a694fc3a14610575578063a9059cbb14610591578063bd3a13f6146105c1576101f0565b80639010d07c116100de5780639010d07c146104a957806391d14854146104d957806395d89b4114610509578063a217fddf14610527576101f0565b80635c975abb1461043557806370a082311461045357806379cc6790146104835780638456cb591461049f576101f0565b80632f2ff15d116101875780633f4ba83a116101565780633f4ba83a146103c357806342966c68146103cd5780634ec67f6e146103e95780635b17b08514610419576101f0565b80632f2ff15d1461033d578063313ce5671461035957806336568abe146103775780633950935114610393576101f0565b806323b872dd116101c357806323b872dd14610291578063240908db146102c1578063248a9ca3146102f15780632e17de7814610321576101f0565b806301ffc9a7146101f557806306fdde0314610225578063095ea7b31461024357806318160ddd14610273575b600080fd5b61020f600480360381019061020a9190612d94565b610677565b60405161021c9190612ddc565b60405180910390f35b61022d6106f1565b60405161023a9190612e90565b60405180910390f35b61025d60048036038101906102589190612f46565b610783565b60405161026a9190612ddc565b60405180910390f35b61027b6107a1565b6040516102889190612f95565b60405180910390f35b6102ab60048036038101906102a69190612fb0565b6107ab565b6040516102b89190612ddc565b60405180910390f35b6102db60048036038101906102d69190613003565b6108a3565b6040516102e89190612f95565b60405180910390f35b61030b60048036038101906103069190613066565b6108b5565b60405161031891906130a2565b60405180910390f35b61033b600480360381019061033691906130bd565b6108d6565b005b610357600480360381019061035291906130ea565b610a89565b005b610361610abe565b60405161036e9190613146565b60405180910390f35b610391600480360381019061038c91906130ea565b610ac7565b005b6103ad60048036038101906103a89190612f46565b610afc565b6040516103ba9190612ddc565b60405180910390f35b6103cb610ba8565b005b6103e760048036038101906103e291906130bd565b610c22565b005b61040360048036038101906103fe9190613003565b610c36565b6040516104109190612f95565b60405180910390f35b610433600480360381019061042e9190613296565b610c80565b005b61043d610e10565b60405161044a9190612ddc565b60405180910390f35b61046d60048036038101906104689190613003565b610e27565b60405161047a9190612f95565b60405180910390f35b61049d60048036038101906104989190612f46565b610e70565b005b6104a7610eeb565b005b6104c360048036038101906104be9190613305565b610f65565b6040516104d09190613354565b60405180910390f35b6104f360048036038101906104ee91906130ea565b610f95565b6040516105009190612ddc565b60405180910390f35b610511611001565b60405161051e9190612e90565b60405180910390f35b61052f611093565b60405161053c91906130a2565b60405180910390f35b61055f600480360381019061055a9190612f46565b61109a565b60405161056c9190612ddc565b60405180910390f35b61058f600480360381019061058a91906130bd565b611185565b005b6105ab60048036038101906105a69190612f46565b6113c3565b6040516105b89190612ddc565b60405180910390f35b6105db60048036038101906105d6919061336f565b6113e1565b005b6105f760048036038101906105f29190613066565b6114ca565b6040516106049190612f95565b60405180910390f35b610627600480360381019061062291906130ea565b6114ef565b005b610643600480360381019061063e919061340e565b611524565b6040516106509190612f95565b60405180910390f35b6106616115ab565b60405161066e91906130a2565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ea57506106e9826115cf565b5b9050919050565b6060603680546107009061347d565b80601f016020809104026020016040519081016040528092919081815260200182805461072c9061347d565b80156107795780601f1061074e57610100808354040283529160200191610779565b820191906000526020600020905b81548152906001019060200180831161075c57829003601f168201915b5050505050905090565b6000610797610790611649565b8484611651565b6001905092915050565b6000603554905090565b60006107b884848461181c565b6000603460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610803611649565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087a90613521565b60405180910390fd5b6108978561088f611649565b858403611651565b60019150509392505050565b60006108ae82610e27565b9050919050565b600061015f6000838152602001908152602001600020600101549050919050565b60008111610919576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610910906135b3565b60405180910390fd5b610921610e10565b15610961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095890613645565b60405180910390fd5b600061097361096e611649565b610c36565b9050818110156109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af906136d7565b60405180910390fd5b816109c96109c4611649565b610c36565b6109d39190613726565b6101c360006109e0611649565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610a3030610a2a611649565b8461181c565b610a38611649565b73ffffffffffffffffffffffffffffffffffffffff167f0f5bb82176feb1b5e747e28471aa92156a04d9f3ab9f45f28e2d704232b93f7583604051610a7d9190612f95565b60405180910390a25050565b610a938282611aa0565b610ab9816101916000858152602001908152602001600020611ac990919063ffffffff16565b505050565b60006012905090565b610ad18282611af9565b610af7816101916000858152602001908152602001600020611b7c90919063ffffffff16565b505050565b6000610b9e610b09611649565b848460346000610b17611649565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b99919061375a565b611651565b6001905092915050565b610bd97f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610bd4611649565b610f95565b610c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0f90613822565b60405180910390fd5b610c20611bac565b565b610c33610c2d611649565b82611c4e565b50565b60006101c360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008311610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba906138b4565b60405180910390fd5b610ccb610e10565b15610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0290613946565b60405180910390fd5b610d1f6000801b610d1a611649565b610f95565b610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d55906139d8565b60405180910390fd5b610d6882846113c3565b610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90613a6a565b60405180910390fd5b80604051610db59190613ac6565b60405180910390208273ffffffffffffffffffffffffffffffffffffffff167fe2e23e812329e9843f4e0b0180d51d0f554ad9e9187976407db93e25b707170585604051610e039190612f95565b60405180910390a3505050565b600060c960009054906101000a900460ff16905090565b6000603360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610e8383610e7e611649565b611524565b905081811015610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90613b4f565b60405180910390fd5b610edc83610ed4611649565b848403611651565b610ee68383611c4e565b505050565b610f1c7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610f17611649565b610f95565b610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613be1565b60405180910390fd5b610f63611e27565b565b6000610f8d826101916000868152602001908152602001600020611eca90919063ffffffff16565b905092915050565b600061015f600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060603780546110109061347d565b80601f016020809104026020016040519081016040528092919081815260200182805461103c9061347d565b80156110895780601f1061105e57610100808354040283529160200191611089565b820191906000526020600020905b81548152906001019060200180831161106c57829003601f168201915b5050505050905090565b6000801b81565b600080603460006110a9611649565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90613c73565b60405180910390fd5b61117a611171611649565b85858403611651565b600191505092915050565b600081116111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf90613d05565b60405180910390fd5b6111d0610e10565b15611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790613d97565b60405180910390fd5b6112246000801b61121f611649565b610f95565b15611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b90613e29565b60405180910390fd5b6000611276611271611649565b6108a3565b9050818110156112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b290613ebb565b60405180910390fd5b816112cc6112c7611649565b610c36565b6112d6919061375a565b6101c360006112e3611649565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061132b30836113c3565b61136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190613f4d565b60405180910390fd5b611372611649565b73ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d836040516113b79190612f95565b60405180910390a25050565b60006113d76113d0611649565b848461181c565b6001905092915050565b600060019054906101000a900460ff1680611407575060008054906101000a900460ff16155b611446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143d90613fdf565b60405180910390fd5b60008060019054906101000a900460ff161590508015611496576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6114a285858585611ee4565b80156114c35760008060016101000a81548160ff0219169083151502179055505b5050505050565b60006114e86101916000848152602001908152602001600020611fe7565b9050919050565b6114f98282611ffc565b61151f816101916000858152602001908152602001600020611b7c90919063ffffffff16565b505050565b6000603460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611642575061164182612025565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b890614071565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172890614103565b60405180910390fd5b80603460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161180f9190612f95565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390614195565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f390614227565b60405180910390fd5b61190783838361208f565b6000603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561198e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611985906142b9565b60405180910390fd5b818103603360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a23919061375a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a879190612f95565b60405180910390a3611a9a84848461209f565b50505050565b611aa9826108b5565b611aba81611ab5611649565b6120a4565b611ac48383612141565b505050565b6000611af1836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612223565b905092915050565b611b01611649565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b659061434b565b60405180910390fd5b611b788282612293565b5050565b6000611ba4836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612376565b905092915050565b611bb4610e10565b611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea906143b7565b60405180910390fd5b600060c960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611c37611649565b604051611c449190613354565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb590614449565b60405180910390fd5b611cca8260008361208f565b6000603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d48906144db565b60405180910390fd5b818103603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160356000828254611da99190613726565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e0e9190612f95565b60405180910390a3611e228360008461209f565b505050565b611e2f610e10565b15611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690614547565b60405180910390fd5b600160c960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611eb3611649565b604051611ec09190613354565b60405180910390a1565b6000611ed9836000018361248a565b60001c905092915050565b600060019054906101000a900460ff1680611f0a575060008054906101000a900460ff16155b611f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4090613fdf565b60405180910390fd5b60008060019054906101000a900460ff161590508015611f99576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b611fa16124b5565b611fab858561258e565b611fb3612697565b611fbf85858585612770565b8015611fe05760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000611ff582600001612857565b9050919050565b612005826108b5565b61201681612011611649565b6120a4565b6120208383612293565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61209a838383612868565b505050565b505050565b6120ae8282610f95565b61213d576120d38173ffffffffffffffffffffffffffffffffffffffff1660146128c0565b6120e18360001c60206128c0565b6040516020016120f29291906145ff565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121349190612e90565b60405180910390fd5b5050565b61214b8282610f95565b61221f57600161015f600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506121c4611649565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600061222f8383612afc565b61228857826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061228d565b600090505b92915050565b61229d8282610f95565b1561237257600061015f600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612317611649565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000808360010160008481526020019081526020016000205490506000811461247e5760006001826123a89190613726565b90506000600186600001805490506123c09190613726565b905081811461242f5760008660000182815481106123e1576123e0614639565b5b906000526020600020015490508087600001848154811061240557612404614639565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b8560000180548061244357612442614668565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612484565b60009150505b92915050565b60008260000182815481106124a2576124a1614639565b5b9060005260206000200154905092915050565b600060019054906101000a900460ff16806124db575060008054906101000a900460ff16155b61251a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251190613fdf565b60405180910390fd5b60008060019054906101000a900460ff16159050801561256a576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b801561258b5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806125b4575060008054906101000a900460ff16155b6125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea90613fdf565b60405180910390fd5b60008060019054906101000a900460ff161590508015612643576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8260369080519060200190612659929190612c85565b508160379080519060200190612670929190612c85565b5080156126925760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff16806126bd575060008054906101000a900460ff16155b6126fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f390613fdf565b60405180910390fd5b60008060019054906101000a900460ff16159050801561274c576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b801561276d5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680612796575060008054906101000a900460ff16155b6127d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cc90613fdf565b60405180910390fd5b60008060019054906101000a900460ff161590508015612825576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b61282f8284612b1f565b80156128505760008060016101000a81548160ff0219169083151502179055505b5050505050565b600081600001805490509050919050565b612873838383612c80565b61287b610e10565b156128bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b290614709565b60405180910390fd5b505050565b6060600060028360026128d39190614729565b6128dd919061375a565b67ffffffffffffffff8111156128f6576128f561316b565b5b6040519080825280601f01601f1916602001820160405280156129285781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106129605761295f614639565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106129c4576129c3614639565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612a049190614729565b612a0e919061375a565b90505b6001811115612aae577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612a5057612a4f614639565b5b1a60f81b828281518110612a6757612a66614639565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612aa790614783565b9050612a11565b5060008414612af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae9906147f9565b60405180910390fd5b8091505092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8690614865565b60405180910390fd5b612b9b6000838361208f565b8060356000828254612bad919061375a565b9250508190555080603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c03919061375a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612c689190612f95565b60405180910390a3612c7c6000838361209f565b5050565b505050565b828054612c919061347d565b90600052602060002090601f016020900481019282612cb35760008555612cfa565b82601f10612ccc57805160ff1916838001178555612cfa565b82800160010185558215612cfa579182015b82811115612cf9578251825591602001919060010190612cde565b5b509050612d079190612d0b565b5090565b5b80821115612d24576000816000905550600101612d0c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d7181612d3c565b8114612d7c57600080fd5b50565b600081359050612d8e81612d68565b92915050565b600060208284031215612daa57612da9612d32565b5b6000612db884828501612d7f565b91505092915050565b60008115159050919050565b612dd681612dc1565b82525050565b6000602082019050612df16000830184612dcd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e31578082015181840152602081019050612e16565b83811115612e40576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e6282612df7565b612e6c8185612e02565b9350612e7c818560208601612e13565b612e8581612e46565b840191505092915050565b60006020820190508181036000830152612eaa8184612e57565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612edd82612eb2565b9050919050565b612eed81612ed2565b8114612ef857600080fd5b50565b600081359050612f0a81612ee4565b92915050565b6000819050919050565b612f2381612f10565b8114612f2e57600080fd5b50565b600081359050612f4081612f1a565b92915050565b60008060408385031215612f5d57612f5c612d32565b5b6000612f6b85828601612efb565b9250506020612f7c85828601612f31565b9150509250929050565b612f8f81612f10565b82525050565b6000602082019050612faa6000830184612f86565b92915050565b600080600060608486031215612fc957612fc8612d32565b5b6000612fd786828701612efb565b9350506020612fe886828701612efb565b9250506040612ff986828701612f31565b9150509250925092565b60006020828403121561301957613018612d32565b5b600061302784828501612efb565b91505092915050565b6000819050919050565b61304381613030565b811461304e57600080fd5b50565b6000813590506130608161303a565b92915050565b60006020828403121561307c5761307b612d32565b5b600061308a84828501613051565b91505092915050565b61309c81613030565b82525050565b60006020820190506130b76000830184613093565b92915050565b6000602082840312156130d3576130d2612d32565b5b60006130e184828501612f31565b91505092915050565b6000806040838503121561310157613100612d32565b5b600061310f85828601613051565b925050602061312085828601612efb565b9150509250929050565b600060ff82169050919050565b6131408161312a565b82525050565b600060208201905061315b6000830184613137565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131a382612e46565b810181811067ffffffffffffffff821117156131c2576131c161316b565b5b80604052505050565b60006131d5612d28565b90506131e1828261319a565b919050565b600067ffffffffffffffff8211156132015761320061316b565b5b61320a82612e46565b9050602081019050919050565b82818337600083830152505050565b6000613239613234846131e6565b6131cb565b90508281526020810184848401111561325557613254613166565b5b613260848285613217565b509392505050565b600082601f83011261327d5761327c613161565b5b813561328d848260208601613226565b91505092915050565b6000806000606084860312156132af576132ae612d32565b5b60006132bd86828701612f31565b93505060206132ce86828701612efb565b925050604084013567ffffffffffffffff8111156132ef576132ee612d37565b5b6132fb86828701613268565b9150509250925092565b6000806040838503121561331c5761331b612d32565b5b600061332a85828601613051565b925050602061333b85828601612f31565b9150509250929050565b61334e81612ed2565b82525050565b60006020820190506133696000830184613345565b92915050565b6000806000806080858703121561338957613388612d32565b5b600085013567ffffffffffffffff8111156133a7576133a6612d37565b5b6133b387828801613268565b945050602085013567ffffffffffffffff8111156133d4576133d3612d37565b5b6133e087828801613268565b93505060406133f187828801612f31565b925050606061340287828801612efb565b91505092959194509250565b6000806040838503121561342557613424612d32565b5b600061343385828601612efb565b925050602061344485828601612efb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061349557607f821691505b602082108114156134a9576134a861344e565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061350b602883612e02565b9150613516826134af565b604082019050919050565b6000602082019050818103600083015261353a816134fe565b9050919050565b7f4b61737461546f6b656e3a2043616e6e6f7420756e7374616b65203020746f6b60008201527f656e730000000000000000000000000000000000000000000000000000000000602082015250565b600061359d602383612e02565b91506135a882613541565b604082019050919050565b600060208201905081810360008301526135cc81613590565b9050919050565b7f4b61737461546f6b656e3a2043616e6e6f7420756e7374616b6520746f6b656e60008201527f73207768696c6520706175736564000000000000000000000000000000000000602082015250565b600061362f602e83612e02565b915061363a826135d3565b604082019050919050565b6000602082019050818103600083015261365e81613622565b9050919050565b7f4b61737461546f6b656e3a2043616e6e6f7420756e7374616b65206d6f72652060008201527f746f6b656e73207468616e207374616b65642062616c616e6365000000000000602082015250565b60006136c1603a83612e02565b91506136cc82613665565b604082019050919050565b600060208201905081810360008301526136f0816136b4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061373182612f10565b915061373c83612f10565b92508282101561374f5761374e6136f7565b5b828203905092915050565b600061376582612f10565b915061377083612f10565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137a5576137a46136f7565b5b828201905092915050565b7f4b61737461546f6b656e3a206d75737420686176652070617573657220726f6c60008201527f6520746f20756e70617573650000000000000000000000000000000000000000602082015250565b600061380c602c83612e02565b9150613817826137b0565b604082019050919050565b6000602082019050818103600083015261383b816137ff565b9050919050565b7f4b61737461546f6b656e3a2043616e6e6f7420616c6c6f63617465203020746f60008201527f6b656e7300000000000000000000000000000000000000000000000000000000602082015250565b600061389e602483612e02565b91506138a982613842565b604082019050919050565b600060208201905081810360008301526138cd81613891565b9050919050565b7f4b61737461546f6b656e3a2043616e6e6f7420616c6c6f6361746520746f6b6560008201527f6e73207768696c65207061757365640000000000000000000000000000000000602082015250565b6000613930602f83612e02565b915061393b826138d4565b604082019050919050565b6000602082019050818103600083015261395f81613923565b9050919050565b7f4b61737461546f6b656e3a206d75737420686176652061646d696e20726f6c6560008201527f20746f20616c6c6f636174650000000000000000000000000000000000000000602082015250565b60006139c2602c83612e02565b91506139cd82613966565b604082019050919050565b600060208201905081810360008301526139f1816139b5565b9050919050565b7f4b61737461546f6b656e3a20616c6c6f636174696f6e206f6620746f6b656e7360008201527f206661696c656400000000000000000000000000000000000000000000000000602082015250565b6000613a54602783612e02565b9150613a5f826139f8565b604082019050919050565b60006020820190508181036000830152613a8381613a47565b9050919050565b600081905092915050565b6000613aa082612df7565b613aaa8185613a8a565b9350613aba818560208601612e13565b80840191505092915050565b6000613ad28284613a95565b915081905092915050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000613b39602483612e02565b9150613b4482613add565b604082019050919050565b60006020820190508181036000830152613b6881613b2c565b9050919050565b7f4b61737461546f6b656e3a206d75737420686176652070617573657220726f6c60008201527f6520746f20706175736500000000000000000000000000000000000000000000602082015250565b6000613bcb602a83612e02565b9150613bd682613b6f565b604082019050919050565b60006020820190508181036000830152613bfa81613bbe565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613c5d602583612e02565b9150613c6882613c01565b604082019050919050565b60006020820190508181036000830152613c8c81613c50565b9050919050565b7f4b61737461546f6b656e3a2043616e6e6f74207374616b65203020746f6b656e60008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cef602183612e02565b9150613cfa82613c93565b604082019050919050565b60006020820190508181036000830152613d1e81613ce2565b9050919050565b7f4b61737461546f6b656e3a2043616e6e6f74207374616b6520746f6b656e732060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b6000613d81602c83612e02565b9150613d8c82613d25565b604082019050919050565b60006020820190508181036000830152613db081613d74565b9050919050565b7f4b61737461546f6b656e3a2061646d696e20726f6c652063616e6e6f7420737460008201527f616b6520746f6b656e7300000000000000000000000000000000000000000000602082015250565b6000613e13602a83612e02565b9150613e1e82613db7565b604082019050919050565b60006020820190508181036000830152613e4281613e06565b9050919050565b7f4b61737461546f6b656e3a2043616e6e6f74207374616b65206d6f726520746f60008201527f6b656e73207468616e20756e7374616b65642062616c616e6365000000000000602082015250565b6000613ea5603a83612e02565b9150613eb082613e49565b604082019050919050565b60006020820190508181036000830152613ed481613e98565b9050919050565b7f4b61737461546f6b656e3a205472616e73666572207374616b656420746f6b6560008201527f6e73206661696c65640000000000000000000000000000000000000000000000602082015250565b6000613f37602983612e02565b9150613f4282613edb565b604082019050919050565b60006020820190508181036000830152613f6681613f2a565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000613fc9602e83612e02565b9150613fd482613f6d565b604082019050919050565b60006020820190508181036000830152613ff881613fbc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061405b602483612e02565b915061406682613fff565b604082019050919050565b6000602082019050818103600083015261408a8161404e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006140ed602283612e02565b91506140f882614091565b604082019050919050565b6000602082019050818103600083015261411c816140e0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061417f602583612e02565b915061418a82614123565b604082019050919050565b600060208201905081810360008301526141ae81614172565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614211602383612e02565b915061421c826141b5565b604082019050919050565b6000602082019050818103600083015261424081614204565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006142a3602683612e02565b91506142ae82614247565b604082019050919050565b600060208201905081810360008301526142d281614296565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000614335602f83612e02565b9150614340826142d9565b604082019050919050565b6000602082019050818103600083015261436481614328565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006143a1601483612e02565b91506143ac8261436b565b602082019050919050565b600060208201905081810360008301526143d081614394565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614433602183612e02565b915061443e826143d7565b604082019050919050565b6000602082019050818103600083015261446281614426565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006144c5602283612e02565b91506144d082614469565b604082019050919050565b600060208201905081810360008301526144f4816144b8565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614531601083612e02565b915061453c826144fb565b602082019050919050565b6000602082019050818103600083015261456081614524565b9050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b600061459d601783613a8a565b91506145a882614567565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006145e9601183613a8a565b91506145f4826145b3565b601182019050919050565b600061460a82614590565b91506146168285613a95565b9150614621826145dc565b915061462d8284613a95565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b60006146f3602a83612e02565b91506146fe82614697565b604082019050919050565b60006020820190508181036000830152614722816146e6565b9050919050565b600061473482612f10565b915061473f83612f10565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614778576147776136f7565b5b828202905092915050565b600061478e82612f10565b915060008214156147a2576147a16136f7565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006147e3602083612e02565b91506147ee826147ad565b602082019050919050565b60006020820190508181036000830152614812816147d6565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061484f601f83612e02565b915061485a82614819565b602082019050919050565b6000602082019050818103600083015261487e81614842565b905091905056fea2646970667358221220651c7d39f090ea4277cfb2d247df39ddba4b258346c9705eb7b1c9aa7df7182d64736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101f05760003560e01c80635c975abb1161010f578063a457c2d7116100a2578063ca15c87311610071578063ca15c873146105dd578063d547741f1461060d578063dd62ed3e14610629578063e63ab1e914610659576101f0565b8063a457c2d714610545578063a694fc3a14610575578063a9059cbb14610591578063bd3a13f6146105c1576101f0565b80639010d07c116100de5780639010d07c146104a957806391d14854146104d957806395d89b4114610509578063a217fddf14610527576101f0565b80635c975abb1461043557806370a082311461045357806379cc6790146104835780638456cb591461049f576101f0565b80632f2ff15d116101875780633f4ba83a116101565780633f4ba83a146103c357806342966c68146103cd5780634ec67f6e146103e95780635b17b08514610419576101f0565b80632f2ff15d1461033d578063313ce5671461035957806336568abe146103775780633950935114610393576101f0565b806323b872dd116101c357806323b872dd14610291578063240908db146102c1578063248a9ca3146102f15780632e17de7814610321576101f0565b806301ffc9a7146101f557806306fdde0314610225578063095ea7b31461024357806318160ddd14610273575b600080fd5b61020f600480360381019061020a9190612d94565b610677565b60405161021c9190612ddc565b60405180910390f35b61022d6106f1565b60405161023a9190612e90565b60405180910390f35b61025d60048036038101906102589190612f46565b610783565b60405161026a9190612ddc565b60405180910390f35b61027b6107a1565b6040516102889190612f95565b60405180910390f35b6102ab60048036038101906102a69190612fb0565b6107ab565b6040516102b89190612ddc565b60405180910390f35b6102db60048036038101906102d69190613003565b6108a3565b6040516102e89190612f95565b60405180910390f35b61030b60048036038101906103069190613066565b6108b5565b60405161031891906130a2565b60405180910390f35b61033b600480360381019061033691906130bd565b6108d6565b005b610357600480360381019061035291906130ea565b610a89565b005b610361610abe565b60405161036e9190613146565b60405180910390f35b610391600480360381019061038c91906130ea565b610ac7565b005b6103ad60048036038101906103a89190612f46565b610afc565b6040516103ba9190612ddc565b60405180910390f35b6103cb610ba8565b005b6103e760048036038101906103e291906130bd565b610c22565b005b61040360048036038101906103fe9190613003565b610c36565b6040516104109190612f95565b60405180910390f35b610433600480360381019061042e9190613296565b610c80565b005b61043d610e10565b60405161044a9190612ddc565b60405180910390f35b61046d60048036038101906104689190613003565b610e27565b60405161047a9190612f95565b60405180910390f35b61049d60048036038101906104989190612f46565b610e70565b005b6104a7610eeb565b005b6104c360048036038101906104be9190613305565b610f65565b6040516104d09190613354565b60405180910390f35b6104f360048036038101906104ee91906130ea565b610f95565b6040516105009190612ddc565b60405180910390f35b610511611001565b60405161051e9190612e90565b60405180910390f35b61052f611093565b60405161053c91906130a2565b60405180910390f35b61055f600480360381019061055a9190612f46565b61109a565b60405161056c9190612ddc565b60405180910390f35b61058f600480360381019061058a91906130bd565b611185565b005b6105ab60048036038101906105a69190612f46565b6113c3565b6040516105b89190612ddc565b60405180910390f35b6105db60048036038101906105d6919061336f565b6113e1565b005b6105f760048036038101906105f29190613066565b6114ca565b6040516106049190612f95565b60405180910390f35b610627600480360381019061062291906130ea565b6114ef565b005b610643600480360381019061063e919061340e565b611524565b6040516106509190612f95565b60405180910390f35b6106616115ab565b60405161066e91906130a2565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ea57506106e9826115cf565b5b9050919050565b6060603680546107009061347d565b80601f016020809104026020016040519081016040528092919081815260200182805461072c9061347d565b80156107795780601f1061074e57610100808354040283529160200191610779565b820191906000526020600020905b81548152906001019060200180831161075c57829003601f168201915b5050505050905090565b6000610797610790611649565b8484611651565b6001905092915050565b6000603554905090565b60006107b884848461181c565b6000603460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610803611649565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087a90613521565b60405180910390fd5b6108978561088f611649565b858403611651565b60019150509392505050565b60006108ae82610e27565b9050919050565b600061015f6000838152602001908152602001600020600101549050919050565b60008111610919576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610910906135b3565b60405180910390fd5b610921610e10565b15610961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095890613645565b60405180910390fd5b600061097361096e611649565b610c36565b9050818110156109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af906136d7565b60405180910390fd5b816109c96109c4611649565b610c36565b6109d39190613726565b6101c360006109e0611649565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610a3030610a2a611649565b8461181c565b610a38611649565b73ffffffffffffffffffffffffffffffffffffffff167f0f5bb82176feb1b5e747e28471aa92156a04d9f3ab9f45f28e2d704232b93f7583604051610a7d9190612f95565b60405180910390a25050565b610a938282611aa0565b610ab9816101916000858152602001908152602001600020611ac990919063ffffffff16565b505050565b60006012905090565b610ad18282611af9565b610af7816101916000858152602001908152602001600020611b7c90919063ffffffff16565b505050565b6000610b9e610b09611649565b848460346000610b17611649565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b99919061375a565b611651565b6001905092915050565b610bd97f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610bd4611649565b610f95565b610c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0f90613822565b60405180910390fd5b610c20611bac565b565b610c33610c2d611649565b82611c4e565b50565b60006101c360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60008311610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba906138b4565b60405180910390fd5b610ccb610e10565b15610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0290613946565b60405180910390fd5b610d1f6000801b610d1a611649565b610f95565b610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d55906139d8565b60405180910390fd5b610d6882846113c3565b610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90613a6a565b60405180910390fd5b80604051610db59190613ac6565b60405180910390208273ffffffffffffffffffffffffffffffffffffffff167fe2e23e812329e9843f4e0b0180d51d0f554ad9e9187976407db93e25b707170585604051610e039190612f95565b60405180910390a3505050565b600060c960009054906101000a900460ff16905090565b6000603360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610e8383610e7e611649565b611524565b905081811015610ec8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebf90613b4f565b60405180910390fd5b610edc83610ed4611649565b848403611651565b610ee68383611c4e565b505050565b610f1c7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610f17611649565b610f95565b610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5290613be1565b60405180910390fd5b610f63611e27565b565b6000610f8d826101916000868152602001908152602001600020611eca90919063ffffffff16565b905092915050565b600061015f600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060603780546110109061347d565b80601f016020809104026020016040519081016040528092919081815260200182805461103c9061347d565b80156110895780601f1061105e57610100808354040283529160200191611089565b820191906000526020600020905b81548152906001019060200180831161106c57829003601f168201915b5050505050905090565b6000801b81565b600080603460006110a9611649565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d90613c73565b60405180910390fd5b61117a611171611649565b85858403611651565b600191505092915050565b600081116111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf90613d05565b60405180910390fd5b6111d0610e10565b15611210576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120790613d97565b60405180910390fd5b6112246000801b61121f611649565b610f95565b15611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b90613e29565b60405180910390fd5b6000611276611271611649565b6108a3565b9050818110156112bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b290613ebb565b60405180910390fd5b816112cc6112c7611649565b610c36565b6112d6919061375a565b6101c360006112e3611649565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061132b30836113c3565b61136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190613f4d565b60405180910390fd5b611372611649565b73ffffffffffffffffffffffffffffffffffffffff167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d836040516113b79190612f95565b60405180910390a25050565b60006113d76113d0611649565b848461181c565b6001905092915050565b600060019054906101000a900460ff1680611407575060008054906101000a900460ff16155b611446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143d90613fdf565b60405180910390fd5b60008060019054906101000a900460ff161590508015611496576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6114a285858585611ee4565b80156114c35760008060016101000a81548160ff0219169083151502179055505b5050505050565b60006114e86101916000848152602001908152602001600020611fe7565b9050919050565b6114f98282611ffc565b61151f816101916000858152602001908152602001600020611b7c90919063ffffffff16565b505050565b6000603460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611642575061164182612025565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b890614071565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172890614103565b60405180910390fd5b80603460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161180f9190612f95565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390614195565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f390614227565b60405180910390fd5b61190783838361208f565b6000603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561198e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611985906142b9565b60405180910390fd5b818103603360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a23919061375a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a879190612f95565b60405180910390a3611a9a84848461209f565b50505050565b611aa9826108b5565b611aba81611ab5611649565b6120a4565b611ac48383612141565b505050565b6000611af1836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612223565b905092915050565b611b01611649565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b659061434b565b60405180910390fd5b611b788282612293565b5050565b6000611ba4836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612376565b905092915050565b611bb4610e10565b611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea906143b7565b60405180910390fd5b600060c960006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611c37611649565b604051611c449190613354565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb590614449565b60405180910390fd5b611cca8260008361208f565b6000603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d48906144db565b60405180910390fd5b818103603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160356000828254611da99190613726565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611e0e9190612f95565b60405180910390a3611e228360008461209f565b505050565b611e2f610e10565b15611e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6690614547565b60405180910390fd5b600160c960006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611eb3611649565b604051611ec09190613354565b60405180910390a1565b6000611ed9836000018361248a565b60001c905092915050565b600060019054906101000a900460ff1680611f0a575060008054906101000a900460ff16155b611f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4090613fdf565b60405180910390fd5b60008060019054906101000a900460ff161590508015611f99576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b611fa16124b5565b611fab858561258e565b611fb3612697565b611fbf85858585612770565b8015611fe05760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000611ff582600001612857565b9050919050565b612005826108b5565b61201681612011611649565b6120a4565b6120208383612293565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61209a838383612868565b505050565b505050565b6120ae8282610f95565b61213d576120d38173ffffffffffffffffffffffffffffffffffffffff1660146128c0565b6120e18360001c60206128c0565b6040516020016120f29291906145ff565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121349190612e90565b60405180910390fd5b5050565b61214b8282610f95565b61221f57600161015f600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506121c4611649565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600061222f8383612afc565b61228857826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905061228d565b600090505b92915050565b61229d8282610f95565b1561237257600061015f600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612317611649565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000808360010160008481526020019081526020016000205490506000811461247e5760006001826123a89190613726565b90506000600186600001805490506123c09190613726565b905081811461242f5760008660000182815481106123e1576123e0614639565b5b906000526020600020015490508087600001848154811061240557612404614639565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b8560000180548061244357612442614668565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612484565b60009150505b92915050565b60008260000182815481106124a2576124a1614639565b5b9060005260206000200154905092915050565b600060019054906101000a900460ff16806124db575060008054906101000a900460ff16155b61251a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251190613fdf565b60405180910390fd5b60008060019054906101000a900460ff16159050801561256a576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b801561258b5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff16806125b4575060008054906101000a900460ff16155b6125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea90613fdf565b60405180910390fd5b60008060019054906101000a900460ff161590508015612643576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b8260369080519060200190612659929190612c85565b508160379080519060200190612670929190612c85565b5080156126925760008060016101000a81548160ff0219169083151502179055505b505050565b600060019054906101000a900460ff16806126bd575060008054906101000a900460ff16155b6126fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f390613fdf565b60405180910390fd5b60008060019054906101000a900460ff16159050801561274c576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b801561276d5760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680612796575060008054906101000a900460ff16155b6127d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cc90613fdf565b60405180910390fd5b60008060019054906101000a900460ff161590508015612825576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b61282f8284612b1f565b80156128505760008060016101000a81548160ff0219169083151502179055505b5050505050565b600081600001805490509050919050565b612873838383612c80565b61287b610e10565b156128bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b290614709565b60405180910390fd5b505050565b6060600060028360026128d39190614729565b6128dd919061375a565b67ffffffffffffffff8111156128f6576128f561316b565b5b6040519080825280601f01601f1916602001820160405280156129285781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106129605761295f614639565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106129c4576129c3614639565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612a049190614729565b612a0e919061375a565b90505b6001811115612aae577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612a5057612a4f614639565b5b1a60f81b828281518110612a6757612a66614639565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612aa790614783565b9050612a11565b5060008414612af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae9906147f9565b60405180910390fd5b8091505092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8690614865565b60405180910390fd5b612b9b6000838361208f565b8060356000828254612bad919061375a565b9250508190555080603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c03919061375a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612c689190612f95565b60405180910390a3612c7c6000838361209f565b5050565b505050565b828054612c919061347d565b90600052602060002090601f016020900481019282612cb35760008555612cfa565b82601f10612ccc57805160ff1916838001178555612cfa565b82800160010185558215612cfa579182015b82811115612cf9578251825591602001919060010190612cde565b5b509050612d079190612d0b565b5090565b5b80821115612d24576000816000905550600101612d0c565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d7181612d3c565b8114612d7c57600080fd5b50565b600081359050612d8e81612d68565b92915050565b600060208284031215612daa57612da9612d32565b5b6000612db884828501612d7f565b91505092915050565b60008115159050919050565b612dd681612dc1565b82525050565b6000602082019050612df16000830184612dcd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e31578082015181840152602081019050612e16565b83811115612e40576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e6282612df7565b612e6c8185612e02565b9350612e7c818560208601612e13565b612e8581612e46565b840191505092915050565b60006020820190508181036000830152612eaa8184612e57565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612edd82612eb2565b9050919050565b612eed81612ed2565b8114612ef857600080fd5b50565b600081359050612f0a81612ee4565b92915050565b6000819050919050565b612f2381612f10565b8114612f2e57600080fd5b50565b600081359050612f4081612f1a565b92915050565b60008060408385031215612f5d57612f5c612d32565b5b6000612f6b85828601612efb565b9250506020612f7c85828601612f31565b9150509250929050565b612f8f81612f10565b82525050565b6000602082019050612faa6000830184612f86565b92915050565b600080600060608486031215612fc957612fc8612d32565b5b6000612fd786828701612efb565b9350506020612fe886828701612efb565b9250506040612ff986828701612f31565b9150509250925092565b60006020828403121561301957613018612d32565b5b600061302784828501612efb565b91505092915050565b6000819050919050565b61304381613030565b811461304e57600080fd5b50565b6000813590506130608161303a565b92915050565b60006020828403121561307c5761307b612d32565b5b600061308a84828501613051565b91505092915050565b61309c81613030565b82525050565b60006020820190506130b76000830184613093565b92915050565b6000602082840312156130d3576130d2612d32565b5b60006130e184828501612f31565b91505092915050565b6000806040838503121561310157613100612d32565b5b600061310f85828601613051565b925050602061312085828601612efb565b9150509250929050565b600060ff82169050919050565b6131408161312a565b82525050565b600060208201905061315b6000830184613137565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6131a382612e46565b810181811067ffffffffffffffff821117156131c2576131c161316b565b5b80604052505050565b60006131d5612d28565b90506131e1828261319a565b919050565b600067ffffffffffffffff8211156132015761320061316b565b5b61320a82612e46565b9050602081019050919050565b82818337600083830152505050565b6000613239613234846131e6565b6131cb565b90508281526020810184848401111561325557613254613166565b5b613260848285613217565b509392505050565b600082601f83011261327d5761327c613161565b5b813561328d848260208601613226565b91505092915050565b6000806000606084860312156132af576132ae612d32565b5b60006132bd86828701612f31565b93505060206132ce86828701612efb565b925050604084013567ffffffffffffffff8111156132ef576132ee612d37565b5b6132fb86828701613268565b9150509250925092565b6000806040838503121561331c5761331b612d32565b5b600061332a85828601613051565b925050602061333b85828601612f31565b9150509250929050565b61334e81612ed2565b82525050565b60006020820190506133696000830184613345565b92915050565b6000806000806080858703121561338957613388612d32565b5b600085013567ffffffffffffffff8111156133a7576133a6612d37565b5b6133b387828801613268565b945050602085013567ffffffffffffffff8111156133d4576133d3612d37565b5b6133e087828801613268565b93505060406133f187828801612f31565b925050606061340287828801612efb565b91505092959194509250565b6000806040838503121561342557613424612d32565b5b600061343385828601612efb565b925050602061344485828601612efb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061349557607f821691505b602082108114156134a9576134a861344e565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061350b602883612e02565b9150613516826134af565b604082019050919050565b6000602082019050818103600083015261353a816134fe565b9050919050565b7f4b61737461546f6b656e3a2043616e6e6f7420756e7374616b65203020746f6b60008201527f656e730000000000000000000000000000000000000000000000000000000000602082015250565b600061359d602383612e02565b91506135a882613541565b604082019050919050565b600060208201905081810360008301526135cc81613590565b9050919050565b7f4b61737461546f6b656e3a2043616e6e6f7420756e7374616b6520746f6b656e60008201527f73207768696c6520706175736564000000000000000000000000000000000000602082015250565b600061362f602e83612e02565b915061363a826135d3565b604082019050919050565b6000602082019050818103600083015261365e81613622565b9050919050565b7f4b61737461546f6b656e3a2043616e6e6f7420756e7374616b65206d6f72652060008201527f746f6b656e73207468616e207374616b65642062616c616e6365000000000000602082015250565b60006136c1603a83612e02565b91506136cc82613665565b604082019050919050565b600060208201905081810360008301526136f0816136b4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061373182612f10565b915061373c83612f10565b92508282101561374f5761374e6136f7565b5b828203905092915050565b600061376582612f10565b915061377083612f10565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137a5576137a46136f7565b5b828201905092915050565b7f4b61737461546f6b656e3a206d75737420686176652070617573657220726f6c60008201527f6520746f20756e70617573650000000000000000000000000000000000000000602082015250565b600061380c602c83612e02565b9150613817826137b0565b604082019050919050565b6000602082019050818103600083015261383b816137ff565b9050919050565b7f4b61737461546f6b656e3a2043616e6e6f7420616c6c6f63617465203020746f60008201527f6b656e7300000000000000000000000000000000000000000000000000000000602082015250565b600061389e602483612e02565b91506138a982613842565b604082019050919050565b600060208201905081810360008301526138cd81613891565b9050919050565b7f4b61737461546f6b656e3a2043616e6e6f7420616c6c6f6361746520746f6b6560008201527f6e73207768696c65207061757365640000000000000000000000000000000000602082015250565b6000613930602f83612e02565b915061393b826138d4565b604082019050919050565b6000602082019050818103600083015261395f81613923565b9050919050565b7f4b61737461546f6b656e3a206d75737420686176652061646d696e20726f6c6560008201527f20746f20616c6c6f636174650000000000000000000000000000000000000000602082015250565b60006139c2602c83612e02565b91506139cd82613966565b604082019050919050565b600060208201905081810360008301526139f1816139b5565b9050919050565b7f4b61737461546f6b656e3a20616c6c6f636174696f6e206f6620746f6b656e7360008201527f206661696c656400000000000000000000000000000000000000000000000000602082015250565b6000613a54602783612e02565b9150613a5f826139f8565b604082019050919050565b60006020820190508181036000830152613a8381613a47565b9050919050565b600081905092915050565b6000613aa082612df7565b613aaa8185613a8a565b9350613aba818560208601612e13565b80840191505092915050565b6000613ad28284613a95565b915081905092915050565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b6000613b39602483612e02565b9150613b4482613add565b604082019050919050565b60006020820190508181036000830152613b6881613b2c565b9050919050565b7f4b61737461546f6b656e3a206d75737420686176652070617573657220726f6c60008201527f6520746f20706175736500000000000000000000000000000000000000000000602082015250565b6000613bcb602a83612e02565b9150613bd682613b6f565b604082019050919050565b60006020820190508181036000830152613bfa81613bbe565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613c5d602583612e02565b9150613c6882613c01565b604082019050919050565b60006020820190508181036000830152613c8c81613c50565b9050919050565b7f4b61737461546f6b656e3a2043616e6e6f74207374616b65203020746f6b656e60008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613cef602183612e02565b9150613cfa82613c93565b604082019050919050565b60006020820190508181036000830152613d1e81613ce2565b9050919050565b7f4b61737461546f6b656e3a2043616e6e6f74207374616b6520746f6b656e732060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b6000613d81602c83612e02565b9150613d8c82613d25565b604082019050919050565b60006020820190508181036000830152613db081613d74565b9050919050565b7f4b61737461546f6b656e3a2061646d696e20726f6c652063616e6e6f7420737460008201527f616b6520746f6b656e7300000000000000000000000000000000000000000000602082015250565b6000613e13602a83612e02565b9150613e1e82613db7565b604082019050919050565b60006020820190508181036000830152613e4281613e06565b9050919050565b7f4b61737461546f6b656e3a2043616e6e6f74207374616b65206d6f726520746f60008201527f6b656e73207468616e20756e7374616b65642062616c616e6365000000000000602082015250565b6000613ea5603a83612e02565b9150613eb082613e49565b604082019050919050565b60006020820190508181036000830152613ed481613e98565b9050919050565b7f4b61737461546f6b656e3a205472616e73666572207374616b656420746f6b6560008201527f6e73206661696c65640000000000000000000000000000000000000000000000602082015250565b6000613f37602983612e02565b9150613f4282613edb565b604082019050919050565b60006020820190508181036000830152613f6681613f2a565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000613fc9602e83612e02565b9150613fd482613f6d565b604082019050919050565b60006020820190508181036000830152613ff881613fbc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061405b602483612e02565b915061406682613fff565b604082019050919050565b6000602082019050818103600083015261408a8161404e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006140ed602283612e02565b91506140f882614091565b604082019050919050565b6000602082019050818103600083015261411c816140e0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061417f602583612e02565b915061418a82614123565b604082019050919050565b600060208201905081810360008301526141ae81614172565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614211602383612e02565b915061421c826141b5565b604082019050919050565b6000602082019050818103600083015261424081614204565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006142a3602683612e02565b91506142ae82614247565b604082019050919050565b600060208201905081810360008301526142d281614296565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000614335602f83612e02565b9150614340826142d9565b604082019050919050565b6000602082019050818103600083015261436481614328565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006143a1601483612e02565b91506143ac8261436b565b602082019050919050565b600060208201905081810360008301526143d081614394565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614433602183612e02565b915061443e826143d7565b604082019050919050565b6000602082019050818103600083015261446281614426565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006144c5602283612e02565b91506144d082614469565b604082019050919050565b600060208201905081810360008301526144f4816144b8565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000614531601083612e02565b915061453c826144fb565b602082019050919050565b6000602082019050818103600083015261456081614524565b9050919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b600061459d601783613a8a565b91506145a882614567565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b60006145e9601183613a8a565b91506145f4826145b3565b601182019050919050565b600061460a82614590565b91506146168285613a95565b9150614621826145dc565b915061462d8284613a95565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b60006146f3602a83612e02565b91506146fe82614697565b604082019050919050565b60006020820190508181036000830152614722816146e6565b9050919050565b600061473482612f10565b915061473f83612f10565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614778576147776136f7565b5b828202905092915050565b600061478e82612f10565b915060008214156147a2576147a16136f7565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b60006147e3602083612e02565b91506147ee826147ad565b602082019050919050565b60006020820190508181036000830152614812816147d6565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061484f601f83612e02565b915061485a82614819565b602082019050919050565b6000602082019050818103600083015261487e81614842565b905091905056fea2646970667358221220651c7d39f090ea4277cfb2d247df39ddba4b258346c9705eb7b1c9aa7df7182d64736f6c63430008090033
Deployed Bytecode Sourcemap
59182:4848:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33109:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44354:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46521:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45474:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47172:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59937:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14979:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61507:592;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34478:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45316:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35107:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48073:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62599:194;;;:::i;:::-;;55192:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59741:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63202:586;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37009:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45645:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55602:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62254:188;;;:::i;:::-;;33933:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13842:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44573:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12922:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48791:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60382:819;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45985:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57961:254;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34252:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34789:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46223:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59396:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33109:225;33194:4;33233:53;33218:68;;;:11;:68;;;;:108;;;;33290:36;33314:11;33290:23;:36::i;:::-;33218:108;33211:115;;33109:225;;;:::o;44354:100::-;44408:13;44441:5;44434:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44354:100;:::o;46521:169::-;46604:4;46621:39;46630:12;:10;:12::i;:::-;46644:7;46653:6;46621:8;:39::i;:::-;46678:4;46671:11;;46521:169;;;;:::o;45474:108::-;45535:7;45562:12;;45555:19;;45474:108;:::o;47172:492::-;47312:4;47329:36;47339:6;47347:9;47358:6;47329:9;:36::i;:::-;47378:24;47405:11;:19;47417:6;47405:19;;;;;;;;;;;;;;;:33;47425:12;:10;:12::i;:::-;47405:33;;;;;;;;;;;;;;;;47378:60;;47477:6;47457:16;:26;;47449:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;47564:57;47573:6;47581:12;:10;:12::i;:::-;47614:6;47595:16;:25;47564:8;:57::i;:::-;47652:4;47645:11;;;47172:492;;;;;:::o;59937:116::-;60000:7;60027:18;60037:7;60027:9;:18::i;:::-;60020:25;;59937:116;;;:::o;14979:123::-;15045:7;15072:6;:12;15079:4;15072:12;;;;;;;;;;;:22;;;15065:29;;14979:123;;;:::o;61507:592::-;61577:1;61568:6;:10;61560:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;61638:8;:6;:8::i;:::-;61637:9;61629:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61710:25;61738:27;61752:12;:10;:12::i;:::-;61738:13;:27::i;:::-;61710:55;;61821:6;61800:17;:27;;61778:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;61980:6;61950:27;61964:12;:10;:12::i;:::-;61950:13;:27::i;:::-;:36;;;;:::i;:::-;61926:7;:21;61934:12;:10;:12::i;:::-;61926:21;;;;;;;;;;;;;;;:60;;;;61997:46;62015:4;62022:12;:10;:12::i;:::-;62036:6;61997:9;:46::i;:::-;62070:12;:10;:12::i;:::-;62061:30;;;62084:6;62061:30;;;;;;:::i;:::-;;;;;;;;61549:550;61507:592;:::o;34478:218::-;34616:30;34632:4;34638:7;34616:15;:30::i;:::-;34657:31;34680:7;34657:12;:18;34670:4;34657:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;34478:218;;:::o;45316:93::-;45374:5;45399:2;45392:9;;45316:93;:::o;35107:227::-;35248:33;35267:4;35273:7;35248:18;:33::i;:::-;35292:34;35318:7;35292:12;:18;35305:4;35292:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;35107:227;;:::o;48073:215::-;48161:4;48178:80;48187:12;:10;:12::i;:::-;48201:7;48247:10;48210:11;:25;48222:12;:10;:12::i;:::-;48210:25;;;;;;;;;;;;;;;:34;48236:7;48210:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;48178:8;:80::i;:::-;48276:4;48269:11;;48073:215;;;;:::o;62599:194::-;62658:34;59434:24;62679:12;:10;:12::i;:::-;62658:7;:34::i;:::-;62636:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;62775:10;:8;:10::i;:::-;62599:194::o;55192:91::-;55248:27;55254:12;:10;:12::i;:::-;55268:6;55248:5;:27::i;:::-;55192:91;:::o;59741:112::-;59802:7;59829;:16;59837:7;59829:16;;;;;;;;;;;;;;;;59822:23;;59741:112;;;:::o;63202:586::-;63342:1;63333:6;:10;63325:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;63404:8;:6;:8::i;:::-;63403:9;63395:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;63497:41;12967:4;63505:18;;63525:12;:10;:12::i;:::-;63497:7;:41::i;:::-;63475:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;63645:20;63654:2;63658:6;63645:8;:20::i;:::-;63623:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;63764:7;63750:30;;;;;;:::i;:::-;;;;;;;;63760:2;63750:30;;;63773:6;63750:30;;;;;;:::i;:::-;;;;;;;;63202:586;;;:::o;37009:86::-;37056:4;37080:7;;;;;;;;;;;37073:14;;37009:86;:::o;45645:127::-;45719:7;45746:9;:18;45756:7;45746:18;;;;;;;;;;;;;;;;45739:25;;45645:127;;;:::o;55602:368::-;55679:24;55706:32;55716:7;55725:12;:10;:12::i;:::-;55706:9;:32::i;:::-;55679:59;;55777:6;55757:16;:26;;55749:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;55860:58;55869:7;55878:12;:10;:12::i;:::-;55911:6;55892:16;:25;55860:8;:58::i;:::-;55940:22;55946:7;55955:6;55940:5;:22::i;:::-;55668:302;55602:368;;:::o;62254:188::-;62311:34;59434:24;62332:12;:10;:12::i;:::-;62311:7;:34::i;:::-;62289:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;62426:8;:6;:8::i;:::-;62254:188::o;33933:145::-;34015:7;34042:28;34064:5;34042:12;:18;34055:4;34042:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;34035:35;;33933:145;;;;:::o;13842:139::-;13920:4;13944:6;:12;13951:4;13944:12;;;;;;;;;;;:20;;:29;13965:7;13944:29;;;;;;;;;;;;;;;;;;;;;;;;;13937:36;;13842:139;;;;:::o;44573:104::-;44629:13;44662:7;44655:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44573:104;:::o;12922:49::-;12967:4;12922:49;;;:::o;48791:413::-;48884:4;48901:24;48928:11;:25;48940:12;:10;:12::i;:::-;48928:25;;;;;;;;;;;;;;;:34;48954:7;48928:34;;;;;;;;;;;;;;;;48901:61;;49001:15;48981:16;:35;;48973:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;49094:67;49103:12;:10;:12::i;:::-;49117:7;49145:15;49126:16;:34;49094:8;:67::i;:::-;49192:4;49185:11;;;48791:413;;;;:::o;60382:819::-;60450:1;60441:6;:10;60433:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;60509:8;:6;:8::i;:::-;60508:9;60500:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;60600:41;12967:4;60608:18;;60628:12;:10;:12::i;:::-;60600:7;:41::i;:::-;60599:42;60577:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;60724:32;60759:29;60775:12;:10;:12::i;:::-;60759:15;:29::i;:::-;60724:64;;60849:6;60821:24;:34;;60799:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;61008:6;60978:27;60992:12;:10;:12::i;:::-;60978:13;:27::i;:::-;:36;;;;:::i;:::-;60954:7;:21;60962:12;:10;:12::i;:::-;60954:21;;;;;;;;;;;;;;;:60;;;;61047:31;61064:4;61071:6;61047:8;:31::i;:::-;61025:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;61172:12;:10;:12::i;:::-;61165:28;;;61186:6;61165:28;;;;;;:::i;:::-;;;;;;;;60422:779;60382:819;:::o;45985:175::-;46071:4;46088:42;46098:12;:10;:12::i;:::-;46112:9;46123:6;46088:9;:42::i;:::-;46148:4;46141:11;;45985:175;;;;:::o;57961:254::-;4728:13;;;;;;;;;;;:30;;;;4746:12;;;;;;;;;;4745:13;4728:30;4720:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;4822:19;4845:13;;;;;;;;;;;4844:14;4822:36;;4873:14;4869:101;;;4920:4;4904:13;;:20;;;;;;;;;;;;;;;;;;4954:4;4939:12;;:19;;;;;;;;;;;;;;;;;;4869:101;58142:65:::1;58172:4;58178:6;58186:13;58201:5;58142:29;:65::i;:::-;5000:14:::0;4996:68;;;5047:5;5031:13;;:21;;;;;;;;;;;;;;;;;;4996:68;4709:362;57961:254;;;;:::o;34252:134::-;34324:7;34351:27;:12;:18;34364:4;34351:18;;;;;;;;;;;:25;:27::i;:::-;34344:34;;34252:134;;;:::o;34789:223::-;34928:31;34945:4;34951:7;34928:16;:31::i;:::-;34970:34;34996:7;34970:12;:18;34983:4;34970:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;34789:223;;:::o;46223:151::-;46312:7;46339:11;:18;46351:5;46339:18;;;;;;;;;;;;;;;:27;46358:7;46339:27;;;;;;;;;;;;;;;;46332:34;;46223:151;;;;:::o;59396:62::-;59434:24;59396:62;:::o;13535:215::-;13620:4;13659:43;13644:58;;;:11;:58;;;;:98;;;;13706:36;13730:11;13706:23;:36::i;:::-;13644:98;13637:105;;13535:215;;;:::o;5982:98::-;6035:7;6062:10;6055:17;;5982:98;:::o;52475:380::-;52628:1;52611:19;;:5;:19;;;;52603:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52709:1;52690:21;;:7;:21;;;;52682:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52793:6;52763:11;:18;52775:5;52763:18;;;;;;;;;;;;;;;:27;52782:7;52763:27;;;;;;;;;;;;;;;:36;;;;52831:7;52815:32;;52824:5;52815:32;;;52840:6;52815:32;;;;;;:::i;:::-;;;;;;;;52475:380;;;:::o;49694:733::-;49852:1;49834:20;;:6;:20;;;;49826:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;49936:1;49915:23;;:9;:23;;;;49907:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;49991:47;50012:6;50020:9;50031:6;49991:20;:47::i;:::-;50051:21;50075:9;:17;50085:6;50075:17;;;;;;;;;;;;;;;;50051:41;;50128:6;50111:13;:23;;50103:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;50249:6;50233:13;:22;50213:9;:17;50223:6;50213:17;;;;;;;;;;;;;;;:42;;;;50301:6;50277:9;:20;50287:9;50277:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;50342:9;50325:35;;50334:6;50325:35;;;50353:6;50325:35;;;;;;:::i;:::-;;;;;;;;50373:46;50393:6;50401:9;50412:6;50373:19;:46::i;:::-;49815:612;49694:733;;;:::o;15364:147::-;15447:18;15460:4;15447:12;:18::i;:::-;13413:30;13424:4;13430:12;:10;:12::i;:::-;13413:10;:30::i;:::-;15478:25:::1;15489:4;15495:7;15478:10;:25::i;:::-;15364:147:::0;;;:::o;27415:152::-;27485:4;27509:50;27514:3;:10;;27550:5;27534:23;;27526:32;;27509:4;:50::i;:::-;27502:57;;27415:152;;;;:::o;16412:218::-;16519:12;:10;:12::i;:::-;16508:23;;:7;:23;;;16500:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;16596:26;16608:4;16614:7;16596:11;:26::i;:::-;16412:218;;:::o;27743:158::-;27816:4;27840:53;27848:3;:10;;27884:5;27868:23;;27860:32;;27840:7;:53::i;:::-;27833:60;;27743:158;;;;:::o;38068:120::-;37612:8;:6;:8::i;:::-;37604:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;38137:5:::1;38127:7;;:15;;;;;;;;;;;;;;;;;;38158:22;38167:12;:10;:12::i;:::-;38158:22;;;;;;:::i;:::-;;;;;;;;38068:120::o:0;51446:591::-;51549:1;51530:21;;:7;:21;;;;51522:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51602:49;51623:7;51640:1;51644:6;51602:20;:49::i;:::-;51664:22;51689:9;:18;51699:7;51689:18;;;;;;;;;;;;;;;;51664:43;;51744:6;51726:14;:24;;51718:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;51863:6;51846:14;:23;51825:9;:18;51835:7;51825:18;;;;;;;;;;;;;;;:44;;;;51907:6;51891:12;;:22;;;;;;;:::i;:::-;;;;;;;;51957:1;51931:37;;51940:7;51931:37;;;51961:6;51931:37;;;;;;:::i;:::-;;;;;;;;51981:48;52001:7;52018:1;52022:6;51981:19;:48::i;:::-;51511:526;51446:591;;:::o;37809:118::-;37335:8;:6;:8::i;:::-;37334:9;37326:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;37879:4:::1;37869:7;;:14;;;;;;;;;;;;;;;;;;37899:20;37906:12;:10;:12::i;:::-;37899:20;;;;;;:::i;:::-;;;;;;;;37809:118::o:0;28711:158::-;28785:7;28836:22;28840:3;:10;;28852:5;28836:3;:22::i;:::-;28828:31;;28805:56;;28711:158;;;;:::o;58362:404::-;4728:13;;;;;;;;;;;:30;;;;4746:12;;;;;;;;;;4745:13;4728:30;4720:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;4822:19;4845:13;;;;;;;;;;;4844:14;4822:36;;4873:14;4869:101;;;4920:4;4904:13;;:20;;;;;;;;;;;;;;;;;;4954:4;4939:12;;:19;;;;;;;;;;;;;;;;;;4869:101;58556:26:::1;:24;:26::i;:::-;58593:36;58616:4;58622:6;58593:22;:36::i;:::-;58640:32;:30;:32::i;:::-;58683:75;58723:4;58729:6;58737:13;58752:5;58683:39;:75::i;:::-;5000:14:::0;4996:68;;;5047:5;5031:13;;:21;;;;;;;;;;;;;;;;;;4996:68;4709:362;58362:404;;;;:::o;28240:117::-;28303:7;28330:19;28338:3;:10;;28330:7;:19::i;:::-;28323:26;;28240:117;;;:::o;15756:149::-;15840:18;15853:4;15840:12;:18::i;:::-;13413:30;13424:4;13430:12;:10;:12::i;:::-;13413:10;:30::i;:::-;15871:26:::1;15883:4;15889:7;15871:11;:26::i;:::-;15756:149:::0;;;:::o;8251:168::-;8336:4;8375:36;8360:51;;;:11;:51;;;;8353:58;;8251:168;;;:::o;63796:231::-;63975:44;64002:4;64008:2;64012:6;63975:26;:44::i;:::-;63796:231;;;:::o;54184:124::-;;;;:::o;14271:519::-;14352:22;14360:4;14366:7;14352;:22::i;:::-;14347:436;;14540:52;14579:7;14540:52;;14589:2;14540:30;:52::i;:::-;14665:49;14704:4;14696:13;;14711:2;14665:30;:49::i;:::-;14445:292;;;;;;;;;:::i;:::-;;;;;;;;;;;;;14391:380;;;;;;;;;;;:::i;:::-;;;;;;;;14347:436;14271:519;;:::o;17716:229::-;17791:22;17799:4;17805:7;17791;:22::i;:::-;17786:152;;17862:4;17830:6;:12;17837:4;17830:12;;;;;;;;;;;:20;;:29;17851:7;17830:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;17913:12;:10;:12::i;:::-;17886:40;;17904:7;17886:40;;17898:4;17886:40;;;;;;;;;;17786:152;17716:229;;:::o;21330:414::-;21393:4;21415:21;21425:3;21430:5;21415:9;:21::i;:::-;21410:327;;21453:3;:11;;21470:5;21453:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21636:3;:11;;:18;;;;21614:3;:12;;:19;21627:5;21614:19;;;;;;;;;;;:40;;;;21676:4;21669:11;;;;21410:327;21720:5;21713:12;;21330:414;;;;;:::o;17953:230::-;18028:22;18036:4;18042:7;18028;:22::i;:::-;18024:152;;;18099:5;18067:6;:12;18074:4;18067:12;;;;;;;;;;;:20;;:29;18088:7;18067:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;18151:12;:10;:12::i;:::-;18124:40;;18142:7;18124:40;;18136:4;18124:40;;;;;;;;;;18024:152;17953:230;;:::o;21920:1420::-;21986:4;22104:18;22125:3;:12;;:19;22138:5;22125:19;;;;;;;;;;;;22104:40;;22175:1;22161:10;:15;22157:1176;;22536:21;22573:1;22560:10;:14;;;;:::i;:::-;22536:38;;22589:17;22630:1;22609:3;:11;;:18;;;;:22;;;;:::i;:::-;22589:42;;22665:13;22652:9;:26;22648:405;;22699:17;22719:3;:11;;22731:9;22719:22;;;;;;;;:::i;:::-;;;;;;;;;;22699:42;;22873:9;22844:3;:11;;22856:13;22844:26;;;;;;;;:::i;:::-;;;;;;;;;:38;;;;22984:10;22958:3;:12;;:23;22971:9;22958:23;;;;;;;;;;;:36;;;;22680:373;22648:405;23134:3;:11;;:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23229:3;:12;;:19;23242:5;23229:19;;;;;;;;;;;23222:26;;;23272:4;23265:11;;;;;;;22157:1176;23316:5;23309:12;;;21920:1420;;;;;:::o;24104:120::-;24171:7;24198:3;:11;;24210:5;24198:18;;;;;;;;:::i;:::-;;;;;;;;;;24191:25;;24104:120;;;;:::o;5911:65::-;4728:13;;;;;;;;;;;:30;;;;4746:12;;;;;;;;;;4745:13;4728:30;4720:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;4822:19;4845:13;;;;;;;;;;;4844:14;4822:36;;4873:14;4869:101;;;4920:4;4904:13;;:20;;;;;;;;;;;;;;;;;;4954:4;4939:12;;:19;;;;;;;;;;;;;;;;;;4869:101;5000:14;4996:68;;;5047:5;5031:13;;:21;;;;;;;;;;;;;;;;;;4996:68;4709:362;5911:65::o;44127:157::-;4728:13;;;;;;;;;;;:30;;;;4746:12;;;;;;;;;;4745:13;4728:30;4720:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;4822:19;4845:13;;;;;;;;;;;4844:14;4822:36;;4873:14;4869:101;;;4920:4;4904:13;;:20;;;;;;;;;;;;;;;;;;4954:4;4939:12;;:19;;;;;;;;;;;;;;;;;;4869:101;44243:5:::1;44235;:13;;;;;;;;;;;;:::i;:::-;;44269:7;44259;:17;;;;;;;;;;;;:::i;:::-;;5000:14:::0;4996:68;;;5047:5;5031:13;;:21;;;;;;;;;;;;;;;;;;4996:68;4709:362;44127:157;;:::o;55007:71::-;4728:13;;;;;;;;;;;:30;;;;4746:12;;;;;;;;;;4745:13;4728:30;4720:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;4822:19;4845:13;;;;;;;;;;;4844:14;4822:36;;4873:14;4869:101;;;4920:4;4904:13;;:20;;;;;;;;;;;;;;;;;;4954:4;4939:12;;:19;;;;;;;;;;;;;;;;;;4869:101;5000:14;4996:68;;;5047:5;5031:13;;:21;;;;;;;;;;;;;;;;;;4996:68;4709:362;55007:71::o;58774:239::-;4728:13;;;;;;;;;;;:30;;;;4746:12;;;;;;;;;;4745:13;4728:30;4720:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;4822:19;4845:13;;;;;;;;;;;4844:14;4822:36;;4873:14;4869:101;;;4920:4;4904:13;;:20;;;;;;;;;;;;;;;;;;4954:4;4939:12;;:19;;;;;;;;;;;;;;;;;;4869:101;58978:27:::1;58984:5;58991:13;58978:5;:27::i;:::-;5000:14:::0;4996:68;;;5047:5;5031:13;;:21;;;;;;;;;;;;;;;;;;4996:68;4709:362;58774:239;;;;:::o;23641:109::-;23697:7;23724:3;:11;;:18;;;;23717:25;;23641:109;;;:::o;56994:272::-;57137:44;57164:4;57170:2;57174:6;57137:26;:44::i;:::-;57203:8;:6;:8::i;:::-;57202:9;57194:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;56994:272;;;:::o;10161:451::-;10236:13;10262:19;10307:1;10298:6;10294:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;10284:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10262:47;;10320:15;:6;10327:1;10320:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;10346;:6;10353:1;10346:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;10377:9;10402:1;10393:6;10389:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;10377:26;;10372:135;10409:1;10405;:5;10372:135;;;10444:12;10465:3;10457:5;:11;10444:25;;;;;;;:::i;:::-;;;;;10432:6;10439:1;10432:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;10494:1;10484:11;;;;;10412:3;;;;:::i;:::-;;;10372:135;;;;10534:1;10525:5;:10;10517:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;10597:6;10583:21;;;10161:451;;;;:::o;23426:129::-;23499:4;23546:1;23523:3;:12;;:19;23536:5;23523:19;;;;;;;;;;;;:24;;23516:31;;23426:129;;;;:::o;50714:399::-;50817:1;50798:21;;:7;:21;;;;50790:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50868:49;50897:1;50901:7;50910:6;50868:20;:49::i;:::-;50946:6;50930:12;;:22;;;;;;;:::i;:::-;;;;;;;;50985:6;50963:9;:18;50973:7;50963:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;51028:7;51007:37;;51024:1;51007:37;;;51037:6;51007:37;;;;;;:::i;:::-;;;;;;;;51057:48;51085:1;51089:7;51098:6;51057:19;:48::i;:::-;50714:399;;:::o;53455:125::-;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:126::-;2945:7;2985:42;2978:5;2974:54;2963:65;;2908:126;;;:::o;3040:96::-;3077:7;3106:24;3124:5;3106:24;:::i;:::-;3095:35;;3040:96;;;:::o;3142:122::-;3215:24;3233:5;3215:24;:::i;:::-;3208:5;3205:35;3195:63;;3254:1;3251;3244:12;3195:63;3142:122;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:77::-;3452:7;3481:5;3470:16;;3415:77;;;:::o;3498:122::-;3571:24;3589:5;3571:24;:::i;:::-;3564:5;3561:35;3551:63;;3610:1;3607;3600:12;3551:63;3498:122;:::o;3626:139::-;3672:5;3710:6;3697:20;3688:29;;3726:33;3753:5;3726:33;:::i;:::-;3626:139;;;;:::o;3771:474::-;3839:6;3847;3896:2;3884:9;3875:7;3871:23;3867:32;3864:119;;;3902:79;;:::i;:::-;3864:119;4022:1;4047:53;4092:7;4083:6;4072:9;4068:22;4047:53;:::i;:::-;4037:63;;3993:117;4149:2;4175:53;4220:7;4211:6;4200:9;4196:22;4175:53;:::i;:::-;4165:63;;4120:118;3771:474;;;;;:::o;4251:118::-;4338:24;4356:5;4338:24;:::i;:::-;4333:3;4326:37;4251:118;;:::o;4375:222::-;4468:4;4506:2;4495:9;4491:18;4483:26;;4519:71;4587:1;4576:9;4572:17;4563:6;4519:71;:::i;:::-;4375:222;;;;:::o;4603:619::-;4680:6;4688;4696;4745:2;4733:9;4724:7;4720:23;4716:32;4713:119;;;4751:79;;:::i;:::-;4713:119;4871:1;4896:53;4941:7;4932:6;4921:9;4917:22;4896:53;:::i;:::-;4886:63;;4842:117;4998:2;5024:53;5069:7;5060:6;5049:9;5045:22;5024:53;:::i;:::-;5014:63;;4969:118;5126:2;5152:53;5197:7;5188:6;5177:9;5173:22;5152:53;:::i;:::-;5142:63;;5097:118;4603:619;;;;;:::o;5228:329::-;5287:6;5336:2;5324:9;5315:7;5311:23;5307:32;5304:119;;;5342:79;;:::i;:::-;5304:119;5462:1;5487:53;5532:7;5523:6;5512:9;5508:22;5487:53;:::i;:::-;5477:63;;5433:117;5228:329;;;;:::o;5563:77::-;5600:7;5629:5;5618:16;;5563:77;;;:::o;5646:122::-;5719:24;5737:5;5719:24;:::i;:::-;5712:5;5709:35;5699:63;;5758:1;5755;5748:12;5699:63;5646:122;:::o;5774:139::-;5820:5;5858:6;5845:20;5836:29;;5874:33;5901:5;5874:33;:::i;:::-;5774:139;;;;:::o;5919:329::-;5978:6;6027:2;6015:9;6006:7;6002:23;5998:32;5995:119;;;6033:79;;:::i;:::-;5995:119;6153:1;6178:53;6223:7;6214:6;6203:9;6199:22;6178:53;:::i;:::-;6168:63;;6124:117;5919:329;;;;:::o;6254:118::-;6341:24;6359:5;6341:24;:::i;:::-;6336:3;6329:37;6254:118;;:::o;6378:222::-;6471:4;6509:2;6498:9;6494:18;6486:26;;6522:71;6590:1;6579:9;6575:17;6566:6;6522:71;:::i;:::-;6378:222;;;;:::o;6606:329::-;6665:6;6714:2;6702:9;6693:7;6689:23;6685:32;6682:119;;;6720:79;;:::i;:::-;6682:119;6840:1;6865:53;6910:7;6901:6;6890:9;6886:22;6865:53;:::i;:::-;6855:63;;6811:117;6606:329;;;;:::o;6941:474::-;7009:6;7017;7066:2;7054:9;7045:7;7041:23;7037:32;7034:119;;;7072:79;;:::i;:::-;7034:119;7192:1;7217:53;7262:7;7253:6;7242:9;7238:22;7217:53;:::i;:::-;7207:63;;7163:117;7319:2;7345:53;7390:7;7381:6;7370:9;7366:22;7345:53;:::i;:::-;7335:63;;7290:118;6941:474;;;;;:::o;7421:86::-;7456:7;7496:4;7489:5;7485:16;7474:27;;7421:86;;;:::o;7513:112::-;7596:22;7612:5;7596:22;:::i;:::-;7591:3;7584:35;7513:112;;:::o;7631:214::-;7720:4;7758:2;7747:9;7743:18;7735:26;;7771:67;7835:1;7824:9;7820:17;7811:6;7771:67;:::i;:::-;7631:214;;;;:::o;7851:117::-;7960:1;7957;7950:12;7974:117;8083:1;8080;8073:12;8097:180;8145:77;8142:1;8135:88;8242:4;8239:1;8232:15;8266:4;8263:1;8256:15;8283:281;8366:27;8388:4;8366:27;:::i;:::-;8358:6;8354:40;8496:6;8484:10;8481:22;8460:18;8448:10;8445:34;8442:62;8439:88;;;8507:18;;:::i;:::-;8439:88;8547:10;8543:2;8536:22;8326:238;8283:281;;:::o;8570:129::-;8604:6;8631:20;;:::i;:::-;8621:30;;8660:33;8688:4;8680:6;8660:33;:::i;:::-;8570:129;;;:::o;8705:308::-;8767:4;8857:18;8849:6;8846:30;8843:56;;;8879:18;;:::i;:::-;8843:56;8917:29;8939:6;8917:29;:::i;:::-;8909:37;;9001:4;8995;8991:15;8983:23;;8705:308;;;:::o;9019:154::-;9103:6;9098:3;9093;9080:30;9165:1;9156:6;9151:3;9147:16;9140:27;9019:154;;;:::o;9179:412::-;9257:5;9282:66;9298:49;9340:6;9298:49;:::i;:::-;9282:66;:::i;:::-;9273:75;;9371:6;9364:5;9357:21;9409:4;9402:5;9398:16;9447:3;9438:6;9433:3;9429:16;9426:25;9423:112;;;9454:79;;:::i;:::-;9423:112;9544:41;9578:6;9573:3;9568;9544:41;:::i;:::-;9263:328;9179:412;;;;;:::o;9611:340::-;9667:5;9716:3;9709:4;9701:6;9697:17;9693:27;9683:122;;9724:79;;:::i;:::-;9683:122;9841:6;9828:20;9866:79;9941:3;9933:6;9926:4;9918:6;9914:17;9866:79;:::i;:::-;9857:88;;9673:278;9611:340;;;;:::o;9957:799::-;10044:6;10052;10060;10109:2;10097:9;10088:7;10084:23;10080:32;10077:119;;;10115:79;;:::i;:::-;10077:119;10235:1;10260:53;10305:7;10296:6;10285:9;10281:22;10260:53;:::i;:::-;10250:63;;10206:117;10362:2;10388:53;10433:7;10424:6;10413:9;10409:22;10388:53;:::i;:::-;10378:63;;10333:118;10518:2;10507:9;10503:18;10490:32;10549:18;10541:6;10538:30;10535:117;;;10571:79;;:::i;:::-;10535:117;10676:63;10731:7;10722:6;10711:9;10707:22;10676:63;:::i;:::-;10666:73;;10461:288;9957:799;;;;;:::o;10762:474::-;10830:6;10838;10887:2;10875:9;10866:7;10862:23;10858:32;10855:119;;;10893:79;;:::i;:::-;10855:119;11013:1;11038:53;11083:7;11074:6;11063:9;11059:22;11038:53;:::i;:::-;11028:63;;10984:117;11140:2;11166:53;11211:7;11202:6;11191:9;11187:22;11166:53;:::i;:::-;11156:63;;11111:118;10762:474;;;;;:::o;11242:118::-;11329:24;11347:5;11329:24;:::i;:::-;11324:3;11317:37;11242:118;;:::o;11366:222::-;11459:4;11497:2;11486:9;11482:18;11474:26;;11510:71;11578:1;11567:9;11563:17;11554:6;11510:71;:::i;:::-;11366:222;;;;:::o;11594:1125::-;11700:6;11708;11716;11724;11773:3;11761:9;11752:7;11748:23;11744:33;11741:120;;;11780:79;;:::i;:::-;11741:120;11928:1;11917:9;11913:17;11900:31;11958:18;11950:6;11947:30;11944:117;;;11980:79;;:::i;:::-;11944:117;12085:63;12140:7;12131:6;12120:9;12116:22;12085:63;:::i;:::-;12075:73;;11871:287;12225:2;12214:9;12210:18;12197:32;12256:18;12248:6;12245:30;12242:117;;;12278:79;;:::i;:::-;12242:117;12383:63;12438:7;12429:6;12418:9;12414:22;12383:63;:::i;:::-;12373:73;;12168:288;12495:2;12521:53;12566:7;12557:6;12546:9;12542:22;12521:53;:::i;:::-;12511:63;;12466:118;12623:2;12649:53;12694:7;12685:6;12674:9;12670:22;12649:53;:::i;:::-;12639:63;;12594:118;11594:1125;;;;;;;:::o;12725:474::-;12793:6;12801;12850:2;12838:9;12829:7;12825:23;12821:32;12818:119;;;12856:79;;:::i;:::-;12818:119;12976:1;13001:53;13046:7;13037:6;13026:9;13022:22;13001:53;:::i;:::-;12991:63;;12947:117;13103:2;13129:53;13174:7;13165:6;13154:9;13150:22;13129:53;:::i;:::-;13119:63;;13074:118;12725:474;;;;;:::o;13205:180::-;13253:77;13250:1;13243:88;13350:4;13347:1;13340:15;13374:4;13371:1;13364:15;13391:320;13435:6;13472:1;13466:4;13462:12;13452:22;;13519:1;13513:4;13509:12;13540:18;13530:81;;13596:4;13588:6;13584:17;13574:27;;13530:81;13658:2;13650:6;13647:14;13627:18;13624:38;13621:84;;;13677:18;;:::i;:::-;13621:84;13442:269;13391:320;;;:::o;13717:227::-;13857:34;13853:1;13845:6;13841:14;13834:58;13926:10;13921:2;13913:6;13909:15;13902:35;13717:227;:::o;13950:366::-;14092:3;14113:67;14177:2;14172:3;14113:67;:::i;:::-;14106:74;;14189:93;14278:3;14189:93;:::i;:::-;14307:2;14302:3;14298:12;14291:19;;13950:366;;;:::o;14322:419::-;14488:4;14526:2;14515:9;14511:18;14503:26;;14575:9;14569:4;14565:20;14561:1;14550:9;14546:17;14539:47;14603:131;14729:4;14603:131;:::i;:::-;14595:139;;14322:419;;;:::o;14747:222::-;14887:34;14883:1;14875:6;14871:14;14864:58;14956:5;14951:2;14943:6;14939:15;14932:30;14747:222;:::o;14975:366::-;15117:3;15138:67;15202:2;15197:3;15138:67;:::i;:::-;15131:74;;15214:93;15303:3;15214:93;:::i;:::-;15332:2;15327:3;15323:12;15316:19;;14975:366;;;:::o;15347:419::-;15513:4;15551:2;15540:9;15536:18;15528:26;;15600:9;15594:4;15590:20;15586:1;15575:9;15571:17;15564:47;15628:131;15754:4;15628:131;:::i;:::-;15620:139;;15347:419;;;:::o;15772:233::-;15912:34;15908:1;15900:6;15896:14;15889:58;15981:16;15976:2;15968:6;15964:15;15957:41;15772:233;:::o;16011:366::-;16153:3;16174:67;16238:2;16233:3;16174:67;:::i;:::-;16167:74;;16250:93;16339:3;16250:93;:::i;:::-;16368:2;16363:3;16359:12;16352:19;;16011:366;;;:::o;16383:419::-;16549:4;16587:2;16576:9;16572:18;16564:26;;16636:9;16630:4;16626:20;16622:1;16611:9;16607:17;16600:47;16664:131;16790:4;16664:131;:::i;:::-;16656:139;;16383:419;;;:::o;16808:245::-;16948:34;16944:1;16936:6;16932:14;16925:58;17017:28;17012:2;17004:6;17000:15;16993:53;16808:245;:::o;17059:366::-;17201:3;17222:67;17286:2;17281:3;17222:67;:::i;:::-;17215:74;;17298:93;17387:3;17298:93;:::i;:::-;17416:2;17411:3;17407:12;17400:19;;17059:366;;;:::o;17431:419::-;17597:4;17635:2;17624:9;17620:18;17612:26;;17684:9;17678:4;17674:20;17670:1;17659:9;17655:17;17648:47;17712:131;17838:4;17712:131;:::i;:::-;17704:139;;17431:419;;;:::o;17856:180::-;17904:77;17901:1;17894:88;18001:4;17998:1;17991:15;18025:4;18022:1;18015:15;18042:191;18082:4;18102:20;18120:1;18102:20;:::i;:::-;18097:25;;18136:20;18154:1;18136:20;:::i;:::-;18131:25;;18175:1;18172;18169:8;18166:34;;;18180:18;;:::i;:::-;18166:34;18225:1;18222;18218:9;18210:17;;18042:191;;;;:::o;18239:305::-;18279:3;18298:20;18316:1;18298:20;:::i;:::-;18293:25;;18332:20;18350:1;18332:20;:::i;:::-;18327:25;;18486:1;18418:66;18414:74;18411:1;18408:81;18405:107;;;18492:18;;:::i;:::-;18405:107;18536:1;18533;18529:9;18522:16;;18239:305;;;;:::o;18550:231::-;18690:34;18686:1;18678:6;18674:14;18667:58;18759:14;18754:2;18746:6;18742:15;18735:39;18550:231;:::o;18787:366::-;18929:3;18950:67;19014:2;19009:3;18950:67;:::i;:::-;18943:74;;19026:93;19115:3;19026:93;:::i;:::-;19144:2;19139:3;19135:12;19128:19;;18787:366;;;:::o;19159:419::-;19325:4;19363:2;19352:9;19348:18;19340:26;;19412:9;19406:4;19402:20;19398:1;19387:9;19383:17;19376:47;19440:131;19566:4;19440:131;:::i;:::-;19432:139;;19159:419;;;:::o;19584:223::-;19724:34;19720:1;19712:6;19708:14;19701:58;19793:6;19788:2;19780:6;19776:15;19769:31;19584:223;:::o;19813:366::-;19955:3;19976:67;20040:2;20035:3;19976:67;:::i;:::-;19969:74;;20052:93;20141:3;20052:93;:::i;:::-;20170:2;20165:3;20161:12;20154:19;;19813:366;;;:::o;20185:419::-;20351:4;20389:2;20378:9;20374:18;20366:26;;20438:9;20432:4;20428:20;20424:1;20413:9;20409:17;20402:47;20466:131;20592:4;20466:131;:::i;:::-;20458:139;;20185:419;;;:::o;20610:234::-;20750:34;20746:1;20738:6;20734:14;20727:58;20819:17;20814:2;20806:6;20802:15;20795:42;20610:234;:::o;20850:366::-;20992:3;21013:67;21077:2;21072:3;21013:67;:::i;:::-;21006:74;;21089:93;21178:3;21089:93;:::i;:::-;21207:2;21202:3;21198:12;21191:19;;20850:366;;;:::o;21222:419::-;21388:4;21426:2;21415:9;21411:18;21403:26;;21475:9;21469:4;21465:20;21461:1;21450:9;21446:17;21439:47;21503:131;21629:4;21503:131;:::i;:::-;21495:139;;21222:419;;;:::o;21647:231::-;21787:34;21783:1;21775:6;21771:14;21764:58;21856:14;21851:2;21843:6;21839:15;21832:39;21647:231;:::o;21884:366::-;22026:3;22047:67;22111:2;22106:3;22047:67;:::i;:::-;22040:74;;22123:93;22212:3;22123:93;:::i;:::-;22241:2;22236:3;22232:12;22225:19;;21884:366;;;:::o;22256:419::-;22422:4;22460:2;22449:9;22445:18;22437:26;;22509:9;22503:4;22499:20;22495:1;22484:9;22480:17;22473:47;22537:131;22663:4;22537:131;:::i;:::-;22529:139;;22256:419;;;:::o;22681:226::-;22821:34;22817:1;22809:6;22805:14;22798:58;22890:9;22885:2;22877:6;22873:15;22866:34;22681:226;:::o;22913:366::-;23055:3;23076:67;23140:2;23135:3;23076:67;:::i;:::-;23069:74;;23152:93;23241:3;23152:93;:::i;:::-;23270:2;23265:3;23261:12;23254:19;;22913:366;;;:::o;23285:419::-;23451:4;23489:2;23478:9;23474:18;23466:26;;23538:9;23532:4;23528:20;23524:1;23513:9;23509:17;23502:47;23566:131;23692:4;23566:131;:::i;:::-;23558:139;;23285:419;;;:::o;23710:148::-;23812:11;23849:3;23834:18;;23710:148;;;;:::o;23864:377::-;23970:3;23998:39;24031:5;23998:39;:::i;:::-;24053:89;24135:6;24130:3;24053:89;:::i;:::-;24046:96;;24151:52;24196:6;24191:3;24184:4;24177:5;24173:16;24151:52;:::i;:::-;24228:6;24223:3;24219:16;24212:23;;23974:267;23864:377;;;;:::o;24247:275::-;24379:3;24401:95;24492:3;24483:6;24401:95;:::i;:::-;24394:102;;24513:3;24506:10;;24247:275;;;;:::o;24528:223::-;24668:34;24664:1;24656:6;24652:14;24645:58;24737:6;24732:2;24724:6;24720:15;24713:31;24528:223;:::o;24757:366::-;24899:3;24920:67;24984:2;24979:3;24920:67;:::i;:::-;24913:74;;24996:93;25085:3;24996:93;:::i;:::-;25114:2;25109:3;25105:12;25098:19;;24757:366;;;:::o;25129:419::-;25295:4;25333:2;25322:9;25318:18;25310:26;;25382:9;25376:4;25372:20;25368:1;25357:9;25353:17;25346:47;25410:131;25536:4;25410:131;:::i;:::-;25402:139;;25129:419;;;:::o;25554:229::-;25694:34;25690:1;25682:6;25678:14;25671:58;25763:12;25758:2;25750:6;25746:15;25739:37;25554:229;:::o;25789:366::-;25931:3;25952:67;26016:2;26011:3;25952:67;:::i;:::-;25945:74;;26028:93;26117:3;26028:93;:::i;:::-;26146:2;26141:3;26137:12;26130:19;;25789:366;;;:::o;26161:419::-;26327:4;26365:2;26354:9;26350:18;26342:26;;26414:9;26408:4;26404:20;26400:1;26389:9;26385:17;26378:47;26442:131;26568:4;26442:131;:::i;:::-;26434:139;;26161:419;;;:::o;26586:224::-;26726:34;26722:1;26714:6;26710:14;26703:58;26795:7;26790:2;26782:6;26778:15;26771:32;26586:224;:::o;26816:366::-;26958:3;26979:67;27043:2;27038:3;26979:67;:::i;:::-;26972:74;;27055:93;27144:3;27055:93;:::i;:::-;27173:2;27168:3;27164:12;27157:19;;26816:366;;;:::o;27188:419::-;27354:4;27392:2;27381:9;27377:18;27369:26;;27441:9;27435:4;27431:20;27427:1;27416:9;27412:17;27405:47;27469:131;27595:4;27469:131;:::i;:::-;27461:139;;27188:419;;;:::o;27613:220::-;27753:34;27749:1;27741:6;27737:14;27730:58;27822:3;27817:2;27809:6;27805:15;27798:28;27613:220;:::o;27839:366::-;27981:3;28002:67;28066:2;28061:3;28002:67;:::i;:::-;27995:74;;28078:93;28167:3;28078:93;:::i;:::-;28196:2;28191:3;28187:12;28180:19;;27839:366;;;:::o;28211:419::-;28377:4;28415:2;28404:9;28400:18;28392:26;;28464:9;28458:4;28454:20;28450:1;28439:9;28435:17;28428:47;28492:131;28618:4;28492:131;:::i;:::-;28484:139;;28211:419;;;:::o;28636:231::-;28776:34;28772:1;28764:6;28760:14;28753:58;28845:14;28840:2;28832:6;28828:15;28821:39;28636:231;:::o;28873:366::-;29015:3;29036:67;29100:2;29095:3;29036:67;:::i;:::-;29029:74;;29112:93;29201:3;29112:93;:::i;:::-;29230:2;29225:3;29221:12;29214:19;;28873:366;;;:::o;29245:419::-;29411:4;29449:2;29438:9;29434:18;29426:26;;29498:9;29492:4;29488:20;29484:1;29473:9;29469:17;29462:47;29526:131;29652:4;29526:131;:::i;:::-;29518:139;;29245:419;;;:::o;29670:229::-;29810:34;29806:1;29798:6;29794:14;29787:58;29879:12;29874:2;29866:6;29862:15;29855:37;29670:229;:::o;29905:366::-;30047:3;30068:67;30132:2;30127:3;30068:67;:::i;:::-;30061:74;;30144:93;30233:3;30144:93;:::i;:::-;30262:2;30257:3;30253:12;30246:19;;29905:366;;;:::o;30277:419::-;30443:4;30481:2;30470:9;30466:18;30458:26;;30530:9;30524:4;30520:20;30516:1;30505:9;30501:17;30494:47;30558:131;30684:4;30558:131;:::i;:::-;30550:139;;30277:419;;;:::o;30702:245::-;30842:34;30838:1;30830:6;30826:14;30819:58;30911:28;30906:2;30898:6;30894:15;30887:53;30702:245;:::o;30953:366::-;31095:3;31116:67;31180:2;31175:3;31116:67;:::i;:::-;31109:74;;31192:93;31281:3;31192:93;:::i;:::-;31310:2;31305:3;31301:12;31294:19;;30953:366;;;:::o;31325:419::-;31491:4;31529:2;31518:9;31514:18;31506:26;;31578:9;31572:4;31568:20;31564:1;31553:9;31549:17;31542:47;31606:131;31732:4;31606:131;:::i;:::-;31598:139;;31325:419;;;:::o;31750:228::-;31890:34;31886:1;31878:6;31874:14;31867:58;31959:11;31954:2;31946:6;31942:15;31935:36;31750:228;:::o;31984:366::-;32126:3;32147:67;32211:2;32206:3;32147:67;:::i;:::-;32140:74;;32223:93;32312:3;32223:93;:::i;:::-;32341:2;32336:3;32332:12;32325:19;;31984:366;;;:::o;32356:419::-;32522:4;32560:2;32549:9;32545:18;32537:26;;32609:9;32603:4;32599:20;32595:1;32584:9;32580:17;32573:47;32637:131;32763:4;32637:131;:::i;:::-;32629:139;;32356:419;;;:::o;32781:233::-;32921:34;32917:1;32909:6;32905:14;32898:58;32990:16;32985:2;32977:6;32973:15;32966:41;32781:233;:::o;33020:366::-;33162:3;33183:67;33247:2;33242:3;33183:67;:::i;:::-;33176:74;;33259:93;33348:3;33259:93;:::i;:::-;33377:2;33372:3;33368:12;33361:19;;33020:366;;;:::o;33392:419::-;33558:4;33596:2;33585:9;33581:18;33573:26;;33645:9;33639:4;33635:20;33631:1;33620:9;33616:17;33609:47;33673:131;33799:4;33673:131;:::i;:::-;33665:139;;33392:419;;;:::o;33817:223::-;33957:34;33953:1;33945:6;33941:14;33934:58;34026:6;34021:2;34013:6;34009:15;34002:31;33817:223;:::o;34046:366::-;34188:3;34209:67;34273:2;34268:3;34209:67;:::i;:::-;34202:74;;34285:93;34374:3;34285:93;:::i;:::-;34403:2;34398:3;34394:12;34387:19;;34046:366;;;:::o;34418:419::-;34584:4;34622:2;34611:9;34607:18;34599:26;;34671:9;34665:4;34661:20;34657:1;34646:9;34642:17;34635:47;34699:131;34825:4;34699:131;:::i;:::-;34691:139;;34418:419;;;:::o;34843:221::-;34983:34;34979:1;34971:6;34967:14;34960:58;35052:4;35047:2;35039:6;35035:15;35028:29;34843:221;:::o;35070:366::-;35212:3;35233:67;35297:2;35292:3;35233:67;:::i;:::-;35226:74;;35309:93;35398:3;35309:93;:::i;:::-;35427:2;35422:3;35418:12;35411:19;;35070:366;;;:::o;35442:419::-;35608:4;35646:2;35635:9;35631:18;35623:26;;35695:9;35689:4;35685:20;35681:1;35670:9;35666:17;35659:47;35723:131;35849:4;35723:131;:::i;:::-;35715:139;;35442:419;;;:::o;35867:224::-;36007:34;36003:1;35995:6;35991:14;35984:58;36076:7;36071:2;36063:6;36059:15;36052:32;35867:224;:::o;36097:366::-;36239:3;36260:67;36324:2;36319:3;36260:67;:::i;:::-;36253:74;;36336:93;36425:3;36336:93;:::i;:::-;36454:2;36449:3;36445:12;36438:19;;36097:366;;;:::o;36469:419::-;36635:4;36673:2;36662:9;36658:18;36650:26;;36722:9;36716:4;36712:20;36708:1;36697:9;36693:17;36686:47;36750:131;36876:4;36750:131;:::i;:::-;36742:139;;36469:419;;;:::o;36894:222::-;37034:34;37030:1;37022:6;37018:14;37011:58;37103:5;37098:2;37090:6;37086:15;37079:30;36894:222;:::o;37122:366::-;37264:3;37285:67;37349:2;37344:3;37285:67;:::i;:::-;37278:74;;37361:93;37450:3;37361:93;:::i;:::-;37479:2;37474:3;37470:12;37463:19;;37122:366;;;:::o;37494:419::-;37660:4;37698:2;37687:9;37683:18;37675:26;;37747:9;37741:4;37737:20;37733:1;37722:9;37718:17;37711:47;37775:131;37901:4;37775:131;:::i;:::-;37767:139;;37494:419;;;:::o;37919:225::-;38059:34;38055:1;38047:6;38043:14;38036:58;38128:8;38123:2;38115:6;38111:15;38104:33;37919:225;:::o;38150:366::-;38292:3;38313:67;38377:2;38372:3;38313:67;:::i;:::-;38306:74;;38389:93;38478:3;38389:93;:::i;:::-;38507:2;38502:3;38498:12;38491:19;;38150:366;;;:::o;38522:419::-;38688:4;38726:2;38715:9;38711:18;38703:26;;38775:9;38769:4;38765:20;38761:1;38750:9;38746:17;38739:47;38803:131;38929:4;38803:131;:::i;:::-;38795:139;;38522:419;;;:::o;38947:234::-;39087:34;39083:1;39075:6;39071:14;39064:58;39156:17;39151:2;39143:6;39139:15;39132:42;38947:234;:::o;39187:366::-;39329:3;39350:67;39414:2;39409:3;39350:67;:::i;:::-;39343:74;;39426:93;39515:3;39426:93;:::i;:::-;39544:2;39539:3;39535:12;39528:19;;39187:366;;;:::o;39559:419::-;39725:4;39763:2;39752:9;39748:18;39740:26;;39812:9;39806:4;39802:20;39798:1;39787:9;39783:17;39776:47;39840:131;39966:4;39840:131;:::i;:::-;39832:139;;39559:419;;;:::o;39984:170::-;40124:22;40120:1;40112:6;40108:14;40101:46;39984:170;:::o;40160:366::-;40302:3;40323:67;40387:2;40382:3;40323:67;:::i;:::-;40316:74;;40399:93;40488:3;40399:93;:::i;:::-;40517:2;40512:3;40508:12;40501:19;;40160:366;;;:::o;40532:419::-;40698:4;40736:2;40725:9;40721:18;40713:26;;40785:9;40779:4;40775:20;40771:1;40760:9;40756:17;40749:47;40813:131;40939:4;40813:131;:::i;:::-;40805:139;;40532:419;;;:::o;40957:220::-;41097:34;41093:1;41085:6;41081:14;41074:58;41166:3;41161:2;41153:6;41149:15;41142:28;40957:220;:::o;41183:366::-;41325:3;41346:67;41410:2;41405:3;41346:67;:::i;:::-;41339:74;;41422:93;41511:3;41422:93;:::i;:::-;41540:2;41535:3;41531:12;41524:19;;41183:366;;;:::o;41555:419::-;41721:4;41759:2;41748:9;41744:18;41736:26;;41808:9;41802:4;41798:20;41794:1;41783:9;41779:17;41772:47;41836:131;41962:4;41836:131;:::i;:::-;41828:139;;41555:419;;;:::o;41980:221::-;42120:34;42116:1;42108:6;42104:14;42097:58;42189:4;42184:2;42176:6;42172:15;42165:29;41980:221;:::o;42207:366::-;42349:3;42370:67;42434:2;42429:3;42370:67;:::i;:::-;42363:74;;42446:93;42535:3;42446:93;:::i;:::-;42564:2;42559:3;42555:12;42548:19;;42207:366;;;:::o;42579:419::-;42745:4;42783:2;42772:9;42768:18;42760:26;;42832:9;42826:4;42822:20;42818:1;42807:9;42803:17;42796:47;42860:131;42986:4;42860:131;:::i;:::-;42852:139;;42579:419;;;:::o;43004:166::-;43144:18;43140:1;43132:6;43128:14;43121:42;43004:166;:::o;43176:366::-;43318:3;43339:67;43403:2;43398:3;43339:67;:::i;:::-;43332:74;;43415:93;43504:3;43415:93;:::i;:::-;43533:2;43528:3;43524:12;43517:19;;43176:366;;;:::o;43548:419::-;43714:4;43752:2;43741:9;43737:18;43729:26;;43801:9;43795:4;43791:20;43787:1;43776:9;43772:17;43765:47;43829:131;43955:4;43829:131;:::i;:::-;43821:139;;43548:419;;;:::o;43973:173::-;44113:25;44109:1;44101:6;44097:14;44090:49;43973:173;:::o;44152:402::-;44312:3;44333:85;44415:2;44410:3;44333:85;:::i;:::-;44326:92;;44427:93;44516:3;44427:93;:::i;:::-;44545:2;44540:3;44536:12;44529:19;;44152:402;;;:::o;44560:167::-;44700:19;44696:1;44688:6;44684:14;44677:43;44560:167;:::o;44733:402::-;44893:3;44914:85;44996:2;44991:3;44914:85;:::i;:::-;44907:92;;45008:93;45097:3;45008:93;:::i;:::-;45126:2;45121:3;45117:12;45110:19;;44733:402;;;:::o;45141:967::-;45523:3;45545:148;45689:3;45545:148;:::i;:::-;45538:155;;45710:95;45801:3;45792:6;45710:95;:::i;:::-;45703:102;;45822:148;45966:3;45822:148;:::i;:::-;45815:155;;45987:95;46078:3;46069:6;45987:95;:::i;:::-;45980:102;;46099:3;46092:10;;45141:967;;;;;:::o;46114:180::-;46162:77;46159:1;46152:88;46259:4;46256:1;46249:15;46283:4;46280:1;46273:15;46300:180;46348:77;46345:1;46338:88;46445:4;46442:1;46435:15;46469:4;46466:1;46459:15;46486:229;46626:34;46622:1;46614:6;46610:14;46603:58;46695:12;46690:2;46682:6;46678:15;46671:37;46486:229;:::o;46721:366::-;46863:3;46884:67;46948:2;46943:3;46884:67;:::i;:::-;46877:74;;46960:93;47049:3;46960:93;:::i;:::-;47078:2;47073:3;47069:12;47062:19;;46721:366;;;:::o;47093:419::-;47259:4;47297:2;47286:9;47282:18;47274:26;;47346:9;47340:4;47336:20;47332:1;47321:9;47317:17;47310:47;47374:131;47500:4;47374:131;:::i;:::-;47366:139;;47093:419;;;:::o;47518:348::-;47558:7;47581:20;47599:1;47581:20;:::i;:::-;47576:25;;47615:20;47633:1;47615:20;:::i;:::-;47610:25;;47803:1;47735:66;47731:74;47728:1;47725:81;47720:1;47713:9;47706:17;47702:105;47699:131;;;47810:18;;:::i;:::-;47699:131;47858:1;47855;47851:9;47840:20;;47518:348;;;;:::o;47872:171::-;47911:3;47934:24;47952:5;47934:24;:::i;:::-;47925:33;;47980:4;47973:5;47970:15;47967:41;;;47988:18;;:::i;:::-;47967:41;48035:1;48028:5;48024:13;48017:20;;47872:171;;;:::o;48049:182::-;48189:34;48185:1;48177:6;48173:14;48166:58;48049:182;:::o;48237:366::-;48379:3;48400:67;48464:2;48459:3;48400:67;:::i;:::-;48393:74;;48476:93;48565:3;48476:93;:::i;:::-;48594:2;48589:3;48585:12;48578:19;;48237:366;;;:::o;48609:419::-;48775:4;48813:2;48802:9;48798:18;48790:26;;48862:9;48856:4;48852:20;48848:1;48837:9;48833:17;48826:47;48890:131;49016:4;48890:131;:::i;:::-;48882:139;;48609:419;;;:::o;49034:181::-;49174:33;49170:1;49162:6;49158:14;49151:57;49034:181;:::o;49221:366::-;49363:3;49384:67;49448:2;49443:3;49384:67;:::i;:::-;49377:74;;49460:93;49549:3;49460:93;:::i;:::-;49578:2;49573:3;49569:12;49562:19;;49221:366;;;:::o;49593:419::-;49759:4;49797:2;49786:9;49782:18;49774:26;;49846:9;49840:4;49836:20;49832:1;49821:9;49817:17;49810:47;49874:131;50000:4;49874:131;:::i;:::-;49866:139;;49593:419;;;:::o
Swarm Source
ipfs://651c7d39f090ea4277cfb2d247df39ddba4b258346c9705eb7b1c9aa7df7182d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.