gnucash master: Multiple changes pushed

John Ralls jralls at code.gnucash.org
Fri May 20 13:49:48 EDT 2016


Updated	 via  https://github.com/Gnucash/gnucash/commit/50cb9237 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/592ad99d (commit)
	 via  https://github.com/Gnucash/gnucash/commit/818fe73a (commit)
	 via  https://github.com/Gnucash/gnucash/commit/ef8f6375 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/0e17ebdc (commit)
	 via  https://github.com/Gnucash/gnucash/commit/806525f6 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/b20e05d0 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/c1ad6154 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/3b17b44e (commit)
	 via  https://github.com/Gnucash/gnucash/commit/99554bc7 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/709ed8b1 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/043ca5d3 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/7bee0be5 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/f679bf70 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/eaa68cff (commit)
	 via  https://github.com/Gnucash/gnucash/commit/30e46e4e (commit)
	 via  https://github.com/Gnucash/gnucash/commit/9ddea15c (commit)
	 via  https://github.com/Gnucash/gnucash/commit/d5fa61d1 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/5671408b (commit)
	 via  https://github.com/Gnucash/gnucash/commit/9ba3e7a4 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/97a8892f (commit)
	 via  https://github.com/Gnucash/gnucash/commit/5909ff36 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/10d80426 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/b2213d26 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/3299231f (commit)
	from  https://github.com/Gnucash/gnucash/commit/d7a77a3a (commit)



commit 50cb9237dc57a9b0ebe63035e403da09ab9f68a0
Merge: d7a77a3 592ad99
Author: John Ralls <jralls at ceridwen.us>
Date:   Fri May 20 10:09:47 2016 -0700

    Merge branch 'maint'
    
    Includes converting the new regex code in gnc-backend-dbi to use
    std::regex because GRegex uses enums in a way that C++ dislikes.

diff --cc src/app-utils/gnc-sx-instance-model.c
index cd0d526,f1e3f6f..9989788
--- a/src/app-utils/gnc-sx-instance-model.c
+++ b/src/app-utils/gnc-sx-instance-model.c
@@@ -226,19 -249,18 +226,17 @@@ _get_vars_helper(Transaction *txn, voi
              ! gnc_commodity_equal(split_cmdty, first_cmdty))
          {
              GncSxVariable *var;
-             GString *var_name;
+             gchar *var_name;
              const gchar *split_mnemonic, *first_mnemonic;
  
-             var_name = g_string_sized_new(16);
              split_mnemonic = gnc_commodity_get_mnemonic(split_cmdty);
              first_mnemonic = gnc_commodity_get_mnemonic(first_cmdty);
-             g_string_printf(var_name, "%s -> %s",
+             var_name = g_strdup_printf ("%s -> %s",
                              split_mnemonic ? split_mnemonic : "(null)",
                              first_mnemonic ? first_mnemonic : "(null)");
-             var = gnc_sx_variable_new(g_strdup(var_name->str));
+             var = gnc_sx_variable_new(var_name);
              g_hash_table_insert(var_hash, g_strdup(var->name), var);
-             g_string_free(var_name, TRUE);
          }
 -
      }
  
      return 0;
diff --cc src/backend/dbi/gnc-backend-dbi-priv.h
index cbd3feb,6e816e8..7e7db53
--- a/src/backend/dbi/gnc-backend-dbi-priv.h
+++ b/src/backend/dbi/gnc-backend-dbi-priv.h
@@@ -119,5 -113,8 +119,7 @@@ typedef struc
      // transient error and managed to resolve it, but it can't run the original query)
  
  } GncDbiSqlConnection;
 -
+ /* external access required for tests */
 -gchar* adjust_sql_options_string(const gchar *);
++std::string adjust_sql_options_string(const std::string&);
  
  #endif //GNC_BACKEND_DBI_PRIV_H
diff --cc src/backend/dbi/gnc-backend-dbi.cpp
index 601c1b1,f075202..ee37b8c
--- a/src/backend/dbi/gnc-backend-dbi.cpp
+++ b/src/backend/dbi/gnc-backend-dbi.cpp
@@@ -77,20 -68,6 +77,22 @@@ extern "C
  #define GETPID() getpid()
  #endif
  
 +/* For direct access to dbi data structs, sadly needed for datetime */
 +#include <dbi/dbi-dev.h>
 +}
++#include <regex>
++#include <string>
 +
 +#include "gnc-backend-dbi.h"
 +#include "gnc-backend-dbi-priv.h"
 +
 +#if PLATFORM(WINDOWS)
 +#ifdef __STRICT_ANSI_UNSET__
 +#undef __STRICT_ANSI_UNSET__
 +#define __STRICT_ANSI__ 1
 +#endif
 +#endif
 +
  #if LIBDBI_VERSION >= 900
  #define HAVE_LIBDBI_R 1
  static dbi_inst dbi_instance = NULL;
@@@ -813,6 -788,98 +815,70 @@@ gnc_dbi_unlock( QofBackend *qbe 
      qof_backend_set_error( qbe, ERR_BACKEND_SERVER_ERR );
  }
  
+ #define SQL_OPTION_TO_REMOVE "NO_ZERO_DATE"
+ 
+ /* Given an sql_options string returns a copy of the string adjusted as
 - * necessary. In particular if the string contains SQL_OPTION_TO_REMOVE it is
++ * necessary.  In particular if string the contains SQL_OPTION_TO_REMOVE it is
+  * removed along with comma separator.
+  */
 -gchar*
 -adjust_sql_options_string (const gchar *str)
++std::string
++adjust_sql_options_string(const std::string& str)
+ {
 -    GRegex* regex = NULL;
 -    GError* err = NULL;
 -    gchar* regex_str = NULL;
 -    gchar* answer = NULL;
 -
 -    /* Build a regex string that will find the pattern at the beginning, end or
 -     * within the string as a whole word, comma separated.
 -     */
 -    regex_str =  "(?:," SQL_OPTION_TO_REMOVE "$|\\b"
 -        SQL_OPTION_TO_REMOVE "\\b,?)";
 -
 -    // compile the regular expression and check for errors
 -    regex = g_regex_new (regex_str, 0, 0, &err);
 -    if (err != NULL)
 -    {
 -        g_error_free (err);
 -    } else
 -    {
 -        answer = g_regex_replace (regex, str, -1, 0, "", 0, NULL);
 -    }
 -    // in case of errors set the answer to the passed in string
 -    if (!answer)
 -    {
 -        answer = g_strdup (str);
 -    }
 -    g_regex_unref (regex);
 -    return answer;
++/* Regex that finds the SQL_OPTION_TO_REMOVE as the first, last, or middle of a
++ * comma-delimited list.
++ */
++    std::regex reg{"(?:," SQL_OPTION_TO_REMOVE "$|\\b"
++            SQL_OPTION_TO_REMOVE "\\b,?)"};
++    return regex_replace(str, reg, "");
+ }
+ 
+ /* checks mysql sql_options and adjusts if necessary */
+ static void
+ adjust_sql_options (dbi_conn connection)
+ {
 -    dbi_result result;
 -    gint err;
 -    const char* errmsg;
 -
 -    result = dbi_conn_query (connection, "SELECT @@sql_mode");
++    dbi_result result = dbi_conn_query( connection, "SELECT @@sql_mode");
+     if (result)
+     {
 -        const char* str;
 -        dbi_result_first_row (result);
 -        str = dbi_result_get_string_idx (result, 1);
 -        if (str)
++        dbi_result_first_row(result);
++        std::string str{dbi_result_get_string_idx(result, 1)};
++        if (str.empty())
+         {
 -            PINFO("Initial sql_mode: %s", str);
 -            if (strstr (str, SQL_OPTION_TO_REMOVE))
++            const char* errmsg;
++            int err = dbi_conn_error(connection, &errmsg);
++            PERR("Unable to get sql_mode %d : %s", err, errmsg);
++        }
++        else
++        {
++            PINFO("Initial sql_mode: %s", str.c_str());
++            if(str.find(SQL_OPTION_TO_REMOVE) != std::string::npos)
+             {
 -                gchar *adjusted_str;
 -                gchar *set_str;
 -                dbi_result set_result;
 -
 -                adjusted_str = adjust_sql_options_string (str);
 -                PINFO("Setting sql_mode to %s", adjusted_str);
 -                set_str = g_strdup_printf ("SET sql_mode='%s';", adjusted_str);
 -                set_result = dbi_conn_query (connection, set_str);
++                std::string adjusted_str{adjust_sql_options_string(str)};
++                PINFO("Setting sql_mode to %s", adjusted_str.c_str());
++                std::string set_str{"SET sql_mode=" + std::move(adjusted_str)};
++                dbi_result set_result = dbi_conn_query(connection,
++                                                       set_str.c_str());
+                 if (set_result)
+                 {
 -                    dbi_result_free (set_result);
++                    dbi_result_free(set_result);
+                 }
+                 else
+                 {
 -                    err = dbi_conn_error (connection, &errmsg);
 -                    PERR("Unable to set sql_mode %d : %s", err, errmsg );
++                    const char* errmsg;
++                    int err = dbi_conn_error(connection, &errmsg);
++                    PERR("Unable to set sql_mode %d : %s", err, errmsg);
+                 }
 -                g_free (adjusted_str);
 -                g_free (set_str);
+             }
+         }
 -        else
 -        {
 -            err = dbi_conn_error (connection, &errmsg);
 -            PERR("Unable to get sql_mode %d : %s", err, errmsg);
 -        }
+         dbi_result_free(result);
+     }
+     else
+     {
 -        err = dbi_conn_error (connection, &errmsg);
 -        PERR("Unable to read sql_mode %d : %s", err, errmsg );
++        const char* errmsg;
++        int err = dbi_conn_error(connection, &errmsg);
++        PERR("Unable to read sql_mode %d : %s", err, errmsg);
+     }
+ }
+ 
  static void
  gnc_dbi_mysql_session_begin( QofBackend* qbe, QofSession *session,
                               const gchar *book_id, gboolean ignore_lock,
diff --cc src/backend/dbi/test/CMakeLists.txt
index 3445d5d,0b64b14..db2ddcb
--- a/src/backend/dbi/test/CMakeLists.txt
+++ b/src/backend/dbi/test/CMakeLists.txt
@@@ -11,13 -11,13 +11,13 @@@ SET(BACKEND_DBI_TEST_INCLUDE_DIR
    ${LIBDBI_INCLUDE_PATH}
    ${GLIB2_INCLUDE_DIRS}
  )
- SET(BACKEND_DBI_TEST_LIBS gnc-backend-sql gncmod-engine gncmod-test-engine gnc-qof test-core ${LIBDBI_LIBRARY})
+ SET(BACKEND_DBI_TEST_LIBS gnc-backend-sql gncmod-backend-dbi gncmod-engine gncmod-test-engine gnc-qof test-core ${LIBDBI_LIBRARY})
  
  SET(test_dbi_backend_SOURCES
 -  test-backend-dbi.c
 -  test-backend-dbi-basic.c
 -  test-dbi-business-stuff.c
 -  test-dbi-stuff.c
 +  test-backend-dbi.cpp
 +  test-backend-dbi-basic.cpp
 +  test-dbi-business-stuff.cpp
 +  test-dbi-stuff.cpp
  )
  
  # This test does not work on Win32
diff --cc src/backend/dbi/test/test-backend-dbi-basic.cpp
index 47bbce4,04cf131..1025389
--- a/src/backend/dbi/test/test-backend-dbi-basic.cpp
+++ b/src/backend/dbi/test/test-backend-dbi-basic.cpp
@@@ -599,11 -594,47 +599,45 @@@ test_dbi_business_store_and_reload (Fix
      qof_session_end (session_3);
      qof_session_destroy (session_3);
  }
+ #ifndef G_OS_WIN32
+ static void
+ test_adjust_sql_options_string (void)
+ {
 -    gchar *adjusted_str;
+     const char* in[] = {
+         "NO_ZERO_DATE",
+         "NO_ZERO_DATE,something_else",
+         "something,NO_ZERO_DATE",
+         "something,NO_ZERO_DATE,something_else",
+         "NO_ZERO_DATExx",
+         "NO_ZERO_DATExx,something_ else",
+         "something,NO_ZERO_DATExx",
+         "something,NO_ZERO_DATExx,something_ else",
+         "fred,jim,john"
+     };
+     const char* out[] = {
+         "",
+         "something_else",
+         "something",
+         "something,something_else",
+         "NO_ZERO_DATExx",
+         "NO_ZERO_DATExx,something_ else",
+         "something,NO_ZERO_DATExx",
+         "something,NO_ZERO_DATExx,something_ else",
+         "fred,jim,john"
+     };
+ 
 -    size_t i;
 -    for (i = 0; i < sizeof(in) / sizeof(gchar*); i++)
++    for (size_t i = 0; i < sizeof(in) / sizeof(char*); i++)
+     {
 -        gchar *adjusted_str = adjust_sql_options_string (in[i]);
 -        g_assert_cmpstr (out[i],==,adjusted_str);
 -        g_free (adjusted_str);
++        std::string adjusted_str = adjust_sql_options_string(in[i]);
++        g_assert_cmpstr(out[i], ==, adjusted_str.c_str());
+     }
+ }
+ #endif //G_OS_WIN32
 +
  static void
 -create_dbi_test_suite (gchar *dbm_name, gchar *url)
 +create_dbi_test_suite (const char *dbm_name, const char *url)
  {
 -    gchar *subsuite = g_strdup_printf ("%s/%s", suitename, dbm_name);
 +    auto subsuite = g_strdup_printf ("%s/%s", suitename, dbm_name);
      GNC_TEST_ADD (subsuite, "store_and_reload", Fixture, url, setup,
                    test_dbi_store_and_reload, teardown);
      GNC_TEST_ADD (subsuite, "safe_save", Fixture, url, setup_memory,

commit 592ad99ddea4f15a49f9bee42ff27374057c8484
Author: John Ralls <jralls at ceridwen.us>
Date:   Thu May 19 14:23:23 2016 -0700

    Move adjust_sql_options_string declaration to gnc-backend-dbi-priv.h.
    
    It shouldn't be public, it needs to be exported only to the test file.

diff --git a/src/backend/dbi/gnc-backend-dbi-priv.h b/src/backend/dbi/gnc-backend-dbi-priv.h
index 8037e22..6e816e8 100644
--- a/src/backend/dbi/gnc-backend-dbi-priv.h
+++ b/src/backend/dbi/gnc-backend-dbi-priv.h
@@ -114,4 +114,7 @@ typedef struct
 
 } GncDbiSqlConnection;
 
+/* external access required for tests */
+gchar* adjust_sql_options_string(const gchar *);
+
 #endif //GNC_BACKEND_DBI_PRIV_H
diff --git a/src/backend/dbi/gnc-backend-dbi.h b/src/backend/dbi/gnc-backend-dbi.h
index 03466d2..f228134 100644
--- a/src/backend/dbi/gnc-backend-dbi.h
+++ b/src/backend/dbi/gnc-backend-dbi.h
@@ -38,9 +38,6 @@ void gnc_module_init_backend_dbi(void);
  * statically linked into the application. */
 void gnc_module_finalize_backend_dbi(void);
 
-/* external access required for tests */
-gchar* adjust_sql_options_string(const gchar *);
-
 #ifndef GNC_NO_LOADABLE_MODULES
 /** This is the standarized initialization function of a qof_backend
  * GModule, but compiling this can be disabled by defining
diff --git a/src/backend/dbi/test/test-backend-dbi-basic.c b/src/backend/dbi/test/test-backend-dbi-basic.c
index c65442a..04cf131 100644
--- a/src/backend/dbi/test/test-backend-dbi-basic.c
+++ b/src/backend/dbi/test/test-backend-dbi-basic.c
@@ -50,8 +50,6 @@
 #include "gncInvoice.h"
 /* For test_conn_index_functions */
 #include "../gnc-backend-dbi-priv.h"
-/* For test_adjust_options_string */
-#include "../gnc-backend-dbi.h"
 /* For version_control */
 #include <gnc-prefs.h>
 #include <qofsession-p.h>

commit 818fe73a05dec77dbd98fcfb7c7e2fc25c307a13
Author: John Ralls <jralls at ceridwen.us>
Date:   Thu May 19 14:08:55 2016 -0700

    Remove unnecessary g_strdup_printf.
    
    SQL_OPTION_TO_REMOVE is substituted during preprocessing so it can be
    inlined in the string initialization, no need for heap allocation or
    runtime composition.

diff --git a/src/backend/dbi/gnc-backend-dbi.c b/src/backend/dbi/gnc-backend-dbi.c
index e1eeafe..f075202 100644
--- a/src/backend/dbi/gnc-backend-dbi.c
+++ b/src/backend/dbi/gnc-backend-dbi.c
@@ -802,11 +802,11 @@ adjust_sql_options_string (const gchar *str)
     gchar* regex_str = NULL;
     gchar* answer = NULL;
 
-    regex_str = g_strdup_printf( "(?:,%s$|\\b%s\\b,?)",
-        SQL_OPTION_TO_REMOVE, SQL_OPTION_TO_REMOVE );
     /* Build a regex string that will find the pattern at the beginning, end or
      * within the string as a whole word, comma separated.
      */
+    regex_str =  "(?:," SQL_OPTION_TO_REMOVE "$|\\b"
+        SQL_OPTION_TO_REMOVE "\\b,?)";
 
     // compile the regular expression and check for errors
     regex = g_regex_new (regex_str, 0, 0, &err);
@@ -822,7 +822,6 @@ adjust_sql_options_string (const gchar *str)
     {
         answer = g_strdup (str);
     }
-    g_free( regex_str );
     g_regex_unref (regex);
     return answer;
 }

commit ef8f63759fcf40aea858cc6650b93bdffacf3490
Author: John Ralls <jralls at ceridwen.us>
Date:   Thu May 19 14:06:02 2016 -0700

    Fix inconsistent and non-conforming whitespace and comments.

diff --git a/src/backend/dbi/gnc-backend-dbi.c b/src/backend/dbi/gnc-backend-dbi.c
index e58978b..e1eeafe 100644
--- a/src/backend/dbi/gnc-backend-dbi.c
+++ b/src/backend/dbi/gnc-backend-dbi.c
@@ -790,91 +790,94 @@ gnc_dbi_unlock( QofBackend *qbe )
 
 #define SQL_OPTION_TO_REMOVE "NO_ZERO_DATE"
 
-// Given an sql_options string returns a copy of the string adjusted as necessary.
-// In particular if the string contains SQL_OPTION_TO_REMOVE it is removed along with 
-// comma separator.
+/* Given an sql_options string returns a copy of the string adjusted as
+ * necessary. In particular if the string contains SQL_OPTION_TO_REMOVE it is
+ * removed along with comma separator.
+ */
 gchar*
-adjust_sql_options_string( const gchar *str )
+adjust_sql_options_string (const gchar *str)
 {
     GRegex* regex = NULL;
     GError* err = NULL;
     gchar* regex_str = NULL;
     gchar* answer = NULL;
-    
-    // build a regex string that will find the pattern at the beginning, end or
-    // within the string as a whole word, comma separated
+
     regex_str = g_strdup_printf( "(?:,%s$|\\b%s\\b,?)",
         SQL_OPTION_TO_REMOVE, SQL_OPTION_TO_REMOVE );
-    
+    /* Build a regex string that will find the pattern at the beginning, end or
+     * within the string as a whole word, comma separated.
+     */
+
     // compile the regular expression and check for errors
-    regex = g_regex_new( regex_str, 0, 0, &err );
-    if ( err != NULL )
+    regex = g_regex_new (regex_str, 0, 0, &err);
+    if (err != NULL)
     {
         g_error_free (err);
     } else
     {
-        answer = g_regex_replace( regex, str, -1, 0, "", 0, NULL );
+        answer = g_regex_replace (regex, str, -1, 0, "", 0, NULL);
     }
     // in case of errors set the answer to the passed in string
-    if ( !answer )
+    if (!answer)
     {
-        answer = g_strdup( str );
+        answer = g_strdup (str);
     }
     g_free( regex_str );
-    g_regex_unref( regex );
+    g_regex_unref (regex);
     return answer;
 }
 
 /* checks mysql sql_options and adjusts if necessary */
 static void
-adjust_sql_options( dbi_conn connection )
+adjust_sql_options (dbi_conn connection)
 {
     dbi_result result;
     gint err;
     const char* errmsg;
-    
-    result = dbi_conn_query( connection, "SELECT @@sql_mode");
+
+    result = dbi_conn_query (connection, "SELECT @@sql_mode");
     if (result)
     {
         const char* str;
-        dbi_result_first_row(result);
-        str = dbi_result_get_string_idx(result, 1);
+        dbi_result_first_row (result);
+        str = dbi_result_get_string_idx (result, 1);
         if (str)
         {
             PINFO("Initial sql_mode: %s", str);
-            if( strstr( str, SQL_OPTION_TO_REMOVE ) )
+            if (strstr (str, SQL_OPTION_TO_REMOVE))
             {
                 gchar *adjusted_str;
                 gchar *set_str;
                 dbi_result set_result;
-                
-                adjusted_str = adjust_sql_options_string( str );
+
+                adjusted_str = adjust_sql_options_string (str);
                 PINFO("Setting sql_mode to %s", adjusted_str);
-                set_str = g_strdup_printf( "SET sql_mode='%s';", adjusted_str );
-                set_result = dbi_conn_query( connection, set_str);
+                set_str = g_strdup_printf ("SET sql_mode='%s';", adjusted_str);
+                set_result = dbi_conn_query (connection, set_str);
                 if (set_result)
                 {
-                    dbi_result_free( set_result );
-                } else
+                    dbi_result_free (set_result);
+                }
+                else
                 {
-                  err = dbi_conn_error(connection, &errmsg);
-                  PERR("Unable to set sql_mode %d : %s", err, errmsg );
+                    err = dbi_conn_error (connection, &errmsg);
+                    PERR("Unable to set sql_mode %d : %s", err, errmsg );
                 }
-                g_free( adjusted_str );
-                g_free( set_str );
+                g_free (adjusted_str);
+                g_free (set_str);
             }
         }
         else
         {
-            err = dbi_conn_error(connection, &errmsg);
-            PERR("Unable to get sql_mode %d : %s", err, errmsg );
+            err = dbi_conn_error (connection, &errmsg);
+            PERR("Unable to get sql_mode %d : %s", err, errmsg);
         }
         dbi_result_free(result);
     }
     else
     {
-      err = dbi_conn_error(connection, &errmsg);
-      PERR("Unable to read sql_mode %d : %s", err, errmsg );
+        err = dbi_conn_error (connection, &errmsg);
+        PERR("Unable to read sql_mode %d : %s", err, errmsg );
     }
 }
 
diff --git a/src/backend/dbi/test/test-backend-dbi-basic.c b/src/backend/dbi/test/test-backend-dbi-basic.c
index 90627bd..c65442a 100644
--- a/src/backend/dbi/test/test-backend-dbi-basic.c
+++ b/src/backend/dbi/test/test-backend-dbi-basic.c
@@ -598,7 +598,7 @@ test_dbi_business_store_and_reload (Fixture *fixture, gconstpointer pData)
 }
 #ifndef G_OS_WIN32
 static void
-test_adjust_sql_options_string(void)
+test_adjust_sql_options_string (void)
 {
     gchar *adjusted_str;
     const char* in[] = {
@@ -623,13 +623,13 @@ test_adjust_sql_options_string(void)
         "something,NO_ZERO_DATExx,something_ else",
         "fred,jim,john"
     };
-    
+
     size_t i;
-    for( i = 0; i < sizeof(in) / sizeof(gchar*); i++)
+    for (i = 0; i < sizeof(in) / sizeof(gchar*); i++)
     {
-        gchar *adjusted_str = adjust_sql_options_string( in[i] );
-        g_assert_cmpstr( out[i],==,adjusted_str );
-        g_free( adjusted_str );
+        gchar *adjusted_str = adjust_sql_options_string (in[i]);
+        g_assert_cmpstr (out[i],==,adjusted_str);
+        g_free (adjusted_str);
     }
 }
 #endif //G_OS_WIN32

commit 0e17ebdc127a58f92b3c6ee216572cae11babc61
Author: Mike Evans <mikee at saxicola.co.uk>
Date:   Fri May 20 13:12:03 2016 +0100

    Bug 766688 - Minimal fraction of BYN should be 1/100

diff --git a/src/engine/iso-4217-currencies.xml b/src/engine/iso-4217-currencies.xml
index 6bbda4c..515e7fb 100644
--- a/src/engine/iso-4217-currencies.xml
+++ b/src/engine/iso-4217-currencies.xml
@@ -576,7 +576,7 @@
   namespace="ISO4217"
   exchange-code="933"
   parts-per-unit="100"
-  smallest-fraction="1"
+  smallest-fraction="100"
   local-symbol="Br"
 />
 <!-- "BZD" - "Belize Dollar"
@@ -860,7 +860,7 @@
   local-symbol="RD$"
 />
 <!-- "DZD" - "Algerian Dinar"
-  ar.: 	دج
+  ar.:  دج
 -->
 <currency
   isocode="DZD"
@@ -3021,4 +3021,4 @@
   smallest-fraction="1000000"
   local-symbol=""
 />
-</currencylist>
\ No newline at end of file
+</currencylist>

commit 806525f6ce334e1e2f2c6a2a57a014f8241a3fac
Author: John Ralls <jralls at ceridwen.us>
Date:   Thu May 19 10:08:21 2016 -0700

    Fix bad library name from c1ad6154.

diff --git a/src/backend/dbi/test/CMakeLists.txt b/src/backend/dbi/test/CMakeLists.txt
index 38fae00..0b64b14 100644
--- a/src/backend/dbi/test/CMakeLists.txt
+++ b/src/backend/dbi/test/CMakeLists.txt
@@ -11,7 +11,7 @@ SET(BACKEND_DBI_TEST_INCLUDE_DIRS
   ${LIBDBI_INCLUDE_PATH}
   ${GLIB2_INCLUDE_DIRS}
 )
-SET(BACKEND_DBI_TEST_LIBS gnc-backend-sql gnc-backend-dbi gncmod-engine gncmod-test-engine gnc-qof test-core ${LIBDBI_LIBRARY})
+SET(BACKEND_DBI_TEST_LIBS gnc-backend-sql gncmod-backend-dbi gncmod-engine gncmod-test-engine gnc-qof test-core ${LIBDBI_LIBRARY})
 
 SET(test_dbi_backend_SOURCES
   test-backend-dbi.c

commit b20e05d078d193157f657fc414367d886c0535f5
Author: John Ralls <jralls at ceridwen.us>
Date:   Fri May 13 16:39:26 2016 -0700

    Bug 764871 - Crash starting gnu cash
    
    GString doesn't like being g_freed, so use gchar and g_strdup_printf
    instead. Change all of the GStrings in the file just to be consistent.

diff --git a/src/app-utils/gnc-sx-instance-model.c b/src/app-utils/gnc-sx-instance-model.c
index 930244e..f1e3f6f 100644
--- a/src/app-utils/gnc-sx-instance-model.c
+++ b/src/app-utils/gnc-sx-instance-model.c
@@ -249,18 +249,16 @@ _get_vars_helper(Transaction *txn, void *var_hash_data)
             ! gnc_commodity_equal(split_cmdty, first_cmdty))
         {
             GncSxVariable *var;
-            GString *var_name;
+            gchar *var_name;
             const gchar *split_mnemonic, *first_mnemonic;
 
-            var_name = g_string_sized_new(16);
             split_mnemonic = gnc_commodity_get_mnemonic(split_cmdty);
             first_mnemonic = gnc_commodity_get_mnemonic(first_cmdty);
-            g_string_printf(var_name, "%s -> %s",
+            var_name = g_strdup_printf ("%s -> %s",
                             split_mnemonic ? split_mnemonic : "(null)",
                             first_mnemonic ? first_mnemonic : "(null)");
-            var = gnc_sx_variable_new(g_strdup(var_name->str));
+            var = gnc_sx_variable_new(var_name);
             g_hash_table_insert(var_hash, g_strdup(var->name), var);
-            g_string_free(var_name, TRUE);
         }
 
     }
@@ -956,16 +954,15 @@ _get_template_split_account(const SchedXaction* sx, const Split *template_split,
     if (*split_acct == NULL)
     {
         char guid_str[GUID_ENCODING_LENGTH+1];
-        GString *err;
+        gchar* err;
         guid_to_string_buff((const GncGUID*)acct_guid, guid_str);
-        err = g_string_new("");
-        g_string_printf(err, "Unknown account for guid [%s], cancelling SX [%s] creation.",
+        err = g_strdup_printf ("Unknown account for guid [%s], cancelling SX [%s] creation.",
                         guid_str, xaccSchedXactionGetName(sx));
-        g_critical("%s", err->str);
+        g_critical("%s", err);
         if (creation_errors != NULL)
             *creation_errors = g_list_append(*creation_errors, err);
         else
-            g_string_free(err, TRUE);
+            g_free(err);
         return FALSE;
     }
 
@@ -1016,18 +1013,17 @@ _get_sx_formula_value(const SchedXaction* sx, const Split *template_split, gnc_n
                                                 &parseErrorLoc,
                                                 parser_vars))
         {
-            GString *err = g_string_new("");
-            g_string_printf(err, "Error parsing SX [%s] key [%s]=formula [%s] at [%s]: %s",
+            gchar *err = g_strdup_printf ("Error parsing SX [%s] key [%s]=formula [%s] at [%s]: %s",
                             xaccSchedXactionGetName(sx),
                             formula_key,
                             formula_str,
                             parseErrorLoc,
                             gnc_exp_parser_error_string());
-            g_critical("%s", err->str);
+            g_critical ("%s", err);
             if (creation_errors != NULL)
                 *creation_errors = g_list_append(*creation_errors, err);
             else
-                g_string_free(err, TRUE);
+                g_free (err);
         }
 
         if (parser_vars != NULL)
@@ -1075,15 +1071,14 @@ split_apply_formulas (const Split *split, SxTxnCreationData* creation_data)
     gncn_error = gnc_numeric_check(final);
     if (gncn_error != GNC_ERROR_OK)
     {
-        GString *err = g_string_new("");
-        g_string_printf(err, "error %d in SX [%s] final gnc_numeric value, using 0 instead",
+        gchar *err = g_strdup_printf ("error %d in SX [%s] final gnc_numeric value, using 0 instead",
                         gncn_error, xaccSchedXactionGetName(sx));
-        g_critical("%s", err->str);
+        g_critical("%s", err);
         if (creation_data->creation_errors != NULL)
             *creation_data->creation_errors =
                 g_list_append(*creation_data->creation_errors, err);
         else
-            g_string_free(err, TRUE);
+            g_free (err);
         final = gnc_numeric_zero();
     }
     return final;
@@ -1094,12 +1089,12 @@ split_apply_exchange_rate (Split *split, GHashTable *bindings,
                            gnc_commodity *first_cmdty,
                            gnc_commodity *split_cmdty, gnc_numeric *final)
 {
-    GString *exchange_rate_var_name = g_string_sized_new(16);
+    gchar *exchange_rate_var_name;
     GncSxVariable *exchange_rate_var;
     gnc_numeric amt;
     gnc_numeric exchange_rate = gnc_numeric_create (1, 1);
 
-    g_string_printf(exchange_rate_var_name, "%s -> %s",
+    exchange_rate_var_name = g_strdup_printf ("%s -> %s",
                     gnc_commodity_get_mnemonic(first_cmdty),
                     gnc_commodity_get_mnemonic(split_cmdty));
 
@@ -1108,14 +1103,14 @@ split_apply_exchange_rate (Split *split, GHashTable *bindings,
 
     exchange_rate_var =
         (GncSxVariable*)g_hash_table_lookup(bindings,
-                                            exchange_rate_var_name->str);
+                                            exchange_rate_var_name);
 
     if (exchange_rate_var != NULL)
     {
         exchange_rate = exchange_rate_var->value;
         g_debug("exchange_rate is %s", gnc_numeric_to_string (exchange_rate));
     }
-    g_string_free(exchange_rate_var_name, TRUE);
+    g_free (exchange_rate_var_name);
 
     if (!gnc_commodity_is_currency (split_cmdty))
         amt = gnc_numeric_div(*final, exchange_rate,
@@ -1707,30 +1702,28 @@ create_cashflow_helper(Transaction *template_txn, void *user_data)
             gncn_error = gnc_numeric_check(final);
             if (gncn_error != GNC_ERROR_OK)
             {
-                GString *err = g_string_new("");
-                g_string_printf(err, "error %d in SX [%s] final gnc_numeric value, using 0 instead",
+                gchar* err = g_strdup_printf ("error %d in SX [%s] final gnc_numeric value, using 0 instead",
                                 gncn_error, xaccSchedXactionGetName(creation_data->sx));
-                g_critical("%s", err->str);
+                g_critical("%s", err);
                 if (creation_data->creation_errors != NULL)
                     *creation_data->creation_errors = g_list_append(*creation_data->creation_errors, err);
                 else
-                    g_string_free(err, TRUE);
+                    g_free (err);
                 final = gnc_numeric_zero();
             }
 
             /* Print error message if we would have needed an exchange rate */
             if (! gnc_commodity_equal(split_cmdty, first_cmdty))
             {
-                GString *err = g_string_new("");
-                g_string_printf(err, "No exchange rate available in SX [%s] for %s -> %s, value is zero",
+                gchar* err = g_strdup_printf ("No exchange rate available in SX [%s] for %s -> %s, value is zero",
                                 xaccSchedXactionGetName(creation_data->sx),
                                 gnc_commodity_get_mnemonic(split_cmdty),
                                 gnc_commodity_get_mnemonic(first_cmdty));
-                g_critical("%s", err->str);
+                g_critical("%s", err);
                 if (creation_data->creation_errors != NULL)
                     *creation_data->creation_errors = g_list_append(*creation_data->creation_errors, err);
                 else
-                    g_string_free(err, TRUE);
+                    g_free(err);
                 final = gnc_numeric_zero();
             }
 

commit c1ad6154ab9c4a7a195a68b3d23d0f89991711ff
Author: John Ralls <jralls at ceridwen.us>
Date:   Sat May 14 20:33:28 2016 +0000

    Don't try to compile test_adjust_sql_options on windows, it won't link.
    
    Also fix the CMake build by linking gnc-backend-dbi for test-backend-dbi.

diff --git a/src/backend/dbi/test/CMakeLists.txt b/src/backend/dbi/test/CMakeLists.txt
index 0871be6..38fae00 100644
--- a/src/backend/dbi/test/CMakeLists.txt
+++ b/src/backend/dbi/test/CMakeLists.txt
@@ -11,7 +11,7 @@ SET(BACKEND_DBI_TEST_INCLUDE_DIRS
   ${LIBDBI_INCLUDE_PATH}
   ${GLIB2_INCLUDE_DIRS}
 )
-SET(BACKEND_DBI_TEST_LIBS gnc-backend-sql gncmod-engine gncmod-test-engine gnc-qof test-core ${LIBDBI_LIBRARY})
+SET(BACKEND_DBI_TEST_LIBS gnc-backend-sql gnc-backend-dbi gncmod-engine gncmod-test-engine gnc-qof test-core ${LIBDBI_LIBRARY})
 
 SET(test_dbi_backend_SOURCES
   test-backend-dbi.c
@@ -31,4 +31,4 @@ IF (NOT WIN32)
     TEST_PGSQL_URL=\"${TEST_PGSQL_URL}\"
     DBI_TEST_XML_FILENAME=\"${CMAKE_CURRENT_SOURCE_DIR}/test-dbi.xml\"
   )
-ENDIF()
\ No newline at end of file
+ENDIF()
diff --git a/src/backend/dbi/test/test-backend-dbi-basic.c b/src/backend/dbi/test/test-backend-dbi-basic.c
index ee0738d..90627bd 100644
--- a/src/backend/dbi/test/test-backend-dbi-basic.c
+++ b/src/backend/dbi/test/test-backend-dbi-basic.c
@@ -596,7 +596,7 @@ test_dbi_business_store_and_reload (Fixture *fixture, gconstpointer pData)
     qof_session_end (session_3);
     qof_session_destroy (session_3);
 }
-
+#ifndef G_OS_WIN32
 static void
 test_adjust_sql_options_string(void)
 {
@@ -632,7 +632,7 @@ test_adjust_sql_options_string(void)
         g_free( adjusted_str );
     }
 }
-
+#endif //G_OS_WIN32
 static void
 create_dbi_test_suite (gchar *dbm_name, gchar *url)
 {
@@ -677,7 +677,8 @@ test_suite_gnc_backend_dbi (void)
         g_setenv ("PGOPTIONS", "-c client_min_messages=WARNING", FALSE);
         create_dbi_test_suite ("postgres", TEST_PGSQL_URL);
     }
-
+#ifndef G_OS_WIN32
     GNC_TEST_ADD_FUNC( suitename, "adjust sql options string localtime", 
         test_adjust_sql_options_string );
+#endif //G_OS_WIN32
 }

commit 3b17b44ef7e1c2c8c5f473a5faf991616ac6b454
Author: colinl <colin at clanlaw.org.uk>
Date:   Wed May 11 21:30:56 2016 +0100

    Improved adjust_sql_options_string, added tests

diff --git a/src/backend/dbi/gnc-backend-dbi.c b/src/backend/dbi/gnc-backend-dbi.c
index c72d35e..e58978b 100644
--- a/src/backend/dbi/gnc-backend-dbi.c
+++ b/src/backend/dbi/gnc-backend-dbi.c
@@ -793,47 +793,35 @@ gnc_dbi_unlock( QofBackend *qbe )
 // Given an sql_options string returns a copy of the string adjusted as necessary.
 // In particular if the string contains SQL_OPTION_TO_REMOVE it is removed along with 
 // comma separator.
-static gchar*
+gchar*
 adjust_sql_options_string( const gchar *str )
 {
-    char* pos;
-    char* answer = g_malloc( strlen(str)+1 );  // this must be freed by the calling code
-    int chars_to_copy;
-    pos = strstr( str, SQL_OPTION_TO_REMOVE );
-    if (pos)
+    GRegex* regex = NULL;
+    GError* err = NULL;
+    gchar* regex_str = NULL;
+    gchar* answer = NULL;
+    
+    // build a regex string that will find the pattern at the beginning, end or
+    // within the string as a whole word, comma separated
+    regex_str = g_strdup_printf( "(?:,%s$|\\b%s\\b,?)",
+        SQL_OPTION_TO_REMOVE, SQL_OPTION_TO_REMOVE );
+    
+    // compile the regular expression and check for errors
+    regex = g_regex_new( regex_str, 0, 0, &err );
+    if ( err != NULL )
     {
-        if ( pos == str )
-        {
-            if ( *(pos+strlen(SQL_OPTION_TO_REMOVE)) == ',' )
-            {
-                strcpy( answer, str + strlen(SQL_OPTION_TO_REMOVE) + 1 );
-            } else if ( *(pos+strlen(SQL_OPTION_TO_REMOVE)) == '\0' )
-            {
-                strcpy( answer, "" );
-            } else
-            {
-                strcpy( answer, str );
-            }
-        } else if ( *(pos + strlen(SQL_OPTION_TO_REMOVE)) == '\0' )
-        {
-            chars_to_copy =  strlen(str) - strlen(SQL_OPTION_TO_REMOVE) - 1;
-            strncpy( answer, str, chars_to_copy );
-            answer[chars_to_copy] = '\0';
-        } else if (*(pos-1) == ','  &&  *(pos+strlen(SQL_OPTION_TO_REMOVE)) == ',')
-        {
-            chars_to_copy =  pos - str - 1;
-            strncpy( answer, str, chars_to_copy );
-            strcpy( answer + chars_to_copy, pos+strlen(SQL_OPTION_TO_REMOVE));
-        } else
-        {
-            // not found
-            strcpy( answer, str );
-        }
+        g_error_free (err);
     } else
     {
-        // not found
-        strcpy( answer, str );
+        answer = g_regex_replace( regex, str, -1, 0, "", 0, NULL );
     }
+    // in case of errors set the answer to the passed in string
+    if ( !answer )
+    {
+        answer = g_strdup( str );
+    }
+    g_free( regex_str );
+    g_regex_unref( regex );
     return answer;
 }
 
@@ -843,12 +831,12 @@ adjust_sql_options( dbi_conn connection )
 {
     dbi_result result;
     gint err;
-    const char* str;
-    const gchar *errmsg;
+    const char* errmsg;
     
     result = dbi_conn_query( connection, "SELECT @@sql_mode");
     if (result)
     {
+        const char* str;
         dbi_result_first_row(result);
         str = dbi_result_get_string_idx(result, 1);
         if (str)
@@ -862,8 +850,7 @@ adjust_sql_options( dbi_conn connection )
                 
                 adjusted_str = adjust_sql_options_string( str );
                 PINFO("Setting sql_mode to %s", adjusted_str);
-                set_str = g_malloc( strlen(adjusted_str) + 20 );
-                sprintf( set_str, "SET sql_mode='%s';", adjusted_str );
+                set_str = g_strdup_printf( "SET sql_mode='%s';", adjusted_str );
                 set_result = dbi_conn_query( connection, set_str);
                 if (set_result)
                 {
diff --git a/src/backend/dbi/gnc-backend-dbi.h b/src/backend/dbi/gnc-backend-dbi.h
index f228134..03466d2 100644
--- a/src/backend/dbi/gnc-backend-dbi.h
+++ b/src/backend/dbi/gnc-backend-dbi.h
@@ -38,6 +38,9 @@ void gnc_module_init_backend_dbi(void);
  * statically linked into the application. */
 void gnc_module_finalize_backend_dbi(void);
 
+/* external access required for tests */
+gchar* adjust_sql_options_string(const gchar *);
+
 #ifndef GNC_NO_LOADABLE_MODULES
 /** This is the standarized initialization function of a qof_backend
  * GModule, but compiling this can be disabled by defining
diff --git a/src/backend/dbi/test/test-backend-dbi-basic.c b/src/backend/dbi/test/test-backend-dbi-basic.c
index ec6d0ad..ee0738d 100644
--- a/src/backend/dbi/test/test-backend-dbi-basic.c
+++ b/src/backend/dbi/test/test-backend-dbi-basic.c
@@ -50,6 +50,8 @@
 #include "gncInvoice.h"
 /* For test_conn_index_functions */
 #include "../gnc-backend-dbi-priv.h"
+/* For test_adjust_options_string */
+#include "../gnc-backend-dbi.h"
 /* For version_control */
 #include <gnc-prefs.h>
 #include <qofsession-p.h>
@@ -596,6 +598,42 @@ test_dbi_business_store_and_reload (Fixture *fixture, gconstpointer pData)
 }
 
 static void
+test_adjust_sql_options_string(void)
+{
+    gchar *adjusted_str;
+    const char* in[] = {
+        "NO_ZERO_DATE",
+        "NO_ZERO_DATE,something_else",
+        "something,NO_ZERO_DATE",
+        "something,NO_ZERO_DATE,something_else",
+        "NO_ZERO_DATExx",
+        "NO_ZERO_DATExx,something_ else",
+        "something,NO_ZERO_DATExx",
+        "something,NO_ZERO_DATExx,something_ else",
+        "fred,jim,john"
+    };
+    const char* out[] = {
+        "",
+        "something_else",
+        "something",
+        "something,something_else",
+        "NO_ZERO_DATExx",
+        "NO_ZERO_DATExx,something_ else",
+        "something,NO_ZERO_DATExx",
+        "something,NO_ZERO_DATExx,something_ else",
+        "fred,jim,john"
+    };
+    
+    size_t i;
+    for( i = 0; i < sizeof(in) / sizeof(gchar*); i++)
+    {
+        gchar *adjusted_str = adjust_sql_options_string( in[i] );
+        g_assert_cmpstr( out[i],==,adjusted_str );
+        g_free( adjusted_str );
+    }
+}
+
+static void
 create_dbi_test_suite (gchar *dbm_name, gchar *url)
 {
     gchar *subsuite = g_strdup_printf ("%s/%s", suitename, dbm_name);
@@ -640,4 +678,6 @@ test_suite_gnc_backend_dbi (void)
         create_dbi_test_suite ("postgres", TEST_PGSQL_URL);
     }
 
+    GNC_TEST_ADD_FUNC( suitename, "adjust sql options string localtime", 
+        test_adjust_sql_options_string );
 }

commit 99554bc7c1241678b01c70c905b32220473c4f7f
Author: colinl <colin at clanlaw.org.uk>
Date:   Tue May 10 11:57:01 2016 +0100

    Tidied up adjust_sql_options

diff --git a/src/backend/dbi/gnc-backend-dbi.c b/src/backend/dbi/gnc-backend-dbi.c
index 282b435..c72d35e 100644
--- a/src/backend/dbi/gnc-backend-dbi.c
+++ b/src/backend/dbi/gnc-backend-dbi.c
@@ -799,52 +799,41 @@ adjust_sql_options_string( const gchar *str )
     char* pos;
     char* answer = g_malloc( strlen(str)+1 );  // this must be freed by the calling code
     int chars_to_copy;
-    PERR( "\nIn %s", str );
     pos = strstr( str, SQL_OPTION_TO_REMOVE );
     if (pos)
     {
-        PERR("%c %c", *(pos-1), *(pos+(strlen(SQL_OPTION_TO_REMOVE)+1)));
         if ( pos == str )
         {
-            PERR( "A" );
             if ( *(pos+strlen(SQL_OPTION_TO_REMOVE)) == ',' )
             {
-            PERR( "B" );
                 strcpy( answer, str + strlen(SQL_OPTION_TO_REMOVE) + 1 );
             } else if ( *(pos+strlen(SQL_OPTION_TO_REMOVE)) == '\0' )
             {
-            PERR( "C" );
                 strcpy( answer, "" );
             } else
             {
-                PERR( "A1" );
                 strcpy( answer, str );
             }
         } else if ( *(pos + strlen(SQL_OPTION_TO_REMOVE)) == '\0' )
         {
-            PERR( "D" );
             chars_to_copy =  strlen(str) - strlen(SQL_OPTION_TO_REMOVE) - 1;
             strncpy( answer, str, chars_to_copy );
             answer[chars_to_copy] = '\0';
         } else if (*(pos-1) == ','  &&  *(pos+strlen(SQL_OPTION_TO_REMOVE)) == ',')
         {
-            PERR( "E" );
             chars_to_copy =  pos - str - 1;
             strncpy( answer, str, chars_to_copy );
             strcpy( answer + chars_to_copy, pos+strlen(SQL_OPTION_TO_REMOVE));
         } else
         {
-            PERR( "F" );
             // not found
             strcpy( answer, str );
         }
     } else
     {
-        PERR( "G" );
         // not found
         strcpy( answer, str );
     }
-    PERR( "Out %s\n", answer );
     return answer;
 }
 
@@ -853,54 +842,36 @@ static void
 adjust_sql_options( dbi_conn connection )
 {
     dbi_result result;
-    int err;
+    gint err;
     const char* str;
     const gchar *errmsg;
-    gchar *adjusted_str;
-    gchar *set_str;
-    const char * strings[] = {
-        "NO_ZERO_DATE",
-        "NO_ZERO_DATE,something else",
-        "something,NO_ZERO_DATE",
-        "something,NO_ZERO_DATE,something else",
-        "NO_ZERO_DATExx",
-        "NO_ZERO_DATExx,something else",
-        "something,NO_ZERO_DATExx",
-        "something,NO_ZERO_DATExx,something else",
-        "fred,jim,john"
-    };
     
-    size_t i;
-    for( i = 0; i < sizeof(strings) / sizeof(char*); i++)
-    {
-        adjusted_str = adjust_sql_options_string( strings[i] );
-        g_free( adjusted_str );
-    }
-    
-    PERR("in adjust_sql_options");
     result = dbi_conn_query( connection, "SELECT @@sql_mode");
     if (result)
     {
-        err = dbi_result_first_row(result);
-        if (!err)
-        {
-            PERR("first_row err");
-        }
+        dbi_result_first_row(result);
         str = dbi_result_get_string_idx(result, 1);
         if (str)
         {
-            PERR("*************** %s", str);
+            PINFO("Initial sql_mode: %s", str);
             if( strstr( str, SQL_OPTION_TO_REMOVE ) )
             {
+                gchar *adjusted_str;
+                gchar *set_str;
+                dbi_result set_result;
+                
                 adjusted_str = adjust_sql_options_string( str );
+                PINFO("Setting sql_mode to %s", adjusted_str);
                 set_str = g_malloc( strlen(adjusted_str) + 20 );
                 sprintf( set_str, "SET sql_mode='%s';", adjusted_str );
-                PERR("*** %s", set_str);
-                result = dbi_conn_query( connection, set_str);
-                if (!result)
+                set_result = dbi_conn_query( connection, set_str);
+                if (set_result)
+                {
+                    dbi_result_free( set_result );
+                } else
                 {
-                    err = dbi_conn_error(connection, &errmsg);
-                    PERR("null result %d : %s", err, errmsg );
+                  err = dbi_conn_error(connection, &errmsg);
+                  PERR("Unable to set sql_mode %d : %s", err, errmsg );
                 }
                 g_free( adjusted_str );
                 g_free( set_str );
@@ -908,14 +879,15 @@ adjust_sql_options( dbi_conn connection )
         }
         else
         {
-            PERR("null str");
+            err = dbi_conn_error(connection, &errmsg);
+            PERR("Unable to get sql_mode %d : %s", err, errmsg );
         }
         dbi_result_free(result);
     }
     else
     {
       err = dbi_conn_error(connection, &errmsg);
-      PERR("null result %d : %s", err, errmsg );
+      PERR("Unable to read sql_mode %d : %s", err, errmsg );
     }
 }
 

commit 709ed8b1d3162a1ecc2d07f889bd25d85f16684a
Author: colinl <colin at clanlaw.org.uk>
Date:   Tue May 10 08:12:53 2016 +0100

    adjust_sql_options working but needs tidy up and remove diagnostics

diff --git a/src/backend/dbi/gnc-backend-dbi.c b/src/backend/dbi/gnc-backend-dbi.c
index 79b7116..282b435 100644
--- a/src/backend/dbi/gnc-backend-dbi.c
+++ b/src/backend/dbi/gnc-backend-dbi.c
@@ -788,6 +788,137 @@ gnc_dbi_unlock( QofBackend *qbe )
     qof_backend_set_error( qbe, ERR_BACKEND_SERVER_ERR );
 }
 
+#define SQL_OPTION_TO_REMOVE "NO_ZERO_DATE"
+
+// Given an sql_options string returns a copy of the string adjusted as necessary.
+// In particular if the string contains SQL_OPTION_TO_REMOVE it is removed along with 
+// comma separator.
+static gchar*
+adjust_sql_options_string( const gchar *str )
+{
+    char* pos;
+    char* answer = g_malloc( strlen(str)+1 );  // this must be freed by the calling code
+    int chars_to_copy;
+    PERR( "\nIn %s", str );
+    pos = strstr( str, SQL_OPTION_TO_REMOVE );
+    if (pos)
+    {
+        PERR("%c %c", *(pos-1), *(pos+(strlen(SQL_OPTION_TO_REMOVE)+1)));
+        if ( pos == str )
+        {
+            PERR( "A" );
+            if ( *(pos+strlen(SQL_OPTION_TO_REMOVE)) == ',' )
+            {
+            PERR( "B" );
+                strcpy( answer, str + strlen(SQL_OPTION_TO_REMOVE) + 1 );
+            } else if ( *(pos+strlen(SQL_OPTION_TO_REMOVE)) == '\0' )
+            {
+            PERR( "C" );
+                strcpy( answer, "" );
+            } else
+            {
+                PERR( "A1" );
+                strcpy( answer, str );
+            }
+        } else if ( *(pos + strlen(SQL_OPTION_TO_REMOVE)) == '\0' )
+        {
+            PERR( "D" );
+            chars_to_copy =  strlen(str) - strlen(SQL_OPTION_TO_REMOVE) - 1;
+            strncpy( answer, str, chars_to_copy );
+            answer[chars_to_copy] = '\0';
+        } else if (*(pos-1) == ','  &&  *(pos+strlen(SQL_OPTION_TO_REMOVE)) == ',')
+        {
+            PERR( "E" );
+            chars_to_copy =  pos - str - 1;
+            strncpy( answer, str, chars_to_copy );
+            strcpy( answer + chars_to_copy, pos+strlen(SQL_OPTION_TO_REMOVE));
+        } else
+        {
+            PERR( "F" );
+            // not found
+            strcpy( answer, str );
+        }
+    } else
+    {
+        PERR( "G" );
+        // not found
+        strcpy( answer, str );
+    }
+    PERR( "Out %s\n", answer );
+    return answer;
+}
+
+/* checks mysql sql_options and adjusts if necessary */
+static void
+adjust_sql_options( dbi_conn connection )
+{
+    dbi_result result;
+    int err;
+    const char* str;
+    const gchar *errmsg;
+    gchar *adjusted_str;
+    gchar *set_str;
+    const char * strings[] = {
+        "NO_ZERO_DATE",
+        "NO_ZERO_DATE,something else",
+        "something,NO_ZERO_DATE",
+        "something,NO_ZERO_DATE,something else",
+        "NO_ZERO_DATExx",
+        "NO_ZERO_DATExx,something else",
+        "something,NO_ZERO_DATExx",
+        "something,NO_ZERO_DATExx,something else",
+        "fred,jim,john"
+    };
+    
+    size_t i;
+    for( i = 0; i < sizeof(strings) / sizeof(char*); i++)
+    {
+        adjusted_str = adjust_sql_options_string( strings[i] );
+        g_free( adjusted_str );
+    }
+    
+    PERR("in adjust_sql_options");
+    result = dbi_conn_query( connection, "SELECT @@sql_mode");
+    if (result)
+    {
+        err = dbi_result_first_row(result);
+        if (!err)
+        {
+            PERR("first_row err");
+        }
+        str = dbi_result_get_string_idx(result, 1);
+        if (str)
+        {
+            PERR("*************** %s", str);
+            if( strstr( str, SQL_OPTION_TO_REMOVE ) )
+            {
+                adjusted_str = adjust_sql_options_string( str );
+                set_str = g_malloc( strlen(adjusted_str) + 20 );
+                sprintf( set_str, "SET sql_mode='%s';", adjusted_str );
+                PERR("*** %s", set_str);
+                result = dbi_conn_query( connection, set_str);
+                if (!result)
+                {
+                    err = dbi_conn_error(connection, &errmsg);
+                    PERR("null result %d : %s", err, errmsg );
+                }
+                g_free( adjusted_str );
+                g_free( set_str );
+            }
+        }
+        else
+        {
+            PERR("null str");
+        }
+        dbi_result_free(result);
+    }
+    else
+    {
+      err = dbi_conn_error(connection, &errmsg);
+      PERR("null result %d : %s", err, errmsg );
+    }
+}
+
 static void
 gnc_dbi_mysql_session_begin( QofBackend* qbe, QofSession *session,
                              const gchar *book_id, gboolean ignore_lock,
@@ -848,6 +979,7 @@ gnc_dbi_mysql_session_begin( QofBackend* qbe, QofSession *session,
     result = dbi_conn_connect( be->conn );
     if ( result == 0 )
     {
+        adjust_sql_options( be->conn );
         dbi_test_result = conn_test_dbi_library( be->conn );
         switch ( dbi_test_result )
         {
@@ -907,6 +1039,7 @@ gnc_dbi_mysql_session_begin( QofBackend* qbe, QofSession *session,
                 qof_backend_set_error( qbe, ERR_BACKEND_SERVER_ERR );
                 goto exit;
             }
+            adjust_sql_options( be->conn );
             dresult = dbi_conn_queryf( be->conn, "CREATE DATABASE %s CHARACTER SET utf8", dbname );
             if ( dresult == NULL )
             {
@@ -944,6 +1077,7 @@ gnc_dbi_mysql_session_begin( QofBackend* qbe, QofSession *session,
                 qof_backend_set_error( qbe, ERR_BACKEND_SERVER_ERR );
                 goto exit;
             }
+            adjust_sql_options( be->conn );
             dbi_test_result = conn_test_dbi_library( be->conn );
             switch ( dbi_test_result )
             {

commit 043ca5d39933fde2660a1e4ded8b3b2534ff481f
Author: victor811 <victor.pugin at gmail.com>
Date:   Tue May 3 14:22:03 2016 +0300

    Update Russian translation

diff --git a/po/glossary/ru.po b/po/glossary/ru.po
index cd666f7..cd4e01c 100644
--- a/po/glossary/ru.po
+++ b/po/glossary/ru.po
@@ -505,7 +505,7 @@ msgstr "чистая прибыль"
 
 #. "Your net worth is your assets minus your liabilities. If your accounts are balanced, your net worth should equal your equity plus your net profit."
 msgid "net worth"
-msgstr "чистый убыток"
+msgstr "чистая стоимость"
 
 #. "One textfield per transaction that can hold explanatory text about the transaction."
 msgid "notes (register)"

commit 7bee0be5744c8a9b6024d60a3a2efa47b4412c8b
Author: victor811 <victor.pugin2gmail.com>
Date:   Tue May 3 14:14:04 2016 +0300

    Update Russian translation

diff --git a/po/ru.po b/po/ru.po
index 04f9a76..ca311ad 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -21035,7 +21035,7 @@ msgstr "Показать чистую прибыль?"
 #: ../src/report/standard-reports/net-barchart.scm:127
 #: ../src/report/standard-reports/net-linechart.scm:133
 msgid "Show a Net Worth bar?"
-msgstr "Показать чистый убыток?"
+msgstr "Показать чистую стоимость?"
 
 #: ../src/report/standard-reports/net-barchart.scm:356
 #: ../src/report/standard-reports/net-barchart.scm:418
@@ -21049,7 +21049,7 @@ msgstr "Чистая прибыль"
 #: ../src/report/standard-reports/net-linechart.scm:395
 #: ../src/report/standard-reports/net-linechart.scm:468
 msgid "Net Worth"
-msgstr "Чистый убыток"
+msgstr "Чистая стоимость"
 
 #: ../src/report/standard-reports/net-barchart.scm:381
 #: ../src/report/standard-reports/net-linechart.scm:425
@@ -21073,7 +21073,7 @@ msgstr "График обязательств"
 
 #: ../src/report/standard-reports/net-barchart.scm:467
 msgid "Net Worth Barchart"
-msgstr "Гистограмма чистых убытков"
+msgstr "Гистограмма чистой стоимости"
 
 #: ../src/report/standard-reports/net-barchart.scm:477
 msgid "Income & Expense Chart"
@@ -21114,7 +21114,7 @@ msgstr "Выберите маркер для каждой точки данны
 
 #: ../src/report/standard-reports/net-linechart.scm:513
 msgid "Net Worth Linechart"
-msgstr "График чистых убытков"
+msgstr "График чистой стоимости"
 
 #: ../src/report/standard-reports/portfolio.scm:35
 msgid "Investment Portfolio"

commit f679bf70e8293021c4d42bdd331d0184d0ed140e
Author: John Ralls <jralls at ceridwen.us>
Date:   Tue May 10 13:28:58 2016 -0700

    Bug 766028 - crash on manual addition of price entry in Price Editor
    
    gnc_pricedb_remove_price invalidates db->commodity_hash so removing the
    old price needs to be done before it's retrieved.

diff --git a/src/engine/gnc-pricedb.c b/src/engine/gnc-pricedb.c
index 790cf32..f777f5f 100644
--- a/src/engine/gnc-pricedb.c
+++ b/src/engine/gnc-pricedb.c
@@ -1047,6 +1047,22 @@ add_price(GNCPriceDB *db, GNCPrice *p)
         LEAVE ("no commodity hash found ");
         return FALSE;
     }
+/* Check for an existing price on the same day. If there is no existing price,
+ * add this one. If this price is of equal or better precedence than the old
+ * one, copy this one over the old one.
+ */
+    old_price = gnc_pricedb_lookup_day (db, p->commodity, p->currency,
+                                        p->tmspec);
+    if (!db->bulk_update && old_price != NULL)
+    {
+        if (p->source > old_price->source)
+        {
+            gnc_price_unref(p);
+            LEAVE ("Better price already in DB.");
+            return FALSE;
+        }
+        gnc_pricedb_remove_price(db, old_price);
+    }
 
     currency_hash = g_hash_table_lookup(db->commodity_hash, commodity);
     if (!currency_hash)
@@ -1068,22 +1084,6 @@ add_price(GNCPriceDB *db, GNCPrice *p)
         return FALSE;
     }
 
-/* Check for an existing price on the same day. If there is no existing price,
- * add this one. If this price is of equal or better precedence than the old
- * one, copy this one over the old one.
- */
-    old_price = gnc_pricedb_lookup_day (db, p->commodity, p->currency,
-                                        p->tmspec);
-    if (!db->bulk_update && old_price != NULL)
-    {
-        if (p->source > old_price->source)
-        {
-            gnc_price_unref(p);
-            LEAVE ("Better price already in DB.");
-            return FALSE;
-        }
-        gnc_pricedb_remove_price(db, old_price);
-    }
     g_hash_table_insert(currency_hash, currency, price_list);
     p->db = db;
 

commit eaa68cff8c6f433bb21e8c7945440a55d21a446b
Author: Mechtilde <ooo at mechtilde.de>
Date:   Thu May 5 16:32:52 2016 +0200

    correct some more shortcuts

diff --git a/po/de.po b/po/de.po
index 08aceab..fe81fcd 100644
--- a/po/de.po
+++ b/po/de.po
@@ -5622,7 +5622,7 @@ msgstr "Konten für Steuerbericht (MWSt) einrichten"
 #. Actions menu
 #: ../src/gnome/gnc-plugin-basic-commands.c:158
 msgid "_Scheduled Transactions"
-msgstr "_Terminierte Buchungen"
+msgstr "Term_inierte Buchungen"
 
 #: ../src/gnome/gnc-plugin-basic-commands.c:160
 msgid "_Scheduled Transaction Editor"
@@ -5855,7 +5855,7 @@ msgstr "Die Unterkonten des gewählten Kontos neu nummerieren"
 #: ../src/gnome/gnc-plugin-page-register2.c:336
 #: ../src/gnome/gnc-plugin-page-register.c:345
 msgid "_Reconcile..."
-msgstr "Ab_gleichen..."
+msgstr "_Abgleichen..."
 
 #: ../src/gnome/gnc-plugin-page-account-tree.c:238
 #: ../src/gnome/gnc-plugin-page-register2.c:337
@@ -6371,7 +6371,7 @@ msgstr "Den Wechselkurs für die gewählte Buchung bearbeiten"
 #: ../src/gnome/gnc-plugin-page-register.c:375
 #: ../src/gnome-utils/gnc-icons.c:45
 msgid "_Jump"
-msgstr "Gegenbuchung"
+msgstr "Ge_genbuchung"
 
 #: ../src/gnome/gnc-plugin-page-register2.c:367
 #: ../src/gnome/gnc-plugin-page-register.c:376
@@ -16277,7 +16277,7 @@ msgstr "Neue Einzelüberweisung mit HBCI online absenden"
 
 #: ../src/import-export/aqb/gnc-plugin-aqbanking.c:118
 msgid "_Issue SEPA Transaction..."
-msgstr "_SEPA Einzelüberweisung..."
+msgstr "SE_PA Einzelüberweisung..."
 
 #: ../src/import-export/aqb/gnc-plugin-aqbanking.c:119
 msgid ""
@@ -16287,7 +16287,7 @@ msgstr "Neue SEPA-Ãœberweisung mit HBCI/Onlinebanking online absenden"
 
 #: ../src/import-export/aqb/gnc-plugin-aqbanking.c:123
 msgid "I_nternal Transaction..."
-msgstr "Interne _Umbuchung..."
+msgstr "_Interne Umbuchung..."
 
 #: ../src/import-export/aqb/gnc-plugin-aqbanking.c:124
 msgid "Issue a new bank-internal transaction online through Online Banking"
@@ -16296,7 +16296,7 @@ msgstr ""
 
 #: ../src/import-export/aqb/gnc-plugin-aqbanking.c:128
 msgid "_Direct Debit..."
-msgstr "Einzellastschrift..."
+msgstr "Einzel_lastschrift..."
 
 #: ../src/import-export/aqb/gnc-plugin-aqbanking.c:129
 msgid "Issue a new direct debit note online through Online Banking"

commit 30e46e4e5df8b22a4722959881f1854afefc0c5b
Author: Mechtilde <ooo at mechtilde.de>
Date:   Thu May 5 16:04:36 2016 +0200

    correct some shortcuts

diff --git a/po/de.po b/po/de.po
index 4e7100b..08aceab 100644
--- a/po/de.po
+++ b/po/de.po
@@ -6360,7 +6360,7 @@ msgstr "Zur freien Buchungszeile am Ende dieses Kontobuchs gehen"
 #: ../src/gnome/gnc-plugin-page-register2.c:361
 #: ../src/gnome/gnc-plugin-page-register.c:370
 msgid "Edit E_xchange Rate"
-msgstr "Wechsel_kurs bearbeiten..."
+msgstr "Wech_selkurs bearbeiten..."
 
 #: ../src/gnome/gnc-plugin-page-register2.c:362
 #: ../src/gnome/gnc-plugin-page-register.c:371
@@ -11859,7 +11859,7 @@ msgstr "Wählen Sie die Kontoarten, die in der Kontenansicht angezeigt werden."
 #: ../src/gnome-utils/gnc-main-window.c:343
 #: ../src/gnome/window-reconcile2.c:2189 ../src/gnome/window-reconcile.c:2229
 msgid "_Check & Repair"
-msgstr "Überprüfen"
+msgstr "Überprü_fen"
 
 #: ../src/gnome-utils/gnc-main-window.c:345
 msgid "Reset _Warnings..."
@@ -15262,7 +15262,7 @@ msgstr ""
 #. Toplevel
 #: ../src/gnome/window-reconcile2.c:2142 ../src/gnome/window-reconcile.c:2182
 msgid "_Reconcile"
-msgstr "Ab_gleichen"
+msgstr "_Abgleichen..."
 
 #: ../src/gnome/window-reconcile2.c:2143 ../src/gnome/window-reconcile.c:2183
 msgid "_Account"

commit 9ddea15c7f27f8d03ca93d6fb6e102ee79518b27
Author: Mechtilde <ooo at mechtilde.de>
Date:   Tue Jan 19 20:00:19 2016 +0100

    correct typos

diff --git a/po/de.po b/po/de.po
index 5b1c7bf..4e7100b 100644
--- a/po/de.po
+++ b/po/de.po
@@ -15976,7 +15976,7 @@ msgstr "Kein gültiges Online-Banking-Konto zugewiesen."
 
 #: ../src/import-export/aqb/gnc-ab-getbalance.c:97
 msgid "Online action \"Get Balance\" not available for this account."
-msgstr "Die Online-Aktion »Saldenabruf« is für dieses Konto nicht verfügbar."
+msgstr "Die Online-Aktion »Saldenabruf« ist für dieses Konto nicht verfügbar."
 
 #: ../src/import-export/aqb/gnc-ab-getbalance.c:130
 #: ../src/import-export/aqb/gnc-ab-gettrans.c:195
@@ -15992,7 +15992,7 @@ msgstr ""
 
 #: ../src/import-export/aqb/gnc-ab-gettrans.c:160
 msgid "Online action \"Get Transactions\" not available for this account."
-msgstr "Die Online-Aktion »Umsatzabruf« is für dieses Konto nicht verfügbar."
+msgstr "Die Online-Aktion »Umsatzabruf« ist für dieses Konto nicht verfügbar."
 
 #: ../src/import-export/aqb/gnc-ab-gettrans.c:213
 msgid ""

commit d5fa61d14ef5637ff8ae9746f7a42e9b3582bb2b
Author: Mechtilde <ooo at mechtilde.de>
Date:   Sat Jan 2 22:45:04 2016 +0100

    remove some fuzzy flags and add some translations

diff --git a/po/de.po b/po/de.po
index 693c2ef..5b1c7bf 100644
--- a/po/de.po
+++ b/po/de.po
@@ -14,7 +14,7 @@ msgstr ""
 "Project-Id-Version: gnucash-2.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2016-01-02 13:27+0100\n"
-"PO-Revision-Date: 2016-01-02 16:10+0100\n"
+"PO-Revision-Date: 2016-01-02 22:42+0100\n"
 "Last-Translator: Mechtilde <ooo at mechtilde.de>\n"
 "Language-Team: GnuCash-de <gnucash-de at gnucash.org>\n"
 "Language: German\n"
@@ -8312,97 +8312,89 @@ msgstr ""
 "angezeigt."
 
 #: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:4
-#, fuzzy
 msgid "Use relative profit/loss starting date"
-msgstr "Einnahmen/Ausgabenrechnung Startdatum-Typ"
+msgstr "Nutze relatives Startdatum für die Einnahmen/Ausgabenrechnung"
 
 #: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:5
-#, fuzzy
 msgid ""
 "This setting controls the type of starting date used in profit/loss "
 "calculations. If set to \"absolute\" then GnuCash will retrieve the starting "
 "date specified by the start-date key. If set to anything else, GnuCash will "
 "retrieve the starting date specified by the start-period key."
 msgstr ""
-"Diese Einstellung wählt die Art des Start-Datums in den Einnahme-/"
-"Ausgabenrechnungen. Wenn auf »absolute« gesetzt, wird das absolute "
-"Startdatum aus der Einstellung »start_date« verwendet. Andernfalls wird ein "
-"relatives Startdatum gemäß der Einstellung »start_period« verwendet."
+"Diese Einstellung prüft die Art des Start-Datums in den Einnahmen-/"
+"Ausgabenrechnungen. Wenn diese auf \"absolute\"gesetzt ist, wird das absolute "
+"Startdatum aus der Einstellung \"start_date\" verwendet. Andernfalls wird ein "
+"relatives Startdatum gemäß der Einstellung \"start_period\" verwendet."
 
 #: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:6
-#, fuzzy
 msgid "Use absolute profit/loss starting date"
-msgstr "Einnahmen/Ausgabenrechnung Startdatum-Typ"
+msgstr "Nutzt das absolute Startdatum für die Einnahmen-/Ausgabenrechnung"
 
 #: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:7
 msgid "Starting date (in seconds from Jan 1, 1970)"
-msgstr "Anfangszeitpunkt (in Sekunden seit 1. Januar 1970)"
+msgstr "Anfangsdatum (in Sekunden seit dem 1. Januar 1970)"
 
 #: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:8
-#, fuzzy
+
 msgid ""
 "This setting controls the starting date set in profit/loss calculations if "
 "the start-choice setting is set to \"absolute\". This field should contain a "
 "date as represented in seconds from January 1st, 1970."
 msgstr ""
 "Diese Einstellung setzt das Anfangs-Datum in den Einnahme-/"
-"Ausgabenrechnungen, wenn die Einstellung »start_choice« auf »absolute« "
-"gesetzt ist. Dann gibt diese Einstellung das Datum in Sekunden seit 1. "
-"Januar 1970 an."
+"Ausgabenrechnungen, wenn die Einstellung \"start_choice\" auf \"absolute\" "
+"gesetzt ist. Dann gibt diese Einstellung das Datum in Sekunden seit dem "
+"1. Januar 1970 an."
 
 #: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:9
 msgid "Starting time period identifier"
 msgstr "Index für relativen Anfangszeitpunkt"
 
 #: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:10
-#, fuzzy
 msgid ""
 "This setting controls the starting date set in profit/loss calculations if "
 "the start-choice setting is set to anything other than \"absolute\". This "
 "field should contain a value between 0 and 8."
 msgstr ""
 "Diese Einstellung setzt das Start-Datum in den Einname-/Ausgabenrechnungen, "
-"wenn die Einstellung »start_choice« auf etwas anderes als »absolute« gesetzt "
+"wenn die Einstellung \"start_choice\" auf etwas anderes als \"absolute\" gesetzt "
 "ist. Dann wählt diese Einstellung eines der relativen Datumsvorgaben mit dem "
 "jeweiligen Index von 0 bis 8."
 
 #: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:11
-#, fuzzy
 msgid "Use relative profit/loss ending date"
-msgstr "Einnahmen/Ausgabenrechnung Enddatum-Typ"
+msgstr "Nutzt das relative Enddatum für die Einnahmen/Ausgabenrechnung"
 
 #: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:12
-#, fuzzy
 msgid ""
 "This setting controls the type of ending date used in profit/loss "
 "calculations. If set to \"absolute\" then GnuCash will retrieve the ending "
 "date specified by the end-date key. If set to anything else, GnuCash will "
 "retrieve the ending date specified by the end-period key."
 msgstr ""
-"Diese Einstellung wählt die Art des End-Datums in den Einnahme-/"
-"Ausgabenrechnungen. Wenn auf »absolute« gesetzt, wird das absolute Enddatum "
+"Diese Einstellung prüft die Art des End-Datums in den Einnahme-/"
+"Ausgabenrechnungen. Wenn diese auf \"absolute\" gesetzt sind, wird das absolute Enddatum "
 "aus der Einstellung »end_date« verwendet. Andernfalls wird ein relatives "
-"Enddatum gemäß der Einstellung »end_period« verwendet."
+"Enddatum gemäß der Einstellung \"end_period\" verwendet."
 
 #: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:13
-#, fuzzy
 msgid "Use absolute profit/loss ending date"
-msgstr "Einnahmen/Ausgabenrechnung Enddatum-Typ"
+msgstr "Nutzt das absolute Enddatum für die Einnahmen/Ausgabenrechnung"
 
 #: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:14
 msgid "Ending date (in seconds from Jan 1, 1970)"
-msgstr "Endzeitpunkt (in Sekunden seit 1. Januar 1970)"
+msgstr "Enddatum (in Sekunden seit 1. Januar 1970)"
 
 #: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:15
-#, fuzzy
 msgid ""
 "This setting controls the ending date set in profit/loss calculations if the "
 "end-choice setting is set to \"absolute\". This field should contain a date "
 "as represented in seconds from January 1st, 1970."
 msgstr ""
 "Diese Einstellung setzt das End-Datum in den Einnahme-/Ausgabenrechnungen, "
-"wenn die Einstellung »end_choice« auf »absolute« gesetzt ist. Dann gibt "
-"diese Einstellung das Datum in Sekunden seit 1. Januar 1970 an."
+"wenn die Einstellung \"end_choice\" auf \"absolute\" gesetzt ist. Dann gibt "
+"diese Einstellung das Datum in Sekunden seit dem 1. Januar 1970 an."
 
 #: ../src/gnome/gschemas/org.gnucash.window.pages.account.tree.gschema.xml.in.in.h:16
 msgid "Ending time period identifier"
@@ -8415,8 +8407,8 @@ msgid ""
 "end-choice setting is set to anything other than \"absolute\". This field "
 "should contain a value between 0 and 8."
 msgstr ""
-"Diese Einstellung setzt das End-Datum in den Einname-/Ausgabenrechnungen, "
-"wenn die Einstellung »end_choice« auf etwas anderes als »absolute« gesetzt "
+"Diese Einstellung setzt das Enddatum in den Einname-/Ausgabenrechnungen, "
+"wenn die Einstellung \"end_choice\" auf etwas anderes als \"absolute« gesetzt "
 "ist. Dann wählt diese Einstellung eines der relativen Datumsvorgaben mit dem "
 "jeweiligen Index von 0 bis 8."
 
@@ -8435,9 +8427,8 @@ msgid "Width of this column"
 msgstr "Breite der Spalte"
 
 #: ../src/gnome/gschemas/org.gnucash.window.pages.gschema.xml.in.in.h:4
-#, fuzzy
 msgid "This setting stores the width of the given column in pixels."
-msgstr "Diese Einstellung kontrolliert, ob die Datum-Spalte angezeigt wird."
+msgstr "Diese Einstellung speichert die Weite der aufgeführten Spalten in Pixel."
 
 #: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:1
 msgid ""
@@ -10152,14 +10143,12 @@ msgid "Sa_ve Sort Order"
 msgstr "Sortierreihenfolge speichern"
 
 #: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:48
-#, fuzzy
 msgid "Save the sort order for this register."
-msgstr "Bearbeiten des übergeordneten Kontos für dieses Kontobuch"
+msgstr "Sortierreihenfolge für diese Liste speichern"
 
 #: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:49
-#, fuzzy
 msgid "Reverse Order"
-msgstr "Wie Kontobuch"
+msgstr "Umgekehrte Reihenfolge"
 
 #: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:50
 msgid "Sort in descending order."
@@ -12036,9 +12025,9 @@ msgid "Last modified on %a, %b %e, %Y at %I:%M%P"
 msgstr "Zuletzt geändert am %a, %e.%b %Y um %I:%M%P"
 
 #: ../src/gnome-utils/gnc-main-window.c:1660
-#, fuzzy, c-format
+#, c-format
 msgid "Last modified on %x %X"
-msgstr "Zuletzt geändert am %a, %e.%b %Y um %I:%M"
+msgstr "Zuletzt geändert am %x %X"
 
 #. g_warning("got time %ld, str=%s\n", mtime, time_string);
 #. Translators: This message appears in the status bar after opening the file.
@@ -12242,9 +12231,8 @@ msgstr ""
 #: ../src/gnome-utils/gnc-tree-control-split-reg.c:1725
 #, fuzzy
 msgid "Not enough information for Blank Transaction?"
-msgstr ""
-"Alle Buchungssätze mit Bemerkung anzeigen, also zwei Zeilen pro Buchung "
-"anzeigen"
+msgstr "Nicht genug Informationen für eine ..."
+
 
 #: ../src/gnome-utils/gnc-tree-control-split-reg.c:1727
 #, fuzzy
@@ -13074,16 +13062,17 @@ msgstr ""
 "Diese Rückfrage kommt vor dem gleichzeitigen Löschen von mehreren Kursen."
 
 #: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:13
-#, fuzzy
 msgid "Edit account payable/accounts receivable register"
-msgstr "Forderungen Konten"
+msgstr "Bearbeiten der Forderungs-/Verbindlichkeitskonton"
 
 #: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:14
 msgid ""
 "This dialog is presented before allowing you to edit an accounts payable/"
 "accounts receivable account. These account types are reserved for the "
 "business features and should rarely be manipulated manually."
-msgstr ""
+msgstr "Dieser Dialog wird angezeigt, bevor Sie ein Forderungs-/"
+"Verbindlichkeitskonto anlegen können. Diese Kontoarten sind für die Geschäftsbuchungen "
+"reserviert und sollten nicht manuell geändert werden,"
 
 #: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:15
 msgid "Read only register"
@@ -13993,11 +13982,9 @@ msgid "Perform account list _setup on new file"
 msgstr "Konteneinrichtung bei neuer Datei"
 
 #: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:61
-#, fuzzy
 msgid "Present the new account list dialog when you choose File -> New File."
 msgstr ""
-"Assistent für neue Konteneinrichtung öffnen, wenn »Neue Datei« im Menü "
-"»Datei« gewählt wird"
+"Der Assistent für neue Konteneinrichtung erscheint, wenn Sie Datei -> Neue Datei wählen"
 
 #: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:64
 msgid "Display \"_tip of the day\" dialog"
@@ -15139,7 +15126,6 @@ msgid "Only show _active owners"
 msgstr "Nur _aktive Mandanten zeigen"
 
 #: ../src/gnome-utils/gtkbuilder/gnc-tree-view-owner.glade.h:3
-#, fuzzy
 msgid "Show _zero balance owners"
 msgstr "Nullsalden anzeigen"
 
@@ -16721,12 +16707,11 @@ msgstr "Buchungen in eine CSV-Textdatei exportieren"
 
 #: ../src/import-export/csv-exp/gschemas/org.gnucash.dialogs.export.csv.gschema.xml.in.in.h:5
 msgid "Window geometry"
-msgstr "Fenstergröße"
+msgstr "Fensterposition"
 
 #: ../src/import-export/csv-exp/gschemas/org.gnucash.dialogs.export.csv.gschema.xml.in.in.h:6
-#, fuzzy
 msgid "The position of paned window when it was last closed."
-msgstr "Größe des Fensters beim letzten Schließen"
+msgstr "Position des Fensters beim letzten Schließen"
 
 #: ../src/import-export/csv-imp/assistant-csv-account-import.c:70
 #, c-format
@@ -21156,7 +21141,7 @@ msgstr "Diese Seite zeigt Ihnen Details zu steuerrelevanten Konten."
 #: ../src/report/report-gnome/dialog-custom-report.c:315
 #, c-format
 msgid "Are you sure you want to delete %s?"
-msgstr "Sind Sie sicher, dass Sie \"%s\" löschen möchten?"
+msgstr "Sind Sie sicher, dass Sie %s löschen möchten?"
 
 #: ../src/report/report-gnome/dialog-custom-report.c:421
 msgid "You must select a report configuration to load."

commit 5671408babc8c1626b26c9424b2eb6ac8b2073da
Author: Mechtilde <ooo at mechtilde.de>
Date:   Wed Jan 20 18:47:43 2016 +0100

    some corrections

diff --git a/po/de.po b/po/de.po
index 1afcc19..693c2ef 100644
--- a/po/de.po
+++ b/po/de.po
@@ -13,17 +13,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: gnucash-2.0\n"
 "Report-Msgid-Bugs-To: \n"
-<<<<<<< e4a249d94edd56c8c56a6062f7f00c4643dd8081
-"POT-Creation-Date: 2016-01-05 05:25+0100\n"
-"PO-Revision-Date: 2015-12-21 20:26+0100\n"
-=======
-"POT-Creation-Date: 2015-12-31 09:15+0100\n"
-<<<<<<< bfb978eb886cbf3bb867a62b60ca3df39487480e
-"PO-Revision-Date: 2016-01-02 15:19+0100\n"
->>>>>>> add some translations
-=======
+"POT-Creation-Date: 2016-01-02 13:27+0100\n"
 "PO-Revision-Date: 2016-01-02 16:10+0100\n"
->>>>>>> remove some fuzzy flags
 "Last-Translator: Mechtilde <ooo at mechtilde.de>\n"
 "Language-Team: GnuCash-de <gnucash-de at gnucash.org>\n"
 "Language: German\n"
@@ -302,7 +293,8 @@ msgstr "Die Adresse (URL) Ihrer Webseite."
 
 #: ../src/app-utils/business-prefs.scm:107
 msgid "The ID for your company (eg 'Tax-ID: 00-000000)."
-msgstr "Eine Identifikationsnummer ihres Geschäfts (z.B. USt-IdNr.: DE123456789)."
+msgstr ""
+"Eine Identifikationsnummer ihres Geschäfts (z.B. USt-IdNr.: DE123456789)."
 
 #: ../src/app-utils/business-prefs.scm:112
 msgid "Default Customer TaxTable"
@@ -318,7 +310,8 @@ msgstr "Voreinstellung Lieferant Steuertabelle"
 
 #: ../src/app-utils/business-prefs.scm:119
 msgid "The default tax table to apply to vendors."
-msgstr "Voreinstellung für die Steuertabelle, die bei Lieferanten angewendet werden "
+msgstr ""
+"Voreinstellung für die Steuertabelle, die bei Lieferanten angewendet werden "
 "soll."
 
 #: ../src/app-utils/business-prefs.scm:124
@@ -2394,7 +2387,8 @@ msgstr "Neuer Mitarbeiter..."
 
 #: ../src/business/business-gnome/gnc-plugin-business.c:247
 msgid "Open the New Employee dialog"
-msgstr "Den Dialog für das Anlegen neuer Mitarbeiterinnen und Mitarbeitern öffnen"
+msgstr ""
+"Den Dialog für das Anlegen neuer Mitarbeiterinnen und Mitarbeitern öffnen"
 
 #: ../src/business/business-gnome/gnc-plugin-business.c:251
 msgid "_Find Employee..."
@@ -4540,7 +4534,8 @@ msgstr "Zusätzliche Kosten Kreditkarte"
 
 #: ../src/engine/gncInvoice.c:1609
 msgid "Generated from an invoice. Try unposting the invoice."
-msgstr "Aus einer Rechnung erzeugt. Für Änderungen müssen Sie die Buchung der "
+msgstr ""
+"Aus einer Rechnung erzeugt. Für Änderungen müssen Sie die Buchung der "
 "Rechnung löschen."
 
 #: ../src/engine/gncInvoice.c:2042
@@ -4989,7 +4984,8 @@ msgstr ""
 
 #: ../src/gnome/dialog-commodities.c:177
 msgid "Are you sure you want to delete the selected commodity?"
-msgstr "Sind Sie sicher, dass Sie die gewählte Devise/Wertpapier löschen wollen?"
+msgstr ""
+"Sind Sie sicher, dass Sie die gewählte Devise/Wertpapier löschen wollen?"
 
 #: ../src/gnome/dialog-commodities.c:186
 msgid "Delete commodity?"
@@ -5167,7 +5163,8 @@ msgstr "Posten im Konto %s"
 msgid "Are you sure you want to delete the selected price?"
 msgid_plural "Are you sure you want to delete the %d selected prices?"
 msgstr[0] "Sind Sie sicher, dass Sie den gewählten Kurswert löschen wollen?"
-msgstr[1] "Sind Sie sicher, dass Sie die %d gewählten Kurswerte löschen wollen?"
+msgstr[1] ""
+"Sind Sie sicher, dass Sie die %d gewählten Kurswerte löschen wollen?"
 
 #: ../src/gnome/dialog-price-edit-db.c:193
 msgid "Delete prices?"
@@ -8424,7 +8421,6 @@ msgstr ""
 "jeweiligen Index von 0 bis 8."
 
 #: ../src/gnome/gschemas/org.gnucash.window.pages.gschema.xml.in.in.h:1
-
 msgid "Display this column"
 msgstr "Diese Spalte anzeigen?"
 
@@ -8809,7 +8805,6 @@ msgid "Payment Frequency"
 msgstr "Zahlungshäufigkeit"
 
 #: ../src/gnome/gtkbuilder/assistant-loan.glade.h:44
-
 msgid "Previous Option"
 msgstr "Vorherige Option"
 
@@ -9324,8 +9319,8 @@ msgid ""
 "specified date. Otherwise only stock prices added by Finance::Quote will be "
 "deleted."
 msgstr ""
-"Wenn gewählt, werden auch manuell eingegebene Kurse vor dem gewählten "
-"Datum gelöscht. Andernfalls werden nur von Finance::Quote hinzugefügte Kurse "
+"Wenn gewählt, werden auch manuell eingegebene Kurse vor dem gewählten Datum "
+"gelöscht. Andernfalls werden nur von Finance::Quote hinzugefügte Kurse "
 "gelöscht."
 
 #: ../src/gnome/gtkbuilder/dialog-price.glade.h:4
@@ -11093,7 +11088,9 @@ msgstr ""
 
 #: ../src/gnome-utils/dialog-transfer.c:1331
 msgid "Finance::Quote must be installed to enable this button."
-msgstr "Warnung: Modul Finance::Quote muss installiert sein, um die Schaltfläche zu aktivieren."
+msgstr ""
+"Warnung: Modul Finance::Quote muss installiert sein, um die Schaltfläche zu "
+"aktivieren."
 
 #: ../src/gnome-utils/dialog-transfer.c:1433
 msgid ""
@@ -12859,7 +12856,8 @@ msgstr "Fälligkeitsdatum eingeben"
 
 #: ../src/gnome-utils/gnc-tree-view-split-reg.c:3274
 msgid "Enter the transaction reference, such as the invoice or check number"
-msgstr "Geben Sie die Buchungsreferenz ein, z.B. die Rechnungs- oder Scheck-Nummer"
+msgstr ""
+"Geben Sie die Buchungsreferenz ein, z.B. die Rechnungs- oder Scheck-Nummer"
 
 #: ../src/gnome-utils/gnc-tree-view-split-reg.c:3276
 #: ../src/gnome-utils/gnc-tree-view-split-reg.c:3283
@@ -13997,7 +13995,8 @@ msgstr "Konteneinrichtung bei neuer Datei"
 #: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:61
 #, fuzzy
 msgid "Present the new account list dialog when you choose File -> New File."
-msgstr "Assistent für neue Konteneinrichtung öffnen, wenn »Neue Datei« im Menü "
+msgstr ""
+"Assistent für neue Konteneinrichtung öffnen, wenn »Neue Datei« im Menü "
 "»Datei« gewählt wird"
 
 #: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:64
@@ -15232,7 +15231,8 @@ msgstr "Haben"
 
 #: ../src/gnome/window-reconcile2.c:1270 ../src/gnome/window-reconcile.c:1307
 msgid "Are you sure you want to delete the selected transaction?"
-msgstr "Sind Sie sicher, dass Sie den ausgewählten Buchungssatz löschen wollen?"
+msgstr ""
+"Sind Sie sicher, dass Sie den ausgewählten Buchungssatz löschen wollen?"
 
 #. statement date title/value
 #: ../src/gnome/window-reconcile2.c:1800 ../src/gnome/window-reconcile.c:1840
@@ -19628,7 +19628,8 @@ msgstr "eine"
 
 #: ../src/report/business-reports/balsheet-eg.scm:336
 msgid "Display liabilities and equity below assets."
-msgstr "Zeigt die Passiva (Verbindlichkeiten und Eigenkapital) unter den Aktiva an."
+msgstr ""
+"Zeigt die Passiva (Verbindlichkeiten und Eigenkapital) unter den Aktiva an."
 
 #: ../src/report/business-reports/balsheet-eg.scm:338
 msgid "Two"
@@ -19636,7 +19637,8 @@ msgstr "zwei"
 
 #: ../src/report/business-reports/balsheet-eg.scm:339
 msgid "Display assets on the left, liabilities and equity on the right."
-msgstr "Stellt Aktiva links und Passiva (Verbindlichkeiten und Eigenkapital) rechts "
+msgstr ""
+"Stellt Aktiva links und Passiva (Verbindlichkeiten und Eigenkapital) rechts "
 "dar."
 
 #: ../src/report/business-reports/balsheet-eg.scm:344
@@ -21152,9 +21154,9 @@ msgstr "Diese Seite zeigt Ihnen Details zu steuerrelevanten Konten."
 
 #. we must confirm the user wants to delete their precious custom report!
 #: ../src/report/report-gnome/dialog-custom-report.c:315
-#, fuzzy, c-format
+#, c-format
 msgid "Are you sure you want to delete %s?"
-msgstr "Sind Sie sicher, dass Sie »%s« löschen möchten?"
+msgstr "Sind Sie sicher, dass Sie \"%s\" löschen möchten?"
 
 #: ../src/report/report-gnome/dialog-custom-report.c:421
 msgid "You must select a report configuration to load."
@@ -25507,7 +25509,8 @@ msgstr "Keine Devisen/Wertpapiere zum Börsenkurs-Abruf markiert."
 #: ../src/scm/price-quotes.scm:491 ../src/scm/price-quotes.scm:492
 #: ../src/scm/price-quotes.scm:515 ../src/scm/price-quotes.scm:518
 msgid "Unable to get quotes or diagnose the problem."
-msgstr "Abrufen der Börsenkurse fehlgeschlagen. Genauere Diagnose ebenfalls "
+msgstr ""
+"Abrufen der Börsenkurse fehlgeschlagen. Genauere Diagnose ebenfalls "
 "fehlgeschlagen."
 
 #: ../src/scm/price-quotes.scm:497 ../src/scm/price-quotes.scm:499

commit 9ba3e7a442d25cc91281b69c1c86259b40e45914
Author: Mechtilde <ooo at mechtilde.de>
Date:   Sat Jan 2 21:44:54 2016 +0100

    remove some fuzzy flags

diff --git a/po/de.po b/po/de.po
index 3d129aa..1afcc19 100644
--- a/po/de.po
+++ b/po/de.po
@@ -18,8 +18,12 @@ msgstr ""
 "PO-Revision-Date: 2015-12-21 20:26+0100\n"
 =======
 "POT-Creation-Date: 2015-12-31 09:15+0100\n"
+<<<<<<< bfb978eb886cbf3bb867a62b60ca3df39487480e
 "PO-Revision-Date: 2016-01-02 15:19+0100\n"
 >>>>>>> add some translations
+=======
+"PO-Revision-Date: 2016-01-02 16:10+0100\n"
+>>>>>>> remove some fuzzy flags
 "Last-Translator: Mechtilde <ooo at mechtilde.de>\n"
 "Language-Team: GnuCash-de <gnucash-de at gnucash.org>\n"
 "Language: German\n"
@@ -5380,12 +5384,12 @@ msgid "Scheduled Transactions"
 msgstr "Terminierte Buchungen"
 
 #: ../src/gnome/dialog-sx-editor.c:798
-#, fuzzy
 msgid ""
 "Scheduled Transactions with variables or involving more than one commodity "
 "cannot be automatically created."
 msgstr ""
-"Terminierte Buchungen mit Variablen können nicht automatisch erstellt werden."
+"Terminierte Buchungen mit Variablen oder mit mehr als einem Wertpapier "
+"können nicht automatisch erstellt werden."
 
 #: ../src/gnome/dialog-sx-from-trans.c:557
 msgid ""
@@ -8176,9 +8180,8 @@ msgid ""
 msgstr ""
 
 #: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:101
-#, fuzzy
 msgid "Number of transactions to show in a register."
-msgstr "Anzahl Buchungen:"
+msgstr "Anzahl Buchungen, die angezeigt werden."
 
 #: ../src/gnome/gschemas/org.gnucash.gschema.xml.in.in.h:102
 #: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:144
@@ -8421,9 +8424,9 @@ msgstr ""
 "jeweiligen Index von 0 bis 8."
 
 #: ../src/gnome/gschemas/org.gnucash.window.pages.gschema.xml.in.in.h:1
-#, fuzzy
+
 msgid "Display this column"
-msgstr "Konto anzeigen?"
+msgstr "Diese Spalte anzeigen?"
 
 #: ../src/gnome/gschemas/org.gnucash.window.pages.gschema.xml.in.in.h:2
 msgid ""
@@ -8455,7 +8458,6 @@ msgstr ""
 "machen. Bitte sorgen Sie für ein konkret rechtzeitiges Backup."
 
 #: ../src/gnome/gtkbuilder/assistant-acct-period.glade.h:4
-#, fuzzy
 msgid "Setup Account Period"
 msgstr "Buchführungsperioden einrichten"
 
@@ -8468,6 +8470,7 @@ msgid ""
 "\n"
 "Books will be closed at midnight on the selected date."
 msgstr ""
+"\n"
 "Wählen Sie einen Buchungszeitraum und ein Abschlussdatum für diesen "
 "Zeitraum. Der Buchabschluss wird für Mitternacht jenes Datums gespeichert."
 
@@ -8650,7 +8653,6 @@ msgstr ""
 "Sie die erstellte Terminierte Buchung direkt ändern."
 
 #: ../src/gnome/gtkbuilder/assistant-loan.glade.h:4
-#, fuzzy
 msgid "Loan / Mortgage Repayment Setup"
 msgstr "Einrichtung Hypothek/Darlehen-Tilgung"
 
@@ -8760,9 +8762,8 @@ msgid "Repayment Frequency"
 msgstr "Tilgungshäufigkeit"
 
 #: ../src/gnome/gtkbuilder/assistant-loan.glade.h:32
-#, fuzzy
 msgid "Loan Repayment"
-msgstr "Tilgung"
+msgstr "Tilgung des Darlehen"
 
 #: ../src/gnome/gtkbuilder/assistant-loan.glade.h:33
 msgid ""
@@ -8808,19 +8809,17 @@ msgid "Payment Frequency"
 msgstr "Zahlungshäufigkeit"
 
 #: ../src/gnome/gtkbuilder/assistant-loan.glade.h:44
-#, fuzzy
+
 msgid "Previous Option"
-msgstr "Erste Option"
+msgstr "Vorherige Option"
 
 #: ../src/gnome/gtkbuilder/assistant-loan.glade.h:45
-#, fuzzy
 msgid "Next Option"
-msgstr "Zahlenoptionen"
+msgstr "Nächste Option"
 
 #: ../src/gnome/gtkbuilder/assistant-loan.glade.h:46
-#, fuzzy
 msgid "Loan Payment"
-msgstr "Steuern"
+msgstr "Darlehenzahlung"
 
 #: ../src/gnome/gtkbuilder/assistant-loan.glade.h:47
 msgid ""
@@ -10168,9 +10167,8 @@ msgid "Reverse Order"
 msgstr "Wie Kontobuch"
 
 #: ../src/gnome/gtkbuilder/gnc-plugin-page-register.glade.h:50
-#, fuzzy
 msgid "Sort in descending order."
-msgstr "Spalten aufsteigend oder absteigend sortieren"
+msgstr "Absteigend sortieren"
 
 #: ../src/gnome/gtkbuilder/window-autoclear.glade.h:1
 msgid "<b>Auto-Clear Information</b>"
@@ -10226,9 +10224,8 @@ msgid "Select"
 msgstr "Auswählen"
 
 #: ../src/gnome-search/dialog-search.c:1077
-#, fuzzy
 msgid "Order"
-msgstr "Bestellungsnummer"
+msgstr "Bestellung"
 
 #: ../src/gnome-search/dialog-search.c:1083
 msgid "New Transaction"
@@ -11095,9 +11092,8 @@ msgid ""
 msgstr ""
 
 #: ../src/gnome-utils/dialog-transfer.c:1331
-#, fuzzy
 msgid "Finance::Quote must be installed to enable this button."
-msgstr "Warnung: Modul Finance::Quote ist nicht korrekt installiert."
+msgstr "Warnung: Modul Finance::Quote muss installiert sein, um die Schaltfläche zu aktivieren."
 
 #: ../src/gnome-utils/dialog-transfer.c:1433
 msgid ""
@@ -12263,7 +12259,6 @@ msgstr ""
 "Änderungen in der Buchung speichern, oder möchten Sie abbrechen?"
 
 #: ../src/gnome-utils/gnc-tree-control-split-reg.c:1738
-#, fuzzy
 msgid "_Return"
 msgstr "Kapitalverzinsung"
 
@@ -12414,7 +12409,6 @@ msgid "Fee"
 msgstr "Gebühr"
 
 #: ../src/gnome-utils/gnc-tree-model-split-reg.c:2915
-#, fuzzy
 msgid "ATM Withdraw"
 msgstr "Belastung"
 
@@ -12724,7 +12718,7 @@ msgstr "Inhaber ID"
 
 #: ../src/gnome-utils/gnc-tree-view-owner.c:418
 msgid "Address Name"
-msgstr "Adressname: "
+msgstr "Adressname "
 
 #: ../src/gnome-utils/gnc-tree-view-owner.c:423
 msgid "Address 1"
@@ -12775,12 +12769,12 @@ msgid "Save the changed transaction?"
 msgstr "Geänderte Buchung speichern?"
 
 #: ../src/gnome-utils/gnc-tree-view-split-reg.c:2415
-#, fuzzy
 msgid ""
 "The current transaction has changed. Would you like to record the changes, "
 "or discard the changes?"
 msgstr ""
-"Die aktuelle Buchungsvorlage wurde verändert. Soll sie gespeichert werden?"
+"Die aktuelle Buchung wurde verändert. Wollen Sie die Änderungen erfassen "
+"oder verwerfen"
 
 #: ../src/gnome-utils/gnc-tree-view-split-reg.c:2453
 #: ../src/register/ledger-core/split-register-control.c:1549
@@ -12860,14 +12854,12 @@ msgid "Debit Formula"
 msgstr "Haben-Formel"
 
 #: ../src/gnome-utils/gnc-tree-view-split-reg.c:3263
-#, fuzzy
 msgid "Enter Due Date"
-msgstr "Fälligkeitsdatum"
+msgstr "Fälligkeitsdatum eingeben"
 
 #: ../src/gnome-utils/gnc-tree-view-split-reg.c:3274
 msgid "Enter the transaction reference, such as the invoice or check number"
-msgstr ""
-"Geben Sie die Buchungsreferenz ein, z.B. die Rechnungs- oder Scheck-Nummer"
+msgstr "Geben Sie die Buchungsreferenz ein, z.B. die Rechnungs- oder Scheck-Nummer"
 
 #: ../src/gnome-utils/gnc-tree-view-split-reg.c:3276
 #: ../src/gnome-utils/gnc-tree-view-split-reg.c:3283
@@ -12921,20 +12913,17 @@ msgid "Reason the transaction was voided"
 msgstr "Grund für Buchungsstornierung"
 
 #: ../src/gnome-utils/gnc-tree-view-split-reg.c:3339
-#, fuzzy
 msgid "Enter the reconcile type"
-msgstr "Sortiere nach Abgleich-Datum"
+msgstr "Abgleich-Typ eingeben"
 
 #: ../src/gnome-utils/gnc-tree-view-split-reg.c:3349
-#, fuzzy
 msgid "Enter the type of transaction"
-msgstr "Geben Sie die Art des Postens ein"
+msgstr "Geben Sie die Art der Buchung ein"
 
 #: ../src/gnome-utils/gnc-tree-view-split-reg.c:3359
 #: ../src/gnome-utils/gnc-tree-view-split-reg.c:3379
-#, fuzzy
 msgid "Enter the value of shares bought or sold"
-msgstr "Geben Sie die verkaufte Anzahl von Aktien ein"
+msgstr "Geben Sie den Wert der ge- oder verkauften Aktien ein"
 
 #: ../src/gnome-utils/gnc-tree-view-split-reg.c:3369
 #: ../src/gnome-utils/gnc-tree-view-split-reg.c:3381
@@ -13042,9 +13031,8 @@ msgstr ""
 "gespeichert werden oder die Änderung verworfen werden."
 
 #: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:5
-#, fuzzy
 msgid "Duplicating a changed invoice entry"
-msgstr "Eine geänderte Rechnungszeile duplizieren"
+msgstr "Einen geänderte Rechnungseintrag duplizieren"
 
 #: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:6
 msgid ""
@@ -13064,9 +13052,8 @@ msgid "This dialog is presented before allowing you to delete a commodity."
 msgstr "Diese Rückfrage kommt vor dem Löschen einer Devise/Wertpapier."
 
 #: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:9
-#, fuzzy
 msgid "Delete a commodity with price quotes"
-msgstr "Eine Devise/Wertpapier und deren Kurse löschen"
+msgstr "Eine Devise/Wertpapier mit den Kurswerten löschen"
 
 #: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:10
 msgid ""
@@ -13195,11 +13182,8 @@ msgid "This dialog is presented before allowing you to delete a transaction."
 msgstr "Diese Rückfrage kommt vor dem Löschen einer Buchung."
 
 #: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:30
-#, fuzzy
 msgid "Delete a transaction with reconciled splits"
-msgstr ""
-"Sie können eine Buchung mit abgeglichenen oder bestätigten Buchungsteilen "
-"nicht ungültig machen."
+msgstr "Sie können eine Buchung mit abgeglichenen Buchungen nicht löschen."
 
 #: ../src/gnome-utils/gschemas/org.gnucash.warnings.gschema.xml.in.in.h:31
 msgid ""
@@ -13557,7 +13541,6 @@ msgid "Show _hidden accounts"
 msgstr "_Versteckte Konten anzeigen"
 
 #: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:55
-#, fuzzy
 msgid "Show accounts which have the option \"Hidden\" checked."
 msgstr "Konten anzeigen, die als »Versteckt« markiert sind."
 
@@ -13566,7 +13549,6 @@ msgid "Show _zero total accounts"
 msgstr "Konten mit Saldo _Null anzeigen"
 
 #: ../src/gnome-utils/gtkbuilder/dialog-account.glade.h:57
-#, fuzzy
 msgid "Show accounts which have a zero total value."
 msgstr "Konten nicht anzeigen, die Kontostand Null haben."
 
@@ -14015,8 +13997,7 @@ msgstr "Konteneinrichtung bei neuer Datei"
 #: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:61
 #, fuzzy
 msgid "Present the new account list dialog when you choose File -> New File."
-msgstr ""
-"Assistent für neue Konteneinrichtung öffnen, wenn »Neue Datei« im Menü "
+msgstr "Assistent für neue Konteneinrichtung öffnen, wenn »Neue Datei« im Menü "
 "»Datei« gewählt wird"
 
 #: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:64
@@ -14024,7 +14005,6 @@ msgid "Display \"_tip of the day\" dialog"
 msgstr "»Tipp des Tages« anzeigen"
 
 #: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:65
-#, fuzzy
 msgid "Display hints for using GnuCash at startup."
 msgstr "Anzeigen von Hinweisen beim Start von GnuCash"
 
@@ -14405,7 +14385,6 @@ msgid "_Save window size and position"
 msgstr "_Fenstergrößen und -positionen speichern"
 
 #: ../src/gnome-utils/gtkbuilder/dialog-preferences.glade.h:171
-#, fuzzy
 msgid "Save window size and location when it is closed."
 msgstr "Fenstergröße und -positionen speichern"
 
@@ -14583,9 +14562,8 @@ msgid "<b>Tax Table Entries</b>"
 msgstr "<b>Einträge Steuertabelle</b>"
 
 #: ../src/gnome-utils/gtkbuilder/dialog-tax-table.glade.h:10
-#, fuzzy
 msgid "Value $"
-msgstr "Wert"
+msgstr "Wert €"
 
 #: ../src/gnome-utils/gtkbuilder/dialog-tax-table.glade.h:12
 #, no-c-format

commit 97a8892f01009c8577a82680ba50f2010871ef3c
Author: Mechtilde <ooo at mechtilde.de>
Date:   Sat Jan 2 15:20:24 2016 +0100

    add some translations

diff --git a/po/de.po b/po/de.po
index 175a5dc..3d129aa 100644
--- a/po/de.po
+++ b/po/de.po
@@ -13,8 +13,13 @@ msgid ""
 msgstr ""
 "Project-Id-Version: gnucash-2.0\n"
 "Report-Msgid-Bugs-To: \n"
+<<<<<<< e4a249d94edd56c8c56a6062f7f00c4643dd8081
 "POT-Creation-Date: 2016-01-05 05:25+0100\n"
 "PO-Revision-Date: 2015-12-21 20:26+0100\n"
+=======
+"POT-Creation-Date: 2015-12-31 09:15+0100\n"
+"PO-Revision-Date: 2016-01-02 15:19+0100\n"
+>>>>>>> add some translations
 "Last-Translator: Mechtilde <ooo at mechtilde.de>\n"
 "Language-Team: GnuCash-de <gnucash-de at gnucash.org>\n"
 "Language: German\n"
@@ -293,8 +298,7 @@ msgstr "Die Adresse (URL) Ihrer Webseite."
 
 #: ../src/app-utils/business-prefs.scm:107
 msgid "The ID for your company (eg 'Tax-ID: 00-000000)."
-msgstr ""
-"Eine Identifikationsnummer ihres Geschäfts (z.B. USt-IdNr.: DE123456789)."
+msgstr "Eine Identifikationsnummer ihres Geschäfts (z.B. USt-IdNr.: DE123456789)."
 
 #: ../src/app-utils/business-prefs.scm:112
 msgid "Default Customer TaxTable"
@@ -302,8 +306,7 @@ msgstr "Voreinstellung Kunde Steuertabelle"
 
 #: ../src/app-utils/business-prefs.scm:113
 msgid "The default tax table to apply to customers."
-msgstr ""
-"Voreinstellung für die Steuertabelle, die bei Kunden angewendet werden soll."
+msgstr "Voreinstellung für die Steuertabelle, die bei Kunden angewendet werden soll."
 
 #: ../src/app-utils/business-prefs.scm:118
 msgid "Default Vendor TaxTable"
@@ -311,8 +314,7 @@ msgstr "Voreinstellung Lieferant Steuertabelle"
 
 #: ../src/app-utils/business-prefs.scm:119
 msgid "The default tax table to apply to vendors."
-msgstr ""
-"Voreinstellung für die Steuertabelle, die bei Lieferanten angewendet werden "
+msgstr "Voreinstellung für die Steuertabelle, die bei Lieferanten angewendet werden "
 "soll."
 
 #: ../src/app-utils/business-prefs.scm:124
@@ -1386,7 +1388,7 @@ msgstr "Zahlungsbedingung »%s« ist in Benutzung. Sie können sie nicht lösche
 #: ../src/gnome-utils/dialog-tax-table.c:571
 #, c-format
 msgid "Are you sure you want to delete \"%s\"?"
-msgstr "Sind Sie sicher, dass Sie »%s« löschen möchten?"
+msgstr "Sind Sie sicher, dass Sie \"%s\" löschen möchten?"
 
 #: ../src/business/business-gnome/dialog-choose-owner.c:75
 msgid ""
@@ -1851,7 +1853,7 @@ msgstr "Bemerkungen Rechnung"
 #: ../src/report/business-reports/fancy-invoice.scm:324
 #: ../src/report/business-reports/invoice.scm:309
 msgid "Billing ID"
-msgstr "Auftragsnummer"
+msgstr "Abrechnungs-ID"
 
 #: ../src/business/business-gnome/dialog-invoice.c:3009
 #: ../src/business/business-gnome/dialog-invoice.c:3043
@@ -2388,8 +2390,7 @@ msgstr "Neuer Mitarbeiter..."
 
 #: ../src/business/business-gnome/gnc-plugin-business.c:247
 msgid "Open the New Employee dialog"
-msgstr ""
-"Den Dialog für das Anlegen neuer Mitarbeiterinnen und Mitarbeitern öffnen"
+msgstr "Den Dialog für das Anlegen neuer Mitarbeiterinnen und Mitarbeitern öffnen"
 
 #: ../src/business/business-gnome/gnc-plugin-business.c:251
 msgid "_Find Employee..."
@@ -2417,7 +2418,7 @@ msgstr "Den Dialog für die Suche nach Auslagenerstattungen öffnen"
 
 #: ../src/business/business-gnome/gnc-plugin-business.c:273
 msgid "Sales _Tax Table"
-msgstr "Steuertabelle"
+msgstr "Steuertabelle..."
 
 #: ../src/business/business-gnome/gnc-plugin-business.c:274
 msgid "View and edit the list of Sales Tax Tables (GST/VAT)"
@@ -2988,7 +2989,7 @@ msgstr ""
 #: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:11
 #: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:23
 msgid "The invoice report to be used for printing."
-msgstr "Der Rechnungsbericht wird zum Drucken benutzt."
+msgstr "Das Rechnungsformular wird zum Drucken benutzt."
 
 #: ../src/business/business-gnome/gschemas/org.gnucash.dialogs.business.gschema.xml.in.in.h:12
 msgid "The name of the report to be used for invoice printing."
@@ -3067,7 +3068,7 @@ msgstr ""
 #: ../src/report/business-reports/invoice.scm:826
 #: ../src/report/report-gnome/gnc-plugin-page-report.c:1690
 msgid "Printable Invoice"
-msgstr "Druckbare Rechnung"
+msgstr "Druckbare Rechnung..."
 
 #: ../src/business/business-gnome/gtkbuilder/business-prefs.glade.h:2
 #: ../src/report/business-reports/taxinvoice.eguile.scm:428
@@ -3315,7 +3316,7 @@ msgstr "Tabelle"
 #: ../src/report/business-reports/fancy-invoice.scm:947
 #: ../src/report/business-reports/invoice.scm:765
 msgid "Terms"
-msgstr "Bedingungen"
+msgstr "Zahlungsbedingungen"
 
 #: ../src/business/business-gnome/gtkbuilder/dialog-billterms.glade.h:28
 msgid "Close this window"
@@ -4535,8 +4536,7 @@ msgstr "Zusätzliche Kosten Kreditkarte"
 
 #: ../src/engine/gncInvoice.c:1609
 msgid "Generated from an invoice. Try unposting the invoice."
-msgstr ""
-"Aus einer Rechnung erzeugt. Für Änderungen müssen Sie die Buchung der "
+msgstr "Aus einer Rechnung erzeugt. Für Änderungen müssen Sie die Buchung der "
 "Rechnung löschen."
 
 #: ../src/engine/gncInvoice.c:2042
@@ -4985,8 +4985,7 @@ msgstr ""
 
 #: ../src/gnome/dialog-commodities.c:177
 msgid "Are you sure you want to delete the selected commodity?"
-msgstr ""
-"Sind Sie sicher, dass Sie die gewählte Devise/Wertpapier löschen wollen?"
+msgstr "Sind Sie sicher, dass Sie die gewählte Devise/Wertpapier löschen wollen?"
 
 #: ../src/gnome/dialog-commodities.c:186
 msgid "Delete commodity?"
@@ -5164,12 +5163,11 @@ msgstr "Posten im Konto %s"
 msgid "Are you sure you want to delete the selected price?"
 msgid_plural "Are you sure you want to delete the %d selected prices?"
 msgstr[0] "Sind Sie sicher, dass Sie den gewählten Kurswert löschen wollen?"
-msgstr[1] ""
-"Sind Sie sicher, dass Sie die %d gewählten Kurswerte löschen wollen?"
+msgstr[1] "Sind Sie sicher, dass Sie die %d gewählten Kurswerte löschen wollen?"
 
 #: ../src/gnome/dialog-price-edit-db.c:193
 msgid "Delete prices?"
-msgstr "Preise löschen?"
+msgstr "Kurse löschen?"
 
 #: ../src/gnome/dialog-price-editor.c:213
 msgid "You must select a Security."
@@ -6361,7 +6359,7 @@ msgstr "Zur freien Buchungszeile am Ende dieses Kontobuchs gehen"
 #: ../src/gnome/gnc-plugin-page-register2.c:361
 #: ../src/gnome/gnc-plugin-page-register.c:370
 msgid "Edit E_xchange Rate"
-msgstr "Wechsel_kurs bearbeiten"
+msgstr "Wechsel_kurs bearbeiten..."
 
 #: ../src/gnome/gnc-plugin-page-register2.c:362
 #: ../src/gnome/gnc-plugin-page-register.c:371
@@ -6439,7 +6437,7 @@ msgstr "Zusätzliches _Datum anzeigen"
 
 #: ../src/gnome/gnc-plugin-page-register2.c:410
 msgid "Show entered and reconciled dates"
-msgstr "Eingabedatum und Abgleichen-Datum anzeigen"
+msgstr "Datum von Eingabe und Abgleichen anzeigen"
 
 #: ../src/gnome/gnc-plugin-page-register2.c:415
 #: ../src/gnome/gnc-plugin-page-register.c:418
@@ -8992,7 +8990,7 @@ msgstr ""
 
 #: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:12
 msgid "New _Price:"
-msgstr "Neuer _Preis:"
+msgstr "Neuer _Kurs:"
 
 #: ../src/gnome/gtkbuilder/assistant-stock-split.glade.h:13
 msgid "Currenc_y:"
@@ -9327,7 +9325,7 @@ msgid ""
 "specified date. Otherwise only stock prices added by Finance::Quote will be "
 "deleted."
 msgstr ""
-"Wenn gewählt, werden auch manuell eingegebene Preise/Kurse vor dem gewählten "
+"Wenn gewählt, werden auch manuell eingegebene Kurse vor dem gewählten "
 "Datum gelöscht. Andernfalls werden nur von Finance::Quote hinzugefügte Kurse "
 "gelöscht."
 
@@ -9423,12 +9421,12 @@ msgstr "Nettoanteilswert"
 #: ../src/gnome/gtkbuilder/dialog-price.glade.h:28
 #: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:26
 msgid "Dummy commodity Line"
-msgstr "Dummy commodity Line"
+msgstr "Dummy Wertpapier-Linie"
 
 #: ../src/gnome/gtkbuilder/dialog-price.glade.h:29
 #: ../src/gnome-utils/gtkbuilder/dialog-commodity.glade.h:27
 msgid "Dummy namespace Line"
-msgstr "Dummy namespace Line"
+msgstr "Dummy Namensraum-Linie"
 
 #: ../src/gnome/gtkbuilder/dialog-print-check.glade.h:1
 msgid "Save Custom Check Format"
@@ -11153,7 +11151,7 @@ msgstr "Soll Betrag:"
 #: ../src/gnome-utils/dialog-transfer.c:2064
 #: ../src/gnome-utils/gtkbuilder/dialog-transfer.glade.h:14
 msgid "To Amount:"
-msgstr "zum Betrag:"
+msgstr "Zum Betrag:"
 
 #: ../src/gnome-utils/dialog-utils.c:547
 msgid "Remember and don't _ask me again."
@@ -12730,35 +12728,34 @@ msgstr "Adressname: "
 
 #: ../src/gnome-utils/gnc-tree-view-owner.c:423
 msgid "Address 1"
-msgstr "Adresse 1: "
+msgstr "Adresse 1 "
 
 #: ../src/gnome-utils/gnc-tree-view-owner.c:428
 msgid "Address 2"
-msgstr "Adresse 2: "
+msgstr "Adresse 2 "
 
 #: ../src/gnome-utils/gnc-tree-view-owner.c:433
 msgid "Address 3"
-msgstr "Adresse 3: "
+msgstr "Adresse 3 "
 
 #: ../src/gnome-utils/gnc-tree-view-owner.c:438
 msgid "Address 4"
-msgstr "Adresse 4: "
+msgstr "Adresse 4 "
 
 #: ../src/gnome-utils/gnc-tree-view-owner.c:448
 #: ../src/report/business-reports/taxinvoice.eguile.scm:191
 msgid "Fax"
-msgstr "Fax:"
+msgstr "Fax"
 
 #: ../src/gnome-utils/gnc-tree-view-owner.c:453
 msgid "E-mail"
-msgstr "E-Mail:"
+msgstr "E-Mail"
 
 #. Translators: This string has a context prefix; the translation
 #. must only contain the part after the | character.
 #: ../src/gnome-utils/gnc-tree-view-owner.c:482
-#, fuzzy
 msgid "Column letter for 'Active'|A"
-msgstr "K"
+msgstr "A"
 
 #: ../src/gnome-utils/gnc-tree-view-price.c:424
 msgid "Security"
@@ -12957,7 +12954,7 @@ msgstr "Geben Sie den Wechselkurs an"
 #: ../src/gnome-utils/gnc-tree-view-split-reg.c:3411
 #: ../src/register/ledger-core/split-register-model.c:1289
 msgid "Enter the effective share price"
-msgstr "Geben Sie den effektiven Aktienpreis ein"
+msgstr "Geben Sie den effektiven Aktienkurs ein"
 
 #: ../src/gnome-utils/gnc-tree-view-split-reg.c:3421
 #: ../src/register/ledger-core/split-register-model.c:2147
@@ -15257,8 +15254,7 @@ msgstr "Haben"
 
 #: ../src/gnome/window-reconcile2.c:1270 ../src/gnome/window-reconcile.c:1307
 msgid "Are you sure you want to delete the selected transaction?"
-msgstr ""
-"Sind Sie sicher, dass Sie den ausgewählten Buchungssatz löschen wollen?"
+msgstr "Sind Sie sicher, dass Sie den ausgewählten Buchungssatz löschen wollen?"
 
 #. statement date title/value
 #: ../src/gnome/window-reconcile2.c:1800 ../src/gnome/window-reconcile.c:1840
@@ -19654,8 +19650,7 @@ msgstr "eine"
 
 #: ../src/report/business-reports/balsheet-eg.scm:336
 msgid "Display liabilities and equity below assets."
-msgstr ""
-"Zeigt die Passiva (Verbindlichkeiten und Eigenkapital) unter den Aktiva an."
+msgstr "Zeigt die Passiva (Verbindlichkeiten und Eigenkapital) unter den Aktiva an."
 
 #: ../src/report/business-reports/balsheet-eg.scm:338
 msgid "Two"
@@ -19663,8 +19658,7 @@ msgstr "zwei"
 
 #: ../src/report/business-reports/balsheet-eg.scm:339
 msgid "Display assets on the left, liabilities and equity on the right."
-msgstr ""
-"Stellt Aktiva links und Passiva (Verbindlichkeiten und Eigenkapital) rechts "
+msgstr "Stellt Aktiva links und Passiva (Verbindlichkeiten und Eigenkapital) rechts "
 "dar."
 
 #: ../src/report/business-reports/balsheet-eg.scm:344
@@ -21186,13 +21180,11 @@ msgstr "Sind Sie sicher, dass Sie »%s« löschen möchten?"
 
 #: ../src/report/report-gnome/dialog-custom-report.c:421
 msgid "You must select a report configuration to load."
-msgstr ""
-"Sie müssen eine Berichtskonfiguration auswählen, die Sie erstellen wollen."
+msgstr "Sie müssen eine Berichtskonfiguration auswählen, die Sie erstellen wollen."
 
 #: ../src/report/report-gnome/dialog-custom-report.c:432
 msgid "You must select a report configuration to delete."
-msgstr ""
-"Sie müssen einen Berichtskonfiguration auswählen, die Sie löschen wollen."
+msgstr "Sie müssen einen Berichtskonfiguration auswählen, die Sie löschen wollen."
 
 #: ../src/report/report-gnome/dialog-custom-report.c:441
 msgid "Unable to change report configuration name."
@@ -25537,8 +25529,7 @@ msgstr "Keine Devisen/Wertpapiere zum Börsenkurs-Abruf markiert."
 #: ../src/scm/price-quotes.scm:491 ../src/scm/price-quotes.scm:492
 #: ../src/scm/price-quotes.scm:515 ../src/scm/price-quotes.scm:518
 msgid "Unable to get quotes or diagnose the problem."
-msgstr ""
-"Abrufen der Börsenkurse fehlgeschlagen. Genauere Diagnose ebenfalls "
+msgstr "Abrufen der Börsenkurse fehlgeschlagen. Genauere Diagnose ebenfalls "
 "fehlgeschlagen."
 
 #: ../src/scm/price-quotes.scm:497 ../src/scm/price-quotes.scm:499

commit 5909ff366a29c9c6334e1bbbf62107c5b3ffc56e
Author: Per Johansson <per at johansson.name>
Date:   Sun Apr 24 22:49:55 2016 +0300

    FIxed remaining names.

diff --git a/accounts/fi_FI/acctchrt_sbr-xbrl.gnucash-xea b/accounts/fi_FI/acctchrt_sbr-xbrl.gnucash-xea
index cf5a77f..e970333 100644
--- a/accounts/fi_FI/acctchrt_sbr-xbrl.gnucash-xea
+++ b/accounts/fi_FI/acctchrt_sbr-xbrl.gnucash-xea
@@ -1928,7 +1928,7 @@
         <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
     </gnc:account>
     <gnc:account version="2.0.0">
-        <act:name>VI Tilikauden voitto (tappio) (ay, ky, tmi)</act:name>
+        <act:name>Tilikauden voitto (tappio) (ay, ky, tmi)</act:name>
         <act:id type="guid">a3f9cbe35db4f36ae5f718dd4e016224</act:id>
         <act:type>LIABILITY</act:type>
         <act:commodity>
@@ -2342,7 +2342,7 @@
         <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
     </gnc:account>
     <gnc:account version="2.0.0">
-        <act:name>Koncernreserv</act:name>
+        <act:name>Konsernireservi</act:name>
         <act:id type="guid">e5b65287efc60272cc7405f8555cd464</act:id>
         <act:type>LIABILITY</act:type>
         <act:commodity>

commit 10d80426c2e57888e9a0a51e0f9c8e5bc242ae43
Author: Per Johansson <per at johansson.name>
Date:   Sun Apr 24 22:36:37 2016 +0300

    Added Finnish account plan.

diff --git a/accounts/fi_FI/Makefile.am b/accounts/fi_FI/Makefile.am
index 2503518..83fd51e 100644
--- a/accounts/fi_FI/Makefile.am
+++ b/accounts/fi_FI/Makefile.am
@@ -3,6 +3,7 @@ accountdir = ${GNC_ACCOUNTS_DIR}/fi_FI
 
 account_DATA = \
   acctchrt_common.gnucash-xea \
+  acctchrt_sbr-xbrl.gnucash-xea \
   acctchrt_ry.gnucash-xea
 
 EXTRA_DIST = \
diff --git a/accounts/fi_FI/acctchrt_sbr-xbrl.gnucash-xea b/accounts/fi_FI/acctchrt_sbr-xbrl.gnucash-xea
new file mode 100644
index 0000000..cf5a77f
--- /dev/null
+++ b/accounts/fi_FI/acctchrt_sbr-xbrl.gnucash-xea
@@ -0,0 +1,2690 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<gnc-account-example
+        xmlns="http://www.gnucash.org/XML/"
+        xmlns:act="http://www.gnucash.org/XML/act"
+        xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
+        xmlns:gnc="http://www.gnucash.org/XML/gnc"
+        xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
+        xmlns:slot="http://www.gnucash.org/XML/slot"
+>
+    <gnc-act:title>Yritykset ja organisaatiot</gnc-act:title>
+    <gnc-act:short-description>Yritykset ja organisaatiot</gnc-act:short-description>
+    <gnc-act:long-description>
+        Tilit mukaan Kirjanpitoasetus.
+        Ref: http://www.finlex.fi/fi/laki/ajantasa/1997/19971339
+        Tilinumerot pääasiassa mukaan TIEKE Tietoyhteiskunnan kehittämiskeskus ry, Raportointikoodisto-SBR-XBRL-taksonomia_kartoistus2013.xlsx
+        Ref: http://www.tieke.fi/display/XBRL/SBR+Taksonomia
+        Vaihtuvat vastaavat käyttää LIABILITY sihasta EQUITY.
+    </gnc-act:long-description>
+    <gnc-act:exclude-from-select-all>1</gnc-act:exclude-from-select-all>
+    <gnc:account version="2.0.0">
+        <act:name>Root Account</act:name>
+        <act:id type="guid">91ca36e058bbbb5deae199ca187e701e</act:id>
+        <act:type>ROOT</act:type>
+        <act:commodity-scu>0</act:commodity-scu>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Rahoitustuotot ja –kulut</act:name>
+        <act:id type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>90</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+            <slot>
+                <slot:key>placeholder</slot:key>
+                <slot:value type="string">true</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Tuotot osuuksista saman konsernin yrityksissä</act:name>
+        <act:id type="guid">8477211fac2faa884cf74b6a1b668eb2</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>902</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Tuotot osuuksista omistusyhteysyrityksissä</act:name>
+        <act:id type="guid">0ce625b3919db18a4fba426d5ad2e167</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>903</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Tuotot muista pysyvien vastaavien sijoituksista</act:name>
+        <act:id type="guid">bf057dcf7a4e4531f9e696939b715d64</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>904</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Muut korko- ja rahoitustuotot</act:name>
+        <act:id type="guid">8dbb8b0fbd738a8bacfca43d0a2b6ac8</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>905</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Arvonalentumiset pysyvien vastaavien sijoituksista</act:name>
+        <act:id type="guid">9612615b024452c1ccf5825526e1429b</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>906</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Arvonalentumiset vaihtuvien vastaavien rahoitusarvopapereista</act:name>
+        <act:id type="guid">ab491349ef0c803805f03ef9dd8a3f54</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>907</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Korkokulut ja muut rahoituskulut</act:name>
+        <act:id type="guid">580ef40b933abc20df58797a9d8dc900</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>908</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Tilinpäätössiirrot</act:name>
+        <act:id type="guid">aa508289d9883ff11d9072e0c7172289</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>95</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+            <slot>
+                <slot:key>placeholder</slot:key>
+                <slot:value type="string">true</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Poistoeron muutos</act:name>
+        <act:id type="guid">00191cac48436c81cc74f3653271af3d</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>950</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">aa508289d9883ff11d9072e0c7172289</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Verotusperusteisten varausten muutos</act:name>
+        <act:id type="guid">7d05b333d6734b73a167ef6fd4933b83</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>951</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">aa508289d9883ff11d9072e0c7172289</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Konserniavustus</act:name>
+        <act:id type="guid">82cdfecc6036fcb0aa0804cde45dfced</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>952</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">aa508289d9883ff11d9072e0c7172289</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Tuloverot</act:name>
+        <act:id type="guid">6f5fa22c3da4148c79d8c1bd0e5e6123</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>96</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Muut välittömät verot</act:name>
+        <act:id type="guid">9e91851f7f89e43d6bc4e622973d89d0</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>97</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Liikevaihto</act:name>
+        <act:id type="guid">4068fc54bda42ca931a61a9ce5184bfc</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>30</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Valmiiden ja keskeneräisten tuotteiden varastojen muutos</act:name>
+        <act:id type="guid">0c1b0303a160348550f60aa28c788662</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>37</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Valmistus omaan käyttöön</act:name>
+        <act:id type="guid">602fdec8b05c721b546919ad75931195</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>38</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Liiketoiminnan muut tuotot</act:name>
+        <act:id type="guid">cd6981fd693cfdb8f5a1b33834e41035</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>39</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Materiaalit ja palvelut</act:name>
+        <act:id type="guid">28ffd589b69c52be7b6483468fa3caf0</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>40</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Aineet tarvikkeet ja tavarat</act:name>
+        <act:id type="guid">04b83b724eedad37f18ce7c06dd11bd5</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>400</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">28ffd589b69c52be7b6483468fa3caf0</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Ostot tilikauden aikana</act:name>
+        <act:id type="guid">951867ae0a1ad6c4888cad02a93a4e07</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>4000</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">04b83b724eedad37f18ce7c06dd11bd5</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Varastojen muutos</act:name>
+        <act:id type="guid">df4109a609247caf00215457cab4f819</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>4007</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">04b83b724eedad37f18ce7c06dd11bd5</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Ulkopuoliset palvelut</act:name>
+        <act:id type="guid">2e1243bc13baadecfbaf52e41f37ea5b</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>407</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">28ffd589b69c52be7b6483468fa3caf0</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Henkilöstökulut</act:name>
+        <act:id type="guid">8852af5f48233f8e0df30a38158a4f6f</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>50</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Palkat ja palkkiot</act:name>
+        <act:id type="guid">193fb816d45e146ec95401dd4499888b</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>500</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8852af5f48233f8e0df30a38158a4f6f</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Henkilösivukulut</act:name>
+        <act:id type="guid">a08d7e4c30da868c2f5478b90e1b46dd</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>501</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8852af5f48233f8e0df30a38158a4f6f</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Eläkekulut</act:name>
+        <act:id type="guid">ff029e709ed5d9710659fb6c368d8513</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>5010</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">a08d7e4c30da868c2f5478b90e1b46dd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Muut henkilösivukulut</act:name>
+        <act:id type="guid">261f481c52283664e046548c4fca75bb</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>5011</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">a08d7e4c30da868c2f5478b90e1b46dd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Poistot ja arvonalentumiset</act:name>
+        <act:id type="guid">2746467380984ca397b82ef1e9e0afc1</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>60</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Suunnitelman mukaiset poistot</act:name>
+        <act:id type="guid">43b902866aeb9d9337a561df360aeebd</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>600</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">2746467380984ca397b82ef1e9e0afc1</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Arvonalentumiset pysyvien vastaavien hyödykkeistä</act:name>
+        <act:id type="guid">de1911138a1be2c625a227e6ee0a7ea4</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>602</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">2746467380984ca397b82ef1e9e0afc1</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Vaihtuvien vastaavien poikkeukselliset arvonalentumiset</act:name>
+        <act:id type="guid">879d646270395597a782494fe76bcba9</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>603</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">2746467380984ca397b82ef1e9e0afc1</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Liiketoiminnan muut kulut</act:name>
+        <act:id type="guid">fcff567ae65bfdc789648c9a94b21de8</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>70</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Pysyvät vastaavat</act:name>
+        <act:id type="guid">826e3268405c78917240d32b31cbdc75</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+            <slot>
+                <slot:key>placeholder</slot:key>
+                <slot:value type="string">true</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Aineettomat hyödykkeet</act:name>
+        <act:id type="guid">1149340ef3149246d57718a69d2d60c2</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>10</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">826e3268405c78917240d32b31cbdc75</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Kehittämismenot</act:name>
+        <act:id type="guid">939a6bec9cc8808f7468581b324942da</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>102</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">1149340ef3149246d57718a69d2d60c2</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Aineettomat oikeudet</act:name>
+        <act:id type="guid">546c42f47b092df4110e0ae54441a016</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>103</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">1149340ef3149246d57718a69d2d60c2</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Liikearvo</act:name>
+        <act:id type="guid">f8cd5606ee0733367ff6a60bab668d40</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>104</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">1149340ef3149246d57718a69d2d60c2</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Muut aineettomat hyödykkeet</act:name>
+        <act:id type="guid">4ce993dce116e12c8785586e31dc5bca</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>106</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">1149340ef3149246d57718a69d2d60c2</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Ennakkomaksut</act:name>
+        <act:id type="guid">cd74f35ec21c0a399d7678583a4e433e</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>107</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">1149340ef3149246d57718a69d2d60c2</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Konserniliikearvo</act:name>
+        <act:id type="guid">00aaa8030014ef9982a3c8a5f6b75fa8</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>105</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">1149340ef3149246d57718a69d2d60c2</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Aineelliset hyödykkeet</act:name>
+        <act:id type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>11</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">826e3268405c78917240d32b31cbdc75</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Maa- ja vesialueet</act:name>
+        <act:id type="guid">1ee0fc496854b0e4040f21c17e67ee41</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>111</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Rakennukset ja rakennelmat</act:name>
+        <act:id type="guid">675350cd67079b898be2352026028e78</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>113</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Koneet ja kalusto</act:name>
+        <act:id type="guid">aef9b376c23b9a12526e2c5e82906c6a</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>116</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Muut aineelliset hyödykkeet</act:name>
+        <act:id type="guid">5ef7f23068240129d7ead6838dbdd9bc</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>117</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Ennakkomaksut ja keskeneräiset hankinnat</act:name>
+        <act:id type="guid">795b0e57bcb1a4f0bb8e1513eace322b</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>118</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Maa- ja vesialueet (Vuokraoikeudet)</act:name>
+        <act:id type="guid">3588ea0be402cb76d6bb1c7cbe0bf55f</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>112</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Rakennukset ja rakennelmat (Vuokraoikeudet)</act:name>
+        <act:id type="guid">ffcefe488da62058b64f5d0c2d30625b</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>114</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Sijoitukset</act:name>
+        <act:id type="guid">8baa7669204fbdd46596bf0048903dcd</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>14</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">826e3268405c78917240d32b31cbdc75</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Osuudet saman konsernin yrityksissä</act:name>
+        <act:id type="guid">f84d369fd419bda9815acbf855d5046e</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>141</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Saamiset saman konsernin yrityksiltä</act:name>
+        <act:id type="guid">2416f201f9ce24c19d83d48dcf792358</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>145</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Osuudet omistusyhteysyrityksissä</act:name>
+        <act:id type="guid">2634cd55484a01d60c03a2383bcccd44</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>143</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Saamiset omistusyhteysyrityksiltä</act:name>
+        <act:id type="guid">d4397c4677667cae3cd382b3814a6dc6</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>147</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Muut osakkeet ja osuudet</act:name>
+        <act:id type="guid">cabe21ef415a48a28cee8b93596655e3</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>144</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Muut saamiset</act:name>
+        <act:id type="guid">20f70494a1aa7cc0a194ba631a155db7</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>148</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Sijoitusten arvonkorotukset</act:name>
+        <act:id type="guid">29a4ab29553d229fc4f5946b57e690cc</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>140</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Osuudet osakkuusyrityksissä</act:name>
+        <act:id type="guid">3260f95f9318680f9eece8299dad294b</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>142</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Saamiset osakkuusyrityksiltä</act:name>
+        <act:id type="guid">7611e67ee0d50e65b70de4129f50f23d</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>146</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Vaihtuvat vastaavat</act:name>
+        <act:id type="guid">444af4532e02be9325cb34bc34088e53</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+            <slot>
+                <slot:key>placeholder</slot:key>
+                <slot:value type="string">true</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Vaihto-omaisuus</act:name>
+        <act:id type="guid">eccc0966e946f4c792eaa686d151eaac</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>15</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">444af4532e02be9325cb34bc34088e53</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Aineet ja tarvikkeet</act:name>
+        <act:id type="guid">840dcd25b1a456f26187d25b5ed07875</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>151</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">eccc0966e946f4c792eaa686d151eaac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Keskeneräiset tuotteet</act:name>
+        <act:id type="guid">39b43ca6d8b2bdf2b61f60fc01db7653</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>152</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">eccc0966e946f4c792eaa686d151eaac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Valmiit tuotteet/tavarat</act:name>
+        <act:id type="guid">f55d15bdadb1d8fdaa7abf4ea75591b7</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>153</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">eccc0966e946f4c792eaa686d151eaac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Muu vaihto-omaisuus</act:name>
+        <act:id type="guid">d14be69be668b3ed4d7a496d774c8c2a</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>154</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">eccc0966e946f4c792eaa686d151eaac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Ennakkomaksut</act:name>
+        <act:id type="guid">01c385f8305d19b9fede2ecb456dd061</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>155</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">eccc0966e946f4c792eaa686d151eaac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Lyhytaikaiset saamiset</act:name>
+        <act:id type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>17</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">444af4532e02be9325cb34bc34088e53</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Myyntisaamiset</act:name>
+        <act:id type="guid">1e94228a0c08a3fe6a59c2ee34dac763</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>170</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Saamiset saman konsernin yrityksiltä</act:name>
+        <act:id type="guid">d446571349418a9bf5d3047b804d04f3</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>171</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Saamiset omistusyhteysyrityksiltä</act:name>
+        <act:id type="guid">a1f2b1b42a3f3549203cde2448968b98</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>173</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Lainasaamiset</act:name>
+        <act:id type="guid">af3b0d777ea29c55a651f3b5fcd07551</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>174</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Muut saamiset</act:name>
+        <act:id type="guid">fd4bd804f4d995ba34f879365455f50a</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>176</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Maksamattomat osakkeet/osuudet</act:name>
+        <act:id type="guid">fe0e156846de1e9a0ed3a2ca2434af08</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>1763</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">fd4bd804f4d995ba34f879365455f50a</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Siirtosaamiset</act:name>
+        <act:id type="guid">4c5ecbd0089c0bfbda107a26470efa5c</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>177</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Rahoitusarvopaperit</act:name>
+        <act:id type="guid">32fe8478f6dc7459535204bedffa4bf0</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>18</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">444af4532e02be9325cb34bc34088e53</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Osuudet saman konsernin yrityksissä</act:name>
+        <act:id type="guid">6b2b9796ed7e3885e2571875c1b18af2</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>181</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">32fe8478f6dc7459535204bedffa4bf0</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Muut osakkeet ja osuudet</act:name>
+        <act:id type="guid">f89de293a71e435a07df036f82342b01</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>182</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">32fe8478f6dc7459535204bedffa4bf0</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Muut arvopaperit</act:name>
+        <act:id type="guid">0176752fc7bbe9d875a526367abfde7f</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>183</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">32fe8478f6dc7459535204bedffa4bf0</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Rahat ja pankkisaamiset</act:name>
+        <act:id type="guid">e4dea3bf14514bcbdbac31cb0047a3d1</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>19</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">444af4532e02be9325cb34bc34088e53</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Rahat</act:name>
+        <act:id type="guid">da69d1aa788ec047ed8e19d110734a1d</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>190</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">e4dea3bf14514bcbdbac31cb0047a3d1</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Pankkisaamiset</act:name>
+        <act:id type="guid">710585f12b0ecc99ec3112b2ef94b0ee</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>191</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">e4dea3bf14514bcbdbac31cb0047a3d1</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Pitkäaikaiset saamiset</act:name>
+        <act:id type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>16</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">444af4532e02be9325cb34bc34088e53</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Myyntisaamiset</act:name>
+        <act:id type="guid">80bef7368dd68066bb90a486b5eb9348</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>160</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Saamiset saman konsernin yrityksiltä</act:name>
+        <act:id type="guid">7e39de72419d98b645fd046d506a43bb</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>161</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Saamiset omistusyhteysyrityksiltä</act:name>
+        <act:id type="guid">dbe7e6b674f159de79938de9827f5042</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>163</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Lainasaamiset</act:name>
+        <act:id type="guid">0d089eb780336b8214f1314e4059cbc6</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>164</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Muut saamiset</act:name>
+        <act:id type="guid">7b2b8004ceb8cf3ac99a56ea72b23f02</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>166</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Maksamattomat osakkeet/osuudet</act:name>
+        <act:id type="guid">35f71988cf086c9236c02bf07f223ea4</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>1663</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">7b2b8004ceb8cf3ac99a56ea72b23f02</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Siirtosaamiset</act:name>
+        <act:id type="guid">8ed9bc7e11070c61251b71e4b695523a</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>167</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Laskennalliset verosaamiset</act:name>
+        <act:id type="guid">65ccd371afbf267a5406711bf8d8bfdd</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>165</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Oma pääoma</act:name>
+        <act:id type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>20</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Osake- osuus- tai muu vastaava pääoma</act:name>
+        <act:id type="guid">8cd7b0139eeb88fd5963fb3ce82ef1aa</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>200</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Ylikurssirahasto</act:name>
+        <act:id type="guid">78656ac6840c41c1eefc5d950d88c427</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>201</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Arvonkorotusrahasto</act:name>
+        <act:id type="guid">0761bf2479233893c0e8c2089f07640c</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>202</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Muut rahastot</act:name>
+        <act:id type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>205</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Sijoitetun vapaan oman pääoman rahasto</act:name>
+        <act:id type="guid">f544907a6aa78b7c31ad9b82d0ceea07</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>20500</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Vararahasto</act:name>
+        <act:id type="guid">6307ed7b91ea0a484ba294cdec7515e0</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>204</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Yhtiöjärjestyksen mukaiset rahastot</act:name>
+        <act:id type="guid">a7e17fd36208656ad7e138c9107d4216</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>20510</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Käyvän arvon rahasto</act:name>
+        <act:id type="guid">008f3c7e7bb1538c1bb924824126e88d</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>203</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Muut rahastot</act:name>
+        <act:id type="guid">575e6c2a693aeac251348798b69e9dc8</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>20530</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Sääntöjen mukaiset rahastot</act:name>
+        <act:id type="guid">513cdd71834ebf547ac5edaa8b2d8b6c</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>20520</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Edellisten tilikausien voitto (tappio)</act:name>
+        <act:id type="guid">d03df3c3f4935500f319408a279e91e0</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>207</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Tilikauden voitto (tappio)</act:name>
+        <act:id type="guid">484af3263fd4d1b18210115c3d5677ae</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>219</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Pääomapanokset</act:name>
+        <act:id type="guid">d7654cc354d34641ce3fe5cacfd37d63</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>210</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Arvonkorotusrahasto (ay, ky, tmi)</act:name>
+        <act:id type="guid">c6e596a98cab38e49ef735953ab8f492</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>211</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>VI Tilikauden voitto (tappio) (ay, ky, tmi)</act:name>
+        <act:id type="guid">a3f9cbe35db4f36ae5f718dd4e016224</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>213</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Tilinpäätössiirtojen kertymä</act:name>
+        <act:id type="guid">f64721d39e2d215b0a42a1df2e324b24</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>25</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Poistoero</act:name>
+        <act:id type="guid">ed6fe4185f02324932c0c369e6cc1578</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>250</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">f64721d39e2d215b0a42a1df2e324b24</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Verotusperäiset varaukset</act:name>
+        <act:id type="guid">2bbcc1f76bcf3d9069118aa44843a88e</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>251</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">f64721d39e2d215b0a42a1df2e324b24</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Pakolliset varaukset</act:name>
+        <act:id type="guid">ba87317a2996b3abaaa089db893f2ae7</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>26</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Eläkevaraukset</act:name>
+        <act:id type="guid">7a860a63ae175a640c4adbea6af0ab87</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>260</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">ba87317a2996b3abaaa089db893f2ae7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Verovaraukset</act:name>
+        <act:id type="guid">a65cb5f240c95ab7cefd11cc89433eff</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>261</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">ba87317a2996b3abaaa089db893f2ae7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Muut pakolliset varaukset</act:name>
+        <act:id type="guid">bdb5948c6063670fcc438477d8368c2d</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>262</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">ba87317a2996b3abaaa089db893f2ae7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Lyhytaikainen vieras pääoma</act:name>
+        <act:id type="guid">3b530f9bf5770857279f9e889dce3b2e</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>29</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Joukkovelkakirjalainat</act:name>
+        <act:id type="guid">3e8765f3b0e4333531b8f3575b3f6970</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2901</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Vaihtovelkakirjalainat</act:name>
+        <act:id type="guid">a3fc1cb69feee67863051da2777d1355</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2902</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Lainat rahoituslaitoksilta</act:name>
+        <act:id type="guid">4fd772819dea7bf0c6579779ebad61c2</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2903</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Takaisinlainat työeläkevakuutuslaitoksilta</act:name>
+        <act:id type="guid">daa537537b51e95beb1f7a63e470d4ac</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2904</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Saadut ennakot</act:name>
+        <act:id type="guid">aa82ecfa51151381319505dd503f6a1b</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2905</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Ostovelat</act:name>
+        <act:id type="guid">d850aae31d1ad8a86e7e924206454e40</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2906</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Rahoitusvekselit</act:name>
+        <act:id type="guid">3df2c9700cf3079289b5c0a87cbe9857</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2907</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Velat saman konsernin yrityksille</act:name>
+        <act:id type="guid">694a5c5a3849820ea918620dc223e9f4</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2908</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Velat omistusyhteysyrityksille</act:name>
+        <act:id type="guid">fc00d3227f708d63fde7d8375c9abf62</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2909</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Muut velat</act:name>
+        <act:id type="guid">d462376b6b0c6f123a2fefad18090bb4</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2911</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Siirtovelat</act:name>
+        <act:id type="guid">569ccbf9890feca796fa06400ad0ff3e</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2950</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Laskennalliset verovela</act:name>
+        <act:id type="guid">1bcc1016959c0782df212f2371038322</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2910</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Tilikauden voitto (tappio)</act:name>
+        <act:id type="guid">e0a6b1bfd7a9083421852641ca07404a</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>99</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Vähemmistöosuudet</act:name>
+        <act:id type="guid">a10a972c59c8c0a4c8e04fdc898fdac2</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>24</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Koncernreserv</act:name>
+        <act:id type="guid">e5b65287efc60272cc7405f8555cd464</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>27</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Pitkäaikainen vieras pääoma</act:name>
+        <act:id type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>28</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Takaisinlainat työeläkevakuutuslaitoksilta</act:name>
+        <act:id type="guid">ee0f5948ac3647b800c88bd64d81c1f8</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2804</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Joukkovelkakirjalainat</act:name>
+        <act:id type="guid">056dea27c81778f8f8a72ad3f37af7cd</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2801</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Vaihtovelkakirjalainat</act:name>
+        <act:id type="guid">89a323266c65c858d1085476ae4a8498</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2802</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Lainat rahoituslaitoksilta</act:name>
+        <act:id type="guid">3dc07091d01904941386423754d4c063</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2803</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Saadut ennakot</act:name>
+        <act:id type="guid">1db16c27d051bf173d534acd68c7cfcf</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2805</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Ostovelat</act:name>
+        <act:id type="guid">5e9ad24f84b9bdaeacb16c36b839bea2</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2806</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Rahoitusvekselit</act:name>
+        <act:id type="guid">5f6d81378e9241d874c509093032c75b</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2807</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Velat saman konsernin yrityksille</act:name>
+        <act:id type="guid">73d20805fd03d7597bdcfeb6c36e29d1</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2808</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Velat omistusyhteysyrityksille</act:name>
+        <act:id type="guid">101a8a349d1f39ce8edaade6da116f6f</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2809</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Muut velat</act:name>
+        <act:id type="guid">f96b99399af4681a6886d63d0930a8ac</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2811</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Siirtovelat</act:name>
+        <act:id type="guid">1da2c0789ed9466d36cda286cbf3a024</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2850</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Pääomalainat</act:name>
+        <act:id type="guid">c68077ac649ae3ebf1522cc51e4d2a2e</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2800</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Laskennalliset verovela</act:name>
+        <act:id type="guid">3588d14217c8b76adc9df3990e6e3ab8</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2810</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Liikevoitto (-tappio)</act:name>
+        <act:id type="guid">90de269dc891517c13fb84e016445348</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>80</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Voitto (tappio) ennen tilinpäätössiirtoja ja veroja</act:name>
+        <act:id type="guid">5cdea912345e9d52383af97c5ae6fda9</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>92</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Satunnaiset erät</act:name>
+        <act:id type="guid">6a63669fcb4b52dfaacba4296e166f5c</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>94</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Vähemmistöosuudet</act:name>
+        <act:id type="guid">c21e40dda8dc9eca8005cc519d823a38</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>98</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+</gnc-account-example>
+
+        <!-- Local variables: -->
+        <!-- mode: xml        -->
+        <!-- End:             -->

commit b2213d267379fb200be32b95e42f45aa5c158f64
Author: Per Johansson <per at johansson.name>
Date:   Sun Apr 10 16:17:49 2016 +0300

    Added new sv_AX and sv_FI account plans.

diff --git a/accounts/sv_AX/Makefile.am b/accounts/sv_AX/Makefile.am
index a47c976..8e1d626 100644
--- a/accounts/sv_AX/Makefile.am
+++ b/accounts/sv_AX/Makefile.am
@@ -3,6 +3,7 @@ accountdir = ${GNC_ACCOUNTS_DIR}/sv_AX
 
 account_DATA = \
     acctchrt_common.gnucash-xea \
+    acctchrt_sbr-xbrl.gnucash-xea \
     acctchrt_rf.gnucash-xea
 
 EXTRA_DIST = \
diff --git a/accounts/sv_AX/acctchrt_sbr-xbrl.gnucash-xea b/accounts/sv_AX/acctchrt_sbr-xbrl.gnucash-xea
new file mode 100644
index 0000000..ed4ee7f
--- /dev/null
+++ b/accounts/sv_AX/acctchrt_sbr-xbrl.gnucash-xea
@@ -0,0 +1,2690 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<gnc-account-example
+        xmlns="http://www.gnucash.org/XML/"
+        xmlns:act="http://www.gnucash.org/XML/act"
+        xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
+        xmlns:gnc="http://www.gnucash.org/XML/gnc"
+        xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
+        xmlns:slot="http://www.gnucash.org/XML/slot"
+>
+    <gnc-act:title>Företag och organisationer</gnc-act:title>
+    <gnc-act:short-description>Företag och organisationer</gnc-act:short-description>
+    <gnc-act:long-description>
+        Konton enligt bokföringsförordningen.
+        Ref: http://www.finlex.fi/sv/laki/ajantasa/1997/19971339
+        Kontonummer huvudsakligen enligt TIEKE Utvecklingscentralen för Informationssamhälle rf, Raportointikoodisto-SBR-XBRL-taksonomia_kartoistus2013.xlsx
+        Ref: http://www.tieke.fi/display/XBRL/SBR+Taksonomia
+        Eget kapital använder LIABILITY-typen i stället för EQUITY för att lättare skapa balansräkningar enligt bokföringsförordningen.
+    </gnc-act:long-description>
+    <gnc-act:exclude-from-select-all>1</gnc-act:exclude-from-select-all>
+    <gnc:account version="2.0.0">
+        <act:name>Root Account</act:name>
+        <act:id type="guid">91ca36e058bbbb5deae199ca187e701e</act:id>
+        <act:type>ROOT</act:type>
+        <act:commodity-scu>0</act:commodity-scu>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Finansiella intäkter och kostnader</act:name>
+        <act:id type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>90</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+            <slot>
+                <slot:key>placeholder</slot:key>
+                <slot:value type="string">true</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Intäkter från andelar i företag inom samma koncern</act:name>
+        <act:id type="guid">8477211fac2faa884cf74b6a1b668eb2</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>902</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Intäkter från andelar i ägarintresseföretag</act:name>
+        <act:id type="guid">0ce625b3919db18a4fba426d5ad2e167</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>903</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Intäkter från övriga placeringar bland bestående aktiva</act:name>
+        <act:id type="guid">bf057dcf7a4e4531f9e696939b715d64</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>904</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga ränteintäkter och finansiella intäkter</act:name>
+        <act:id type="guid">8dbb8b0fbd738a8bacfca43d0a2b6ac8</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>905</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Nedskrivningar av placeringar bland bestående aktiva</act:name>
+        <act:id type="guid">9612615b024452c1ccf5825526e1429b</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>906</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Nedskrivningar av finansiella värdepapper bland rörliga aktiva</act:name>
+        <act:id type="guid">ab491349ef0c803805f03ef9dd8a3f54</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>907</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Räntekostnader och övriga finansiella kostnader</act:name>
+        <act:id type="guid">580ef40b933abc20df58797a9d8dc900</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>908</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Bokslutsdispositioner</act:name>
+        <act:id type="guid">aa508289d9883ff11d9072e0c7172289</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>95</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+            <slot>
+                <slot:key>placeholder</slot:key>
+                <slot:value type="string">true</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Förändring av avskrivningsdifferens</act:name>
+        <act:id type="guid">00191cac48436c81cc74f3653271af3d</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>950</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">aa508289d9883ff11d9072e0c7172289</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Förändring av skattemässiga reserver</act:name>
+        <act:id type="guid">7d05b333d6734b73a167ef6fd4933b83</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>951</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">aa508289d9883ff11d9072e0c7172289</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Koncernbidrag</act:name>
+        <act:id type="guid">82cdfecc6036fcb0aa0804cde45dfced</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>952</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">aa508289d9883ff11d9072e0c7172289</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Inkomstskatt</act:name>
+        <act:id type="guid">6f5fa22c3da4148c79d8c1bd0e5e6123</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>96</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga direkta skatter</act:name>
+        <act:id type="guid">9e91851f7f89e43d6bc4e622973d89d0</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>97</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Omsättning</act:name>
+        <act:id type="guid">4068fc54bda42ca931a61a9ce5184bfc</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>30</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Förändring av lager av färdiga varor och varor under tillverkning</act:name>
+        <act:id type="guid">0c1b0303a160348550f60aa28c788662</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>37</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Tillverkning för eget bruk</act:name>
+        <act:id type="guid">602fdec8b05c721b546919ad75931195</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>38</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga rörelseintäkter</act:name>
+        <act:id type="guid">cd6981fd693cfdb8f5a1b33834e41035</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>39</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Material och tjänster</act:name>
+        <act:id type="guid">28ffd589b69c52be7b6483468fa3caf0</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>40</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Material, förnödenheter och varor</act:name>
+        <act:id type="guid">04b83b724eedad37f18ce7c06dd11bd5</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>400</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">28ffd589b69c52be7b6483468fa3caf0</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Inköp under räkenskapsperioden</act:name>
+        <act:id type="guid">951867ae0a1ad6c4888cad02a93a4e07</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>4000</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">04b83b724eedad37f18ce7c06dd11bd5</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Förändring av lager</act:name>
+        <act:id type="guid">df4109a609247caf00215457cab4f819</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>4007</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">04b83b724eedad37f18ce7c06dd11bd5</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Köpta tjänster</act:name>
+        <act:id type="guid">2e1243bc13baadecfbaf52e41f37ea5b</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>407</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">28ffd589b69c52be7b6483468fa3caf0</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Personalkostnader</act:name>
+        <act:id type="guid">8852af5f48233f8e0df30a38158a4f6f</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>50</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Löner och arvoden</act:name>
+        <act:id type="guid">193fb816d45e146ec95401dd4499888b</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>500</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8852af5f48233f8e0df30a38158a4f6f</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Lönebikostnader</act:name>
+        <act:id type="guid">a08d7e4c30da868c2f5478b90e1b46dd</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>501</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8852af5f48233f8e0df30a38158a4f6f</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Pensionskostnader</act:name>
+        <act:id type="guid">ff029e709ed5d9710659fb6c368d8513</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>5010</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">a08d7e4c30da868c2f5478b90e1b46dd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga lönebikostnader</act:name>
+        <act:id type="guid">261f481c52283664e046548c4fca75bb</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>5011</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">a08d7e4c30da868c2f5478b90e1b46dd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Avskrivningar och nedskrivningar</act:name>
+        <act:id type="guid">2746467380984ca397b82ef1e9e0afc1</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>60</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Avskrivningar enligt plan</act:name>
+        <act:id type="guid">43b902866aeb9d9337a561df360aeebd</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>600</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">2746467380984ca397b82ef1e9e0afc1</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Nedskrivningar av tillgångar bland bestående aktiva</act:name>
+        <act:id type="guid">de1911138a1be2c625a227e6ee0a7ea4</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>602</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">2746467380984ca397b82ef1e9e0afc1</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Exceptionella nedskrivningar av rörliga aktiva</act:name>
+        <act:id type="guid">879d646270395597a782494fe76bcba9</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>603</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">2746467380984ca397b82ef1e9e0afc1</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga rörelsekostnader</act:name>
+        <act:id type="guid">fcff567ae65bfdc789648c9a94b21de8</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>70</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Bestående aktiva</act:name>
+        <act:id type="guid">826e3268405c78917240d32b31cbdc75</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+            <slot>
+                <slot:key>placeholder</slot:key>
+                <slot:value type="string">true</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Immateriella tillgångar</act:name>
+        <act:id type="guid">1149340ef3149246d57718a69d2d60c2</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>10</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">826e3268405c78917240d32b31cbdc75</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Utvecklingsutgifter</act:name>
+        <act:id type="guid">939a6bec9cc8808f7468581b324942da</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>102</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">1149340ef3149246d57718a69d2d60c2</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Immateriella rättigheter</act:name>
+        <act:id type="guid">546c42f47b092df4110e0ae54441a016</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>103</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">1149340ef3149246d57718a69d2d60c2</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Goodwill</act:name>
+        <act:id type="guid">f8cd5606ee0733367ff6a60bab668d40</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>104</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">1149340ef3149246d57718a69d2d60c2</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga immateriella tillgångar</act:name>
+        <act:id type="guid">4ce993dce116e12c8785586e31dc5bca</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>106</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">1149340ef3149246d57718a69d2d60c2</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Förskottsbetalningar</act:name>
+        <act:id type="guid">cd74f35ec21c0a399d7678583a4e433e</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>107</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">1149340ef3149246d57718a69d2d60c2</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Koncerngoodwill</act:name>
+        <act:id type="guid">00aaa8030014ef9982a3c8a5f6b75fa8</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>105</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">1149340ef3149246d57718a69d2d60c2</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Materiella tillgångar</act:name>
+        <act:id type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>11</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">826e3268405c78917240d32b31cbdc75</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Mark- och vattenområden</act:name>
+        <act:id type="guid">1ee0fc496854b0e4040f21c17e67ee41</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>111</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Byggnader och konstruktioner</act:name>
+        <act:id type="guid">675350cd67079b898be2352026028e78</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>113</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Maskiner och inventarier</act:name>
+        <act:id type="guid">aef9b376c23b9a12526e2c5e82906c6a</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>116</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga materiella tillgångar</act:name>
+        <act:id type="guid">5ef7f23068240129d7ead6838dbdd9bc</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>117</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Förskottsbetalningar och pågående nyanläggningar</act:name>
+        <act:id type="guid">795b0e57bcb1a4f0bb8e1513eace322b</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>118</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Mark- och vattenområden (hyrda)</act:name>
+        <act:id type="guid">3588ea0be402cb76d6bb1c7cbe0bf55f</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>112</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Byggnader och konstruktioner (hyrda)</act:name>
+        <act:id type="guid">ffcefe488da62058b64f5d0c2d30625b</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>114</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Placeringar</act:name>
+        <act:id type="guid">8baa7669204fbdd46596bf0048903dcd</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>14</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">826e3268405c78917240d32b31cbdc75</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Andelar i företag inom samma koncern</act:name>
+        <act:id type="guid">f84d369fd419bda9815acbf855d5046e</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>141</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fordringar hos företag inom samma koncern</act:name>
+        <act:id type="guid">2416f201f9ce24c19d83d48dcf792358</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>145</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Andelar i ägarintresseföretag</act:name>
+        <act:id type="guid">2634cd55484a01d60c03a2383bcccd44</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>143</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fordringar hos ägarintresseföretag</act:name>
+        <act:id type="guid">d4397c4677667cae3cd382b3814a6dc6</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>147</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga aktier och andelar</act:name>
+        <act:id type="guid">cabe21ef415a48a28cee8b93596655e3</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>144</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga fordringar</act:name>
+        <act:id type="guid">20f70494a1aa7cc0a194ba631a155db7</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>148</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Uppskrivning av placeringar</act:name>
+        <act:id type="guid">29a4ab29553d229fc4f5946b57e690cc</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>140</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Andelar i intresseföretag</act:name>
+        <act:id type="guid">3260f95f9318680f9eece8299dad294b</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>142</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fordringar hos intresseföretag</act:name>
+        <act:id type="guid">7611e67ee0d50e65b70de4129f50f23d</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>146</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Rörliga aktiva</act:name>
+        <act:id type="guid">444af4532e02be9325cb34bc34088e53</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+            <slot>
+                <slot:key>placeholder</slot:key>
+                <slot:value type="string">true</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Omsättningstillgångar</act:name>
+        <act:id type="guid">eccc0966e946f4c792eaa686d151eaac</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>15</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">444af4532e02be9325cb34bc34088e53</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Material och förnödenheter</act:name>
+        <act:id type="guid">840dcd25b1a456f26187d25b5ed07875</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>151</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">eccc0966e946f4c792eaa686d151eaac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Varor under tillverkning</act:name>
+        <act:id type="guid">39b43ca6d8b2bdf2b61f60fc01db7653</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>152</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">eccc0966e946f4c792eaa686d151eaac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Färdiga produkter/varor</act:name>
+        <act:id type="guid">f55d15bdadb1d8fdaa7abf4ea75591b7</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>153</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">eccc0966e946f4c792eaa686d151eaac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga omsättningstillgångar</act:name>
+        <act:id type="guid">d14be69be668b3ed4d7a496d774c8c2a</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>154</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">eccc0966e946f4c792eaa686d151eaac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Förskottsbetalningar</act:name>
+        <act:id type="guid">01c385f8305d19b9fede2ecb456dd061</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>155</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">eccc0966e946f4c792eaa686d151eaac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fordringar, kortfristiga</act:name>
+        <act:id type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>17</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">444af4532e02be9325cb34bc34088e53</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Kundfordringar</act:name>
+        <act:id type="guid">1e94228a0c08a3fe6a59c2ee34dac763</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>170</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fordringar hos företag inom samma koncern</act:name>
+        <act:id type="guid">d446571349418a9bf5d3047b804d04f3</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>171</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fordringar hos ägarintresseföretag</act:name>
+        <act:id type="guid">a1f2b1b42a3f3549203cde2448968b98</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>173</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>LÃ¥nefordringar</act:name>
+        <act:id type="guid">af3b0d777ea29c55a651f3b5fcd07551</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>174</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga fordringar</act:name>
+        <act:id type="guid">fd4bd804f4d995ba34f879365455f50a</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>176</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Obetalda aktier/andelar</act:name>
+        <act:id type="guid">fe0e156846de1e9a0ed3a2ca2434af08</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>1763</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">fd4bd804f4d995ba34f879365455f50a</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Resultatregleringar</act:name>
+        <act:id type="guid">4c5ecbd0089c0bfbda107a26470efa5c</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>177</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Finansiella värdepapper</act:name>
+        <act:id type="guid">32fe8478f6dc7459535204bedffa4bf0</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>18</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">444af4532e02be9325cb34bc34088e53</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Andelar i företag inom samma koncern</act:name>
+        <act:id type="guid">6b2b9796ed7e3885e2571875c1b18af2</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>181</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">32fe8478f6dc7459535204bedffa4bf0</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga aktier eller andelar</act:name>
+        <act:id type="guid">f89de293a71e435a07df036f82342b01</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>182</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">32fe8478f6dc7459535204bedffa4bf0</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga värdepapper</act:name>
+        <act:id type="guid">0176752fc7bbe9d875a526367abfde7f</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>183</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">32fe8478f6dc7459535204bedffa4bf0</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Kassa och bank</act:name>
+        <act:id type="guid">e4dea3bf14514bcbdbac31cb0047a3d1</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>19</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">444af4532e02be9325cb34bc34088e53</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Kassa</act:name>
+        <act:id type="guid">da69d1aa788ec047ed8e19d110734a1d</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>190</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">e4dea3bf14514bcbdbac31cb0047a3d1</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Bank</act:name>
+        <act:id type="guid">710585f12b0ecc99ec3112b2ef94b0ee</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>191</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">e4dea3bf14514bcbdbac31cb0047a3d1</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fordringar, långfristiga</act:name>
+        <act:id type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>16</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">444af4532e02be9325cb34bc34088e53</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Kundfordringar</act:name>
+        <act:id type="guid">80bef7368dd68066bb90a486b5eb9348</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>160</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fordringar hos företag inom samma koncern</act:name>
+        <act:id type="guid">7e39de72419d98b645fd046d506a43bb</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>161</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fordringar hos ägarintresseföretag</act:name>
+        <act:id type="guid">dbe7e6b674f159de79938de9827f5042</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>163</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>LÃ¥nefordringar</act:name>
+        <act:id type="guid">0d089eb780336b8214f1314e4059cbc6</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>164</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga fordringar</act:name>
+        <act:id type="guid">7b2b8004ceb8cf3ac99a56ea72b23f02</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>166</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Obetalda aktier/andelar</act:name>
+        <act:id type="guid">35f71988cf086c9236c02bf07f223ea4</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>1663</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">7b2b8004ceb8cf3ac99a56ea72b23f02</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Resultatregleringar</act:name>
+        <act:id type="guid">8ed9bc7e11070c61251b71e4b695523a</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>167</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Latenta skattefordringar</act:name>
+        <act:id type="guid">65ccd371afbf267a5406711bf8d8bfdd</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>165</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Eget kapital</act:name>
+        <act:id type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>20</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Aktie- eller andelskapital eller annat motsvarande kapital</act:name>
+        <act:id type="guid">8cd7b0139eeb88fd5963fb3ce82ef1aa</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>200</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Överkursfond</act:name>
+        <act:id type="guid">78656ac6840c41c1eefc5d950d88c427</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>201</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Uppskrivningsfond</act:name>
+        <act:id type="guid">0761bf2479233893c0e8c2089f07640c</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>202</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga fonder</act:name>
+        <act:id type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>205</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fond för inbetalt fritt eget kapital</act:name>
+        <act:id type="guid">f544907a6aa78b7c31ad9b82d0ceea07</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>20500</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Reservfond</act:name>
+        <act:id type="guid">6307ed7b91ea0a484ba294cdec7515e0</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>204</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fonder enligt bolagsordningen</act:name>
+        <act:id type="guid">a7e17fd36208656ad7e138c9107d4216</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>20510</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fond för verkligt värde</act:name>
+        <act:id type="guid">008f3c7e7bb1538c1bb924824126e88d</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>203</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga fonder</act:name>
+        <act:id type="guid">575e6c2a693aeac251348798b69e9dc8</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>20530</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fonder enligt stadgarna</act:name>
+        <act:id type="guid">513cdd71834ebf547ac5edaa8b2d8b6c</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>20520</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Balanserad vinst (förlust) från tidigare räkenskapsperioder</act:name>
+        <act:id type="guid">d03df3c3f4935500f319408a279e91e0</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>207</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Räkenskapsperiodens vinst (förlust)</act:name>
+        <act:id type="guid">484af3263fd4d1b18210115c3d5677ae</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>219</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Bolagsinsats</act:name>
+        <act:id type="guid">d7654cc354d34641ce3fe5cacfd37d63</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>210</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Uppskrivningsfond (kb, öb, firma)</act:name>
+        <act:id type="guid">c6e596a98cab38e49ef735953ab8f492</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>211</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Räkenskapsperiodens vinst (förlust) (kb, öb, firma)</act:name>
+        <act:id type="guid">a3f9cbe35db4f36ae5f718dd4e016224</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>213</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Ackumulerade bokslutsdispositioner</act:name>
+        <act:id type="guid">f64721d39e2d215b0a42a1df2e324b24</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>25</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Avskrivningsdifferens</act:name>
+        <act:id type="guid">ed6fe4185f02324932c0c369e6cc1578</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>250</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">f64721d39e2d215b0a42a1df2e324b24</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Skattemässiga reserver</act:name>
+        <act:id type="guid">2bbcc1f76bcf3d9069118aa44843a88e</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>251</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">f64721d39e2d215b0a42a1df2e324b24</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Avsättningar</act:name>
+        <act:id type="guid">ba87317a2996b3abaaa089db893f2ae7</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>26</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Avsättningar för pensioner</act:name>
+        <act:id type="guid">7a860a63ae175a640c4adbea6af0ab87</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>260</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">ba87317a2996b3abaaa089db893f2ae7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Skatteavsättningar</act:name>
+        <act:id type="guid">a65cb5f240c95ab7cefd11cc89433eff</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>261</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">ba87317a2996b3abaaa089db893f2ae7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga avsättningar</act:name>
+        <act:id type="guid">bdb5948c6063670fcc438477d8368c2d</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>262</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">ba87317a2996b3abaaa089db893f2ae7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Främmande kapital, kortfristigt</act:name>
+        <act:id type="guid">3b530f9bf5770857279f9e889dce3b2e</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>29</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Masskuldebrevslån</act:name>
+        <act:id type="guid">3e8765f3b0e4333531b8f3575b3f6970</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2901</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>LÃ¥n mot konvertibla skuldebrev</act:name>
+        <act:id type="guid">a3fc1cb69feee67863051da2777d1355</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2902</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Skulder till kreditinstitut</act:name>
+        <act:id type="guid">4fd772819dea7bf0c6579779ebad61c2</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2903</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Återlåning från arbetspensionsförsäkringsanstalter</act:name>
+        <act:id type="guid">daa537537b51e95beb1f7a63e470d4ac</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2904</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Erhållna förskott</act:name>
+        <act:id type="guid">aa82ecfa51151381319505dd503f6a1b</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2905</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Leverantörsskulder</act:name>
+        <act:id type="guid">d850aae31d1ad8a86e7e924206454e40</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2906</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Finansieringsväxlar</act:name>
+        <act:id type="guid">3df2c9700cf3079289b5c0a87cbe9857</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2907</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Skulder till företag inom samma koncern</act:name>
+        <act:id type="guid">694a5c5a3849820ea918620dc223e9f4</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2908</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Skulder till ägarintresseföretag</act:name>
+        <act:id type="guid">fc00d3227f708d63fde7d8375c9abf62</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2909</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga skulder</act:name>
+        <act:id type="guid">d462376b6b0c6f123a2fefad18090bb4</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2911</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Resultatregleringar</act:name>
+        <act:id type="guid">569ccbf9890feca796fa06400ad0ff3e</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2950</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Latenta skatteskulder</act:name>
+        <act:id type="guid">1bcc1016959c0782df212f2371038322</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2910</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Räkenskapsperiodens resultat</act:name>
+        <act:id type="guid">e0a6b1bfd7a9083421852641ca07404a</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>99</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Minoritetsandelar</act:name>
+        <act:id type="guid">a10a972c59c8c0a4c8e04fdc898fdac2</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>24</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Koncernreserv</act:name>
+        <act:id type="guid">e5b65287efc60272cc7405f8555cd464</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>27</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Främmande kapital, långfristigt</act:name>
+        <act:id type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>28</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Återlåning från arbetspensionsförsäkringsanstalter</act:name>
+        <act:id type="guid">ee0f5948ac3647b800c88bd64d81c1f8</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2804</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Masskuldebrevslån</act:name>
+        <act:id type="guid">056dea27c81778f8f8a72ad3f37af7cd</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2801</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>LÃ¥n mot konvertibla skuldebrev</act:name>
+        <act:id type="guid">89a323266c65c858d1085476ae4a8498</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2802</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Skulder till kreditinstitut</act:name>
+        <act:id type="guid">3dc07091d01904941386423754d4c063</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2803</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Erhållna förskott</act:name>
+        <act:id type="guid">1db16c27d051bf173d534acd68c7cfcf</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2805</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Leverantörsskulder</act:name>
+        <act:id type="guid">5e9ad24f84b9bdaeacb16c36b839bea2</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2806</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Finansieringsväxlar</act:name>
+        <act:id type="guid">5f6d81378e9241d874c509093032c75b</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2807</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Skulder till företag inom samma koncern</act:name>
+        <act:id type="guid">73d20805fd03d7597bdcfeb6c36e29d1</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2808</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Skulder till ägarintresseföretag</act:name>
+        <act:id type="guid">101a8a349d1f39ce8edaade6da116f6f</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2809</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga skulder</act:name>
+        <act:id type="guid">f96b99399af4681a6886d63d0930a8ac</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2811</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Resultatregleringar</act:name>
+        <act:id type="guid">1da2c0789ed9466d36cda286cbf3a024</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2850</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Kapitallån</act:name>
+        <act:id type="guid">c68077ac649ae3ebf1522cc51e4d2a2e</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2800</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Latenta skatteskulder</act:name>
+        <act:id type="guid">3588d14217c8b76adc9df3990e6e3ab8</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2810</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Rörelsevinst</act:name>
+        <act:id type="guid">90de269dc891517c13fb84e016445348</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>80</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Vinst (förlust) före bokslutsdispositioner och skatter</act:name>
+        <act:id type="guid">5cdea912345e9d52383af97c5ae6fda9</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>92</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Extraordinära poster</act:name>
+        <act:id type="guid">6a63669fcb4b52dfaacba4296e166f5c</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>94</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Minoritetsandelar</act:name>
+        <act:id type="guid">c21e40dda8dc9eca8005cc519d823a38</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>98</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+</gnc-account-example>
+
+        <!-- Local variables: -->
+        <!-- mode: xml        -->
+        <!-- End:             -->
diff --git a/accounts/sv_FI/Makefile.am b/accounts/sv_FI/Makefile.am
index 42b7fcc..8e5ae7b 100644
--- a/accounts/sv_FI/Makefile.am
+++ b/accounts/sv_FI/Makefile.am
@@ -2,7 +2,8 @@
 accountdir = ${GNC_ACCOUNTS_DIR}/sv_FI
 
 account_DATA = \
-	acctchrt_common.gnucash-xea \
+    acctchrt_common.gnucash-xea \
+    acctchrt_sbr-xbrl.gnucash-xea \
     acctchrt_rf.gnucash-xea
 
 EXTRA_DIST = \
diff --git a/accounts/sv_FI/acctchrt_sbr-xbrl.gnucash-xea b/accounts/sv_FI/acctchrt_sbr-xbrl.gnucash-xea
new file mode 100644
index 0000000..ed4ee7f
--- /dev/null
+++ b/accounts/sv_FI/acctchrt_sbr-xbrl.gnucash-xea
@@ -0,0 +1,2690 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<gnc-account-example
+        xmlns="http://www.gnucash.org/XML/"
+        xmlns:act="http://www.gnucash.org/XML/act"
+        xmlns:cmdty="http://www.gnucash.org/XML/cmdty"
+        xmlns:gnc="http://www.gnucash.org/XML/gnc"
+        xmlns:gnc-act="http://www.gnucash.org/XML/gnc-act"
+        xmlns:slot="http://www.gnucash.org/XML/slot"
+>
+    <gnc-act:title>Företag och organisationer</gnc-act:title>
+    <gnc-act:short-description>Företag och organisationer</gnc-act:short-description>
+    <gnc-act:long-description>
+        Konton enligt bokföringsförordningen.
+        Ref: http://www.finlex.fi/sv/laki/ajantasa/1997/19971339
+        Kontonummer huvudsakligen enligt TIEKE Utvecklingscentralen för Informationssamhälle rf, Raportointikoodisto-SBR-XBRL-taksonomia_kartoistus2013.xlsx
+        Ref: http://www.tieke.fi/display/XBRL/SBR+Taksonomia
+        Eget kapital använder LIABILITY-typen i stället för EQUITY för att lättare skapa balansräkningar enligt bokföringsförordningen.
+    </gnc-act:long-description>
+    <gnc-act:exclude-from-select-all>1</gnc-act:exclude-from-select-all>
+    <gnc:account version="2.0.0">
+        <act:name>Root Account</act:name>
+        <act:id type="guid">91ca36e058bbbb5deae199ca187e701e</act:id>
+        <act:type>ROOT</act:type>
+        <act:commodity-scu>0</act:commodity-scu>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Finansiella intäkter och kostnader</act:name>
+        <act:id type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>90</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+            <slot>
+                <slot:key>placeholder</slot:key>
+                <slot:value type="string">true</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Intäkter från andelar i företag inom samma koncern</act:name>
+        <act:id type="guid">8477211fac2faa884cf74b6a1b668eb2</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>902</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Intäkter från andelar i ägarintresseföretag</act:name>
+        <act:id type="guid">0ce625b3919db18a4fba426d5ad2e167</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>903</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Intäkter från övriga placeringar bland bestående aktiva</act:name>
+        <act:id type="guid">bf057dcf7a4e4531f9e696939b715d64</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>904</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga ränteintäkter och finansiella intäkter</act:name>
+        <act:id type="guid">8dbb8b0fbd738a8bacfca43d0a2b6ac8</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>905</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Nedskrivningar av placeringar bland bestående aktiva</act:name>
+        <act:id type="guid">9612615b024452c1ccf5825526e1429b</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>906</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Nedskrivningar av finansiella värdepapper bland rörliga aktiva</act:name>
+        <act:id type="guid">ab491349ef0c803805f03ef9dd8a3f54</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>907</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Räntekostnader och övriga finansiella kostnader</act:name>
+        <act:id type="guid">580ef40b933abc20df58797a9d8dc900</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>908</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c0424c67f1c3ca6b694d12f2194bdbee</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Bokslutsdispositioner</act:name>
+        <act:id type="guid">aa508289d9883ff11d9072e0c7172289</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>95</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+            <slot>
+                <slot:key>placeholder</slot:key>
+                <slot:value type="string">true</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Förändring av avskrivningsdifferens</act:name>
+        <act:id type="guid">00191cac48436c81cc74f3653271af3d</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>950</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">aa508289d9883ff11d9072e0c7172289</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Förändring av skattemässiga reserver</act:name>
+        <act:id type="guid">7d05b333d6734b73a167ef6fd4933b83</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>951</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">aa508289d9883ff11d9072e0c7172289</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Koncernbidrag</act:name>
+        <act:id type="guid">82cdfecc6036fcb0aa0804cde45dfced</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>952</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">aa508289d9883ff11d9072e0c7172289</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Inkomstskatt</act:name>
+        <act:id type="guid">6f5fa22c3da4148c79d8c1bd0e5e6123</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>96</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga direkta skatter</act:name>
+        <act:id type="guid">9e91851f7f89e43d6bc4e622973d89d0</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>97</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Omsättning</act:name>
+        <act:id type="guid">4068fc54bda42ca931a61a9ce5184bfc</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>30</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Förändring av lager av färdiga varor och varor under tillverkning</act:name>
+        <act:id type="guid">0c1b0303a160348550f60aa28c788662</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>37</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Tillverkning för eget bruk</act:name>
+        <act:id type="guid">602fdec8b05c721b546919ad75931195</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>38</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga rörelseintäkter</act:name>
+        <act:id type="guid">cd6981fd693cfdb8f5a1b33834e41035</act:id>
+        <act:type>INCOME</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>39</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Material och tjänster</act:name>
+        <act:id type="guid">28ffd589b69c52be7b6483468fa3caf0</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>40</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Material, förnödenheter och varor</act:name>
+        <act:id type="guid">04b83b724eedad37f18ce7c06dd11bd5</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>400</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">28ffd589b69c52be7b6483468fa3caf0</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Inköp under räkenskapsperioden</act:name>
+        <act:id type="guid">951867ae0a1ad6c4888cad02a93a4e07</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>4000</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">04b83b724eedad37f18ce7c06dd11bd5</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Förändring av lager</act:name>
+        <act:id type="guid">df4109a609247caf00215457cab4f819</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>4007</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">04b83b724eedad37f18ce7c06dd11bd5</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Köpta tjänster</act:name>
+        <act:id type="guid">2e1243bc13baadecfbaf52e41f37ea5b</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>407</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">28ffd589b69c52be7b6483468fa3caf0</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Personalkostnader</act:name>
+        <act:id type="guid">8852af5f48233f8e0df30a38158a4f6f</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>50</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Löner och arvoden</act:name>
+        <act:id type="guid">193fb816d45e146ec95401dd4499888b</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>500</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8852af5f48233f8e0df30a38158a4f6f</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Lönebikostnader</act:name>
+        <act:id type="guid">a08d7e4c30da868c2f5478b90e1b46dd</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>501</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8852af5f48233f8e0df30a38158a4f6f</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Pensionskostnader</act:name>
+        <act:id type="guid">ff029e709ed5d9710659fb6c368d8513</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>5010</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">a08d7e4c30da868c2f5478b90e1b46dd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga lönebikostnader</act:name>
+        <act:id type="guid">261f481c52283664e046548c4fca75bb</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>5011</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">a08d7e4c30da868c2f5478b90e1b46dd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Avskrivningar och nedskrivningar</act:name>
+        <act:id type="guid">2746467380984ca397b82ef1e9e0afc1</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>60</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Avskrivningar enligt plan</act:name>
+        <act:id type="guid">43b902866aeb9d9337a561df360aeebd</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>600</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">2746467380984ca397b82ef1e9e0afc1</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Nedskrivningar av tillgångar bland bestående aktiva</act:name>
+        <act:id type="guid">de1911138a1be2c625a227e6ee0a7ea4</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>602</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">2746467380984ca397b82ef1e9e0afc1</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Exceptionella nedskrivningar av rörliga aktiva</act:name>
+        <act:id type="guid">879d646270395597a782494fe76bcba9</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>603</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">2746467380984ca397b82ef1e9e0afc1</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga rörelsekostnader</act:name>
+        <act:id type="guid">fcff567ae65bfdc789648c9a94b21de8</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>70</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Bestående aktiva</act:name>
+        <act:id type="guid">826e3268405c78917240d32b31cbdc75</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+            <slot>
+                <slot:key>placeholder</slot:key>
+                <slot:value type="string">true</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Immateriella tillgångar</act:name>
+        <act:id type="guid">1149340ef3149246d57718a69d2d60c2</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>10</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">826e3268405c78917240d32b31cbdc75</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Utvecklingsutgifter</act:name>
+        <act:id type="guid">939a6bec9cc8808f7468581b324942da</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>102</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">1149340ef3149246d57718a69d2d60c2</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Immateriella rättigheter</act:name>
+        <act:id type="guid">546c42f47b092df4110e0ae54441a016</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>103</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">1149340ef3149246d57718a69d2d60c2</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Goodwill</act:name>
+        <act:id type="guid">f8cd5606ee0733367ff6a60bab668d40</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>104</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">1149340ef3149246d57718a69d2d60c2</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga immateriella tillgångar</act:name>
+        <act:id type="guid">4ce993dce116e12c8785586e31dc5bca</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>106</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">1149340ef3149246d57718a69d2d60c2</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Förskottsbetalningar</act:name>
+        <act:id type="guid">cd74f35ec21c0a399d7678583a4e433e</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>107</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">1149340ef3149246d57718a69d2d60c2</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Koncerngoodwill</act:name>
+        <act:id type="guid">00aaa8030014ef9982a3c8a5f6b75fa8</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>105</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">1149340ef3149246d57718a69d2d60c2</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Materiella tillgångar</act:name>
+        <act:id type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>11</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">826e3268405c78917240d32b31cbdc75</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Mark- och vattenområden</act:name>
+        <act:id type="guid">1ee0fc496854b0e4040f21c17e67ee41</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>111</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Byggnader och konstruktioner</act:name>
+        <act:id type="guid">675350cd67079b898be2352026028e78</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>113</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Maskiner och inventarier</act:name>
+        <act:id type="guid">aef9b376c23b9a12526e2c5e82906c6a</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>116</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga materiella tillgångar</act:name>
+        <act:id type="guid">5ef7f23068240129d7ead6838dbdd9bc</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>117</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Förskottsbetalningar och pågående nyanläggningar</act:name>
+        <act:id type="guid">795b0e57bcb1a4f0bb8e1513eace322b</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>118</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Mark- och vattenområden (hyrda)</act:name>
+        <act:id type="guid">3588ea0be402cb76d6bb1c7cbe0bf55f</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>112</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Byggnader och konstruktioner (hyrda)</act:name>
+        <act:id type="guid">ffcefe488da62058b64f5d0c2d30625b</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>114</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5e1c09b20c4fa680915744bbc6c75bae</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Placeringar</act:name>
+        <act:id type="guid">8baa7669204fbdd46596bf0048903dcd</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>14</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">826e3268405c78917240d32b31cbdc75</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Andelar i företag inom samma koncern</act:name>
+        <act:id type="guid">f84d369fd419bda9815acbf855d5046e</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>141</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fordringar hos företag inom samma koncern</act:name>
+        <act:id type="guid">2416f201f9ce24c19d83d48dcf792358</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>145</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Andelar i ägarintresseföretag</act:name>
+        <act:id type="guid">2634cd55484a01d60c03a2383bcccd44</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>143</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fordringar hos ägarintresseföretag</act:name>
+        <act:id type="guid">d4397c4677667cae3cd382b3814a6dc6</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>147</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga aktier och andelar</act:name>
+        <act:id type="guid">cabe21ef415a48a28cee8b93596655e3</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>144</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga fordringar</act:name>
+        <act:id type="guid">20f70494a1aa7cc0a194ba631a155db7</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>148</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Uppskrivning av placeringar</act:name>
+        <act:id type="guid">29a4ab29553d229fc4f5946b57e690cc</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>140</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Andelar i intresseföretag</act:name>
+        <act:id type="guid">3260f95f9318680f9eece8299dad294b</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>142</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fordringar hos intresseföretag</act:name>
+        <act:id type="guid">7611e67ee0d50e65b70de4129f50f23d</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>146</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">8baa7669204fbdd46596bf0048903dcd</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Rörliga aktiva</act:name>
+        <act:id type="guid">444af4532e02be9325cb34bc34088e53</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+            <slot>
+                <slot:key>placeholder</slot:key>
+                <slot:value type="string">true</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Omsättningstillgångar</act:name>
+        <act:id type="guid">eccc0966e946f4c792eaa686d151eaac</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>15</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">444af4532e02be9325cb34bc34088e53</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Material och förnödenheter</act:name>
+        <act:id type="guid">840dcd25b1a456f26187d25b5ed07875</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>151</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">eccc0966e946f4c792eaa686d151eaac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Varor under tillverkning</act:name>
+        <act:id type="guid">39b43ca6d8b2bdf2b61f60fc01db7653</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>152</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">eccc0966e946f4c792eaa686d151eaac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Färdiga produkter/varor</act:name>
+        <act:id type="guid">f55d15bdadb1d8fdaa7abf4ea75591b7</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>153</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">eccc0966e946f4c792eaa686d151eaac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga omsättningstillgångar</act:name>
+        <act:id type="guid">d14be69be668b3ed4d7a496d774c8c2a</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>154</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">eccc0966e946f4c792eaa686d151eaac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Förskottsbetalningar</act:name>
+        <act:id type="guid">01c385f8305d19b9fede2ecb456dd061</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>155</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">eccc0966e946f4c792eaa686d151eaac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fordringar, kortfristiga</act:name>
+        <act:id type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>17</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">444af4532e02be9325cb34bc34088e53</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Kundfordringar</act:name>
+        <act:id type="guid">1e94228a0c08a3fe6a59c2ee34dac763</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>170</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fordringar hos företag inom samma koncern</act:name>
+        <act:id type="guid">d446571349418a9bf5d3047b804d04f3</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>171</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fordringar hos ägarintresseföretag</act:name>
+        <act:id type="guid">a1f2b1b42a3f3549203cde2448968b98</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>173</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>LÃ¥nefordringar</act:name>
+        <act:id type="guid">af3b0d777ea29c55a651f3b5fcd07551</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>174</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga fordringar</act:name>
+        <act:id type="guid">fd4bd804f4d995ba34f879365455f50a</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>176</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Obetalda aktier/andelar</act:name>
+        <act:id type="guid">fe0e156846de1e9a0ed3a2ca2434af08</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>1763</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">fd4bd804f4d995ba34f879365455f50a</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Resultatregleringar</act:name>
+        <act:id type="guid">4c5ecbd0089c0bfbda107a26470efa5c</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>177</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">5f9d87ea803adceaf4f8e80196cb7766</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Finansiella värdepapper</act:name>
+        <act:id type="guid">32fe8478f6dc7459535204bedffa4bf0</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>18</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">444af4532e02be9325cb34bc34088e53</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Andelar i företag inom samma koncern</act:name>
+        <act:id type="guid">6b2b9796ed7e3885e2571875c1b18af2</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>181</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">32fe8478f6dc7459535204bedffa4bf0</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga aktier eller andelar</act:name>
+        <act:id type="guid">f89de293a71e435a07df036f82342b01</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>182</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">32fe8478f6dc7459535204bedffa4bf0</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga värdepapper</act:name>
+        <act:id type="guid">0176752fc7bbe9d875a526367abfde7f</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>183</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">32fe8478f6dc7459535204bedffa4bf0</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Kassa och bank</act:name>
+        <act:id type="guid">e4dea3bf14514bcbdbac31cb0047a3d1</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>19</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">444af4532e02be9325cb34bc34088e53</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Kassa</act:name>
+        <act:id type="guid">da69d1aa788ec047ed8e19d110734a1d</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>190</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">e4dea3bf14514bcbdbac31cb0047a3d1</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Bank</act:name>
+        <act:id type="guid">710585f12b0ecc99ec3112b2ef94b0ee</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>191</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">e4dea3bf14514bcbdbac31cb0047a3d1</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fordringar, långfristiga</act:name>
+        <act:id type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>16</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">444af4532e02be9325cb34bc34088e53</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Kundfordringar</act:name>
+        <act:id type="guid">80bef7368dd68066bb90a486b5eb9348</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>160</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fordringar hos företag inom samma koncern</act:name>
+        <act:id type="guid">7e39de72419d98b645fd046d506a43bb</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>161</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fordringar hos ägarintresseföretag</act:name>
+        <act:id type="guid">dbe7e6b674f159de79938de9827f5042</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>163</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>LÃ¥nefordringar</act:name>
+        <act:id type="guid">0d089eb780336b8214f1314e4059cbc6</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>164</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga fordringar</act:name>
+        <act:id type="guid">7b2b8004ceb8cf3ac99a56ea72b23f02</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>166</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Obetalda aktier/andelar</act:name>
+        <act:id type="guid">35f71988cf086c9236c02bf07f223ea4</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>1663</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">7b2b8004ceb8cf3ac99a56ea72b23f02</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Resultatregleringar</act:name>
+        <act:id type="guid">8ed9bc7e11070c61251b71e4b695523a</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>167</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Latenta skattefordringar</act:name>
+        <act:id type="guid">65ccd371afbf267a5406711bf8d8bfdd</act:id>
+        <act:type>ASSET</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>165</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">244b43c8d2e36d1eaaa94dd947a41af4</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Eget kapital</act:name>
+        <act:id type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>20</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Aktie- eller andelskapital eller annat motsvarande kapital</act:name>
+        <act:id type="guid">8cd7b0139eeb88fd5963fb3ce82ef1aa</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>200</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Överkursfond</act:name>
+        <act:id type="guid">78656ac6840c41c1eefc5d950d88c427</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>201</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Uppskrivningsfond</act:name>
+        <act:id type="guid">0761bf2479233893c0e8c2089f07640c</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>202</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga fonder</act:name>
+        <act:id type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>205</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fond för inbetalt fritt eget kapital</act:name>
+        <act:id type="guid">f544907a6aa78b7c31ad9b82d0ceea07</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>20500</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Reservfond</act:name>
+        <act:id type="guid">6307ed7b91ea0a484ba294cdec7515e0</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>204</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fonder enligt bolagsordningen</act:name>
+        <act:id type="guid">a7e17fd36208656ad7e138c9107d4216</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>20510</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fond för verkligt värde</act:name>
+        <act:id type="guid">008f3c7e7bb1538c1bb924824126e88d</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>203</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga fonder</act:name>
+        <act:id type="guid">575e6c2a693aeac251348798b69e9dc8</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>20530</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Fonder enligt stadgarna</act:name>
+        <act:id type="guid">513cdd71834ebf547ac5edaa8b2d8b6c</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>20520</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">818d0b58b26b2e6a5499b2c240be8fac</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Balanserad vinst (förlust) från tidigare räkenskapsperioder</act:name>
+        <act:id type="guid">d03df3c3f4935500f319408a279e91e0</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>207</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Räkenskapsperiodens vinst (förlust)</act:name>
+        <act:id type="guid">484af3263fd4d1b18210115c3d5677ae</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>219</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Bolagsinsats</act:name>
+        <act:id type="guid">d7654cc354d34641ce3fe5cacfd37d63</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>210</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Uppskrivningsfond (kb, öb, firma)</act:name>
+        <act:id type="guid">c6e596a98cab38e49ef735953ab8f492</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>211</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Räkenskapsperiodens vinst (förlust) (kb, öb, firma)</act:name>
+        <act:id type="guid">a3f9cbe35db4f36ae5f718dd4e016224</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>213</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">178ba4c184699cfbbd2461bc806a5eb7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Ackumulerade bokslutsdispositioner</act:name>
+        <act:id type="guid">f64721d39e2d215b0a42a1df2e324b24</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>25</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Avskrivningsdifferens</act:name>
+        <act:id type="guid">ed6fe4185f02324932c0c369e6cc1578</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>250</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">f64721d39e2d215b0a42a1df2e324b24</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Skattemässiga reserver</act:name>
+        <act:id type="guid">2bbcc1f76bcf3d9069118aa44843a88e</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>251</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">f64721d39e2d215b0a42a1df2e324b24</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Avsättningar</act:name>
+        <act:id type="guid">ba87317a2996b3abaaa089db893f2ae7</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>26</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Avsättningar för pensioner</act:name>
+        <act:id type="guid">7a860a63ae175a640c4adbea6af0ab87</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>260</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">ba87317a2996b3abaaa089db893f2ae7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Skatteavsättningar</act:name>
+        <act:id type="guid">a65cb5f240c95ab7cefd11cc89433eff</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>261</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">ba87317a2996b3abaaa089db893f2ae7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga avsättningar</act:name>
+        <act:id type="guid">bdb5948c6063670fcc438477d8368c2d</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>262</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">ba87317a2996b3abaaa089db893f2ae7</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Främmande kapital, kortfristigt</act:name>
+        <act:id type="guid">3b530f9bf5770857279f9e889dce3b2e</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>29</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Masskuldebrevslån</act:name>
+        <act:id type="guid">3e8765f3b0e4333531b8f3575b3f6970</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2901</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>LÃ¥n mot konvertibla skuldebrev</act:name>
+        <act:id type="guid">a3fc1cb69feee67863051da2777d1355</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2902</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Skulder till kreditinstitut</act:name>
+        <act:id type="guid">4fd772819dea7bf0c6579779ebad61c2</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2903</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Återlåning från arbetspensionsförsäkringsanstalter</act:name>
+        <act:id type="guid">daa537537b51e95beb1f7a63e470d4ac</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2904</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Erhållna förskott</act:name>
+        <act:id type="guid">aa82ecfa51151381319505dd503f6a1b</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2905</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Leverantörsskulder</act:name>
+        <act:id type="guid">d850aae31d1ad8a86e7e924206454e40</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2906</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Finansieringsväxlar</act:name>
+        <act:id type="guid">3df2c9700cf3079289b5c0a87cbe9857</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2907</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Skulder till företag inom samma koncern</act:name>
+        <act:id type="guid">694a5c5a3849820ea918620dc223e9f4</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2908</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Skulder till ägarintresseföretag</act:name>
+        <act:id type="guid">fc00d3227f708d63fde7d8375c9abf62</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2909</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga skulder</act:name>
+        <act:id type="guid">d462376b6b0c6f123a2fefad18090bb4</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2911</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Resultatregleringar</act:name>
+        <act:id type="guid">569ccbf9890feca796fa06400ad0ff3e</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2950</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Latenta skatteskulder</act:name>
+        <act:id type="guid">1bcc1016959c0782df212f2371038322</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2910</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">3b530f9bf5770857279f9e889dce3b2e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Räkenskapsperiodens resultat</act:name>
+        <act:id type="guid">e0a6b1bfd7a9083421852641ca07404a</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>99</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Minoritetsandelar</act:name>
+        <act:id type="guid">a10a972c59c8c0a4c8e04fdc898fdac2</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>24</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Koncernreserv</act:name>
+        <act:id type="guid">e5b65287efc60272cc7405f8555cd464</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>27</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Främmande kapital, långfristigt</act:name>
+        <act:id type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>28</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Återlåning från arbetspensionsförsäkringsanstalter</act:name>
+        <act:id type="guid">ee0f5948ac3647b800c88bd64d81c1f8</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2804</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Masskuldebrevslån</act:name>
+        <act:id type="guid">056dea27c81778f8f8a72ad3f37af7cd</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2801</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>LÃ¥n mot konvertibla skuldebrev</act:name>
+        <act:id type="guid">89a323266c65c858d1085476ae4a8498</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2802</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Skulder till kreditinstitut</act:name>
+        <act:id type="guid">3dc07091d01904941386423754d4c063</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2803</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Erhållna förskott</act:name>
+        <act:id type="guid">1db16c27d051bf173d534acd68c7cfcf</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2805</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Leverantörsskulder</act:name>
+        <act:id type="guid">5e9ad24f84b9bdaeacb16c36b839bea2</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2806</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Finansieringsväxlar</act:name>
+        <act:id type="guid">5f6d81378e9241d874c509093032c75b</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2807</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Skulder till företag inom samma koncern</act:name>
+        <act:id type="guid">73d20805fd03d7597bdcfeb6c36e29d1</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2808</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Skulder till ägarintresseföretag</act:name>
+        <act:id type="guid">101a8a349d1f39ce8edaade6da116f6f</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2809</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Övriga skulder</act:name>
+        <act:id type="guid">f96b99399af4681a6886d63d0930a8ac</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2811</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Resultatregleringar</act:name>
+        <act:id type="guid">1da2c0789ed9466d36cda286cbf3a024</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2850</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Kapitallån</act:name>
+        <act:id type="guid">c68077ac649ae3ebf1522cc51e4d2a2e</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2800</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Latenta skatteskulder</act:name>
+        <act:id type="guid">3588d14217c8b76adc9df3990e6e3ab8</act:id>
+        <act:type>LIABILITY</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>2810</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">c078cbc197dffb098820d3c0c1edb5d9</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Rörelsevinst</act:name>
+        <act:id type="guid">90de269dc891517c13fb84e016445348</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>80</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Vinst (förlust) före bokslutsdispositioner och skatter</act:name>
+        <act:id type="guid">5cdea912345e9d52383af97c5ae6fda9</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>92</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Extraordinära poster</act:name>
+        <act:id type="guid">6a63669fcb4b52dfaacba4296e166f5c</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>94</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+    <gnc:account version="2.0.0">
+        <act:name>Minoritetsandelar</act:name>
+        <act:id type="guid">c21e40dda8dc9eca8005cc519d823a38</act:id>
+        <act:type>EXPENSE</act:type>
+        <act:commodity>
+            <cmdty:space>ISO4217</cmdty:space>
+            <cmdty:id>EUR</cmdty:id>
+        </act:commodity>
+        <act:commodity-scu>100</act:commodity-scu>
+        <act:code>98</act:code>
+        <act:slots>
+            <slot>
+                <slot:key>color</slot:key>
+                <slot:value type="string">Not Set</slot:value>
+            </slot>
+        </act:slots>
+        <act:parent type="guid">91ca36e058bbbb5deae199ca187e701e</act:parent>
+    </gnc:account>
+</gnc-account-example>
+
+        <!-- Local variables: -->
+        <!-- mode: xml        -->
+        <!-- End:             -->

commit 3299231f225305116fafbc33dc5e3f815dd52074
Author: Geert Janssens <janssens-geert at telenet.be>
Date:   Fri Apr 15 21:14:42 2016 +0200

    Improve quickfill performance on huge registers
    
    The recursive quickfill code had several expensive
    function calls that could be moved out of the recursion.
    In addition using qof's string cache would result in
    an expensive call to g_str_hash for each iteration, which
    quickly degraded performance on huge accounts.
    I have removed the use of qof's string cache from quickfill
    which considerably improves performance of opening the
    register for a huge account at the expense of slightly
    more memory overhead.
    For example I saw register load time reduce from 75 seconds
    to 2 seconds, while using 20kb more memory.

diff --git a/src/app-utils/QuickFill.c b/src/app-utils/QuickFill.c
index d872989..b587d11 100644
--- a/src/app-utils/QuickFill.c
+++ b/src/app-utils/QuickFill.c
@@ -41,8 +41,8 @@ struct _QuickFill
 
 
 /** PROTOTYPES ******************************************************/
-static void quickfill_insert_recursive (QuickFill *qf, const char *text,
-                                        int depth, QuickFillSort sort);
+static void quickfill_insert_recursive (QuickFill *qf, const char *text, int len,
+                                        const char* next_char, QuickFillSort sort);
 
 static void gnc_quickfill_remove_recursive (QuickFill *qf, const gchar *text,
         gint depth, QuickFillSort sort);
@@ -95,7 +95,7 @@ gnc_quickfill_destroy (QuickFill *qf)
     qf->matches = NULL;
 
     if (qf->text)
-        CACHE_REMOVE(qf->text);
+        g_free(qf->text);
     qf->text = NULL;
     qf->len = 0;
 
@@ -111,7 +111,7 @@ gnc_quickfill_purge (QuickFill *qf)
     g_hash_table_foreach_remove (qf->matches, destroy_helper, NULL);
 
     if (qf->text)
-        CACHE_REMOVE (qf->text);
+        g_free (qf->text);
     qf->text = NULL;
     qf->len = 0;
 }
@@ -229,13 +229,15 @@ void
 gnc_quickfill_insert (QuickFill *qf, const char *text, QuickFillSort sort)
 {
     gchar *normalized_str;
+    int len;
 
     if (NULL == qf) return;
     if (NULL == text) return;
 
 
     normalized_str = g_utf8_normalize (text, -1, G_NORMALIZE_NFC);
-    quickfill_insert_recursive (qf, normalized_str, 0, sort);
+    len = g_utf8_strlen (text, -1);
+    quickfill_insert_recursive (qf, normalized_str, len, normalized_str, sort);
     g_free (normalized_str);
 }
 
@@ -243,25 +245,22 @@ gnc_quickfill_insert (QuickFill *qf, const char *text, QuickFillSort sort)
 \********************************************************************/
 
 static void
-quickfill_insert_recursive (QuickFill *qf, const char *text, int depth,
-                            QuickFillSort sort)
+quickfill_insert_recursive (QuickFill *qf, const char *text, int len,
+                            const char *next_char, QuickFillSort sort)
 {
     guint key;
     char *old_text;
     QuickFill *match_qf;
-    int len;
-    char *key_char;
     gunichar key_char_uc;
 
     if (qf == NULL)
         return;
 
-    if ((text == NULL) || (g_utf8_strlen (text, -1) <= depth))
+    if ((text == NULL) || (*next_char == '\0'))
         return;
 
-    key_char = g_utf8_offset_to_pointer (text, depth);
 
-    key_char_uc = g_utf8_get_char (key_char);
+    key_char_uc = g_utf8_get_char (next_char);
     key = g_unichar_toupper (key_char_uc);
 
     match_qf = g_hash_table_lookup (qf->matches, GUINT_TO_POINTER (key));
@@ -282,12 +281,10 @@ quickfill_insert_recursive (QuickFill *qf, const char *text, int depth,
 
     case QUICKFILL_LIFO:
     default:
-        len = g_utf8_strlen (text, -1);
-
         /* If there's no string there already, just put the new one in. */
         if (old_text == NULL)
         {
-            match_qf->text = CACHE_INSERT((gpointer) text);
+            match_qf->text = g_strdup(text);
             match_qf->len = len;
             break;
         }
@@ -297,13 +294,13 @@ quickfill_insert_recursive (QuickFill *qf, const char *text, int depth,
                 (strncmp(text, old_text, strlen(old_text)) == 0))
             break;
 
-        CACHE_REMOVE(old_text);
-        match_qf->text = CACHE_INSERT((gpointer) text);
+        g_free(old_text);
+        match_qf->text = g_strdup(text);
         match_qf->len = len;
         break;
     }
 
-    quickfill_insert_recursive (match_qf, text, ++depth, sort);
+    quickfill_insert_recursive (match_qf, text, len, g_utf8_next_char (next_char), sort);
 }
 
 /********************************************************************\
@@ -436,10 +433,10 @@ gnc_quickfill_remove_recursive (QuickFill *qf, const gchar *text, gint depth,
         }
 
         /* now replace or clear text */
-        CACHE_REMOVE(qf->text);
+        g_free(qf->text);
         if (best_text != NULL)
         {
-            qf->text = CACHE_INSERT((gpointer) best_text);
+            qf->text = g_strdup(best_text);
             qf->len = best_len;
         }
         else



Summary of changes:
 accounts/fi_FI/Makefile.am                      |    1 +
 accounts/fi_FI/acctchrt_sbr-xbrl.gnucash-xea    | 2690 +++++++++++++++++++++++
 accounts/sv_AX/Makefile.am                      |    1 +
 accounts/sv_AX/acctchrt_sbr-xbrl.gnucash-xea    | 2690 +++++++++++++++++++++++
 accounts/sv_FI/Makefile.am                      |    3 +-
 accounts/sv_FI/acctchrt_sbr-xbrl.gnucash-xea    | 2690 +++++++++++++++++++++++
 po/de.po                                        |  245 +--
 po/glossary/ru.po                               |    2 +-
 po/ru.po                                        |    8 +-
 src/app-utils/QuickFill.c                       |   37 +-
 src/app-utils/gnc-sx-instance-model.c           |   53 +-
 src/backend/dbi/gnc-backend-dbi-priv.h          |    2 +
 src/backend/dbi/gnc-backend-dbi.cpp             |   69 +
 src/backend/dbi/test/CMakeLists.txt             |    4 +-
 src/backend/dbi/test/test-backend-dbi-basic.cpp |   39 +-
 src/engine/gnc-pricedb.c                        |   32 +-
 src/engine/iso-4217-currencies.xml              |    6 +-
 17 files changed, 8350 insertions(+), 222 deletions(-)
 create mode 100644 accounts/fi_FI/acctchrt_sbr-xbrl.gnucash-xea
 create mode 100644 accounts/sv_AX/acctchrt_sbr-xbrl.gnucash-xea
 create mode 100644 accounts/sv_FI/acctchrt_sbr-xbrl.gnucash-xea



More information about the gnucash-changes mailing list