def newData(self, n):
        # [id, guid64(), self.model['id'],
        #  intTime(), self.col.usn(), self.col.tags.join(n.tags),
        #  n.fieldsStr, "", "", 0, ""]
        superData = TextImporter.newData(self, n)

        id, guid, mid, time, usn, tags, fieldsStr, a, b, c, d = superData
        fields = fieldsStr.split("\x1f")
        if len(fields) >= 4:
            noteId   = fields[0]
            front    = fields[1]
            back     = fields[2]
            citation = fields[3]
        else:
            self.log.append(u"Could not import: {0}".format(fields))
            return None

        self.newNoteIds.append(id)

        # change to the actual note ID, now that it's assigned
        if noteId in self.cardStats:
            self.cardStats[id] = self.cardStats[noteId]
            del self.cardStats[noteId]
        if noteId in self.clozeNoteIds:
            ndx = self.clozeNoteIds.index(noteId)
            self.clozeNoteIds[ndx] = id
        fieldsStr = "\x1f".join([str(id), front, back, citation])

        return [id, guid, mid, time, usn, tags, fieldsStr, a, b, c, d]
    def newData(self, n):
        # [id, guid64(), self.model['id'],
        #  intTime(), self.col.usn(), self.col.tags.join(n.tags),
        #  n.fieldsStr, "", "", 0, ""]
        superData = TextImporter.newData(self, n)

        id, guid, mid, time, usn, tags, fieldsStr, a, b, c, d = superData
        fields = fieldsStr.split("\x1f")
        if len(fields) >= 4:
            noteId = fields[0]
            front = fields[1]
            back = fields[2]
            citation = fields[3]
        else:
            self.log.append(u"Could not import: {0}".format(fields))
            return None

        self.newNoteIds.append(id)

        # change to the actual note ID, now that it's assigned
        if noteId in self.cardStats:
            self.cardStats[id] = self.cardStats[noteId]
            del self.cardStats[noteId]
        if noteId in self.clozeNoteIds:
            ndx = self.clozeNoteIds.index(noteId)
            self.clozeNoteIds[ndx] = id
        fieldsStr = "\x1f".join([str(id), front, back, citation])

        return [id, guid, mid, time, usn, tags, fieldsStr, a, b, c, d]