Move parsing of GID1 to generic Card class

Change-Id: Ie96408b1eecd6fc2595d619f6f0e3af851dacecb
diff --git a/pySim/cards.py b/pySim/cards.py
index a43da9c..61a3707 100644
--- a/pySim/cards.py
+++ b/pySim/cards.py
@@ -145,6 +145,13 @@
 		data, sw = self._scc.update_binary(EF['SPN'], rpad(content, 32))
 		return sw
 
+	def read_gid1(self):
+		(res, sw) = self._scc.read_binary(EF['GID1'])
+		if sw == '9000':
+			return (res, sw)
+		else:
+			return (None, sw)
+
 	# Read the (full) AID for either ISIM or USIM application
 	def read_aid(self, isim = False):