// returns an unlisted copy for immediate use static AIConcept createAIConcept(S name, S universe) { RemoteDB db = new RemoteDB(aiConceptsProgram()); S globalID = aGlobalID(); O[] params = { +globalID, +name, +universe, touched := now() }; db.xnew("AIConcept", params); db.close(); AIConcept c = unlisted(AIConcept); cset(c, params); ret C; }