├── app ├── .gitignore ├── src │ ├── main │ │ ├── healthicon-web.png │ │ ├── sportsicon-web.png │ │ ├── worldicon-web.png │ │ ├── scienceicon-web.png │ │ ├── res │ │ │ ├── drawable │ │ │ │ ├── comic.jpeg │ │ │ │ ├── sports.png │ │ │ │ ├── world.png │ │ │ │ ├── politics.png │ │ │ │ ├── science.png │ │ │ │ ├── entertainment.png │ │ │ │ ├── healthormedical.png │ │ │ │ ├── side_nav_bar.xml │ │ │ │ ├── ic_menu_send.xml │ │ │ │ ├── round_textview.xml │ │ │ │ ├── ic_home.xml │ │ │ │ ├── ic_menu_slideshow.xml │ │ │ │ ├── ic_menu_gallery.xml │ │ │ │ ├── ic_menu_manage.xml │ │ │ │ ├── ic_menu_camera.xml │ │ │ │ ├── ic_menu_share.xml │ │ │ │ └── ic_language_black_24dp.xml │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── values │ │ │ │ ├── attrs.xml │ │ │ │ ├── arrays.xml │ │ │ │ ├── drawables.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ ├── values-v14 │ │ │ │ └── dimens.xml │ │ │ ├── layout │ │ │ │ ├── activity_friends.xml │ │ │ │ ├── flipper.xml │ │ │ │ ├── fragment_main.xml │ │ │ │ ├── app_bar_main.xml │ │ │ │ ├── friends_info.xml │ │ │ │ ├── activity_main.xml │ │ │ │ ├── nav_header_main.xml │ │ │ │ ├── fragment_blank.xml │ │ │ │ ├── item.xml │ │ │ │ ├── friends_merge_page.xml │ │ │ │ └── layout_demo.xml │ │ │ ├── menu │ │ │ │ ├── main.xml │ │ │ │ ├── menu_news_tabbed.xml │ │ │ │ └── activity_main_drawer.xml │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ └── anim │ │ │ │ └── flipy.xml │ │ ├── entertainmenticon-web.png │ │ ├── ic_launcherpolitics-web.png │ │ ├── java │ │ │ └── com │ │ │ │ └── hemant │ │ │ │ └── myfeed │ │ │ │ ├── Util │ │ │ │ ├── CustomItemClickListener.java │ │ │ │ ├── Utils.java │ │ │ │ └── RVAdapter.java │ │ │ │ ├── model │ │ │ │ ├── StringObject.java │ │ │ │ └── Topic.java │ │ │ │ ├── yalantis │ │ │ │ └── flipviewpager │ │ │ │ │ ├── utils │ │ │ │ │ └── FlipSettings.java │ │ │ │ │ ├── adapter │ │ │ │ │ └── BaseFlipAdapter.java │ │ │ │ │ └── view │ │ │ │ │ └── FlipViewPager.java │ │ │ │ ├── views │ │ │ │ └── ZoomOutPageTransformer.java │ │ │ │ ├── AppClass.java │ │ │ │ ├── fragments │ │ │ │ ├── BlankFragment.java │ │ │ │ └── MainFragment.java │ │ │ │ └── Activities │ │ │ │ └── MainActivity.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── hemant │ │ │ └── myfeed │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── hemant │ │ └── myfeed │ │ └── ApplicationTest.java ├── proguard-rules.pro ├── google-services.json └── build.gradle ├── settings.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .idea ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── vcs.xml ├── modules.xml ├── runConfigurations.xml ├── compiler.xml ├── gradle.xml ├── codeStyles │ └── Project.xml └── misc.xml ├── Screenshot_2016-11-08-12-03-12.jpg ├── Screenshot_2016-11-08-12-04-02.jpg ├── Screenshot_2016-11-08-12-04-53.jpg ├── .gitignore ├── README.md ├── gradle.properties ├── gradlew.bat └── gradlew /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /app/src/main/healthicon-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/app/src/main/healthicon-web.png -------------------------------------------------------------------------------- /app/src/main/sportsicon-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/app/src/main/sportsicon-web.png -------------------------------------------------------------------------------- /app/src/main/worldicon-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/app/src/main/worldicon-web.png -------------------------------------------------------------------------------- /app/src/main/scienceicon-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/app/src/main/scienceicon-web.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Screenshot_2016-11-08-12-03-12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/Screenshot_2016-11-08-12-03-12.jpg -------------------------------------------------------------------------------- /Screenshot_2016-11-08-12-04-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/Screenshot_2016-11-08-12-04-02.jpg -------------------------------------------------------------------------------- /Screenshot_2016-11-08-12-04-53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/Screenshot_2016-11-08-12-04-53.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/comic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/app/src/main/res/drawable/comic.jpeg -------------------------------------------------------------------------------- /app/src/main/res/drawable/sports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/app/src/main/res/drawable/sports.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/app/src/main/res/drawable/world.png -------------------------------------------------------------------------------- /app/src/main/entertainmenticon-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/app/src/main/entertainmenticon-web.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/politics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/app/src/main/res/drawable/politics.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/science.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/app/src/main/res/drawable/science.png -------------------------------------------------------------------------------- /app/src/main/ic_launcherpolitics-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/app/src/main/ic_launcherpolitics-web.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/entertainment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/app/src/main/res/drawable/entertainment.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/healthormedical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/app/src/main/res/drawable/healthormedical.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hemant3370/NEWS/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/java/com/hemant/myfeed/Util/CustomItemClickListener.java: -------------------------------------------------------------------------------- 1 | package com.hemant.myfeed.Util; 2 | 3 | import android.view.View; 4 | 5 | /** 6 | * Created by anuraggupta on 31/01/16. 7 | */ 8 | public interface CustomItemClickListener { 9 | void onItemClick(View v, int position); 10 | } -------------------------------------------------------------------------------- /app/src/main/java/com/hemant/myfeed/Util/Utils.java: -------------------------------------------------------------------------------- 1 | package com.hemant.myfeed.Util; 2 | 3 | 4 | 5 | import android.os.Build; 6 | 7 | public class Utils { 8 | 9 | 10 | public static boolean isLollipop = Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP; 11 | 12 | 13 | 14 | 15 | 16 | 17 | } 18 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon May 14 00:47:18 IST 2018 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | org.gradle.jvmargs=-Xmx1536M 7 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip 8 | -------------------------------------------------------------------------------- /app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | @color/indicator_1 5 | @color/indicator_2 6 | @color/indicator_3 7 | @color/indicator_4 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values-v14/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 0dp 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_friends.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu_send.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /app/src/test/java/com/hemant/myfeed/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.hemant.news; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # newsApp 2 |
3 | [NEWS Android App](https://play.google.com/store/apps/details?id=com.hemant.myfeed)
[![Get it on Google Play](http://i.imgur.com/7sq06lr.png)](https://play.google.com/store/apps/details?id=com.hemant.myfeed) 4 |

5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/round_textview.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_home.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/androidTest/java/com/hemant/myfeed/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.hemant.news; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /app/src/main/res/anim/flipy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_news_tabbed.xml: -------------------------------------------------------------------------------- 1 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu_gallery.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu_manage.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/layout/flipper.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 12 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/java/com/hemant/myfeed/model/StringObject.java: -------------------------------------------------------------------------------- 1 | package com.hemant.myfeed.model; 2 | import io.realm.Realm; 3 | import io.realm.RealmObject; 4 | import io.realm.annotations.RealmClass; 5 | 6 | @RealmClass 7 | public class StringObject extends RealmObject { 8 | public String string; 9 | 10 | public StringObject() { 11 | 12 | } 13 | 14 | public static StringObject init(Realm realm, String str) { 15 | StringObject stringObject = realm.createObject(StringObject.class); 16 | stringObject.string = str; 17 | return stringObject; 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /app/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- 1 | 2 | @android:drawable/ic_menu_camera 3 | @android:drawable/ic_menu_gallery 4 | @android:drawable/ic_menu_slideshow 5 | @android:drawable/ic_menu_manage 6 | @android:drawable/ic_menu_share 7 | @android:drawable/ic_menu_send 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu_camera.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_main.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /app/src/main/res/menu/activity_main_drawer.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 14 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu_share.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 19 | 20 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 160dp 5 | 6 | 4dp 7 | 2dp 8 | 16dp 9 | 8dp 10 | 11 | 15 | 8dp 16 | 110dp 17 | 18sp 18 | 19 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | org.gradle.jvmargs=-Xmx1536M -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | NEWS 3 | 4 | Open navigation drawer 5 | Close navigation drawer 6 | 7 | Settings 8 | 9 | 10 | Hello blank fragment 11 | Full Article 12 | Hello World from section: %1$d 13 | NewsTabbedActivity 14 | EXAMPLE 15 | Add widget 16 | Home 17 | Rate 18 | About 19 | NEWS 20 | By Hemant Singh 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | #F4B63E 7 | #EB6460 8 | #10b4a5 9 | #088A85 10 | #7c57e4 11 | #ff4284 12 | #ff8c6a 13 | #ffffff 14 | #000000 15 | #99444444 16 | #616161 17 | #9e9e9e 18 | #5d4037 19 | 20 | #55B3C2 21 | #64A4A4 22 | #66D7B9 23 | #FDBC7D 24 | 25 | -------------------------------------------------------------------------------- /app/src/main/res/layout/app_bar_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 16 | 17 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /app/src/main/java/com/hemant/myfeed/yalantis/flipviewpager/utils/FlipSettings.java: -------------------------------------------------------------------------------- 1 | package com.hemant.myfeed.yalantis.flipviewpager.utils; 2 | 3 | import java.util.HashMap; 4 | import java.util.Map; 5 | 6 | /** 7 | * @author Yalantis 8 | */ 9 | public class FlipSettings { 10 | private int defaultPage; 11 | 12 | private Map pages = new HashMap<>(); 13 | 14 | private FlipSettings(int defaultPage) { 15 | this.defaultPage = defaultPage; 16 | } 17 | 18 | public void savePageState(int position, int page) { 19 | pages.put(position, page); 20 | } 21 | 22 | public Integer getPageForPosition(int position) { 23 | return pages.containsKey(position) ? pages.get(position) : defaultPage; 24 | } 25 | 26 | public int getDefaultPage() { 27 | return defaultPage; 28 | } 29 | 30 | public static class Builder { 31 | 32 | private int defaultPage = 1; 33 | 34 | public Builder defaultPage(int page) { 35 | this.defaultPage = page; 36 | return this; 37 | } 38 | 39 | public FlipSettings build() { 40 | return new FlipSettings(defaultPage); 41 | } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 16 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_language_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/layout/friends_info.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 11 |