private void tokenizeAndAttach()
 {
     if (!String.IsNullOrEmpty(InfoPersonnelWithdraw.currentIBAN))
     {
         SceneManager.LoadScene("Loader", LoadSceneMode.Additive);
         UnityThreadHelper.CreateThread(() =>
         {
             string accounttoken = wm.TokenizeAccount(um.getUser(userId, token), InfoPersonnelWithdraw.currentIBAN);
             if (!String.IsNullOrEmpty(accounttoken))
             {
                 if (wm.attachTokenToAccount(accounttoken, token))
                 {
                     string[] attrib = { "iban_uploaded" };
                     string[] value5 = { "true" };
                     um.UpdateUserByField(userId, token, attrib, value5);
                 }
             }
             UnityThreadHelper.Dispatcher.Dispatch(() => {
                 SceneManager.UnloadScene("Loader");
             });
         });
     }
 }