/* Privacy page — editorial document */ function PrivacyApp() { const sections = [ { n: '01', t: 'Introduction', p: [ 'We, Code My Brains Out takes user privacy very seriously. While using our products (including services), we may collect and use your relevant information in order to improve the quality of our services; we will do everything in our power to protect your privacy, as long as it is within a reasonable business scope. We recommend that you read the "Privacy Policy" in detail to get an understanding of what type of information we collect, how we collect this information and how we use it. By using our products or services, you agree to the collection, storage and use of your information as long as it follows the context dictated here and the adherence of local laws and regulations.', 'This "Privacy Policy" utilizes certain professional terms; we will try to explain things as concise as possible, so that you may understand completely.' ] }, { n: '02', t: 'The Collection and Use of Information', p: [ 'We collect and store relevant personal information in order to create your Account, and to provide the necessary support for any follow-up services. If you do not wish to provide this information, you might not be able to register an account, enjoy any or all services provided afterwards, or get the best user experience of certain services. Unregistered users may also use certain functions; we do not collect any personal information from unregistered users.', 'The information we collect includes:', { list: [ 'Any names, email addresses, mailing addresses, username, bio, uploaded profile photos etc. entered or filled in when you register for an account.', 'The information collected when using "Share Photo Stream" or "Share" services.' ]}, 'Other information we collect includes:', { list: [ 'Any geographical locations, system languages, device model and type, or operating system versions while you are interacting with our services using any computers or devices. This information will help us learn more about you, in order to optimize services and provide a better user experience.', 'Any records, including statistical information, key operation paths, error logs, crash logs, etc. you encounter while using our products. This will help us to get a better understanding of the status of our products, in order to improve our services, further optimize user experience and provide higher quality products.', 'Any location information and file creation times for your photos (or similar files); any special characteristics of persons within your photos; and any content contained within your photos. We will use this information to provide "People Aggregation", "Location Aggregation", "Content Labeling", as well as a combination of other custom features using these functions as a basic foundation.' ]}, 'You can turn off your device or turn off GPS location functions; by doing so, we will not obtain your current location information.', 'To make full use of our services in some of our apps, you need to create an account using a valid email address.', 'We may send you notifications via email or system notifications; if you do not wish to receive these messages, you can turn them off for your device or Application by following the relevant prompts.', 'You may stop using our service at any time. When you delete data, a copy might remain on the servers for a period of time before complete deletion; this is due to computer system operation and continuous data backup and archiving features.' ] }, { n: '03', t: 'Web Browser Cookies', p: [ 'Our Site may use "cookies" to enhance User experience. User\'s web browser places cookies on their hard drive for record-keeping purposes and sometimes to track information about them. User may choose to set their web browser to refuse cookies, or to alert you when cookies are being sent. If they do so, note that some parts of the Site may not function properly.' ] }, { n: '04', t: 'Information Disclosure', p: [ 'When you use our products or services, we assume that you allow and agree with these terms. Therefore, we shall not share your information with any third parties, sell or rent your information, or distribute this information to others; with the exclusion of the following situations.', { list: [ 'We can share your information after receiving your confirmation to do so.', 'In order to protect our legal rights and interests, or those of our partners and clients, we may disclose your personal information as permitted by the extent of the law.', 'In order to comply with local laws and regulations, for any mandatory reasons, to maintain the rights of others and to maintain public interests or other laws, we may release your personal information carefully and within the legal framework.', 'When there are mergers, acquisitions or other similar transactions, your personal information may be traded as a resource. If this happens, we will inform you beforehand so that you may decide if you wish to destroy or transfer your personal information.' ]} ] }, { n: '05', t: 'Advertising', p: [ 'Ads appearing on our site may be delivered to Users by advertising partners, who may set cookies. These cookies allow the ad server to recognize your computer each time they send you an online advertisement to compile non personal identification information about you or others who use your computer. This information allows ad networks to, among other things, deliver targeted advertisements that they believe will be of most interest to you. This privacy policy does not cover the use of cookies by any advertisers.' ] }, { n: '06', t: 'Google AdSense', p: [ 'Some of the ads may be served by Google. Google\'s use of the DART cookie enables it to serve ads to Users based on their visit to our Site and other sites on the Internet. DART uses "non personally identifiable information" and does NOT track personal information about you, such as your name, email address, physical address, etc. You may opt out of the use of the DART cookie by visiting the Google ad and content network privacy policy at http://www.google.com/privacy_ads.html' ] }, { n: '07', t: 'Changes to This Policy', p: [ 'When there is an update on the Privacy Policy, we will display the update date at the top of the Policy in an obvious position. We recommend that you carefully check the updated content every time; when you continue to use our products or services, we shall always assume that you agree to the terms and conditions that are effective at the most present time.' ] }, { n: '08', t: 'Contact', p: [ 'If you have any questions, comments, or concerns about this Privacy Policy or our other privacy policies or practices, please contact us via this e-mail address:', 'Email: support@codemybrainsout.com' ] } ]; function renderItem(item, key, isLast) { if (typeof item === 'string') { return (

{item === 'Email: support@codemybrainsout.com' ? ( Email:{' '} support@codemybrainsout.com ) : item}

); } if (item.heading) { return (

{item.heading}

); } if (item.list) { return ( ); } return null; } return (